:root {
  --bg: #0a0c14;
  --surface: #111520;
  --surface2: #181d2a;
  --surface3: #1e2537;
  --accent: #c9a84c;
  --accent-bright: #e8c96a;
  --accent-dim: rgba(201, 168, 76, 0.10);
  --accent-dim2: rgba(201, 168, 76, 0.18);
  --fg: #f0eee8;
  --fg-dim: rgba(240, 238, 232, 0.58);
  --fg-muted: rgba(240, 238, 232, 0.30);
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.12);
  --teal: #4ecdc4;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-logo span { color: var(--accent); }
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-dim2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-bright);
  letter-spacing: 0.04em;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-dim);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hmi-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.hmi-label { font-size: 12px; color: var(--fg-muted); }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.app-screenshot {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 80px rgba(201,168,76,0.06);
  background: var(--surface);
}

/* ── SECTION LABEL ───────────────────────────── */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── HOW IT WORKS ────────────────────────────── */
.hiw {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hiw-header {
  max-width: 1200px;
  margin: 0 auto 72px;
}
.hiw-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  max-width: 540px;
}
.hiw-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.hiw-step {
  background: var(--surface2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.2s;
}
.hiw-step:hover { background: var(--surface3); }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-dim2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.step-tag {
  font-size: 11px;
  color: var(--fg-muted);
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
}

/* ── SOCIAL PROOF / RESULTS ───────────────────── */
.results {
  padding: 100px 40px;
}
.results-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}
.results-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  max-width: 600px;
  margin: 0 auto 16px;
}
.results-title em { font-style: normal; color: var(--accent); }
.results-sub {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 540px;
  margin: 0 auto;
}
.results-stats {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}
.stat-card {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.4;
}
.stat-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.results-cta {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PRICING ─────────────────────────────────── */
.pricing {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}
.pricing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--fg-dim);
  max-width: 480px;
  margin: 0 auto;
}
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.tier:hover { border-color: var(--accent); transform: translateY(-4px); }
.tier-popular {
  border-color: var(--accent);
}
.tier-popular::before {
  content: 'Most Popular';
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 6px;
  border-radius: 16px 16px 0 0;
}
.tier-popular .tier-body { padding-top: 48px; }
.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.tp-amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.tp-period { font-size: 14px; color: var(--fg-muted); }
.tier-tagline { font-size: 13px; color: var(--fg-dim); margin-bottom: 28px; }
.tier-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.tier-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.tf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.4;
}
.tf-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-dim2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 1px;
}
.tier-cta {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  border: 1px solid var(--border-light);
  background: var(--surface);
  color: var(--fg);
}
.tier-cta:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: translateY(-1px); }
.tier-popular .tier-cta {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.tier-popular .tier-cta:hover { background: var(--accent-bright); }

/* ── INDUSTRIES ──────────────────────────────── */
.industries {
  padding: 80px 40px;
}
.industries-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  text-align: center;
}
.industries-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}
.industries-sub { font-size: 15px; color: var(--fg-dim); }
.industries-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-dim);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.industry-card:hover { border-color: var(--accent); color: var(--fg); background: var(--surface2); }
.industry-card.primary {
  background: var(--accent-dim);
  border-color: var(--accent-dim2);
  color: var(--accent-bright);
  font-weight: 700;
}

/* ── LEAD FORM ──────────────────────────────── */
.lead-form-section {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.lead-form-inner {
  max-width: 640px;
  margin: 0 auto;
}
.lf-header { text-align: center; margin-bottom: 40px; }
.lf-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}
.lf-sub { font-size: 16px; color: var(--fg-dim); }
.lead-form {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}
input, select {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
input::placeholder { color: var(--fg-muted); }
input:focus, select:focus { border-color: var(--accent); }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L2 4h8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-submit {
  background: var(--accent);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  width: 100%;
}
.form-submit:hover { background: var(--accent-bright); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-privacy {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}
.form-success {
  text-align: center;
  padding: 40px;
  display: none;
}
.form-success.show { display: block; }
.fs-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-dim2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}
.fs-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.fs-desc { font-size: 15px; color: var(--fg-dim); }

/* ── CLOSING CTA ─────────────────────────────── */
.closing-cta {
  padding: 120px 40px;
  text-align: center;
  position: relative;
}
.closing-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { max-width: 720px; margin: 0 auto; position: relative; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-brand span { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }

/* ── MOBILE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hiw-steps { grid-template-columns: 1fr; }
  .results-stats { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hiw, .results, .pricing, .industries, .lead-form-section, .closing-cta { padding: 60px 20px; }
  .tier { padding: 28px 24px; }
  .lead-form { padding: 28px 20px; }
  .footer { padding: 24px 20px; }
}