:root {
  --ink: #0b1f24;
  --ink-soft: #14333a;
  --fog: #e8f0f2;
  --paper: #f4f7f8;
  --amber: #e8a54b;
  --amber-deep: #c9842a;
  --mint: #7ec8b8;
  --muted: rgba(244, 247, 248, 0.72);
  --line: rgba(244, 247, 248, 0.18);
  --text-soft: #4a636a;
  --text-body: #35555d;
  --rule: #d5e0e4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Instrument Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(20px, 4vw, 56px);
}
.top a {
  color: var(--fog);
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity .25s ease;
}
.top a:hover { opacity: 1; }
.top .ghost {
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.top-brand {
  margin-right: auto;
  font-family: Syne, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  opacity: 1 !important;
}
.top-brand em {
  font-style: normal;
  color: var(--amber);
}

.top-solid {
  position: sticky;
  top: 0;
  background: rgba(11, 31, 36, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--fog);
  isolation: isolate;
}
.hero-compact {
  min-height: clamp(420px, 62vh, 640px);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11,31,36,0.35) 0%, rgba(11,31,36,0.55) 42%, rgba(11,31,36,0.92) 100%),
    url("/hero-bg.webp") center / cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) clamp(48px, 8vh, 88px);
}
.brand {
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 22px;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.15s;
}
.brand em {
  font-style: normal;
  color: var(--amber);
}
.brand-sm {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin-bottom: 16px;
}
.headline {
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 14px;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.35s;
}
.lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.5s;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.65s;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.btn-primary:hover { background: #f0b45d; }
.btn-secondary {
  background: transparent;
  color: var(--fog);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: rgba(244,247,248,0.45); }
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-outline-ink {
  color: var(--ink);
  border-color: #b7c8cd;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 112px) clamp(20px, 4vw, 56px);
}
.section-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f7a82;
  margin-bottom: 12px;
}
.section h2 {
  font-family: Syne, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 18ch;
}
.section > p,
.section-lead {
  color: var(--text-soft);
  max-width: 36rem;
  margin-bottom: 40px;
}

.product {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 800px) {
  .product { grid-template-columns: 1fr; }
}
.product-name {
  font-family: Syne, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.product-by {
  color: #5f7a82;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.product p {
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 34rem;
}
.product-visual {
  min-height: 280px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,31,36,0.18);
  background: #0b1f24;
}
.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.product + .product {
  margin-top: 48px;
}
.soon {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed #c9d7dc;
  color: #5f7a82;
  font-size: 0.98rem;
}
.soon strong { color: var(--ink-soft); }

.about {
  background: var(--ink);
  color: var(--fog);
}
.about .section { padding-block: clamp(56px, 9vh, 96px); }
.about h2 { color: var(--fog); }
.about p { color: var(--muted); margin-bottom: 0; }

.feature-list {
  list-style: none;
  display: grid;
  gap: 28px;
  max-width: 40rem;
  border-top: 1px solid var(--rule);
  padding-top: 8px;
}
.feature-list li {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.feature-list li:first-child {
  border-top: 0;
  padding-top: 16px;
}
.feature-list strong {
  display: block;
  font-family: Syne, sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.feature-list span {
  color: var(--text-body);
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.steps li::before {
  content: "0" counter(step);
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--amber-deep);
  letter-spacing: -0.03em;
}
.steps h3 {
  font-family: Syne, sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.steps p { color: var(--text-body); max-width: 34rem; }

.get-list {
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 36rem;
  color: var(--text-body);
}
.get-list li {
  padding-left: 1.2rem;
  position: relative;
}
.get-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--amber);
}

.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.faq-list summary {
  cursor: pointer;
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--amber-deep);
  font-size: 1.4rem;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  margin-top: 12px;
  color: var(--text-body);
  max-width: 40rem;
}

.cta-band {
  background: var(--ink);
  color: var(--fog);
}
.cta-band h2 { color: var(--fog); max-width: 16ch; }
.cta-band p { color: var(--muted); margin-bottom: 28px; }
.cta-band .cta-row { opacity: 1; animation: none; }

footer {
  padding: 28px clamp(20px, 4vw, 56px) 40px;
  color: #5f7a82;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
footer .mark {
  font-family: Syne, sans-serif;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
footer a:hover { color: var(--ink); }

.price-table {
  border-top: 1px solid var(--rule);
}
.price-hero {
  margin: 0 0 36px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,31,36,0.14);
  background: #0b1f24;
}
.price-hero img {
  display: block;
  width: 100%;
  height: auto;
}
.price-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.4fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.price-head {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5f7a82;
  padding-top: 8px;
}
.price-row strong { display: block; font-family: Syne, sans-serif; letter-spacing: -0.02em; }
.price-row small { color: #5f7a82; font-size: 0.85rem; }
.price-row span:last-child { color: var(--text-body); }
@media (max-width: 800px) {
  .price-row { grid-template-columns: 1fr; gap: 6px; }
  .price-head { display: none; }
}

.blog-list {
  list-style: none;
  border-top: 1px solid var(--rule);
}
.blog-list li {
  border-bottom: 1px solid var(--rule);
}
.blog-list a {
  display: block;
  padding: 22px 0;
  transition: opacity .2s ease;
}
.blog-list a:hover { opacity: 0.75; }
.blog-list strong {
  display: block;
  font-family: Syne, sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.blog-list span { color: var(--text-body); }

.quote {
  margin-top: 40px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
  max-width: 40rem;
}
.quote p {
  font-family: Syne, sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 14px;
}
.quote footer {
  border: 0;
  padding: 0;
  color: #5f7a82;
  justify-content: flex-start;
  background: transparent;
}

.prose h2 {
  font-family: Syne, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  letter-spacing: -0.03em;
  margin: 36px 0 12px;
  max-width: none;
}
.prose p {
  color: var(--text-body);
  max-width: 40rem;
  margin-bottom: 16px;
}
.prose .btn { margin-top: 8px; }

.ig-strip {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  margin-top: 8px;
  color: var(--text-body);
  max-width: 36rem;
}
.ig-strip a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 700px) {
  .top {
    gap: 16px;
    padding: 20px;
  }
  .top a:not(.ghost):not(.top-brand) {
    display: none;
  }
  .steps li {
    grid-template-columns: 3rem 1fr;
  }
}


.video-wrap {
  max-width: 840px;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1f24;
  box-shadow: 0 24px 60px rgba(11,31,36,0.18);
}
.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
}
