:root {
  --ink: #101722;
  --muted: #5f6877;
  --soft: #f3f5fa;
  --card: #ffffff;
  --line: #e4e7ef;
  --teal: #27c7b1;
  --green: #34c759;
  --purple: #6a5cf6;
  --navy: #071822;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(7, 24, 34, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--purple);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px -120px 120px;
  z-index: -1;
  border-radius: 52px;
  background: linear-gradient(135deg, #e8f8f4 0%, #ffffff 48%, #eeebff 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.5;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: white;
  background: var(--purple);
  box-shadow: 0 14px 30px rgba(106, 92, 246, 0.28);
}

.button.secondary {
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
}

.trust-row {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.trust-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(228, 231, 239, 0.82);
}

.phone-showcase {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 390px);
  padding: 12px;
  border-radius: 42px;
  background: #111827;
  box-shadow: var(--shadow);
}

.phone-frame img {
  display: block;
  width: 100%;
  border-radius: 32px;
  background: white;
}

.section,
.feature-grid,
.steps,
.disclaimer,
.legal-page {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 68px;
}

.intro h2,
.steps h2,
.disclaimer h2,
.legal-hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p:last-child,
.disclaimer p,
.legal-hero .lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 86px;
}

.feature-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  padding-top: 74px;
  padding-bottom: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 8px;
  background: white;
  border-left: 5px solid var(--green);
}

.step-list strong {
  font-size: 20px;
}

.step-list span {
  color: var(--muted);
  line-height: 1.5;
}

.disclaimer {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 84px;
}

.mark {
  width: 120px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 42px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--purple);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  padding-top: 56px;
  padding-bottom: 86px;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 32px;
}

.updated {
  color: var(--muted);
  font-weight: 800;
}

.legal-card {
  max-width: 900px;
  margin: 18px 0;
  padding: 30px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.05);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.legal-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card p a {
  color: var(--purple);
  font-weight: 700;
}

.legal-card p a:hover {
  text-decoration: underline;
}

.inline-link {
  color: var(--purple);
  font-weight: 700;
}

.inline-link:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.support-form {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 15px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field textarea {
  line-height: 1.55;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: white;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(106, 92, 246, 0.18);
}

.field-hint {
  color: var(--muted);
  font-size: 14px;
}

.support-form .button {
  justify-self: start;
  border: 0;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.support-form .button:disabled {
  opacity: 0.6;
  cursor: progress;
}

.support-form .form-status {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.support-form .form-status:empty {
  display: none;
}

.support-form .form-status.success {
  color: #1c8f52;
}

.support-form .form-status.error {
  color: #c0392b;
}

.support-form .form-legal {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero,
  .intro,
  .steps,
  .disclaimer {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 38px;
    padding-top: 48px;
  }

  .hero::before {
    inset: 8px 12px 96px;
    border-radius: 28px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-frame {
    max-width: 340px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 18px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .nav {
    font-size: 14px;
  }

  .hero,
  .section,
  .feature-grid,
  .steps,
  .disclaimer,
  .legal-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 19px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-number {
    margin-bottom: 28px;
  }

  .legal-card {
    padding: 24px;
  }
}
