:root {
  --navy-900: #0b1526;
  --navy-800: #111f38;
  --navy-700: #1a2d4d;
  --navy-600: #27406b;
  --ink: #14213d;
  --body: #47566e;
  --muted: #6b7a92;
  --line: #e2e6ee;
  --surface: #ffffff;
  --canvas: #f7f8fb;
  --sand: #fbf9f5;
  --accent: #f26522;
  --accent-dark: #d3520f;
  --accent-soft: #fff1e8;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(17, 31, 56, .06), 0 4px 12px rgba(17, 31, 56, .05);
  --shadow-md: 0 10px 30px rgba(17, 31, 56, .10);
  --shadow-lg: 0 30px 70px rgba(11, 21, 38, .18);
  --font-head: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1.1em; }
a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.2em; }
li { margin-bottom: .45em; }

.wrap { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.section-title { text-align: center; max-width: 40ch; margin-inline: auto; }
.section-sub { text-align: center; max-width: 62ch; margin: 0 auto 2.5rem; color: var(--muted); font-size: 1.05rem; }
.eyebrow { font-family: var(--font-head); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.lead { font-size: 1.18rem; color: var(--body); max-width: 68ch; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .6rem 1rem; z-index: 100; border-radius: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .68rem 1.25rem; border-radius: 10px; border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(242,101,34,.28); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; }
.btn-outline { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-outline:hover { border-color: var(--navy-600); color: var(--ink); }
.btn-outline-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-ghost { color: var(--ink); }
.btn-lg { padding: .9rem 1.6rem; font-size: 1rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .85rem 0; }
.brand { display: flex; align-items: center; gap: .55rem; color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: var(--navy-800); color: #fff; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.main-nav { display: none; gap: 1.6rem; }
.main-nav a { font-size: .93rem; font-weight: 500; color: var(--body); }
.main-nav a:hover { color: var(--ink); }
.header-cta { display: none; gap: .4rem; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 4px; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav { display: flex; flex-direction: column; gap: .1rem; padding: .5rem 1.25rem 1.25rem; border-top: 1px solid var(--line); }
.mobile-nav a { padding: .6rem 0; font-weight: 500; color: var(--ink); }
.mobile-cta { margin-top: .6rem; }
@media (min-width: 940px) {
  .main-nav, .header-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Hero */
.hero { position: relative; background: linear-gradient(165deg, var(--navy-900), var(--navy-700) 60%, var(--navy-600)); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto -10% -40% 40%; height: 60%; background: radial-gradient(circle at center, rgba(242,101,34,.35), transparent 65%); filter: blur(30px); }
.hero-inner { position: relative; z-index: 1; display: grid; gap: 3rem; padding: 4.5rem 0 5rem; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.hero-note { margin-top: 1rem; font-size: .85rem; color: rgba(255,255,255,.6); }
.pill { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .8rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.07); font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.85); margin-bottom: 1.4rem; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.14); aspect-ratio: 4/3; object-fit: cover; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.05fr .95fr; align-items: center; padding: 6rem 0 7rem; } }

/* Page header (inner pages) */
.page-head { background: var(--navy-900); color: #fff; padding: 3.5rem 0 3.8rem; }
.page-head h1 { color: #fff; max-width: 20ch; }
.page-head .lead { color: rgba(255,255,255,.75); }
.page-head .hero-actions { margin-top: 1.5rem; }

/* Breadcrumbs */
.crumbs { padding: 1rem 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; font-size: .82rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }
.crumbs a { color: var(--muted); }

/* Trust strip */
.trust { border-bottom: 1px solid var(--line); background: var(--sand); }
.trust-inner { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: center; padding: 1.4rem 0; font-size: .86rem; font-weight: 600; color: var(--muted); font-family: var(--font-head); }
.trust-inner span { display: inline-flex; align-items: center; gap: .45rem; }

/* Cards / bento */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; display: block; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .35rem; }
.card p { margin: 0; font-size: .95rem; color: var(--body); }
.card-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--navy-800); color: #fff; margin-bottom: 1rem; }
.card-link { margin-top: .9rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--accent-dark); }

.bento { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .bento { grid-template-columns: repeat(3, 1fr); } .bento .span-2 { grid-column: span 2; } }
.bento .card.feature-wide { background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); color: #fff; border-color: transparent; }
.bento .card.feature-wide h3, .bento .card.feature-wide p { color: #fff; }
.bento .card.feature-wide .card-icon { background: rgba(255,255,255,.15); }

/* Zigzag */
.zig { display: grid; gap: 2rem; align-items: center; padding: 2.5rem 0; }
@media (min-width: 860px) { .zig { grid-template-columns: 1fr 1fr; gap: 4rem; } .zig.rev > *:first-child { order: 2; } }
.zig-panel { background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; }
.zig-panel ul { margin: 0; padding-left: 1.1rem; }

.checks { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.checks li { position: relative; padding-left: 1.8rem; margin-bottom: .6rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 8px; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent); transform: rotate(-45deg); }

/* Steps */
.steps { counter-reset: step; }
.step-num { font-family: var(--font-head); font-weight: 800; color: var(--accent); font-size: .95rem; }

/* Pricing */
.plans { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; background: #fff; box-shadow: var(--shadow-sm); position: relative; }
.plan.featured { border: 2px solid var(--accent); box-shadow: var(--shadow-md); }
.plan .badge { position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--font-head); font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 999px; letter-spacing: .04em; }
.price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--ink); line-height: 1; }
.price small { font-size: .9rem; font-weight: 500; color: var(--muted); }

/* Tables */
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
th, td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--canvas); }
tbody tr:hover { background: var(--canvas); }
.yes { color: #1a7f4b; font-weight: 700; }
.no { color: #b4bcc9; }

/* FAQ */
.faq { max-width: 780px; margin: 2rem auto 0; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: .7rem; background: #fff; }
.faq summary { font-family: var(--font-head); font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq-a { padding-top: .7rem; color: var(--body); font-size: .96rem; }
.faq-a p { margin: 0; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy-900), var(--navy-600)); color: #fff; }
.cta-inner { display: grid; gap: 1.5rem; padding: 3.5rem 0; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: .3rem; }
.cta-band p { color: rgba(255,255,255,.72); margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
@media (min-width: 860px) { .cta-inner { grid-template-columns: 1.4fr auto; } }

/* Article */
.article { max-width: 760px; margin-inline: auto; }
.article h2 { margin-top: 2.4rem; font-size: 1.6rem; }
.article h3 { margin-top: 1.8rem; font-size: 1.15rem; }
.article ul, .article ol { margin-bottom: 1.2rem; }
.article table { font-size: .9rem; }
.article strong { color: var(--ink); }
.meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1.5rem 0; }
.tag { font-size: .74rem; font-weight: 600; font-family: var(--font-head); background: var(--accent-soft); color: var(--accent-dark); padding: .25rem .6rem; border-radius: 999px; }
.callout { border-left: 3px solid var(--accent); background: var(--sand); padding: 1.2rem 1.4rem; border-radius: 0 12px 12px 0; margin: 2rem 0; }
.callout p:last-child { margin-bottom: 0; }

/* Footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.62); padding: 3.5rem 0 1.5rem; font-size: .92rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; } }
.site-footer h3 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: rgba(255,255,255,.62); }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; display: block; margin-bottom: .8rem; }
.footer-brand p { max-width: 34ch; margin-bottom: 1.2rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.2rem; font-size: .84rem; }
.footer-bottom p { margin: 0; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Forms */
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .35rem; }
.field input, .field textarea, .field select { width: 100%; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: .95rem; background: #fff; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
