:root {
  --ink: #082f3f;
  --ink-2: #16495a;
  --muted: #5f7480;
  --line: #dce8e7;
  --paper: #ffffff;
  --mist: #f4f8f7;
  --mist-2: #eef6f3;
  --teal: #008b78;
  --teal-dark: #006f61;
  --teal-soft: #dff4ef;
  --lime: #7ac943;
  --lime-soft: #eef9e7;
  --amber: #a56306;
  --amber-soft: #fff4df;
  --shadow-sm: 0 10px 30px rgba(8, 47, 63, .07);
  --shadow-lg: 0 28px 80px rgba(8, 47, 63, .13);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

* { 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(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin: 0 auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-muted { background: var(--mist); }
.section-dark { background: var(--ink); color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 14px; padding: 7px 11px;
  border: 1px solid #c8e8df; background: var(--teal-soft); color: var(--teal-dark);
  border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; }
.display { margin: 0; max-width: 820px; font-size: clamp(2.75rem, 6vw, 5.35rem); line-height: .98; letter-spacing: -.055em; }
h1, h2, h3 { text-wrap: balance; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.05; letter-spacing: -.04em; }
h3 { margin: 0; font-size: 1.12rem; line-height: 1.25; }
p { margin: 0; }
.lede { margin-top: 24px; max-width: 760px; font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--ink-2); }
.section-dark .lede, .section-dark .muted { color: #c9dadd; }
.muted { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 50; height: 76px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,232,231,.85);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 900; font-size: 1.14rem; letter-spacing: -.025em; }
.brand img { width: 38px; height: 38px; border-radius: 11px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: .94rem; text-decoration: none; font-weight: 700; color: #345965; }
.nav-links a:hover { color: var(--teal-dark); }
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; border-radius: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 19px; border: 1px solid transparent; border-radius: 12px;
  font-weight: 850; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 12px 24px rgba(0,139,120,.22); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 16px 28px rgba(0,111,97,.24); }
.btn-secondary { border-color: #bed8d5; background: #fff; color: var(--ink); }
.btn-secondary:hover { background: var(--mist); }
.btn-light { background: #fff; color: var(--ink); }
.btn-sm { min-height: 40px; padding: 0 15px; font-size: .88rem; }
.btn-arrow::after { content: "→"; font-size: 1.1em; }

.hero {
  position: relative; overflow: hidden; padding: 92px 0 72px;
  background:
    radial-gradient(circle at 87% 12%, rgba(122,201,67,.13), transparent 26%),
    radial-gradient(circle at 67% 48%, rgba(0,139,120,.10), transparent 29%),
    linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -280px; bottom: -310px;
  border: 1px solid #dbece7; border-radius: 50%; box-shadow: 0 0 0 80px rgba(223,244,239,.38), 0 0 0 160px rgba(223,244,239,.2);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; gap: 58px; align-items: center; }
.hero-copy .display em { color: var(--teal); font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 16px; font-size: .88rem; color: var(--muted); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; font-weight: 750; color: #355b65; }
.trust-pill::before { content: "✓"; color: var(--teal); font-weight: 950; }

.product-visual { position: relative; }
.product-window { border: 1px solid #d6e5e3; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(1.1deg); }
.window-bar { height: 48px; padding: 0 17px; display: flex; align-items: center; gap: 7px; background: #f8fbfa; border-bottom: 1px solid #e5efed; }
.window-dot { width: 9px; height: 9px; border-radius: 50%; background: #c9d7d5; }
.window-title { margin-left: 10px; font-size: .76rem; font-weight: 800; color: #6a7e85; }
.dashboard-ui { padding: 22px; }
.ui-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.ui-title { font-weight: 900; font-size: 1rem; letter-spacing: -.02em; }
.ui-filter { border: 1px solid #dce8e7; background: var(--mist); padding: 7px 10px; border-radius: 8px; font-size: .72rem; color: #567079; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px; }
.metric { padding: 14px; border: 1px solid #dfebe9; border-radius: 12px; background: #fff; }
.metric-label { font-size: .69rem; color: #70848b; font-weight: 700; }
.metric-value { margin-top: 3px; font-size: 1.25rem; font-weight: 950; letter-spacing: -.035em; }
.metric small { font-size: .62rem; color: var(--teal-dark); font-weight: 800; }
.data-card { border: 1px solid #dfebe9; border-radius: 13px; overflow: hidden; }
.data-head, .data-row { display: grid; grid-template-columns: 1.35fr .8fr .8fr; align-items: center; padding: 10px 12px; }
.data-head { background: #f6faf9; color: #687d84; font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.data-row { border-top: 1px solid #edf2f1; font-size: .73rem; }
.data-row strong { font-size: .79rem; }
.status-chip { position: absolute; right: -18px; bottom: 42px; background: var(--ink); color: #fff; padding: 12px 14px; border-radius: 12px; box-shadow: var(--shadow-sm); font-size: .76rem; font-weight: 800; transform: rotate(-2deg); }
.status-chip b { color: #a9e77f; }

.logo-strip { padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfdfc; }
.logo-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 30px; color: #58717a; font-size: .87rem; font-weight: 750; text-align: center; }
.logo-strip strong { color: var(--ink); }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.problem-list { margin: 30px 0 0; display: grid; gap: 16px; }
.problem { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; }
.icon-box { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--amber-soft); color: var(--amber); font-weight: 950; }
.problem p { margin-top: 5px; color: var(--muted); font-size: .94rem; }

.compare { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.compare-row { display: grid; grid-template-columns: 1.15fr 1fr 1fr; }
.compare-row > div { padding: 15px 17px; border-top: 1px solid #edf2f1; }
.compare-row:first-child > div { border-top: 0; }
.compare-row > div + div { border-left: 1px solid #edf2f1; }
.compare-head { background: #f7faf9; font-weight: 900; font-size: .86rem; }
.compare-label { font-weight: 800; font-size: .84rem; }
.compare-bad { color: #755d4b; font-size: .83rem; }
.compare-good { color: var(--teal-dark); font-size: .83rem; font-weight: 700; background: #fbfefd; }

.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 42px; }
.section-head p { max-width: 570px; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { position: relative; min-height: 250px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.step-num { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 900; }
.step h3 { margin-top: 24px; }
.step p { margin-top: 10px; color: var(--muted); font-size: .92rem; }
.step-tag { position: absolute; left: 24px; bottom: 22px; font-size: .72rem; font-weight: 800; color: var(--teal-dark); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.feature-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: var(--teal-soft); color: var(--teal-dark); font-weight: 950; }
.feature h3 { margin-top: 20px; }
.feature p { margin-top: 9px; color: var(--muted); font-size: .9rem; }

.proof-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 50px; align-items: center; }
.screenshot-frame { border: 1px solid #dbe6e5; padding: 10px; border-radius: 20px; background: #fff; box-shadow: var(--shadow-lg); }
.screenshot-frame img { border-radius: 13px; }
.bullet-checks { display: grid; gap: 14px; margin-top: 26px; }
.bullet-check { display: grid; grid-template-columns: 25px 1fr; gap: 11px; color: #345762; }
.check-mark { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; background: var(--lime-soft); color: #4e9722; font-weight: 950; }

.scope-card { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #d7e5e3; border: 1px solid #d7e5e3; border-radius: var(--radius-lg); overflow: hidden; }
.scope-side { padding: 32px; background: #fff; }
.scope-side.good { background: #f8fdfb; }
.scope-side h3 { font-size: 1.25rem; }
.scope-side ul { padding: 0; margin: 20px 0 0; list-style: none; display: grid; gap: 11px; }
.scope-side li { position: relative; padding-left: 26px; color: #4a6670; font-size: .92rem; }
.scope-side.good li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 950; }
.scope-side:not(.good) li::before { content: "–"; position: absolute; left: 3px; color: #9b6a31; font-weight: 950; }

.pricing-wrap { display: grid; grid-template-columns: .88fr 1.12fr; gap: 52px; align-items: center; }
.price-card { position: relative; padding: 34px; background: #fff; color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.price-kicker { font-size: .78rem; font-weight: 900; color: var(--teal-dark); text-transform: uppercase; letter-spacing: .08em; }
.price { display: flex; align-items: end; gap: 9px; margin-top: 8px; }
.price strong { font-size: 3.35rem; line-height: 1; letter-spacing: -.055em; }
.price span { color: var(--muted); margin-bottom: 5px; font-weight: 700; }
.price-sub { margin-top: 11px; color: var(--muted); font-size: .9rem; }
.price-list { margin: 24px 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.price-list li { display: flex; gap: 9px; color: #365862; font-size: .92rem; }
.price-list li::before { content: "✓"; color: var(--teal); font-weight: 950; }
.price-card .btn { width: 100%; }
.guarantee { margin-top: 14px; display: flex; gap: 10px; align-items: start; padding: 12px; border-radius: 12px; background: var(--lime-soft); color: #3d6f26; font-size: .79rem; font-weight: 700; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 20px 38px 20px 0; position: relative; font-weight: 850; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 17px; font-size: 1.35rem; color: var(--teal); }
details[open] summary::after { content: "−"; }
details p { padding: 0 36px 20px 0; color: var(--muted); font-size: .92rem; }

.final-cta { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 42px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #083a49, #006f61); color: #fff; box-shadow: var(--shadow-lg); }
.final-cta h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.final-cta p { margin-top: 10px; color: #cfe0df; }

.site-footer { padding: 54px 0 30px; background: #061f29; color: #c8d7da; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 42px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 14px; max-width: 400px; font-size: .88rem; color: #9eb4ba; }
.footer-col h3 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col a { display: block; margin-top: 9px; color: #abc0c5; text-decoration: none; font-size: .87rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 22px; border-top: 1px solid #183842; font-size: .78rem; color: #78949c; }

/* Inner pages */
.inner-hero { padding: 70px 0 48px; background: var(--mist); border-bottom: 1px solid var(--line); }
.inner-hero h1 { margin: 0; max-width: 820px; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.05em; }
.inner-hero p { margin-top: 18px; max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.prose { padding: 60px 0 88px; }
.prose h2 { margin-top: 44px; font-size: 1.65rem; letter-spacing: -.025em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 26px; }
.prose p, .prose li { color: #45636c; }
.prose p { margin-top: 12px; }
.prose ul, .prose ol { margin: 14px 0 0; padding-left: 22px; }
.prose li + li { margin-top: 7px; }
.prose .notice { margin: 24px 0; padding: 18px; border-radius: 14px; background: var(--amber-soft); border: 1px solid #f0dbb7; color: #6c532f; }
.prose .note-good { background: var(--teal-soft); border-color: #c6e7df; color: #245d55; }
.inline-link { color: var(--teal-dark); font-weight: 800; }
.legal-meta { margin-top: 28px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--mist); font-size: .9rem; }
.legal-meta div + div { margin-top: 6px; }

.checkout-warning {
  display: none; position: fixed; inset: auto 18px 18px auto; z-index: 100;
  width: min(420px, calc(100% - 36px)); padding: 17px 46px 17px 17px;
  border: 1px solid #f0d39f; border-radius: 14px; background: #fff8ea; box-shadow: var(--shadow-lg); color: #684b1f; font-size: .85rem;
}
.checkout-warning.is-visible { display: block; }
.checkout-warning button { position: absolute; right: 10px; top: 8px; border: 0; background: transparent; font-size: 1.25rem; cursor: pointer; }

@media (max-width: 980px) {
  .hero-grid, .split, .proof-grid, .pricing-wrap, .faq-grid { grid-template-columns: 1fr; }
  .product-visual { max-width: 680px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .site-header, .nav { height: 68px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; left: 20px; right: 20px; top: 67px; display: none; padding: 16px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { display: grid; gap: 6px; }
  .nav-links a { padding: 10px; border-radius: 9px; }
  .nav-links .btn { margin-top: 6px; }
  .hero { padding-top: 70px; }
  .section { padding: 72px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 16px; }
  .steps, .feature-grid, .scope-card { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: .95fr 1fr 1fr; }
  .compare-row > div { padding: 12px 10px; font-size: .75rem; }
  .final-cta { grid-template-columns: 1fr; padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom > * + * { margin-top: 8px; }
  .status-chip { right: 4px; bottom: 26px; }
}

@media (max-width: 520px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-ui { padding: 14px; }
  .data-head, .data-row { grid-template-columns: 1.3fr .7fr .7fr; padding: 9px; }
  .steps, .feature-grid { gap: 12px; }
  .price-card { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .compare { overflow-x: auto; }
  .compare-row { min-width: 620px; }
}

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


/* Bilingual navigation + language gateway */
.lang-switch {
  display: inline-flex; align-items: center; gap: 3px; padding: 3px;
  border: 1px solid var(--line); border-radius: 999px; background: #f7faf9;
}
.lang-switch a {
  min-width: 34px; padding: 5px 8px; border-radius: 999px; text-align: center;
  color: #607981; font-size: .72rem !important; font-weight: 900 !important; letter-spacing: .04em;
}
.lang-switch a:hover { background: #fff; color: var(--teal-dark); }
.lang-switch a.is-active { background: var(--ink); color: #fff; }

.sales-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px;
}
.sales-proof-item { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.sales-proof-item strong { display: block; font-size: 1.25rem; letter-spacing: -.03em; }
.sales-proof-item span { display: block; margin-top: 4px; color: var(--muted); font-size: .8rem; }

.audit-mock { border: 1px solid #dbe6e5; border-radius: 20px; background: #fff; box-shadow: var(--shadow-lg); overflow: hidden; }
.audit-mock-top { padding: 16px 18px; background: #f7faf9; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.audit-mock-title { font-weight: 900; }
.audit-mock-badge { padding: 5px 9px; border-radius: 999px; background: var(--teal-soft); color: var(--teal-dark); font-size: .7rem; font-weight: 900; }
.audit-table { width: 100%; border-collapse: collapse; font-size: .72rem; }
.audit-table th, .audit-table td { padding: 10px 12px; border-bottom: 1px solid #edf2f1; text-align: left; white-space: nowrap; }
.audit-table th { color: #6c8188; background: #fbfdfc; font-size: .65rem; text-transform: uppercase; letter-spacing: .03em; }
.audit-table td { color: #3f5d66; }
.audit-table td:last-child { white-space: normal; }
.audit-negative { color: #8b4f42 !important; font-weight: 800; }
.audit-positive { color: var(--teal-dark) !important; font-weight: 800; }

.gateway { min-height: 100vh; display: grid; place-items: center; padding: 32px; background: radial-gradient(circle at 50% 0%, rgba(0,139,120,.10), transparent 35%), var(--mist); }
.gateway-card { width: min(680px, 100%); padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-lg); text-align: center; }
.gateway-card .brand { justify-content: center; font-size: 1.35rem; }
.gateway-card h1 { margin: 28px 0 0; font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1.02; letter-spacing: -.045em; }
.gateway-card p { margin: 16px auto 0; max-width: 520px; color: var(--muted); }
.gateway-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.gateway-note { margin-top: 18px !important; font-size: .78rem; }

.mini-note { margin-top: 15px; color: var(--muted); font-size: .8rem; }

@media (max-width: 980px) {
  .sales-proof { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .lang-switch { margin: 8px 10px; width: max-content; }
  .gateway-actions { grid-template-columns: 1fr; }
  .audit-mock { overflow-x: auto; }
  .audit-table { min-width: 680px; }
}

/* Real product screenshots */
.real-ui-window { transform: none; }
.hero-real-shot { display: block; background: #f0f0f1; }
.hero-real-shot img { width: 100%; height: auto; }
.real-chip { right: -10px; bottom: 28px; transform: none; }

.product-tour { background: #fff; }
.tour-head { margin-bottom: 50px; }
.tour-list { display: grid; gap: 34px; }
.tour-item {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: 42px; align-items: center;
  padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #fbfdfc); box-shadow: var(--shadow-sm);
}
.tour-item.tour-reverse { grid-template-columns: 1.28fr .72fr; }
.tour-item.tour-reverse .tour-copy { order: 2; }
.tour-item.tour-reverse .tour-media { order: 1; }
.tour-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.tour-number {
  width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 40px;
  border-radius: 11px; background: var(--ink); color: #fff; font-size: .8rem; font-weight: 950;
}
.tour-kicker { color: var(--teal-dark); font-size: .76rem; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; }
.tour-copy h3 { font-size: clamp(1.45rem, 2.8vw, 2.15rem); letter-spacing: -.035em; }
.tour-copy p { margin-top: 14px; color: var(--muted); }
.tour-open { display: inline-flex; margin-top: 20px; color: var(--teal-dark); font-weight: 850; text-decoration: none; }
.tour-open::after { content: "↗"; margin-left: 7px; }
.tour-open:hover { text-decoration: underline; }
.tour-media {
  position: relative; display: grid; place-items: center; min-height: 340px; padding: 18px 18px 46px;
  overflow: hidden; border: 1px solid #d7e3e1; border-radius: 18px; background: #f0f0f1;
  box-shadow: 0 16px 40px rgba(8,47,63,.10); text-decoration: none;
}
.tour-media img { width: auto; max-width: 100%; max-height: 520px; object-fit: contain; border-radius: 6px; }
.tour-caption {
  position: absolute; left: 18px; right: 18px; bottom: 13px; color: #61767e;
  font-size: .76rem; font-weight: 800; text-align: center;
}
.guarantee { flex-wrap: wrap; }
.guarantee-link { color: inherit; font-weight: 900; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 980px) {
  .tour-item, .tour-item.tour-reverse { grid-template-columns: 1fr; gap: 24px; }
  .tour-item.tour-reverse .tour-copy, .tour-item.tour-reverse .tour-media { order: initial; }
  .tour-media { min-height: 260px; }
  .real-chip { right: 10px; bottom: 18px; }
}

@media (max-width: 620px) {
  .tour-item { padding: 18px; }
  .tour-media { min-height: 220px; padding: 10px 10px 42px; }
  .tour-media img { max-height: 420px; }
  .tour-caption { left: 10px; right: 10px; }
  .real-chip { position: static; display: inline-block; margin-top: 10px; }
}


/* Early-access contact options */
.contact-choice {
  margin-top: 30px; padding: 26px; border: 1px solid var(--line); border-radius: 18px;
  background: #fff; box-shadow: var(--shadow-sm);
}
.contact-choice h2 { margin: 0; font-size: 1.3rem; letter-spacing: -.025em; }
.contact-choice > p { margin: 10px 0 0; color: var(--muted); }
.contact-choice .hero-actions { margin-top: 20px; }
.email-copy-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 14px;
}
.email-copy-row code {
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--mist); color: var(--ink); font: inherit; font-weight: 800;
}
.btn-quiet { background: transparent; color: var(--teal-dark); border: 1px solid var(--line); }
.btn-quiet:hover { background: var(--mist); }
.copy-status { min-height: 1.3em; margin: 9px 0 0 !important; color: var(--teal-dark) !important; font-size: .78rem; font-weight: 800; }

/* Early-access form */
.early-access-hero { padding-bottom: 46px; }
.form-section { padding-top: 26px; }
.form-layout {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: start;
}
.form-intro { position: sticky; top: 100px; }
.form-intro h2 { margin: 8px 0 14px; }
.form-benefits { display: grid; gap: 10px; margin: 24px 0; color: var(--ink); font-weight: 750; }
.early-access-form {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow-sm);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; margin-bottom: 18px; color: var(--ink); font-weight: 800; }
.form-field > span { font-size: .9rem; }
.form-field small { color: var(--muted); font-weight: 650; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid #c9d9d7; border-radius: 11px; background: #fff; color: var(--ink);
  padding: 12px 13px; outline: none; transition: border-color .16s ease, box-shadow .16s ease;
}
.form-field textarea { resize: vertical; min-height: 126px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(21, 146, 140, .12);
}
.form-consent {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 5px 0 22px;
  color: var(--muted); font-size: .86rem; line-height: 1.55;
}
.form-consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--teal); }
.form-consent a { color: var(--teal-dark); font-weight: 800; }
.form-submit { width: 100%; justify-content: center; }
.form-submit[disabled] { opacity: .68; cursor: wait; transform: none; }
.form-footnote { margin: 10px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }
.form-status { border-radius: 11px; padding: 12px 14px; margin-bottom: 18px; font-size: .86rem; font-weight: 750; }
.form-status-error { background: #fff2f0; border: 1px solid #f1c5bf; color: #8c3126; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.success-card { text-align: center; padding-top: 26px; padding-bottom: 26px; }
.success-card .hero-actions { justify-content: center; }
.success-icon {
  display: inline-grid; place-items: center; width: 54px; height: 54px; margin-bottom: 18px;
  border-radius: 50%; background: #def4ef; color: var(--teal-dark); font-size: 1.55rem; font-weight: 900;
}
@media (max-width: 820px) {
  .form-layout { grid-template-columns: 1fr; gap: 24px; }
  .form-intro { position: static; }
}
@media (max-width: 620px) {
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .early-access-form { padding: 20px; }
}

/* v7.1 — Early-access form visual polish */
.early-access-hero {
  padding-top: 62px;
  padding-bottom: 42px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0,139,120,.08), transparent 25%),
    linear-gradient(180deg, #f7fbfa 0%, #f3f8f7 100%);
}
.early-access-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4rem);
}
.early-access-hero p {
  max-width: 720px;
  line-height: 1.75;
}
.form-section {
  padding: 58px 0 96px;
  background: #fbfdfc;
}
.form-layout {
  width: min(100%, 1100px);
  margin: 0 auto;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 54px;
}
.form-intro {
  padding-top: 10px;
}
.form-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.form-intro .lede {
  margin-top: 16px;
  max-width: 470px;
  font-size: 1.04rem;
  line-height: 1.72;
}
.form-benefits {
  gap: 12px;
  margin: 26px 0 22px;
  font-size: .96rem;
}
.form-intro .small-note {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.65;
}
.early-access-form {
  position: relative;
  border-color: #d4e3e0;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 22px 58px rgba(8, 47, 63, .10);
}
.early-access-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}
.field-grid {
  gap: 16px;
}
.form-field {
  gap: 7px;
  margin-bottom: 17px;
}
.form-field > span {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: .88rem;
  line-height: 1.4;
}
.form-field > span > strong {
  color: var(--teal-dark);
}
.form-field small {
  font-size: .76rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #c7d8d5;
  border-radius: 11px;
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
  line-height: 1.4;
  box-shadow: inset 0 1px 1px rgba(8,47,63,.025);
}
.form-field input,
.form-field select {
  min-height: 48px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a9ba1;
  opacity: 1;
}
.form-field select {
  cursor: pointer;
}
.form-field textarea {
  min-height: 132px;
  line-height: 1.55;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #aebfbc;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,139,120,.11);
}
.form-consent {
  margin: 3px 0 22px;
  padding: 14px 15px;
  border: 1px solid #dce9e6;
  border-radius: 12px;
  background: #f7fbfa;
  color: #526b73;
  font-size: .83rem;
}
.form-consent input {
  margin-top: 2px;
  cursor: pointer;
}
.form-submit {
  min-height: 52px;
  font-size: .96rem;
}
.form-footnote {
  margin-top: 12px;
  font-size: .75rem;
}
.form-status {
  border-radius: 12px;
  padding: 13px 14px;
}

@media (max-width: 920px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 720px;
  }
  .form-intro {
    position: static;
    padding-top: 0;
  }
  .form-intro .lede,
  .form-intro .small-note {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .early-access-hero {
    padding-top: 44px;
    padding-bottom: 34px;
  }
  .form-section {
    padding-top: 38px;
    padding-bottom: 68px;
  }
  .early-access-form {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .early-access-form::before {
    border-radius: 16px 16px 0 0;
  }
  .form-consent {
    padding: 13px;
  }
}
