:root {
  --ink: #0f1b2d;
  --ink-2: #33415a;
  --muted: #5d6a80;
  --cream: #fbf8f3;
  --sand: #f3ede3;
  --line: #e4ddd1;
  --amber: #f2a33a;
  --amber-deep: #d9861a;
  --brook: #1f6f78;
  --night: #0c1626;
  --night-2: #16243a;
  --radius: 14px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 22ch; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
.wrap { width: min(1120px, 100% - 32px); margin-inline: auto; }
.narrow { width: min(760px, 100% - 32px); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(251, 248, 243, .9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-row { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 600; font-size: 1.3rem; text-decoration: none; color: var(--ink); }
.logo-mark { width: 32px; height: 32px; color: var(--ink); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--ink-2); font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border-radius: 999px; background: var(--amber); color: var(--ink); font-weight: 600; text-decoration: none; border: 2px solid var(--amber); cursor: pointer; font: inherit; font-weight: 600; transition: background .15s, transform .15s; }
.btn:hover { background: var(--amber-deep); border-color: var(--amber-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: currentColor; }
.btn-ghost:hover { background: rgba(242, 163, 58, .12); border-color: var(--amber); }
.btn-small { padding: 9px 18px; font-size: .92rem; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero */
.hero { background: radial-gradient(1200px 500px at 85% -10%, #1d3350 0%, transparent 60%), var(--night); color: #fff; padding: 88px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--amber); font-weight: 600; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.hero h1 em { font-style: italic; color: var(--amber); }
.sub { font-size: 1.15rem; color: #c8d2e0; max-width: 56ch; margin-bottom: 28px; }
.hero .btn-ghost { color: #fff; }
.call { margin: 0; background: var(--night-2); border: 1px solid #253754; border-radius: 20px; padding: 20px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5); }
.call-head { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; font-size: .85rem; color: #9fb0c8; padding-bottom: 14px; border-bottom: 1px solid #253754; }
.call-head .co { margin-left: auto; color: #fff; font-weight: 500; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #3ecf8e; box-shadow: 0 0 0 4px rgba(62, 207, 142, .18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(62, 207, 142, 0); } }
.lines { list-style: none; margin: 14px 0; padding: 0; display: grid; gap: 10px; }
.lines li { padding: 10px 14px; border-radius: 12px; font-size: .95rem; max-width: 88%; }
.lines li span { display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; opacity: .7; margin-bottom: 2px; }
.lines .caller { background: #22324b; color: #e3e9f2; }
.lines .ai { background: rgba(242, 163, 58, .14); color: #fff; margin-left: auto; border: 1px solid rgba(242, 163, 58, .35); }
.call figcaption { font-size: .85rem; color: #3ecf8e; font-weight: 500; padding-top: 12px; border-top: 1px solid #253754; }

/* Sections */
.section { padding: 88px 0; }
.alt { background: var(--sand); }
.kicker { color: var(--brook); font-weight: 600; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .6em; }
.lead { font-size: 1.1rem; color: var(--ink-2); max-width: 52ch; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 32px; }
.tile { display: flex; flex-direction: column; gap: 6px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-decoration: none; color: var(--ink); min-height: 150px; }
.tile strong { font-family: var(--serif); font-size: 1.15rem; }
.tile span { color: var(--muted); font-size: .9rem; }
.tile b { margin-top: auto; font-size: .88rem; color: var(--brook); }
.tile b.soon { color: var(--muted); font-weight: 500; }
.tile.live { border-color: var(--amber); box-shadow: 0 10px 30px -18px rgba(217, 134, 26, .8); transition: transform .15s; }
.tile.live:hover { transform: translateY(-3px); }

.steps { list-style: none; padding: 0; margin: 36px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps li { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--amber); font-weight: 600; margin-bottom: 16px; }
.steps p, .card p { color: var(--ink-2); margin: 0; }

.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { padding: 10px 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 500; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.card { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--brook); }

/* ROI */
.dark { background: var(--night); color: #fff; }
.dark .kicker { color: var(--amber); }
.dark .lead { color: #c8d2e0; }
.calc { display: grid; gap: 16px; padding: 28px; background: var(--night-2); border: 1px solid #253754; border-radius: 20px; }
.calc label { display: grid; gap: 6px; font-size: .9rem; color: #c8d2e0; font-weight: 500; }
.calc input { font: inherit; font-size: 1.1rem; padding: 12px 14px; border-radius: 10px; border: 1px solid #33496b; background: var(--night); color: #fff; }
.calc input:focus { outline: 2px solid var(--amber); border-color: transparent; }
.calc-out { display: grid; gap: 4px; padding-top: 16px; border-top: 1px solid #253754; }
.calc-out span { color: #9fb0c8; font-size: .9rem; }
.calc-out strong { font-family: var(--serif); font-size: 2.6rem; color: var(--amber); line-height: 1.1; }

/* Pricing */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; align-items: stretch; }
.tier { position: relative; display: flex; flex-direction: column; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.tier.featured { border: 2px solid var(--amber); box-shadow: 0 24px 50px -30px rgba(217, 134, 26, .9); }
.badge { position: absolute; top: -13px; left: 30px; margin: 0; padding: 4px 12px; background: var(--amber); border-radius: 999px; font-size: .78rem; font-weight: 600; }
.for { color: var(--muted); font-size: .92rem; }
.price { margin: 8px 0 0; color: var(--muted); }
.price strong { font-family: var(--serif); font-size: 2.3rem; color: var(--ink); }
.setup { color: var(--muted); font-size: .9rem; }
.tier ul { list-style: none; padding: 0; margin: 8px 0 24px; display: grid; gap: 8px; }
.tier li { padding-left: 26px; position: relative; color: var(--ink-2); }
.tier li::before { content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 8px; border-left: 2.5px solid var(--brook); border-bottom: 2.5px solid var(--brook); transform: rotate(-45deg); }
.tier .btn { margin-top: auto; }

/* FAQ */
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--brook); }
details[open] summary::after { content: "\2212"; }
details p { margin: 10px 0 0; color: var(--ink-2); }

/* Contact */
.closer { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.direct a { color: var(--brook); font-weight: 600; }
.contact { display: grid; gap: 14px; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 30px 60px -40px rgba(15, 27, 45, .5); }
.contact label { display: grid; gap: 6px; font-size: .9rem; font-weight: 500; color: var(--ink-2); }
.contact input, .contact select { font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); color: var(--ink); }
.contact input:focus, .contact select:focus { outline: 2px solid var(--amber); border-color: transparent; }

.foot { background: var(--night); color: #9fb0c8; padding: 36px 0; font-size: .9rem; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot .brand { color: #fff; }
.foot .logo-mark { color: #1d3350; }
.foot p { margin: 0; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .two { grid-template-columns: 1fr; gap: 40px; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .steps, .grid3, .tiers { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-row .btn-small { margin-left: auto; }
}
@media (max-width: 520px) {
  .hero { padding: 56px 0 64px; }
  .section { padding: 64px 0; }
  .tiles { grid-template-columns: 1fr; }
  .tile { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
