/* ============================================================
   AURORA — Luxury Editorial Theme
   Aesthetic: Dark premium / editorial / cinematic
   Fonts: Playfair Display (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@400;500&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:       #080c14;
  --surface:  #0d1320;
  --card:     #111926;
  --border:   rgba(255,255,255,0.055);
  --border-2: rgba(255,255,255,0.10);
  --text:     #e8edf5;
  --muted:    #6b7b8f;
  --faint:    rgba(255,255,255,0.03);

  --gold:     #c9a84c;
  --gold-2:   #f0d080;
  --iris:     #7b65f4;
  --cyan:     #37d9c4;
  --rose:     #e8637a;

  --accent:   var(--gold);
  --radius:   16px;
  --max:      1280px;
  --ease:     cubic-bezier(.22,.68,0,1.2);

  font-family: 'DM Sans', system-ui, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
@media (pointer: fine) {
  body { cursor: none; }
}
a { color: inherit; text-decoration: none }
img { display: block; max-width: 100% }

/* ── Custom Cursor ───────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  transition: width .22s var(--ease), height .22s var(--ease), border-color .22s;
}
body:has(.btn:hover) .cursor-ring,
body:has(a:hover) .cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--gold);
}

/* ── Noise / Grain overlay ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: .032;
  pointer-events: none;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Ambient glow layers ─────────────────────────────────── */
.glow-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.glow-layer {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  will-change: transform;
  animation: drift 18s ease-in-out infinite alternate;
}
.glow-layer:nth-child(1) { width: 500px; height: 500px; background: var(--iris); top: -80px; left: -100px; animation-duration: 20s }
.glow-layer:nth-child(2) { width: 400px; height: 400px; background: var(--cyan); bottom: 30%; right: -80px; animation-duration: 25s; animation-delay: -8s }
.glow-layer:nth-child(3) { width: 350px; height: 350px; background: var(--gold); top: 60%; left: 40%; animation-duration: 30s; animation-delay: -14s; opacity: .07 }
@keyframes drift {
  from { transform: translate(0,0) rotate(0deg) }
  to   { transform: translate(30px, 40px) rotate(12deg) }
}

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1 }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(8,12,20,.75);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--text);
  position: relative;
}
.brand::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.nav { display: flex; gap: 4px; align-items: center }
.nav-link {
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px); height: 1px;
  background: var(--gold);
  transition: transform .2s var(--ease);
}
.nav-link:hover { color: var(--text) }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1) }
.header-actions { display: flex; gap: 10px; align-items: center }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: .04em;
  border: 0; border-radius: 10px;
  padding: 11px 22px;
  cursor: none;
  position: relative; overflow: hidden;
  transition: transform .18s var(--ease), box-shadow .18s;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.06);
  opacity: 0;
  transition: opacity .18s;
}
.btn:hover::after { opacity: 1 }
.btn:hover { transform: translateY(-2px) }
.btn:active { transform: translateY(0) }

.btn.primary {
  background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  background-size: 200% 200%;
  color: #1a1200;
  box-shadow: 0 4px 24px rgba(201,168,76,.22), inset 0 1px 0 rgba(255,255,255,.2);
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0%,100% { background-position: 0% 50% }
  50%      { background-position: 100% 50% }
}
.btn.primary:hover { box-shadow: 0 6px 32px rgba(201,168,76,.38) }

.btn.outline {
  border: 1px solid var(--border-2);
  color: var(--text);
  background: transparent;
}
.btn.outline:hover { border-color: var(--gold); color: var(--gold) }

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  padding: 8px 14px;
}
.btn.ghost:hover { color: var(--text); border-color: var(--border-2) }

.btn.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  background: transparent;
}
.btn.burger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
  border-radius: 2px;
}
.btn.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) }
.btn.burger.open span:nth-child(2) { opacity: 0 }
.btn.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .6s .1s var(--ease) both;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.01;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .7s .2s var(--ease) both;
}
.title em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.7);
}
.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 46ch;
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp .7s .32s var(--ease) both;
}
.cta-row {
  display: flex; gap: 14px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .7s .44s var(--ease) both;
}
.stats {
  display: flex; gap: 28px;
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  opacity: 0;
  animation: fadeUp .7s .54s var(--ease) both;
}
.stats li { display: flex; flex-direction: column; gap: 2px }
.stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--text);
}
.stats span { font-size: 12px; color: var(--muted); letter-spacing: .04em }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* ── Hero Visual / Terminal Card ─────────────────────────── */
.hero-visual {
  opacity: 0;
  animation: fadeIn .9s .4s var(--ease) both;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.card-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 2px 0 rgba(255,255,255,.06) inset;
  position: relative;
}
.card-visual::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(201,168,76,.04), transparent);
  pointer-events: none;
}
.card-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.2);
}
.dot { width: 12px; height: 12px; border-radius: 50% }
.dot.red    { background: #e8637a; box-shadow: 0 0 6px rgba(232,99,122,.4) }
.dot.yellow { background: #f0c040; box-shadow: 0 0 6px rgba(240,192,64,.4) }
.dot.green  { background: #37d9c4; box-shadow: 0 0 6px rgba(55,217,196,.4) }
.card-title-bar {
  flex: 1;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
}
.card-body { padding: 20px 22px 24px }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; margin-bottom: 6px;
  font-weight: 600;
}
.card-body p { font-size: 13px; color: var(--muted); margin-bottom: 18px }

/* Animated chart bars */
.mini-charts {
  display: flex; gap: 10px;
  align-items: end;
  height: 72px;
  margin-bottom: 18px;
}
.bar {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201,168,76,.2) 100%);
  height: 0;
  transition: height 1.2s var(--ease);
  position: relative;
}
.bar::after {
  content: '';
  position: absolute;
  top: 0; inset-inline: 0;
  height: 2px;
  background: var(--gold-2);
  border-radius: 2px;
  opacity: .8;
}
.bars-loaded .bar:nth-child(1) { height: 75% }
.bars-loaded .bar:nth-child(2) { height: 55%; background: linear-gradient(180deg, var(--iris), rgba(123,101,244,.15)); transition-delay: .1s }
.bars-loaded .bar:nth-child(2)::after { background: #a090ff }
.bars-loaded .bar:nth-child(3) { height: 92%; transition-delay: .18s }
.bars-loaded .bar:nth-child(4) { height: 47%; background: linear-gradient(180deg, var(--cyan), rgba(55,217,196,.15)); transition-delay: .26s }
.bars-loaded .bar:nth-child(4)::after { background: var(--cyan) }
.bars-loaded .bar:nth-child(5) { height: 68%; transition-delay: .34s }

/* Metric row inside card */
.metric-row {
  display: flex; gap: 12px;
}
.metric {
  flex: 1;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}
.metric-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: 'DM Mono', monospace;
}
.metric-value {
  font-size: 16px; font-weight: 600;
  color: var(--text);
}
.metric-value.up   { color: var(--cyan) }
.metric-value.down { color: var(--rose) }

/* Pulse dot */
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .08em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1) }
  50%      { opacity: .4; transform: scale(.75) }
}

/* ── Section base ────────────────────────────────────────── */
.section { padding: 80px 0; position: relative }
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.012), transparent);
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1; max-width: 40px; height: 1px;
  background: var(--gold);
  opacity: .5;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 10px;
}
.section-sub {
  color: var(--muted);
  font-size: 16px; font-weight: 300;
  max-width: 52ch;
  margin-bottom: 44px;
  line-height: 1.7;
}

/* ── Feature Cards ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 28px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--accent-glow, rgba(201,168,76,.06)), transparent 65%);
  opacity: 0;
  transition: opacity .3s;
}
.feat-card:hover::before { opacity: 1 }
.feat-card:hover {
  border-color: rgba(201,168,76,.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}
.feat-card:nth-child(2) { --accent-glow: rgba(123,101,244,.08) }
.feat-card:nth-child(3) { --accent-glow: rgba(55,217,196,.07) }
.feat-card:nth-child(4) { --accent-glow: rgba(232,99,122,.06) }

.feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  position: relative; z-index: 1;
}
.feat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 600;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.feat-card p {
  color: var(--muted);
  font-size: 14px; line-height: 1.7;
  font-weight: 300;
  position: relative; z-index: 1;
}
.feat-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .6;
  position: relative; z-index: 1;
}

/* ── Marquee strip ───────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: rgba(0,0,0,.2);
}
.marquee-track {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  white-space: nowrap;
  padding: 0 32px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.marquee-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 9px;
}
@keyframes marquee {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,.5) }

.price-card.featured {
  border-color: rgba(201,168,76,.3);
  background: linear-gradient(160deg, rgba(201,168,76,.06) 0%, var(--card) 50%);
  box-shadow: 0 0 0 1px rgba(201,168,76,.12) inset, 0 24px 64px rgba(0,0,0,.5);
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 20px; right: -28px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: #1a1200;
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 700;
  letter-spacing: .12em;
  padding: 5px 34px;
  transform: rotate(45deg);
}
.price-tier {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.price sub { font-size: 16px; font-weight: 400; color: var(--muted); vertical-align: baseline }
.price-desc { font-size: 13px; color: var(--muted); font-weight: 300 }
.price-divider {
  height: 1px;
  background: var(--border);
}
.price-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.price-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.price-features li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,.02);
  position: relative;
}
.price-features li.included { color: var(--text) }
.price-features li.included::before {
  content: '✓';
  background: rgba(55,217,196,.12);
  border-color: rgba(55,217,196,.3);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
}
.price-cta { margin-top: auto }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { padding: 80px 0; overflow: hidden }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  opacity: .2;
  position: absolute; top: 14px; left: 20px;
}
.testi-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
  padding-top: 18px;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--iris), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid var(--border-2);
}
.testi-name { font-size: 14px; font-weight: 600 }
.testi-role { font-size: 11px; color: var(--muted); font-family: 'DM Mono', monospace; letter-spacing: .04em }
.stars { color: var(--gold); font-size: 11px; letter-spacing: 2px; margin-bottom: 6px }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--muted);
  font-size: 15px; font-weight: 300;
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-list li {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 14px;
}
.contact-list strong {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-weight: 400;
}

/* Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.form-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color .18s, background .18s;
  width: 100%;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,.4);
  background: rgba(201,168,76,.03);
}
.form-row { display: flex; align-items: center; gap: 14px; margin-top: 6px }
.form-status {
  font-size: 13px; font-weight: 500;
  font-family: 'DM Mono', monospace;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
}
.footer-copy {
  font-size: 13px; color: var(--muted);
}
.socials { display: flex; gap: 20px }
.socials a {
  font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  transition: color .18s;
}
.socials a:hover { color: var(--gold) }

/* ── Scroll-reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s }
.reveal-delay-2 { transition-delay: .2s }
.reveal-delay-3 { transition-delay: .3s }
.reveal-delay-4 { transition-delay: .4s }

/* ── Light mode ──────────────────────────────────────────── */
body.light {
  --bg: #f7f4ef;
  --surface: #f0ece4;
  --card: #ffffff;
  --border: rgba(0,0,0,.07);
  --border-2: rgba(0,0,0,.12);
  --text: #15100a;
  --muted: #6b6059;
  --faint: rgba(0,0,0,.02);
  background: linear-gradient(180deg, #f7f4ef, #ede8df);
}
body.light .site-header {
  background: rgba(247,244,239,.85);
  border-bottom-color: rgba(0,0,0,.06);
}
body.light .card-visual { box-shadow: 0 20px 60px rgba(0,0,0,.12) }
body.light .glow-layer   { opacity: .07 }
body.light body::before  { opacity: .025 }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid    { grid-template-columns: 1fr; gap: 40px }
  .contact-grid { grid-template-columns: 1fr }
  .testi-grid   { grid-template-columns: 1fr 1fr }
  .features-grid{ grid-template-columns: 1fr 1fr }
}
@media (max-width: 768px) {
  .container    { padding: 0 20px }
  .hero         { padding: 60px 0 60px }
  .nav          { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px; gap: 2px; z-index: 50 }
  .nav.open     { display: flex }
  .btn.burger   { display: inline-flex }
  .site-header  { position: relative }
  .header-inner { flex-wrap: wrap; position: relative }
  .pricing-grid { grid-template-columns: 1fr }
  .testi-grid   { grid-template-columns: 1fr }
  .features-grid{ grid-template-columns: 1fr }
  .price-card.featured { transform: none }
  .cursor-dot, .cursor-ring { display: none }
  .cta-row { flex-direction: column; align-items: flex-start }
  .stats { gap: 16px; flex-wrap: wrap }
}

/* Desktop mode on phones — nav must be accessible */
@media (min-width: 769px) and (pointer: coarse) {
  /* Touch device in desktop mode: show normal nav, restore cursor */
  body { cursor: auto !important }
  .cursor-dot, .cursor-ring { display: none !important }
  .btn.burger { display: none }
  .nav { display: flex !important }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important }
  /* Make sure hidden elements become visible when animations are disabled */
  .eyebrow, .title, .lead, .cta-row, .stats, .hero-visual { opacity: 1 !important; transform: none !important }
}
