/**
 * SwingVault public landing
 * Premium, fast marketing surface for unauthenticated visitors.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080b10;
  --bg2: #0d1219;
  --s1: #111821;
  --s2: #17212c;
  --s3: #223040;
  --tech-blue: #3f8cff;
  --deep-violet: #211a42;
  --txt: #f2f6f8;
  --txt2: #a9b6c1;
  --mut: #6f8190;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --acc: #c8a45a;
  --acc2: #e5c673;
  --fd: 'Bebas Neue', Impact, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1180px;
  --section: clamp(72px, 9vw, 116px);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(200, 164, 90, 0.13), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(63, 140, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 72% 42%, rgba(75, 48, 160, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 52%, #07090d 100%);
  color: var(--txt);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.sv-landing-updated::before {
  content: 'App updated - sign in to continue with the latest build';
  position: fixed;
  top: max(16px, env(safe-area-inset-top, 16px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  max-width: min(92vw, 480px);
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(12, 16, 22, 0.94);
  border: 1px solid rgba(61, 214, 140, 0.35);
  color: #e8eef2;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

a,
button {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-nav,
footer,
.hero,
.cred-strip,
.section,
.cta-wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  background: rgba(8, 11, 16, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-logo,
.foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.nav-gem,
.foot-gem {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border-radius: 5px;
  background: linear-gradient(135deg, #f0d381 0%, var(--acc) 48%, #8b6d31 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 12px 28px rgba(200, 164, 90, 0.22);
  transform: rotate(45deg);
}

.nav-brand,
.foot-brand {
  font-family: var(--fd);
  font-size: 22px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--txt);
}

.nav-domain,
.foot-domain {
  margin-top: 2px;
  color: var(--mut);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
}

.nav-links a,
.foot-links a {
  color: var(--txt2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s var(--ease);
}

.nav-links a:hover,
.foot-links a:hover {
  color: var(--txt);
}

.nav-cta,
.btn-primary,
.btn-ghost,
.btn-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.18s var(--ease),
    border-color 0.18s var(--ease),
    color 0.18s var(--ease),
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.nav-cta,
.btn-primary,
.btn-call {
  background: var(--acc);
  color: #080a0d;
  box-shadow: 0 12px 30px rgba(200, 164, 90, 0.2);
}

.nav-cta:hover,
.btn-primary:hover,
.btn-call:hover {
  background: var(--acc2);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(200, 164, 90, 0.26);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
  color: var(--txt);
}

.btn-ghost:hover {
  border-color: rgba(200, 164, 90, 0.42);
  color: var(--acc2);
  background: rgba(200, 164, 90, 0.07);
}

.btn-primary.compact {
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
  min-height: calc(100vh - 82px);
  padding: clamp(62px, 8vw, 106px) 0 var(--section);
}

.hero-eyebrow,
.sec-eyebrow,
.panel-kicker {
  color: var(--acc2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-box h2 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 {
  margin-top: 18px;
}

.hero-sub,
.sec-sub,
.cta-box p {
  max-width: 650px;
  color: var(--txt2);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.72;
}

.hero-sub {
  margin-top: 24px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-btns.center {
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--txt2);
  font-size: 12px;
  font-weight: 750;
}

.hero-product {
  position: relative;
}

.analysis-card,
.hero-note,
.feat-card,
.hai-card,
.step,
.who-card,
.plan-card,
.cta-box,
.si-box {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(23, 33, 44, 0.94), rgba(11, 16, 23, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.analysis-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 18px;
}

.analysis-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
  pointer-events: none;
}

.analysis-top,
.metric-row,
.plans-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.analysis-top strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 18px;
}

.live-pill {
  border: 1px solid rgba(82, 214, 142, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(82, 214, 142, 0.08);
  color: #9de9bd;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  aspect-ratio: 1030 / 488;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.05), rgba(8, 11, 16, 0.18)),
    url('/assets/demo/04-side-by-side.png') center / cover no-repeat,
    #05070a;
  box-shadow: inset 0 0 0 1px rgba(200, 164, 90, 0.08);
}

.video-pane {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.video-pane.pro {
  background: transparent;
}

.video-pane span,
.video-pane b {
  position: absolute;
  left: 14px;
  z-index: 1;
}

.video-pane span {
  top: 14px;
  color: var(--txt2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-pane b {
  bottom: 14px;
  color: #fff;
  font-size: 14px;
}

.video-pane i {
  display: none;
}

.video-pane b {
  display: none;
}

.feel-real-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(200, 164, 90, 0.14), transparent 38%),
    linear-gradient(155deg, rgba(23, 33, 44, 0.96), rgba(10, 14, 20, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.feel-real-card strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.feel-real-card span {
  display: block;
  margin-top: 14px;
  color: var(--acc2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feel-real-card p {
  margin-top: 18px;
  color: var(--txt2);
  font-size: 15px;
  line-height: 1.7;
}

.timeline {
  position: relative;
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--acc), var(--acc2));
}

.metric-row {
  margin-top: 16px;
}

.metric-row div {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-row span,
.cta-note,
.plan-card p {
  display: block;
  color: var(--mut);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-row strong {
  display: block;
  margin-top: 4px;
  color: var(--txt);
  font-size: 13px;
}

.hero-note {
  width: min(82%, 360px);
  margin: -24px 0 0 auto;
  border-radius: 18px;
  padding: 18px;
}

.hero-note span {
  color: var(--acc2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note p {
  margin-top: 8px;
  color: var(--txt2);
  font-size: 13px;
}

.cred-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.cred-strip div {
  padding: 24px;
  background: rgba(13, 18, 25, 0.88);
}

.cred-strip strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.cred-strip span {
  display: block;
  margin-top: 6px;
  color: var(--txt2);
  font-size: 13px;
}

.section {
  padding: var(--section) 0;
}

.section.split,
.ai-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.section h2,
.cta-box h2 {
  margin-top: 14px;
  font-size: clamp(36px, 5.2vw, 64px);
  letter-spacing: -0.045em;
}

.sec-sub {
  margin-top: 18px;
  font-size: 16px;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feat-card,
.hai-card,
.step,
.who-card,
.plan-card {
  border-radius: 20px;
  padding: 24px;
}

.feat-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.feat-num,
.step-num {
  color: rgba(200, 164, 90, 0.88);
  font-family: var(--fd);
  font-size: 34px;
  letter-spacing: 0.08em;
  line-height: 0.95;
}

.feat-card h3,
.hai-name,
.step h3,
.who-card h3,
.plan-card h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.feat-card p,
.hai-desc,
.step p,
.who-card p,
.plan-list li {
  margin-top: 10px;
  color: var(--txt2);
  font-size: 14px;
  line-height: 1.62;
}

.ai-grid,
.who-grid,
.plans-grid,
.steps-grid {
  display: grid;
  gap: 16px;
}

.ai-grid {
  grid-template-columns: repeat(3, 1fr);
}

.hai-card {
  min-height: 230px;
}

.hai-card.muted {
  background: linear-gradient(155deg, rgba(19, 26, 35, 0.88), rgba(10, 14, 20, 0.9));
}

.hai-badge,
.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(200, 164, 90, 0.32);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(200, 164, 90, 0.1);
  color: var(--acc2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hai-name {
  margin-top: 18px;
  font-size: 22px;
}

.steps-grid,
.who-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.step {
  min-height: 210px;
}

.step h3 {
  margin-top: 28px;
}

.plans-section {
  padding-top: calc(var(--section) * 0.86);
}

.plans-head {
  align-items: end;
  margin-bottom: 34px;
}

.plans-grid {
  grid-template-columns: repeat(4, 1fr);
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.plan-card.featured {
  border-color: rgba(200, 164, 90, 0.46);
  box-shadow: 0 26px 72px rgba(200, 164, 90, 0.12);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
}

.plan-price {
  margin-top: 14px;
  color: var(--acc2);
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.plan-price small {
  color: var(--txt2);
  font-size: 15px;
  font-weight: 750;
}

.plan-card p {
  margin-top: 12px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
}

.plan-list {
  margin-top: auto;
  padding-top: 22px;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  padding-top: 10px;
}

.plan-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc);
}

.cta-wrap {
  padding: 0 0 var(--section);
}

.cta-box {
  max-width: 880px;
  margin-inline: auto;
  border-radius: 28px;
  padding: clamp(36px, 7vw, 68px);
  text-align: center;
}

.cta-box h2 {
  margin-inline: auto;
}

.cta-box p {
  margin: 18px auto 0;
}

.cta-note {
  margin-top: 20px;
  text-transform: none;
  letter-spacing: 0;
}

.cta-note strong {
  color: var(--txt);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 calc(32px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
}

.foot-gem {
  width: 15px;
  height: 15px;
}

.foot-brand {
  color: var(--txt2);
  font-size: 18px;
}

.foot-domain {
  margin-left: 2px;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.si-ov {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.si-ov.open {
  display: flex;
}

.si-box {
  width: min(100%, 420px);
  border-radius: 24px;
  padding: 38px;
  position: relative;
}

.si-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--mut);
  font-size: 18px;
}

.si-close:hover {
  border-color: var(--line);
  color: var(--txt);
}

.si-title {
  color: #fff;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.si-lead {
  margin-top: 8px;
  color: var(--txt2);
  font-size: 14px;
}

.si-lbl {
  display: block;
  margin-top: 26px;
  margin-bottom: 8px;
  color: var(--txt2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.si-inp-wrap {
  position: relative;
}

.si-inp {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  outline: none;
  padding: 0 70px 0 15px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--txt);
  font-size: 16px;
}

.si-inp:focus {
  border-color: rgba(200, 164, 90, 0.58);
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.14);
}

.si-show {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--txt2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.si-btn {
  width: 100%;
  min-height: 52px;
  margin-top: 16px;
  border: 0;
  border-radius: 14px;
  background: var(--acc);
  color: #07090d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.si-btn.loading {
  opacity: 0.58;
  pointer-events: none;
}

.si-err {
  min-height: 18px;
  margin-top: 12px;
  color: #ff7777;
  font-size: 12px;
}

.si-note {
  margin-top: 14px;
  color: var(--mut);
  font-size: 12px;
  text-align: center;
}

.si-note a {
  color: var(--acc2);
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .section.split,
  .ai-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-product {
    max-width: 680px;
  }

  .ai-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid,
  .who-grid,
  .cred-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-strip div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-nav,
  footer,
  .hero,
  .cred-strip,
  .section,
  .cta-wrap {
    width: min(100% - 32px, var(--wrap));
  }

  .site-nav {
    align-items: flex-start;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    display: none;
  }

  .nav-cta {
    padding-inline: 15px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-sub,
  .sec-sub,
  .cta-box p {
    font-size: 15px;
  }

  .hero-btns,
  .hero-btns.center {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost,
  .btn-call {
    width: 100%;
  }

  .analysis-card {
    border-radius: 22px;
    padding: 14px;
  }

  .video-grid,
  .metric-row,
  .ai-grid,
  .plans-grid,
  .steps-grid,
  .who-grid,
  .cred-strip {
    grid-template-columns: 1fr;
  }

  .video-pane {
    min-height: 168px;
  }

  .hero-note {
    width: 100%;
    margin-top: 12px;
  }

  .feat-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plans-head {
    display: block;
  }

  .plans-head .btn-primary {
    margin-top: 22px;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-list {
    margin-top: 18px;
  }

  .cta-box {
    border-radius: 22px;
    padding: 30px 22px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .foot-links {
    justify-content: flex-start;
  }

  .si-box {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media not all {
/**
 * SwingVault marketing landing (unauthenticated template)
 * Premium spacing, glass nav, soft elevation — pairs with premium-system.css
 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Post-update: user lands on public marketing page after Refresh */
body.sv-landing-updated::before {
  content: 'App updated — sign in to continue with the latest build';
  position: fixed;
  top: max(16px, env(safe-area-inset-top, 16px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  max-width: min(92vw, 480px);
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(14, 18, 21, 0.92);
  border: 1px solid rgba(61, 214, 140, 0.35);
  color: #e8eef2;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.45;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  animation: sv-land-toast-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sv-land-toast-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

:root {
  --bg: #0a0d12;
  --s1: #121820;
  --s2: #1a222c;
  --s3: #222c38;
  --txt: #eef4f8;
  --txt2: #9aadb8;
  --mut: #5a7080;
  --acc: #c8a45a;
  --acc2: #e8c878;
  --fd: 'Bebas Neue', Impact, sans-serif;
  --sv-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sv-section: clamp(5rem, 12vw, 8rem);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--txt);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  font-size: var(--sv-text-base, 15px);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 56px);
  background: rgba(10, 13, 18, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 164, 90, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s var(--sv-ease);
}

.nav-logo:hover {
  opacity: 0.9;
}

.nav-gem {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--acc) 0%, #a8843a 100%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(200, 164, 90, 0.35);
}

.nav-brand {
  font-family: var(--fd);
  font-size: 1.25rem;
  letter-spacing: 3px;
  color: var(--acc);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
}

.nav-links a {
  font-size: 11px;
  color: var(--txt2);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.35s var(--sv-ease);
}

.nav-links a:hover {
  color: var(--acc);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 8px;
  background: var(--acc);
  color: #070809;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.4s var(--sv-ease),
    transform 0.25s var(--sv-ease),
    box-shadow 0.4s var(--sv-ease);
  box-shadow: 0 4px 20px rgba(200, 164, 90, 0.25);
}

.nav-cta:hover {
  background: var(--acc2);
  box-shadow: 0 8px 28px rgba(200, 164, 90, 0.35);
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--sv-section) + 4rem) clamp(24px, 5vw, 56px) var(--sv-section);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  color: var(--acc);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: ui-monospace, monospace;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(3.25rem, 7vw, 6rem);
  letter-spacing: 3px;
  line-height: 0.92;
  color: #fff;
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--acc);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  color: var(--txt2);
  max-width: 36rem;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost,
.btn-call {
  transition:
    background 0.4s var(--sv-ease),
    border-color 0.4s var(--sv-ease),
    color 0.4s var(--sv-ease),
    transform 0.25s var(--sv-ease),
    box-shadow 0.4s var(--sv-ease);
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--acc);
  color: #070809;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 28px rgba(200, 164, 90, 0.28);
}

.btn-primary:hover {
  background: var(--acc2);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200, 164, 90, 0.35);
}

.btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--txt2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
}

.btn-ghost:hover {
  border-color: rgba(200, 164, 90, 0.45);
  color: var(--acc);
  background: rgba(200, 164, 90, 0.06);
}

.hero-ai-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 860px;
  margin-top: 56px;
}

.hai-card {
  background: linear-gradient(165deg, var(--s1) 0%, rgba(18, 24, 32, 0.95) 100%);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.4s var(--sv-ease),
    box-shadow 0.4s var(--sv-ease),
    border-color 0.4s var(--sv-ease);
}

.hai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(200, 164, 90, 0.4);
}

.hai-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #070809;
  background: var(--acc);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
  font-family: ui-monospace, monospace;
}

.hai-name {
  font-family: var(--fd);
  font-size: 1.75rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 12px;
}

.hai-desc {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.7;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 90, 0.15), transparent);
}

.section {
  padding: var(--sv-section) clamp(24px, 5vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
}

.sec-eyebrow {
  font-size: 10px;
  color: var(--acc);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: ui-monospace, monospace;
  margin-bottom: 20px;
}

.section h2 {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}

.section h2 em {
  color: var(--acc);
  font-style: normal;
}

.sec-sub {
  font-size: 1rem;
  color: var(--txt2);
  max-width: 36rem;
  line-height: 1.75;
  margin-bottom: 56px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feat-card {
  background: var(--s1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s var(--sv-ease),
    box-shadow 0.4s var(--sv-ease),
    border-color 0.4s var(--sv-ease);
}

.feat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 90, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.feat-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200, 164, 90, 0.1);
  border: 1px solid rgba(200, 164, 90, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-icon-box svg {
  width: 18px;
  height: 18px;
  stroke: var(--acc);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 12px;
  color: var(--txt2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.feat-tag {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}

.feat-tag span {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--mut);
  font-family: ui-monospace, monospace;
  text-transform: uppercase;
  background: var(--s2);
  border: 1px solid var(--s3);
  border-radius: 4px;
  padding: 3px 8px;
}

.tools-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--s1);
  border: 1px solid var(--s3);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--txt2);
  transition: border-color 0.35s var(--sv-ease), color 0.35s var(--sv-ease);
}

.tool-pill:hover {
  border-color: rgba(200, 164, 90, 0.35);
  color: var(--acc);
}

.tool-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.step {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  background: var(--s1);
  transition: background 0.4s var(--sv-ease);
}

.step:hover {
  background: var(--s2);
}

.step:last-child {
  border-right: none;
}

.step-num {
  font-family: var(--fd);
  font-size: 3.25rem;
  color: var(--s3);
  position: absolute;
  top: 12px;
  right: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
  margin-top: 8px;
}

.step-desc {
  font-size: 12px;
  color: var(--txt2);
  line-height: 1.65;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.who-card {
  background: var(--s1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--acc);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease);
}

.who-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.who-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
}

.who-card p {
  font-size: 12px;
  color: var(--txt2);
  line-height: 1.6;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan-card {
  background: var(--s1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 22px;
  position: relative;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.4s var(--sv-ease),
    box-shadow 0.4s var(--sv-ease),
    border-color 0.4s var(--sv-ease);
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.plan-card.featured {
  border-color: rgba(200, 164, 90, 0.45);
  box-shadow: 0 12px 40px rgba(200, 164, 90, 0.12);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--acc);
  background: rgba(200, 164, 90, 0.12);
  border: 1px solid rgba(200, 164, 90, 0.25);
  padding: 4px 10px;
  border-radius: 10px;
  font-family: ui-monospace, monospace;
}

.plan-card h3 {
  font-family: var(--fd);
  font-size: 1.75rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 6px;
}

.plan-price {
  font-family: var(--fd);
  font-size: 2.25rem;
  color: var(--acc);
  letter-spacing: 1px;
  margin: 10px 0 20px;
}

.plan-price small {
  font-size: 14px;
  color: var(--txt2);
  font-family: -apple-system, sans-serif;
  letter-spacing: 0;
}

.plan-list {
  list-style: none;
}

.plan-list li {
  font-size: 12px;
  color: var(--txt2);
  padding: 8px 0;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-list li:last-child {
  border-bottom: none;
}

.plan-list li::before {
  content: '▸';
  color: var(--acc);
  flex-shrink: 0;
}

.cta-wrap {
  padding: var(--sv-section) clamp(24px, 5vw, 56px);
  text-align: center;
}

.cta-box {
  background: linear-gradient(165deg, var(--s1) 0%, rgba(18, 24, 32, 0.98) 100%);
  border: 1px solid rgba(200, 164, 90, 0.2);
  border-radius: 20px;
  padding: clamp(3rem, 8vw, 4.5rem) clamp(2rem, 5vw, 3rem);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.cta-box h2 {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1;
}

.cta-box h2 em {
  color: var(--acc);
  font-style: normal;
}

.cta-box p {
  color: var(--txt2);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.btn-call {
  display: inline-block;
  padding: 16px 36px;
  background: var(--acc);
  color: #070809;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(200, 164, 90, 0.28);
}

.btn-call:hover {
  background: var(--acc2);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 12px;
  color: var(--mut);
  margin-top: 24px;
}

.cta-note a {
  color: var(--acc);
  text-decoration: none;
  transition: color 0.3s var(--sv-ease);
}

.cta-note a:hover {
  color: var(--acc2);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px clamp(24px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.foot-gem {
  width: 16px;
  height: 16px;
  background: var(--acc);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.foot-brand {
  font-family: var(--fd);
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--mut);
}

.foot-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.foot-links a {
  font-size: 11px;
  color: var(--mut);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.35s var(--sv-ease);
}

.foot-links a:hover {
  color: var(--acc);
}

.si-ov {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.si-ov.open {
  display: flex;
}

.si-box {
  background: linear-gradient(165deg, #161c24 0%, #121820 100%);
  border: 1px solid rgba(200, 164, 90, 0.2);
  border-radius: 20px;
  padding: 44px 40px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.si-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #5a6d7a;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s var(--sv-ease);
}

.si-close:hover {
  color: var(--acc);
}

.si-title {
  font-family: var(--fd);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--acc);
  margin-bottom: 8px;
}

.si-lead {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.55;
  margin-bottom: 28px;
}

.si-lbl {
  font-size: 10px;
  color: var(--txt2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.si-inp-wrap {
  position: relative;
  margin-bottom: 18px;
}

.si-inp {
  width: 100%;
  padding: 14px 70px 14px 16px;
  background: #0a0d12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--txt);
  font-size: 16px;
  outline: none;
  transition: border-color 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease);
}

.si-inp:focus {
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
}

.si-show {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--txt2);
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
}

.si-btn {
  width: 100%;
  padding: 16px;
  background: var(--acc);
  color: #070809;
  border: none;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease);
  box-shadow: 0 4px 20px rgba(200, 164, 90, 0.25);
}

.si-btn:hover {
  background: var(--acc2);
}

.si-btn.loading {
  opacity: 0.55;
  pointer-events: none;
}

.si-err {
  font-size: 12px;
  color: #e05555;
  margin-top: 12px;
  min-height: 18px;
}

.si-note {
  font-size: 11px;
  color: var(--mut);
  text-align: center;
  margin-top: 20px;
}

.si-note a {
  color: var(--acc);
  text-decoration: none;
}

@media (max-width: 900px) {
  .feat-grid,
  .who-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-ai-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .feat-grid,
  .who-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .step:last-child {
    border-bottom: none;
  }

  nav {
    padding: 14px 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    padding: 7.5rem 20px 4rem;
  }

  .section {
    padding: 4rem 20px;
  }

  .cta-wrap {
    padding: 4rem 20px;
  }

  footer {
    padding: 2rem 20px;
  }

  .si-box {
    margin: 16px;
    padding: 28px 22px;
  }
}
}
