:root {
  color-scheme: light;
  --navy: #0b1825;
  --navy-soft: #11273a;
  --ink: #14222c;
  --muted: #5f6c73;
  --cream: #f6f3eb;
  --cream-deep: #ece7dc;
  --white: #ffffff;
  --line: #d8ddd9;
  --blue: #2459b3;
  --blue-dark: #173f86;
  --green: #1f8557;
  --green-soft: #e5f2eb;
  --orange: #d46e21;
  --orange-soft: #f8eade;
  --red: #b6483e;
  --shadow: 0 24px 70px rgba(11, 24, 37, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.marketing-page {
  overflow-x: hidden;
}

a {
  color: var(--blue-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(36, 89, 179, 0.45);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-width {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(11, 24, 37, 0.08);
  background: rgba(246, 243, 235, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(36, 89, 179, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #41505a;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.marketing-hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(36, 89, 179, 0.13), transparent 32%),
    linear-gradient(180deg, #fbfaf6 0%, var(--cream) 100%);
}

.marketing-hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(11, 24, 37, 0.08), transparent);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(450px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px 8px 8px;
  border: 1px solid #cdd8ea;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
}

.kicker span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.7rem, 6.8vw, 6.7rem);
  font-weight: 850;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

h1 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

.hero-lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: #485760;
  font-size: 1.13rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary-button {
  gap: 12px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(36, 89, 179, 0.24);
}

.primary-button:hover {
  background: var(--blue-dark);
  box-shadow: 0 15px 34px rgba(36, 89, 179, 0.28);
}

.text-button {
  padding-right: 8px;
  padding-left: 8px;
  color: var(--navy);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: #68747a;
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 750px;
  scroll-margin-top: 90px;
}

.hero-visual::before {
  position: absolute;
  top: 6%;
  right: -28%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 40px 90px rgba(11, 24, 37, 0.18);
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: 0;
  right: 4%;
  bottom: 6%;
  width: 76%;
  height: 12%;
  border-radius: 50%;
  background: rgba(11, 24, 37, 0.22);
  filter: blur(30px);
  content: "";
}

.estimate-slip {
  position: absolute;
  z-index: 1;
  top: 22%;
  left: 0;
  display: flex;
  width: 250px;
  min-height: 330px;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid #d5cec0;
  background:
    repeating-linear-gradient(0deg, rgba(79, 66, 45, 0.025) 0 1px, transparent 1px 4px),
    #f5efe2;
  color: #544f47;
  box-shadow: 0 24px 50px rgba(11, 24, 37, 0.18);
  transform: rotate(-6deg);
}

.estimate-slip::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 20px;
  background: linear-gradient(135deg, #f5efe2 10px, transparent 0) 0 0/20px 20px repeat-x;
  content: "";
}

.slip-label {
  margin-bottom: 36px;
  color: #7a7368;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.slip-line {
  display: block;
  height: 8px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: #cbc2b1;
}

.slip-line.long {
  width: 92%;
}

.slip-line.medium {
  width: 72%;
}

.slip-line.short {
  width: 50%;
}

.slip-total {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed #aea494;
  color: var(--navy);
  font: 800 2.3rem/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.05em;
}

.slip-question {
  margin-top: auto;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 800;
}

.phone-shell {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 355px;
  padding: 8px;
  border: 4px solid #1d2932;
  border-radius: 48px;
  background: #0a1016;
  box-shadow: 0 36px 80px rgba(6, 13, 20, 0.35);
  overflow: hidden;
}

.real-app-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 36px;
}

.pressure-section,
.steps-section,
.benefits-section,
.privacy-section,
.faq-section,
.final-cta {
  scroll-margin-top: 72px;
}

.pressure-section {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.pressure-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.pressure-copy h2,
.section-heading h2,
.benefits-intro h2,
.privacy-card h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.7vw, 4.7rem);
  font-weight: 830;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.pressure-copy h2 {
  max-width: 530px;
}

.pressure-story {
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.pressure-story blockquote {
  margin: 0 0 28px;
  color: #f5caa9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-style: italic;
  line-height: 1.22;
}

.pressure-story > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #bdc8d0;
  font-size: 1.05rem;
}

.pressure-story .balanced-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8ecef;
  font-size: 0.9rem;
}

.section-kicker.light {
  color: #8eb5ff;
}

.steps-section {
  padding: 112px 0 124px;
  background:
    linear-gradient(rgba(11, 24, 37, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 24, 37, 0.035) 1px, transparent 1px),
    #fbfaf6;
  background-size: 48px 48px;
}

.section-heading {
  max-width: 770px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.steps-grid li {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(11, 24, 37, 0.055);
}

.step-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #c0c8cb;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 16px;
  background: #e9eef8;
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 900;
}

.steps-grid li:nth-child(2) .step-icon {
  background: var(--orange-soft);
  color: var(--orange);
}

.steps-grid li:nth-child(3) .step-icon {
  background: var(--green-soft);
  color: var(--green);
}

.steps-grid h3,
.benefits-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.steps-grid p,
.benefits-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.benefits-section {
  padding: 116px 0;
  background: var(--blue);
  color: var(--white);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 92px;
  align-items: start;
}

.benefits-intro {
  position: sticky;
  top: 112px;
}

.benefits-intro h2 {
  max-width: 500px;
}

.benefits-intro > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: #d4def0;
}

.confidence-quote {
  display: flex;
  gap: 12px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.confidence-quote > span {
  color: #95b6f4;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.7;
}

.confidence-quote p {
  margin: 0;
  color: #dce5f5;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
}

.confidence-quote strong {
  color: var(--white);
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefits-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(9, 33, 78, 0.28);
}

.benefits-grid article:nth-child(2),
.benefits-grid article:nth-child(3) {
  background: rgba(255, 255, 255, 0.09);
}

.benefit-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #bcd0f7;
  font-size: 1.1rem;
  font-weight: 850;
}

.benefits-grid h3 {
  color: var(--white);
}

.benefits-grid p {
  color: #cfdbef;
}

.privacy-section {
  padding: 110px 0;
  background: #edf2ed;
}

.privacy-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 62px;
  align-items: center;
  padding: 68px 76px;
  border: 1px solid #cedbd2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 25px 70px rgba(31, 133, 87, 0.09);
}

.privacy-shield {
  position: relative;
  display: grid;
  width: 150px;
  height: 174px;
  place-items: center;
  border-radius: 48% 48% 52% 52% / 27% 27% 66% 66%;
  background: var(--green);
  box-shadow: 0 20px 38px rgba(31, 133, 87, 0.26);
}

.privacy-shield::before {
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: inherit;
  content: "";
}

.privacy-shield span {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
}

.privacy-card h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.privacy-card p:not(.section-kicker) {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
}

.privacy-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.faq-section {
  padding: 112px 0;
  background: #fbfaf6;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 112px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #edf0f0;
  color: var(--blue);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 650px;
  margin: -6px 0 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  padding: 118px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(36, 89, 179, 0.36), transparent 34%),
    var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #bdc9d3;
  font-size: 1.07rem;
}

.centered-actions {
  justify-content: center;
}

.light-button {
  background: var(--white);
  color: var(--navy);
}

.outline-button {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.final-cta small {
  margin-top: 24px;
  color: #7f929f;
}

.site-footer {
  padding: 56px 0 32px;
  background: #07121c;
  color: #9fadb8;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 32px;
}

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

.footer-inner p {
  margin: 0;
  text-align: center;
  font-size: 0.83rem;
}

.footer-inner nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-inner nav a {
  color: #c5cfd6;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-line {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-line p {
  max-width: 900px;
  margin: 0;
  color: #6f828f;
  font-size: 0.72rem;
}

/* Support and privacy documents */
.shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.document {
  max-width: 760px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(11, 24, 37, 0.07);
}

.document h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.document h2 {
  margin: 34px 0 8px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.3;
}

.document p {
  margin: 12px 0 0;
}

.updated,
.back {
  color: var(--muted);
  font-size: 0.95rem;
}

.back {
  display: inline-block;
  margin-bottom: 22px;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .marketing-hero::before {
    display: none;
  }

  .pressure-grid,
  .benefits-layout,
  .faq-layout {
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .site-width {
    width: min(100% - 32px, 1180px);
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .marketing-hero {
    padding: 64px 0 76px;
  }

  h1 {
    font-size: clamp(3.2rem, 12vw, 5.6rem);
  }

  .pressure-grid,
  .benefits-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .pressure-story {
    padding: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

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

  .steps-grid li {
    min-height: auto;
  }

  .step-icon {
    margin-bottom: 34px;
  }

  .benefits-intro,
  .faq-layout .section-heading {
    position: static;
  }

  .privacy-card {
    grid-template-columns: 130px 1fr;
    gap: 40px;
    padding: 50px;
  }

  .privacy-shield {
    width: 120px;
    height: 140px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner p {
    text-align: left;
  }

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

@media (max-width: 560px) {
  .site-width {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .site-nav .nav-cta {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .marketing-hero {
    padding-top: 48px;
  }

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

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 670px;
  }

  .hero-visual::before {
    top: 8%;
    right: -50%;
    width: 500px;
    height: 500px;
  }

  .phone-shell {
    right: -16px;
    width: 310px;
    border-radius: 42px;
  }

  .real-app-screenshot {
    border-radius: 31px;
  }

  .estimate-slip {
    top: 29%;
    left: -24px;
    width: 185px;
    min-height: 270px;
    padding: 22px 20px;
  }

  .slip-total {
    font-size: 1.8rem;
  }

  .pressure-section,
  .steps-section,
  .benefits-section,
  .privacy-section,
  .faq-section,
  .final-cta {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .pressure-copy h2,
  .section-heading h2,
  .benefits-intro h2,
  .privacy-card h2,
  .final-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .steps-grid {
    margin-top: 44px;
  }

  .steps-grid li,
  .benefits-grid article {
    padding: 26px;
  }

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

  .benefits-grid article {
    min-height: auto;
  }

  .benefit-symbol {
    margin-bottom: 28px;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 34px 26px;
  }

  .privacy-shield {
    width: 90px;
    height: 105px;
  }

  .privacy-shield span {
    font-size: 2.6rem;
  }

  .centered-actions {
    width: 100%;
  }

  .shell {
    width: min(100% - 24px, 860px);
    padding: 24px 0;
  }

  .document {
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
