:root {
  --ink: #071324;
  --ink-2: #10243c;
  --blue: #0a2540;
  --blue-2: #12385f;
  --ivory: #fbf5ea;
  --sand: #f2e6d2;
  --paper: #fffdf8;
  --line: rgba(10, 37, 64, 0.13);
  --muted: #64748b;
  --muted-2: #8a98a9;
  --orange: #e7833a;
  --orange-2: #f4a261;
  --gold: #b88746;
  --teal: #17b7a6;
  --shadow: 0 24px 70px rgba(10, 37, 64, 0.14);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(231, 131, 58, .16), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0%, #f8efe1 42%, #fffdf8 100%);
}
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); line-height: 1.72; font-size: 1.03rem; }
img { max-width: 100%; display: block; }

.shell { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(255, 250, 241, .84);
  border-bottom: 1px solid rgba(10, 37, 64, .08);
}
.nav-inner { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 900; letter-spacing: -.04em; font-size: 1.45rem; }
.brand-mark {
  width: 48px; height: 48px; border: 2px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center; font-weight: 950; letter-spacing: -.08em;
}
.links { display: flex; align-items: center; gap: 28px; color: #4b5563; font-weight: 700; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 14px 20px;
  font-weight: 850; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #160c05; box-shadow: 0 18px 45px rgba(231, 131, 58, .28); }
.btn-dark { background: var(--ink); color: white; box-shadow: 0 20px 50px rgba(7, 19, 36, .26); }
.btn-soft { background: rgba(10, 37, 64, .07); color: var(--blue); }
.btn-outline { border: 1px solid rgba(255,255,255,.28); color: white; background: rgba(255,255,255,.06); }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,19,36,.96) 0%, rgba(7,19,36,.82) 45%, rgba(7,19,36,.35) 100%),
    radial-gradient(circle at 82% 36%, rgba(231,131,58,.32), transparent 22rem),
    linear-gradient(135deg, #071324, #14385d);
  color: white;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 54px; align-items: center; padding: 96px 0 86px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; width: fit-content;
  padding: 8px 13px; border-radius: 999px; border: 1px solid rgba(244,162,97,.34);
  color: #ffd7ae; background: rgba(244,162,97,.1); font-weight: 850; font-size: .86rem;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-2); }
h1, h2, h3 { margin: 0; letter-spacing: -.055em; line-height: .96; }
h1 { font-size: clamp(4rem, 8vw, 7.8rem); margin-top: 28px; max-width: 880px; }
h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); color: var(--ink); }
h3 { font-size: 1.45rem; letter-spacing: -.035em; line-height: 1.12; }
.accent { color: #ffd8a8; }
.hero-copy { margin-top: 26px; max-width: 650px; color: rgba(255,255,255,.74); font-size: 1.25rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 34px;
  padding: 26px; box-shadow: 0 30px 90px rgba(0,0,0,.28); backdrop-filter: blur(18px);
}
.ledger {
  background: #06111f; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; overflow: hidden;
}
.ledger-top { display: flex; gap: 7px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.chip { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.chip:nth-child(2) { background: #f59e0b; }
.chip:nth-child(3) { background: #22c55e; }
.ledger-body { padding: 22px; font-family: "SFMono-Regular", Consolas, monospace; color: #d6f8ff; font-size: .85rem; line-height: 1.8; }
.code-key { color: #f7a64a; } .code-ok { color: #2dd4bf; } .code-blue { color: #93c5fd; }

section { padding: 110px 0; }
.section-head { display: grid; grid-template-columns: .9fr 1fr; gap: 48px; align-items: end; margin-bottom: 46px; }
.section-kicker { color: var(--orange); font-weight: 950; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin-bottom: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: 0 16px 44px rgba(10, 37, 64, .08);
}
.card.dark { background: linear-gradient(145deg, #071324, #102a47); color: white; border-color: rgba(255,255,255,.1); }
.card.dark p { color: rgba(255,255,255,.68); }
.icon {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(10,37,64,.08); color: var(--blue); margin-bottom: 22px;
}
.icon svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2.1; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.dark .icon { background: rgba(244,162,97,.13); color: #ffd8a8; }

.audience-card { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; }
.arrow { color: var(--orange); font-weight: 950; font-size: 1.5rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; }
.visual-panel {
  min-height: 470px; border-radius: 38px; padding: 28px; overflow: hidden; position: relative;
  background: linear-gradient(145deg, #071324, #143d65);
  box-shadow: var(--shadow);
}
.visual-panel::before {
  content: ""; position: absolute; inset: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
}
.metric-row { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 220px; }
.metric { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 16px; color: white; }
.metric strong { display: block; color: #ffd8a8; font-size: 1.45rem; }

.pricing { background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(242,230,210,.55)); }
.price-card { display: flex; flex-direction: column; gap: 18px; }
.price { font-size: 3rem; line-height: 1; font-weight: 950; letter-spacing: -.07em; color: var(--ink); }
.price span { font-size: .9rem; color: var(--muted); letter-spacing: 0; font-weight: 800; }
.features { display: grid; gap: 11px; color: #42526a; padding: 0; margin: 0; list-style: none; }
.features li { display: flex; gap: 10px; align-items: flex-start; }
.features li::before { content: "✓"; color: var(--teal); font-weight: 950; }

.footer { padding: 62px 0; background: #071324; color: white; }
.footer p { color: rgba(255,255,255,.62); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.page-hero { padding: 95px 0 80px; background: linear-gradient(145deg, #071324, #102d4f); color: white; }
.page-hero h1 { font-size: clamp(3.4rem, 7vw, 7rem); }
.page-hero p { color: rgba(255,255,255,.7); max-width: 720px; margin-top: 24px; font-size: 1.2rem; }
.endpoint { font-family: "SFMono-Regular", Consolas, monospace; color: #d7f8ff; font-size: .9rem; overflow-wrap: anywhere; }
.method { color: #ffd8a8; font-weight: 950; }

@media (max-width: 920px) {
  .links { display: none; }
  .nav-inner { height: 74px; }
  .hero-grid, .section-head, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding: 64px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  section { padding: 74px 0; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-actions .btn-soft { display: none; }
  h1 { font-size: clamp(3.2rem, 17vw, 4.6rem); }
  h2 { font-size: clamp(2.3rem, 12vw, 3.4rem); }
  .hero-actions, .nav-actions { width: 100%; }
  .btn { width: 100%; }
  .nav-inner { gap: 12px; }
  .brand { font-size: 1.2rem; }
  .brand-mark { width: 42px; height: 42px; }
  .card { padding: 24px; border-radius: 22px; }
  .metric-row { grid-template-columns: 1fr; margin-top: 170px; }
}
