/* ══════════════════════════════════════════════════════
   AURIVANTEQ SYSTEMS — Design System
   Minimal luxury technology. Gold #C9960E. No gradients.
   Display: Space Grotesk · Body: Outfit
   ══════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────── */
:root {
  --bg:       #0A0A0F;
  --bg2:      #0d0d14;
  --bg3:      #111118;
  --panel:    rgba(17, 17, 24, 0.85);
  --border:   rgba(244,244,246,0.08);
  --border2:  rgba(244,244,246,0.04);
  --gold:     #C9960E;
  --gold-l:   #d4a61e;
  --gold-d:   #a87a0a;
  --white:    #F4F4F6;
  --w90:      rgba(244,244,246,0.9);
  --w60:      rgba(244,244,246,0.6);
  --w30:      rgba(244,244,246,0.3);
  --w10:      rgba(244,244,246,0.08);
  --w05:      rgba(244,244,246,0.04);
  --fh:       'Space Grotesk', sans-serif;
  --fb:       'Outfit', sans-serif;
  --ease:     cubic-bezier(.4,0,.2,1);
  --r:        10px;
  --r2:       16px;
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITIES ─────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.font-display { font-family: var(--fh); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--fh);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(244,244,246,0.55);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--gold);
}
.eyebrow.justify-center { justify-content: center; }

.display {
  font-family: var(--fh);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.08; color: var(--white);
  text-wrap: balance;
}
.lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75; color: var(--w60); font-weight: 300;
}

/* ── ANIMATIONS ────────────────────────────── */
.fade-up { opacity:0; transform:translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: var(--d, 0s); }
.in { opacity:1 !important; transform:none !important; }

/* ── BUTTONS ───────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--r);
  background: var(--gold); color: var(--bg);
  border: none; cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,150,14,0.3);
}

.btn-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 28px; border-radius: var(--r);
  background: transparent; color: var(--w90);
  border: 1px solid var(--w10); cursor: pointer;
  transition: border-color .25s, transform .25s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn-line:hover {
  border-color: rgba(201,150,14,0.5);
  transform: translateY(-2px);
}

/* ── FIELDS ────────────────────────────────── */
.form-label {
  display: block; font-family: var(--fh);
  font-size: 0.8rem; font-weight: 500;
  margin-bottom: 0.4rem; color: var(--w60);
}
.sys-field {
  width: 100%;
  background: var(--w05);
  border: 1px solid var(--w10);
  border-radius: var(--r);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.9rem;
  transition: border-color .25s, background .25s;
}
.sys-field::placeholder { color: var(--w30); }
.sys-field:focus {
  outline: none;
  border-color: rgba(201,150,14,0.55);
  background: var(--w10);
}
select.sys-field option { background: #14141c; color: var(--white); }

/* ── CARDS ─────────────────────────────────── */
.sys-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 2rem;
  transition: border-color .3s, transform .3s var(--ease);
}
.sys-card:hover {
  border-color: rgba(201,150,14,0.35);
  transform: translateY(-3px);
}
.sys-card-tag {
  font-family: var(--fh); font-size: 0.65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.avq-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
  background: var(--bg);
}
.avq-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('systems hero.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.avq-hero #heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: .4;
}
.hero-fog {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 55% 40%, rgba(201,150,14,.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,15,.15) 0%, transparent 40%, rgba(10,10,15,.7) 100%);
}
.hero-body {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto; padding: 0 24px;
}
.hero-h1 {
  font-family: var(--fh); font-weight: 700;
  font-size: clamp(30px,4.5vw,60px);
  line-height: 1.1; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 20px;
}
.hero-h1 em {
  font-style: normal; color: var(--gold);
}
.hero-sub {
  font-size: 15px; color: var(--w60);
  font-family: var(--fb); font-weight: 300;
  line-height: 1.75; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; z-index: 2;
  width: 20px; height: 32px;
  border: 1px solid rgba(244,244,246,.15); border-radius: 12px;
  justify-content: center;
}
.scroll-hint div {
  width: 3px; height: 6px; background: rgba(244,244,246,.35);
  border-radius: 2px; animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:translateY(0);opacity:1;} 50%{transform:translateY(7px);opacity:.3;} }

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.avq-section { position: relative; padding: clamp(4rem, 9vw, 8rem) 0; }
.avq-section-dark { background: var(--bg2); }

/* ═══════════════════════════════════════════════
   PROBLEM LIST
   ═══════════════════════════════════════════════ */
.problem-list { display: flex; flex-direction: column; gap: 0; }
.problem-item {
  display: flex; gap: 1.25rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--w10);
}
.problem-item:last-child { border-bottom: none; }
.problem-icon {
  font-family: var(--fh); font-size: 0.7rem; font-weight: 600;
  letter-spacing: .15em; color: var(--gold);
  flex-shrink: 0; padding-top: 0.15rem;
}

/* ═══════════════════════════════════════════════
   AURIMART PANEL
   ═══════════════════════════════════════════════ */
.aurimart-panel {
  background: var(--panel);
  border: 1px solid rgba(201,150,14,.15);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  position: relative;
}
.am-badge {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--fh); font-size: 10px; font-weight: 600;
  letter-spacing: .25em; color: var(--gold);
  background: rgba(201,150,14,.08); border: 1px solid rgba(201,150,14,.18);
  padding: 5px 13px; border-radius: 100px;
}
.status-badge {
  display: inline-flex; align-items: center;
  font-family: var(--fh); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; color: var(--gold);
  background: rgba(201,150,14,.08); border: 1px solid rgba(201,150,14,.18);
  padding: 5px 13px; border-radius: 100px;
}
.am-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.am-left {
  padding: 56px 52px;
  border-right: 1px solid rgba(201,150,14,.08);
}
.am-title {
  font-family: var(--fh); font-size: clamp(28px,4vw,50px); font-weight: 700;
  color: var(--white); letter-spacing: .02em; margin-bottom: 6px;
}
.am-sub {
  font-family: var(--fh); font-size: 11px; font-weight: 500;
  letter-spacing: .28em; color: var(--w30); text-transform: uppercase;
  margin-bottom: 20px;
}
.am-desc { font-size: 14px; color: var(--w60); line-height: 1.75; margin-bottom: 28px; font-weight: 300; }
.am-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.am-list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fb); font-size: 13px; font-weight: 400; color: var(--w90);
}
.am-check {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--gold); flex-shrink: 0;
}

/* AURIMART UI mockup */
.am-right { padding: 56px 48px; display: flex; align-items: center; justify-content: center; }
.am-ui {
  width: 100%; max-width: 360px;
  background: rgba(10,10,15,.9); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
}
.ami-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; background: rgba(201,150,14,.03);
  border-bottom: 1px solid var(--border);
}
.ami-dots { display: flex; gap: 5px; }
.ami-dots span { width: 9px; height: 9px; border-radius: 50%; }
.ami-dots span:nth-child(1) { background: #ff5f57; }
.ami-dots span:nth-child(2) { background: #ffbd2e; }
.ami-dots span:nth-child(3) { background: #28c840; }
.ami-topbar span {
  font-family: var(--fh); font-size: 10px; color: var(--w30);
  letter-spacing: .08em; margin-left: 4px;
}
.ami-content { padding: 18px 16px; display: flex; flex-direction: column; gap: 8px; }
.ami-row {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; border-radius: 8px;
  background: var(--w05); border: 1px solid var(--border2);
  transition: background .25s;
}
.ami-row.active { background: rgba(201,150,14,.05); border-color: rgba(201,150,14,.1); }
.ami-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(201,150,14,.08); border: 1px solid rgba(201,150,14,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; flex-shrink: 0;
}
.ami-row.active .ami-icon { background: rgba(201,150,14,.12); border-color: rgba(201,150,14,.2); }
.ami-info { flex: 1; }
.ami-info span {
  display: block; font-family: var(--fh); font-size: 11px; font-weight: 600;
  color: var(--w90); margin-bottom: 5px; letter-spacing: .03em;
}
.ami-bar { height: 3px; background: var(--w10); border-radius: 2px; overflow: hidden; }
.ami-prog {
  height: 100%; width: var(--w);
  background: var(--gold);
  border-radius: 2px;
  animation: progLoad 1.4s var(--ease) both;
}
.ami-row.active .ami-prog { background: var(--gold); }
@keyframes progLoad { from { width: 0 !important; } }
.ami-num { font-family: var(--fh); font-size: 11px; font-weight: 600; color: var(--w30); flex-shrink: 0; }
.ami-status { display: flex; gap: 8px; padding-top: 4px; }
.ami-status span {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--fh); font-size: 10px; font-weight: 600; letter-spacing: .1em;
  color: var(--gold); background: rgba(201,150,14,.06);
  border: 1px solid rgba(201,150,14,.12); padding: 4px 10px; border-radius: 100px;
}

/* ═══════════════════════════════════════════════
   COUNTDOWN
   ═══════════════════════════════════════════════ */
.countdown-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 2.5rem;
}
.countdown-grid {
  display: flex; align-items: center; gap: 0.5rem;
}
.cd-unit { text-align: center; min-width: 60px; }
.cd-num {
  font-family: var(--fh);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: var(--gold);
  line-height: 1; display: block;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-family: var(--fh);
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--w30); margin-top: 0.3rem; display: block;
}
.cd-sep {
  font-family: var(--fh); font-size: 1.5rem; font-weight: 300;
  color: var(--w30); padding-bottom: 1rem;
}
.countdown-launched { text-align: center; padding: 1rem 0; }

/* ═══════════════════════════════════════════════
   WAITLIST
   ═══════════════════════════════════════════════ */
.waitlist-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 2.5rem;
}

/* ═══════════════════════════════════════════════
   CAPABILITIES
   ═══════════════════════════════════════════════ */
.cap-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 2rem;
  transition: border-color .3s, transform .3s var(--ease);
}
.cap-card:hover {
  border-color: rgba(201,150,14,0.3);
  transform: translateY(-3px);
}
.cap-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,150,14,.08); border: 1px solid rgba(201,150,14,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px;
}

/* ═══════════════════════════════════════════════
   STANDALONE SOLUTIONS
   ═══════════════════════════════════════════════ */
.standalone-list { display: flex; flex-direction: column; gap: 0; }
.standalone-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: 2rem 0;
  border-bottom: 1px solid var(--w10);
}
.standalone-item:last-child { border-bottom: none; }
.standalone-problem { margin-bottom: 0.5rem; }
.standalone-q {
  font-family: var(--fh); font-size: 0.7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
}
.standalone-content { flex: 1; }

/* ═══════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════ */
.avq-section-process { position: relative; overflow: hidden; }
.process-bg {
  position: absolute; inset: 0;
  background: url('how we work.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.process-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.process-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 2rem;
  transition: border-color .3s;
}
.process-item:hover { border-color: rgba(201,150,14,0.25); }
.process-num {
  font-family: var(--fh); font-size: 0.7rem; font-weight: 600;
  letter-spacing: .2em; color: var(--gold);
}

/* ═══════════════════════════════════════════════
   SUPPORT
   ═══════════════════════════════════════════════ */
.support-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.support-item {
  display: inline-flex; align-items: center;
  font-family: var(--fh); font-size: 0.8rem; font-weight: 500;
  color: var(--w90); background: var(--w05);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 0.5rem 1rem;
}

/* ═══════════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════════ */
.trust-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: clamp(3rem, 6vw, 5rem);
}

/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: clamp(3rem, 6vw, 5rem);
}

/* ═══════════════════════════════════════════════
   FORM STATES
   ═══════════════════════════════════════════════ */
.form-success {
  color: var(--gold); font-weight: 500; text-align: center;
  padding: 1rem; background: rgba(201,150,14,.06);
  border: 1px solid rgba(201,150,14,.15); border-radius: var(--r);
}
.form-error {
  color: #ef4444; font-weight: 500; text-align: center;
  padding: 1rem; background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15); border-radius: var(--r);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .am-grid { grid-template-columns: 1fr; }
  .am-left { border-right: none; border-bottom: 1px solid rgba(201,150,14,.08); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-h1 { font-size: clamp(26px,7vw,44px); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .am-left { padding: 36px 24px; }
  .am-right { padding: 28px 24px; }
  .wrap { padding: 0 16px; }
  .standalone-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .countdown-grid { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .cd-unit { min-width: 50px; }
  .cd-num { font-size: 1.8rem; }
}

/* ── Reduced Motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* Hide main site footer on Systems page */
.footer { display: none !important; }
