:root {
  --ink: #1C2128;
  --ink-soft: #3A4250;
  --paper: #FFFFFF;
  --cream: #F4F0E7;
  --panel: #EDEAE2;
  --amber: #FFCC00;
  --copper: #C97E2A;
  --copper-dark: #A86220;
  --teal: #3D6B7D;
  --line: rgba(28,33,40,.13);
  --line-light: rgba(255,255,255,.16);
  --shadow: 0 24px 70px rgba(24,28,32,.13);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(1120px, calc(100% - 56px)); margin: 0 auto; }
.narrow-wrap { width: min(850px, calc(100% - 56px)); }
.section { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap { height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-size: 1.34rem; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; }
.brand-mark { width: 30px; height: 30px; flex: 0 0 30px; }
.desktop-nav { margin-left: auto; display: flex; gap: 30px; align-items: center; }
.desktop-nav a { text-decoration: none; font-size: .94rem; font-weight: 600; color: var(--ink-soft); transition: color .16s ease; }
.desktop-nav a:hover { color: var(--ink); }
.nav-cta { text-decoration: none; background: var(--ink); color: white; border-radius: 7px; padding: 9px 15px; font-size: .86rem; font-weight: 600; white-space: nowrap; }
.nav-cta:hover { background: var(--ink-soft); }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; cursor: pointer; margin-left: auto; }
.menu-button span { width: 23px; height: 2px; background: var(--ink); display: block; margin: 5px auto; border-radius: 2px; transition: transform .18s ease, opacity .18s ease; }
.mobile-menu { position: fixed; inset: 76px 0 0; background: var(--paper); padding: 28px; flex-direction: column; gap: 2px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu:not([hidden]) { display: flex; }
.mobile-menu a { text-decoration: none; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; padding: 15px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .mobile-menu-cta { margin-top: auto; padding: 14px 18px; border: 0; border-radius: 8px; background: var(--ink); color: white; text-align: center; font-family: var(--font-body); font-size: 1rem; }

.hero { min-height: 680px; position: relative; overflow: hidden; display: flex; align-items: stretch; }
.hero-image { position: absolute; inset: 0; background: url('assets/hero-desktop.webp') center center / cover no-repeat; }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,244,237,.82) 0%, rgba(247,244,237,.39) 46%, rgba(20,25,29,.04) 72%); }
.hero-wrap { position: relative; z-index: 1; display: flex; align-items: center; padding-top: 38px; padding-bottom: 38px; }
.hero-card { width: min(620px, 62%); padding: 48px 50px; border-radius: 18px; background: rgba(255,255,255,.89); border: 1px solid rgba(255,255,255,.74); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.eyebrow, .section-label { font-family: var(--font-display); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--copper-dark); }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { color: var(--ink-soft); }
.eyebrow span::before { content: ''; display: inline-block; width: 22px; height: 1px; background: var(--copper); margin-right: 12px; vertical-align: middle; }
.hero h1 { margin: 18px 0 19px; font-family: var(--font-display); font-size: clamp(3rem, 5.2vw, 5.4rem); line-height: .97; letter-spacing: -.055em; font-weight: 600; max-width: 9ch; }
.hero h1 span { display: block; color: var(--copper-dark); font-size: .48em; line-height: 1.08; letter-spacing: -.025em; margin-top: 15px; max-width: 14ch; }
.hero-location { margin: 0; font-size: 1.13rem; font-weight: 600; max-width: 36ch; }
.hero-platform { margin: 8px 0 0; color: var(--ink-soft); font-size: 1.02rem; max-width: 48ch; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 11px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 46px; padding: 11px 18px; border-radius: 7px; font-weight: 700; font-size: .94rem; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.button:hover { transform: translateY(-1px); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); box-shadow: 0 9px 24px rgba(28,33,40,.2); }
.button-light { background: rgba(255,255,255,.7); border: 1px solid rgba(28,33,40,.22); }
.button-light:hover { background: white; }
.button-copper { background: var(--copper); color: white; }
.button-copper:hover { background: var(--copper-dark); box-shadow: 0 9px 24px rgba(201,126,42,.26); }

.section-label { margin-bottom: 18px; }
.section-label.on-dark { color: #F4B86E; }
h2, h3 { font-family: var(--font-display); margin: 0; }
h2 { font-size: clamp(2.25rem, 4vw, 4.15rem); line-height: 1.03; letter-spacing: -.045em; font-weight: 600; }
h3 { line-height: 1.15; letter-spacing: -.02em; }
p { font-size: 1.04rem; }
.lead { font-size: 1.35rem; line-height: 1.52; color: var(--ink); }
.intro { background: var(--paper); }
.intro h2 { max-width: 13ch; }
.intro p { color: var(--ink-soft); max-width: 65ch; }

.support { background: var(--cream); }
.two-col { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 76px; align-items: center; }
.section-copy h2 { max-width: 12ch; margin-bottom: 28px; }
.section-copy p { color: var(--ink-soft); }
.plain-promise { margin: 29px 0 22px; padding-left: 18px; border-left: 3px solid var(--copper); font-family: var(--font-display); font-weight: 600; line-height: 1.55; }
.plain-promise span::before, .plain-promise span::after { content: ' · '; color: var(--copper); }
.text-link { display: inline-flex; gap: 7px; align-items: center; margin-top: 7px; color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(28,33,40,.34); padding-bottom: 2px; }
.text-link:hover span { transform: translateX(3px); }
.text-link span { transition: transform .16s ease; }
.support-card { border-radius: 18px; background: var(--paper); border: 1px solid var(--line); padding: 34px; box-shadow: 0 18px 54px rgba(28,33,40,.08); }
.card-kicker { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 11px 0 11px 30px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 10px; color: var(--copper-dark); font-weight: 700; }
.support-note { margin-top: 23px; border-radius: 9px; background: var(--cream); padding: 13px 15px; font-size: .91rem; font-weight: 700; display: flex; justify-content: space-between; gap: 16px; }
.support-note span { color: var(--teal); }

.platforms { background: var(--ink); color: white; }
.platforms-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.platforms-head h2 { max-width: 13ch; }
.platforms-head > p { color: rgba(255,255,255,.72); max-width: 34ch; font-size: 1.13rem; margin: 0 0 8px; }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.platform-card { border: 1px solid var(--line-light); border-radius: 14px; padding: 28px; background: rgba(255,255,255,.055); }
.platform-card > span { color: #F4B86E; font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .12em; }
.platform-card h3 { margin-top: 30px; font-size: 1.42rem; }
.platform-card p { color: rgba(255,255,255,.67); margin-bottom: 0; }
.platforms-bottom { margin-top: 44px; max-width: 790px; }
.platforms-bottom > p { color: rgba(255,255,255,.74); }
.platform-close { font-family: var(--font-display); font-size: 1.34rem; font-weight: 600; margin: 23px 0; }

.plan { background: var(--panel); padding: 74px 0; }
.plan-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.plan h2 { max-width: 11ch; font-size: clamp(2rem,3.4vw,3.5rem); }
.plan p { color: var(--ink-soft); margin-top: 0; }

.trust { background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.trust-title { position: sticky; top: 110px; }
.trust-title h2 { max-width: 10ch; }
.years { margin-top: 50px; font-family: var(--font-display); font-size: 5.6rem; line-height: .9; font-weight: 600; color: var(--copper-dark); letter-spacing: -.06em; }
.years span { display: block; margin-top: 12px; color: var(--ink-soft); font-size: .94rem; letter-spacing: .02em; line-height: 1.3; font-weight: 600; }
.trust-copy p { color: var(--ink-soft); font-size: 1.08rem; }
.trust-copy p:first-child { margin-top: 0; }
.trust-copy h3 { margin-top: 36px; font-size: 1.6rem; }
.ai-line { margin-top: 30px; padding: 20px 22px; border-radius: 12px; background: var(--cream); color: var(--ink) !important; font-family: var(--font-display); font-weight: 500; }

.pricing { background: #F8F7F3; }
.pricing-head { max-width: 760px; }
.pricing-head h2 { max-width: 13ch; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
.price-card { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 28px; min-height: 300px; display: flex; flex-direction: column; }
.price-card.featured { border-top: 4px solid var(--copper); padding-top: 25px; }
.price-type { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--copper-dark); }
.price-card h3 { margin-top: 22px; font-size: 1.35rem; }
.price { font-family: var(--font-display); font-size: 3rem; letter-spacing: -.055em; line-height: 1; margin: 20px 0 9px; font-weight: 600; }
.price span { font-family: var(--font-body); font-size: .94rem; letter-spacing: 0; color: var(--ink-soft); margin-left: 4px; }
.price-word { font-size: 2rem; letter-spacing: -.035em; }
.price-card p { color: var(--ink-soft); margin-top: 8px; }
.price-card .text-link { margin-top: auto; align-self: flex-start; }
.pricing-note { color: var(--ink-soft); font-size: .92rem; margin: 24px 2px 0; }

.final-cta { background: #20262D; color: white; }
.final-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.final-grid h2 { max-width: 12ch; }
.final-copy p { color: rgba(255,255,255,.72); }
.final-copy p:first-child { margin-top: 0; }
.final-location { margin: 25px 0 22px; font-family: var(--font-display); font-weight: 600; color: #F4D7B6; }

.site-footer { background: var(--paper); border-top: 1px solid var(--line); }
.footer-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: .88rem; }
.footer-wrap a { text-underline-offset: 3px; }

@media (max-width: 920px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-button { display: block; }
  .hero { min-height: 650px; }
  .hero-card { width: min(650px, 78%); }
  .two-col, .platforms-head, .trust-grid, .final-grid { grid-template-columns: 1fr; gap: 44px; }
  .trust-title { position: static; }
  .platform-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid article:last-child, .pricing-grid article:last-child { grid-column: 1 / -1; }
  .plan-wrap { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .wrap, .narrow-wrap { width: min(100% - 32px, 1120px); }
  .section { padding: 70px 0; }
  .nav-wrap { height: 68px; }
  .mobile-menu { inset: 68px 0 0; }
  .hero { min-height: 760px; align-items: flex-end; }
  .hero-image { background-image: url('assets/hero-mobile.webp'); background-position: center 46%; }
  .hero-image::after { background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(244,240,231,.16) 38%, rgba(244,240,231,.9) 70%, rgba(244,240,231,.98) 100%); }
  .hero-wrap { align-items: flex-end; padding: 28px 0 28px; }
  .hero-card { width: 100%; padding: 28px 24px; border-radius: 15px; background: rgba(255,255,255,.91); backdrop-filter: blur(11px); }
  .eyebrow { font-size: .68rem; gap: 8px; }
  .eyebrow span::before { width: 14px; margin-right: 8px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4rem); max-width: 10ch; margin-top: 14px; }
  .hero h1 span { font-size: .46em; margin-top: 10px; }
  .hero-location { font-size: 1rem; }
  .hero-platform { font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  h2 { font-size: clamp(2.05rem, 10vw, 3.2rem); }
  .lead { font-size: 1.18rem; }
  .two-col { gap: 38px; }
  .support-card { padding: 25px; }
  .support-note { flex-direction: column; gap: 3px; }
  .platform-grid, .pricing-grid { grid-template-columns: 1fr; }
  .platform-grid article:last-child, .pricing-grid article:last-child { grid-column: auto; }
  .platform-card { padding: 24px; }
  .platform-card h3 { margin-top: 22px; }
  .years { font-size: 4.4rem; margin-top: 32px; }
  .footer-wrap { min-height: 100px; flex-direction: column; justify-content: center; gap: 3px; text-align: center; }
}

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