:root {
  color-scheme: light;
  --background: #f2f2f7;
  --surface: #ffffff;
  --surface-secondary: #f8f8fb;
  --text: #111111;
  --muted: #6f6f75;
  --muted-soft: #a9a9b0;
  --border: #e2e2e8;
  --accent: #007aff;
  --accent-strong: #0067d8;
  --shadow: 0 22px 48px rgba(34, 34, 48, 0.12);
  --shadow-soft: 0 10px 22px rgba(34, 34, 48, 0.06);
  --radius-app: 22px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  line-height: 1.68;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 122, 255, 0.32);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 68px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(242, 242, 247, 0.86);
  border-bottom: 1px solid rgba(226, 226, 232, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 9px 18px rgba(76, 80, 235, 0.2);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px 14px;
  font-size: 0.94rem;
}

nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--accent);
}

.nav-cta {
  min-height: 38px;
  padding: 7px 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero {
  padding: clamp(54px, 8vw, 96px) 20px 62px;
}

.hero-layout,
.question-layout,
.trust-grid,
.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.hero-layout > *,
.question-layout > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.13;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(3.65rem, 8.4vw, 6.7rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.95rem, 4vw, 3.25rem);
  font-weight: 850;
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

p {
  margin: 0;
  overflow-wrap: anywhere;
}

.hero-statement {
  max-width: 640px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  font-weight: 850;
  line-height: 1.24;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.14rem;
}

.lead.compact {
  max-width: 760px;
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.store-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 19px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 122, 255, 0.2);
}

.button.secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.action-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.phone-showcase {
  justify-self: center;
  width: min(348px, 100%);
  padding: 10px;
  border-radius: 34px;
  background: #0b0b0f;
  box-shadow: var(--shadow);
}

.phone-showcase img {
  width: 100%;
  border-radius: 26px;
}

.phone-showcase-small {
  width: min(320px, 100%);
}

.section {
  padding: 78px 20px;
}

.section-band {
  background: #e9e9f0;
}

.summary-strip {
  padding-block: 18px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.summary-grid div {
  min-height: 90px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-app);
  box-shadow: var(--shadow-soft);
}

.summary-grid strong {
  color: var(--accent);
  font-size: 1.45rem;
  line-height: 1.1;
}

.summary-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.support-card {
  min-height: 238px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-app);
  box-shadow: var(--shadow-soft);
}

.card-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-card p:not(.card-kicker),
.support-card p:not(.card-kicker) {
  color: var(--muted);
}

.flow-layout {
  display: grid;
  gap: 24px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.steps li {
  min-height: 220px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-app);
}

.step-number {
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 122, 255, 0.12);
  color: var(--accent);
  font-weight: 900;
}

.steps p {
  margin-top: 12px;
  color: var(--muted);
}

.question-copy p:not(.eyebrow),
.trust-grid p:not(.eyebrow),
.download-panel p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
}

.prompt-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.prompt-list p {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
}

.trust-section {
  padding-top: 36px;
}

.trust-grid {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-app);
  box-shadow: var(--shadow-soft);
}

.trust-links {
  display: grid;
  gap: 10px;
}

.trust-links a {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-secondary);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 800;
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.download-section {
  padding-top: 28px;
}

.download-panel {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-app);
  box-shadow: var(--shadow-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: end;
}

.support-note {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-app);
  box-shadow: var(--shadow-soft);
}

.support-note h2 {
  font-size: 1.18rem;
}

.support-note ul {
  margin: 16px 0 0;
  padding-left: 1.25em;
  color: var(--muted);
}

.support-note li + li {
  margin-top: 6px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.field-group label {
  font-weight: 800;
}

.field-group label span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--surface-secondary);
  color: var(--text);
  font: inherit;
}

.field-group textarea {
  resize: vertical;
  min-height: 180px;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: 3px solid rgba(0, 122, 255, 0.26);
  border-color: var(--accent);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.form-status {
  min-height: 1.7em;
  color: var(--muted);
  font-weight: 700;
}

.form-status.success {
  color: #147a3f;
}

.form-status.error {
  color: #c02d2d;
}

.store-link {
  width: min(320px, 100%);
  min-height: 84px;
  justify-self: end;
  flex-direction: column;
  gap: 2px;
  background: #111111;
  color: #fff;
  cursor: default;
}

.store-link span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1;
}

.store-link strong {
  font-size: 1.28rem;
  line-height: 1.2;
}

.page-hero {
  position: relative;
  padding: 74px 20px 44px;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}

.compact-hero {
  padding-bottom: 36px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 6vw, 3.5rem);
}

.document-wrap {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: 56px 20px 84px;
}

.document {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-app);
  padding: 42px;
  box-shadow: var(--shadow-soft);
}

.document h2 {
  margin: 42px 0 12px;
  font-size: 1.35rem;
}

.document h2:first-child {
  margin-top: 0;
}

.document p,
.document ul {
  margin: 0 0 16px;
}

.document ul {
  padding-left: 1.4em;
}

.document li + li {
  margin-top: 7px;
}

.document a,
.site-footer a {
  overflow-wrap: anywhere;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.notice {
  border-left: 4px solid var(--accent);
  background: #eef6ff;
  color: #15334f;
  border-radius: 14px;
  padding: 15px 17px;
}

.mail-link {
  font-size: 1.16rem;
  font-weight: 850;
}

.support-card h2 {
  font-size: 1.18rem;
}

.site-footer {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 30px 20px 34px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(240px, auto) auto;
  align-items: end;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin-top: 4px;
}

.site-footer nav {
  justify-content: center;
}

.site-footer a {
  color: var(--muted);
  font-weight: 750;
}

.footer-brand {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero-layout,
  .question-layout,
  .contact-layout,
  .trust-grid,
  .download-panel,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .phone-showcase {
    justify-self: start;
  }

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

  .store-link {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 16px;
    gap: 12px;
  }

  nav {
    justify-content: flex-start;
    gap: 8px 12px;
    font-size: 0.9rem;
  }

  .nav-cta {
    min-height: 36px;
  }

  .hero {
    padding: 46px 16px 42px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 3.45rem);
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-statement {
    font-size: 1.46rem;
    line-height: 1.28;
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .summary-grid,
  .feature-grid,
  .field-grid,
  .support-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 16px;
  }

  .trust-grid,
  .download-panel,
  .document {
    padding: 24px;
  }

  .phone-showcase {
    width: min(300px, 100%);
  }

  .phone-showcase-small {
    width: min(290px, 100%);
  }

  .page-hero {
    padding-inline: 16px;
  }

  .document-wrap {
    padding: 42px 16px 64px;
  }
}
