:root {
  color-scheme: dark;
  --black: #050505;
  --black-2: #0d0d0d;
  --panel: rgba(255, 255, 255, .06);
  --panel-strong: rgba(16, 14, 10, .84);
  --gold: #d7b46a;
  --gold-2: #f8df98;
  --gold-3: #9c6b22;
  --cream: #fff7e8;
  --muted: #b9ad98;
  --line: rgba(215, 180, 106, .22);
  --shadow: 0 28px 90px rgba(0, 0, 0, .45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 0%, rgba(248, 223, 152, .16), transparent 28%),
    radial-gradient(circle at 86% 9%, rgba(156, 107, 34, .13), transparent 24%),
    linear-gradient(145deg, #020202 0%, #111 48%, #060503 100%);
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 68%);
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.section-pad { padding: 98px 0; }

.page-glow {
  position: fixed;
  width: 430px;
  height: 430px;
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(248, 223, 152, .11), transparent 64%);
  pointer-events: none;
  filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(215, 180, 106, .16);
  border-radius: 999px;
  background: rgba(5, 5, 5, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0,0,0,.28);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand.small .brand-mark { width: 38px; height: 38px; border-radius: 14px; font-size: 13px; }
.brand-mark,
.mini-mark {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f8df98, #c89a42 58%, #7b5319);
  color: #070707;
  font-weight: 950;
  letter-spacing: -.06em;
  box-shadow: 0 18px 44px rgba(215, 180, 106, .2), inset 0 1px 0 rgba(255,255,255,.56);
}
.brand-mark { width: 46px; height: 46px; border-radius: 17px; }
.mini-mark { width: 36px; height: 36px; border-radius: 13px; font-size: 12px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 15px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 3px; color: var(--gold-2); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 22px; color: rgba(255,247,232,.72); font-size: 13px; }
.nav a { transition: color .18s ease; }
.nav a:hover { color: var(--gold-2); }
.header-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8df98, #c89a42 60%, #95651e);
  color: #070707;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(215, 180, 106, .17);
}

.hero { padding-top: 88px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 58px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 850;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 0 7px rgba(215,180,106,.13);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 20px 0 18px;
  max-width: 780px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .88;
  letter-spacing: -.075em;
}
h2 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .96;
  letter-spacing: -.065em;
}
h3 { letter-spacing: -.03em; }
.hero-lead,
.section-copy p,
.center-copy p,
.premium-panel p,
.cta-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.hero-lead { max-width: 650px; font-size: 18px; }

.hero-actions,
.toolbar-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -.015em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #f8df98, #c89a42 60%, #95651e);
  color: #070707;
  box-shadow: 0 18px 44px rgba(215, 180, 106, .22), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn-primary:hover { box-shadow: 0 24px 60px rgba(215, 180, 106, .28), inset 0 1px 0 rgba(255,255,255,.45); }
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--cream);
}
.btn-secondary:hover { border-color: rgba(248, 223, 152, .48); }
.btn.full { width: 100%; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,247,232,.72);
}
.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(215,180,106,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}
.browser-card,
.extension-card,
.export-card,
.premium-panel,
.price-card,
.cta-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.browser-card {
  position: absolute;
  inset: 34px 0 auto auto;
  width: min(100%, 560px);
  min-height: 410px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.browser-top {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(215,180,106,.12);
  background: rgba(0,0,0,.24);
}
.dots { display: flex; gap: 7px; }
.dots i { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,247,232,.28); }
.address {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(215,180,106,.16);
  background: rgba(0,0,0,.22);
  color: rgba(255,247,232,.5);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-stage {
  height: 352px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(circle at 50% 46%, rgba(248, 223, 152, .18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.03), rgba(0,0,0,.36));
}
.video-stage:before,
.video-stage:after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(215,180,106,.13);
  border-radius: 28px;
}
.video-stage:after { inset: 84px 70px; opacity: .55; }
.play-orb {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8df98, #c89a42 60%, #95651e);
  color: #080808;
  font-weight: 950;
  box-shadow: 0 24px 70px rgba(215,180,106,.22);
  z-index: 1;
}
.video-lines {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 12px;
}
.video-lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,247,232,.12);
}
.video-lines span:first-child { width: 76%; }
.video-lines span:nth-child(2) { width: 62%; }
.video-lines span:nth-child(3) { width: 88%; background: linear-gradient(90deg, #f8df98, rgba(255,247,232,.12) 54%); }

.floating-card { border-radius: 24px; }
.extension-card {
  position: absolute;
  left: 0;
  bottom: 72px;
  width: 290px;
  padding: 18px;
  animation: float 4.7s ease-in-out infinite;
}
.extension-head { display: flex; align-items: center; gap: 12px; }
.extension-head strong { display: block; }
.extension-head small { color: var(--gold-2); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.extension-card p { margin: 16px 0 12px; color: var(--muted); line-height: 1.45; font-size: 13px; }
.extension-card button {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(135deg, #f8df98, #c89a42);
  color: #080808;
  font-weight: 950;
}
.export-card {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 245px;
  padding: 17px;
  animation: float 5.3s ease-in-out .4s infinite;
}
.export-card span { color: var(--muted); font-size: 12px; }
.export-card strong { display: block; margin: 5px 0 14px; }
.progress { height: 10px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.08); }
.progress i { display: block; width: 76%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #f8df98, #c89a42); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.logo-strip {
  border-top: 1px solid rgba(215,180,106,.12);
  border-bottom: 1px solid rgba(215,180,106,.12);
  background: rgba(0,0,0,.18);
}
.strip-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,247,232,.58);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.split-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.section-copy { max-width: 520px; }
.center-copy { max-width: 720px; margin: 0 auto 44px; text-align: center; }

.pain-list { display: grid; gap: 16px; }
.pain-list article,
.feature-card,
.step,
.accordion details {
  border: 1px solid rgba(215,180,106,.16);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.pain-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  padding: 20px;
}
.pain-list span {
  grid-row: span 2;
  color: var(--gold-2);
  font-weight: 950;
  opacity: .86;
}
.pain-list strong { font-size: 18px; }
.pain-list p { margin: 0; color: var(--muted); line-height: 1.5; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card { padding: 24px; min-height: 235px; }
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(248, 223, 152, .22), rgba(215,180,106,.07));
  color: var(--gold-2);
  border: 1px solid rgba(215,180,106,.18);
}
.feature-card h3 { margin-bottom: 10px; font-size: 20px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.55; }

.workflow { background: linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: steps;
}
.step { position: relative; padding: 26px; overflow: hidden; }
.step:before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215,180,106,.18), transparent 64%);
}
.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8df98, #c89a42);
  color: #070707;
  font-weight: 950;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--muted); line-height: 1.55; margin: 0; }

.premium-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}
.premium-panel:before,
.cta-card:before,
.price-card:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(248,223,152,.16), transparent 65%);
  pointer-events: none;
}
.check-list,
.included {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li,
.included li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,247,232,.78);
  line-height: 1.45;
}
.check-list li:before,
.included li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(215,180,106,.18);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
}

.pricing { background: rgba(0,0,0,.16); }
.price-card {
  position: relative;
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
  padding: 28px;
  border-radius: var(--radius-xl);
}
.price-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,180,106,.14);
  border: 1px solid rgba(215,180,106,.22);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.price-card h3 { margin: 22px 0 10px; font-size: 34px; }
.price-copy { color: var(--muted); line-height: 1.55; }
.price {
  margin: 22px 0 8px;
  font-size: 72px;
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 950;
}
.price small { font-size: 22px; vertical-align: 29px; color: var(--gold-2); letter-spacing: -.02em; }
.price span { font-size: 32px; color: var(--gold-2); }
.price-note { margin: 0 0 22px; color: rgba(255,247,232,.5); font-size: 13px; }
.included { margin-top: 22px; }

.accordion { display: grid; gap: 14px; }
.accordion details { padding: 20px 22px; }
.accordion summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.02em;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:after {
  content: "+";
  float: right;
  color: var(--gold-2);
}
.accordion details[open] summary:after { content: "–"; }
.accordion p { margin: 14px 0 0; color: var(--muted); line-height: 1.6; }

.final-cta { padding-top: 36px; }
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 54px;
  text-align: center;
}
.cta-card h2 { max-width: 850px; margin-left: auto; margin-right: auto; }
.cta-card p { max-width: 650px; margin-left: auto; margin-right: auto; }
.cta-card .btn { margin-top: 18px; }

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(215,180,106,.12);
  background: rgba(0,0,0,.18);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,247,232,.5);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid,
  .split-grid,
  .pricing-grid,
  .faq-grid,
  .premium-panel {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 620px; }
  .feature-grid,
  .steps { grid-template-columns: 1fr 1fr; }
  .price-card { margin-left: 0; }
  .strip-inner { flex-wrap: wrap; justify-content: center; padding: 22px 0; text-align: center; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 72px 0; }
  .site-header { width: calc(100% - 20px); margin-top: 10px; border-radius: 24px; }
  .brand-copy small { display: none; }
  .header-cta { display: none; }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(44px, 15vw, 64px); }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 560px; }
  .browser-card { inset: 20px 0 auto 0; min-height: 360px; }
  .video-stage { height: 302px; }
  .extension-card { left: 10px; bottom: 84px; width: calc(100% - 60px); }
  .export-card { right: 10px; bottom: 0; width: calc(100% - 88px); }
  .feature-grid,
  .steps { grid-template-columns: 1fr; }
  .premium-panel,
  .cta-card { padding: 28px; border-radius: 26px; }
  .price { font-size: 60px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
