:root {
  --ink: #001122;
  --ink-2: #08254a;
  --muted: #53687d;
  --line: #d8e7f4;
  --paper: #f5faff;
  --panel: #ffffff;
  --mist: #e9f3fb;
  --mint: #15479c;
  --mint-dark: #0d3475;
  --blue: #15479c;
  --gold: #a8cce8;
  --coral: #7ba3cf;
  --shadow: 0 24px 70px rgba(0, 17, 34, .15);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

button, input, select, textarea { font: inherit; }

a { color: inherit; }

.shell {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 230, 229, .86);
  background: rgba(245, 250, 255, .93);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 950;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  box-shadow: 0 10px 26px rgba(21, 71, 156, .24);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 32px rgba(8, 27, 37, .18);
}

.btn-primary:hover { background: #0f2d3a; }

.btn-mint {
  color: #f5faff;
  background: linear-gradient(135deg, #15479c, #0d3475);
  box-shadow: 0 16px 34px rgba(21, 71, 156, .28);
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, .72);
}

.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
}

.hero .btn-light {
  color: var(--ink);
  border-color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .88);
}

.hero .chip {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  background: rgba(0, 17, 34, .34);
  backdrop-filter: blur(10px);
}

.hero .product-board {
  display: none;
}

.hero .product-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(168, 204, 232, .22) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: deskSweep 8s ease-in-out infinite;
}

.hero .metric,
.hero .mini-card,
.hero .timeline {
  border-color: #d9e6e5;
  background: #f8fcfa;
}

.hero .metric span,
.hero .label,
.hero .timeline-row {
  color: var(--muted);
}

.hero .metric strong,
.hero .board-title,
.hero .mini-card strong {
  color: var(--ink);
}

.hero .timeline .dot {
  animation: pulseDot 2.2s ease-in-out infinite;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 17, 34, .72), rgba(0, 17, 34, .34), rgba(0, 17, 34, .08)),
    url("hero-collections.jpg") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 42px;
  align-items: center;
  padding: 54px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(0, 17, 34, .34);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: .95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 850;
}

.product-board {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .09);
  box-shadow: var(--shadow);
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.board-title {
  margin: 0;
  font-weight: 950;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(34, 212, 151, .17);
  color: #aaf8d8;
  font-size: 12px;
  font-weight: 950;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric,
.mini-card,
.timeline,
.panel-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.metric { padding: 14px; }

.metric span,
.label {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.mini-card,
.timeline {
  margin-top: 10px;
  padding: 14px;
}

.timeline-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.page-hero {
  padding: 82px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 0%, rgba(10, 163, 111, .32), transparent 28%),
    linear-gradient(135deg, #061720, #0a3340 58%, #0d4a38);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
}

.page-hero .lead { color: rgba(255, 255, 255, .82); }

.section {
  padding: 78px 0;
}

.section-tight { padding: 52px 0; }

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(8, 27, 37, .05);
}

.card p,
.feature-row p,
.step p,
.price-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.58;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #042016;
  background: linear-gradient(135deg, #dff8ec, #b9e7ff);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 28px;
  align-items: start;
}

.ledger-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ledger-row {
  display: grid;
  grid-template-columns: 1.4fr .9fr .8fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #edf2f1;
  padding: 14px 0;
  font-size: 14px;
}

.ledger-row:last-child { border-bottom: 0; }

.ledger-row strong { display: block; }

.ledger-row span { color: var(--muted); }

.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--mist);
  font-size: 12px;
  font-weight: 900;
}

.badge.warn { background: #fff1d8; color: #7d4b00; }
.badge.danger { background: #ffe8e5; color: #8d281f; }
.badge.good { background: #dff8ec; color: #075337; }

.feature-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.feature-row:first-child { border-top: 0; padding-top: 0; }

.step-list {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 950;
}

.band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 27, 37, .98), rgba(10, 69, 61, .96)),
    url("https://images.unsplash.com/photo-1573164713988-8665fc963095?auto=format&fit=crop&w=1700&q=80") center/cover;
}

.band .section-head p,
.band .card p { color: rgba(255, 255, 255, .72); }

.band .card {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.price-card.featured {
  border-color: rgba(10, 163, 111, .35);
  box-shadow: 0 18px 45px rgba(10, 163, 111, .12);
}

.price {
  margin: 16px 0;
  font-size: 34px;
  font-weight: 950;
}

.list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.list li::before {
  content: "+";
  margin-right: 8px;
  color: var(--mint-dark);
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.input-like {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--muted);
  background: #fff;
}

.footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, .72);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.footer strong { color: #fff; }
@keyframes deskFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes deskSweep {
  0%, 24% { transform: translateX(-120%); }
  58%, 100% { transform: translateX(120%); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: .72; }
  50% { transform: scale(1.28); opacity: 1; }
}

@media (max-width: 900px) {
  .nav-inner { flex-wrap: wrap; padding: 12px 0; }
  .nav-links { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero-grid,
  .split,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; padding: 52px 0 80px; }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 52px);
    max-width: 1180px;
  }
  .nav-actions { display: none; }
  .nav-actions .btn-ghost { display: none; }
  h1 { font-size: 30px; }
  h2 { font-size: 32px; }
  .lead,
  .eyebrow,
  .status,
  .trust-pill {
    overflow-wrap: anywhere;
  }
  .metric-grid,
  .ledger-row {
    grid-template-columns: 1fr;
  }
  .btn { width: 100%; }
  .hero-actions,
  .section-actions { width: 100%; }
  .hero-grid > * {
    min-width: 0;
    width: 100%;
    max-width: 315px;
  }
}
