:root {
  --ink:        #26221C;
  --blue:       #3B5A8A;
  --blue-dark:  #2C4569;
  --blue-light: #8AB0EC;
  --muted:      #5A6675;
  --faint:      #8896A8;
  --eyebrow:    #8C9AAC;
  --soft:       #F3F6FA;
  --soft-2:     #E9EEF5;
  --line:       #E4EAF0;
  --line-2:     #EEF1F5;
  --line-3:     #DEE6EF;
  --footer-bg:  #1A1D23;
  --footer-line:#2A313A;
  --gold:       #E7B23F;
  --white:      #FFFFFF;

  --serif: Newsreader, Georgia, "Times New Roman", serif;
  --sans:  Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1180px;
  --pad: 40px;
  --shadow-btn: 0 8px 20px rgba(59, 90, 138, 0.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--white);
  font-family: var(--sans);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

img, svg { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
  color: var(--white);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin-bottom: 16px;
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.display--hero {
  font-size: clamp(38px, 6.4vw, 64px);
  letter-spacing: -2px;
  line-height: 1.06;
}
.display--section { font-size: clamp(30px, 4.4vw, 42px); }
.display--cta {
  font-size: clamp(32px, 4.6vw, 44px);
  color: var(--white);
}

.lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  text-wrap: pretty;
}

.btn {
  height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(59, 90, 138, 0.34);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover {
  background: #F0F3F8;
  color: var(--ink);
}

.btn--full { width: 100%; }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-2);
}

.nav__inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand__word {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.6px;
  color: var(--ink);
  line-height: 1;
}
.brand__tick { color: var(--blue); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.nav__link:hover { color: var(--ink); }

.nav__cta {
  height: 42px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  transition: background 0.15s ease;
}
.nav__cta:hover { background: var(--blue-dark); color: var(--white); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: background 0.18s ease;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, top 0.18s ease;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  padding-top: 96px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero__lede { margin-top: 24px; max-width: 480px; }
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero__art {
  display: flex;
  justify-content: center;
}

.phone {
  width: 290px;
  max-width: 100%;
  border-radius: 38px;
  background: var(--ink);
  padding: 9px;
  box-shadow: 0 28px 60px rgba(30, 45, 70, 0.22);
}
.phone__screen {
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
}
.phone__bar {
  padding: 26px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-2);
}
.phone__brand { display: flex; align-items: center; gap: 7px; }
.phone__mark {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phone__word {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--ink);
  line-height: 1;
}
.phone__dot { width: 22px; height: 22px; border-radius: 50%; background: #EBEFF5; }
.phone__body { padding: 12px; }
.phone__post { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.phone__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #B9C7DA, #7E93B0);
  flex-shrink: 0;
}
.phone__meta { line-height: 1.2; }
.phone__user { font-size: 12px; font-weight: 700; color: var(--ink); }
.phone__time { font-size: 10.5px; color: var(--faint); }
.phone__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background:
    repeating-linear-gradient(45deg, rgba(59, 90, 138, 0.05) 0 12px, transparent 12px 24px),
    #EEF2F7;
}
.phone__rating {
  position: absolute; top: 9px; left: 9px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(38, 34, 28, 0.8);
  padding: 4px 8px; border-radius: 999px;
}
.phone__rating span { font-size: 10px; font-weight: 700; color: var(--white); }
.phone__tag {
  position: absolute; top: 9px; right: 9px;
  background: rgba(59, 90, 138, 0.88);
  padding: 4px 9px; border-radius: 999px;
  font-size: 9.5px; font-weight: 700; color: var(--white);
}
.phone__items { display: flex; gap: 5px; margin-top: 8px; }
.phone__item { flex: 1; aspect-ratio: 1 / 1.25; border-radius: 7px; }
.phone__spacer { height: 22px; }

.section { padding-top: 104px; padding-bottom: 104px; }
.section--tinted {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 96px;
  padding-bottom: 96px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.prose {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.prose p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.stats {
  display: flex;
  gap: 64px;
  justify-content: center;
  text-align: center;
  margin-top: 14px;
  padding-top: 30px;
  border-top: 1px solid var(--line-2);
  flex-wrap: wrap;
}
.stat__num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat__label { font-size: 13.5px; color: var(--faint); margin-top: 7px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
}
.step__icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--soft-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step__title { font-size: 19px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.step__text { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

.contact__label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--faint);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.contact__value { font-size: 16.5px; color: var(--muted); line-height: 1.55; }
.contact__value a { font-weight: 600; }
.contact__blocks { display: flex; flex-direction: column; gap: 24px; }

.form-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field { margin-bottom: 16px; }
.field:last-of-type { margin-bottom: 22px; }
.field label,
.form-row label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}

.input, .select, .textarea {
  width: 100%;
  border-radius: 13px;
  background: var(--white);
  border: 1px solid var(--line-3);
  padding: 0 15px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.input, .select { height: 50px; }
.textarea {
  min-height: 130px;
  padding: 15px;
  line-height: 1.55;
  resize: vertical;
}
.input::placeholder, .textarea::placeholder { color: #9AA8B9; }

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 90, 138, 0.14);
}
.input:user-invalid, .textarea:user-invalid, .select:user-invalid {
  border-color: #C0553F;
}

.select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238C9AAC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 13px 13px;
  padding-right: 40px;
  cursor: pointer;
}
.select:has(option[value=""]:checked) { color: #9AA8B9; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 12.5px;
  color: var(--faint);
  text-align: center;
  margin: 14px 0 0;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 13px;
  font-size: 14.5px;
  line-height: 1.5;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok {
  background: #E7F0E6;
  border: 1px solid #C6DDC3;
  color: #2F5A2C;
}
.form-status--err {
  background: #FBEAE6;
  border: 1px solid #F0C9BF;
  color: #8C3520;
}
.form-status a { color: inherit; text-decoration: underline; }

.cta {
  background: var(--blue);
}
.cta__inner {
  padding-top: 88px;
  padding-bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}
.cta__lede {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 440px;
  margin: 0;
}
.cta__actions { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.cta__fine { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); margin: 0; }

.footer { background: var(--footer-bg); }
.footer__inner { padding-top: 52px; padding-bottom: 44px; }
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__mark {
  width: 28px; height: 28px;
  border-radius: 9px;
  background: #3E6FC4;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer__word {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1;
}
.footer__word .brand__tick { color: var(--blue-light); }
.footer__blurb {
  font-size: 13.5px;
  color: #7A8796;
  line-height: 1.6;
  max-width: 260px;
  margin: 0;
}
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__head {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer__col a { font-size: 14px; color: #B7C2CE; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--footer-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.legal { padding-top: 72px; padding-bottom: 96px; }
.legal__head { max-width: 760px; margin-bottom: 44px; }
.legal__updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin-top: 18px;
}
.legal__body { max-width: 760px; }
.legal__body h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 44px 0 14px;
}
.legal__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal__body p,
.legal__body li {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
}
.legal__body p { margin: 0 0 16px; }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; }
.legal__body li { margin-bottom: 9px; }
.legal__body strong { color: var(--ink); font-weight: 700; }

.legal__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 15.5px;
}
.legal__body th,
.legal__body td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  vertical-align: top;
}
.legal__body th { color: var(--ink); font-weight: 700; background: var(--soft); }
.legal__table-scroll { overflow-x: auto; }

.callout {
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 0 0 28px;
}
.callout p:last-child { margin-bottom: 0; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 26px;
}

.thanks {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.thanks__mark {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--soft-2);
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 980px) {
  :root { --pad: 28px; }

  .nav__links {
    position: absolute;
    top: 100%;
    left: calc(var(--pad) * -1);
    right: calc(var(--pad) * -1);
    background: var(--white);
    border-bottom: 1px solid var(--line-2);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--pad) 22px;
    box-shadow: 0 18px 34px rgba(30, 45, 70, 0.10);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-2);
    font-size: 16px;
  }
  .nav__cta {
    margin-top: 16px;
    height: 48px;
    justify-content: center;
  }
  .nav__toggle { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .hero__art { order: 2; }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .section--tinted { padding-top: 72px; padding-bottom: 72px; }

  .steps { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .stats { gap: 40px; justify-content: flex-start; }

  .footer__cols { gap: 40px; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }

  .brand__word { font-size: 22px; }
  .hero__lede, .lede { font-size: 16.5px; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }

  .form-card { padding: 24px 20px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .form-row > div { margin-bottom: 16px; }

  .cta__inner { padding-top: 64px; padding-bottom: 64px; }
  .cta__actions { width: 100%; }

  .footer__cols { gap: 32px; width: 100%; }
  .footer__col { min-width: 130px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .legal__body h2 { font-size: 23px; }
  .legal__body p, .legal__body li { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

@media print {
  .nav, .cta, .footer, .skip-link { display: none; }
  body { color: #000; }
}
