/* ===== Tokens ===== */
:root{
  --bg: #07080a;
  --bg-alt: #0c0e12;
  --surface: rgba(255,255,255,0.04);
  --surface-strong: rgba(255,255,255,0.07);
  --border: rgba(212,175,55,0.18);
  --border-soft: rgba(255,255,255,0.08);
  --gold: #d4af37;
  --gold-light: #f1d67a;
  --gold-dim: #8a7228;
  --text: #f3f1ea;
  --text-dim: #a8a49c;
  --text-faint: #706c64;
  --radius: 18px;
  --radius-sm: 10px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input, textarea{ font-family:inherit; }

::selection{ background: var(--gold); color:#0a0a0a; }

/* Scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--bg); }
::-webkit-scrollbar-thumb{ background: var(--gold-dim); border-radius:10px; border:2px solid var(--bg); }

/* ===== Utility ===== */
.section-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow{
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow.center{ text-align:center; }
.section-title{
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-title.center{ text-align:center; margin-left:auto; margin-right:auto; max-width: 680px; }
.body-text{
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 18px;
}
.gold-text{
  background: linear-gradient(100deg, var(--gold-dim) 20%, var(--gold-light) 40%, #fff6d8 50%, var(--gold-light) 60%, var(--gold-dim) 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3.5s linear infinite;
}
@keyframes shimmer{
  0%{ background-position: 200% 0; }
  100%{ background-position: -50% 0; }
}
.italic{ font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.glass-card{
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Reveal-on-scroll */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* Noise overlay for texture */
.noise-overlay{
  position: fixed; inset:0; z-index: 2; pointer-events:none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow{
  position: fixed; top:0; left:0; width: 420px; height: 420px;
  border-radius: 50%; pointer-events:none; z-index:1;
  background: radial-gradient(circle, rgba(212,175,55,0.10), transparent 70%);
  transform: translate(-50%,-50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media (hover:hover){ .cursor-glow{ opacity: 1; } }

/* ===== Loader ===== */
.loader{
  position: fixed; inset:0; z-index: 999;
  background: var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.hide{ opacity:0; visibility:hidden; }
.loader-logo{
  width: 84px; height: 84px; object-fit:contain;
  animation: pulseLogo 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(212,175,55,0.35));
}
@keyframes pulseLogo{
  0%,100%{ transform: scale(1); opacity: 0.85; }
  50%{ transform: scale(1.06); opacity: 1; }
}

/* ===== Nav ===== */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  padding: 14px 0;
  background: rgba(7,8,10,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner{
  max-width: 1180px; margin:0 auto; padding: 0 32px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:12px;
  margin-left: clamp(0px, 2vw, 32px);
  transform: translateX(clamp(-380px, calc(278px - 25.9vw), -28px));
}
.brand-mark{ width: 38px; height: 38px; object-fit:contain; }
.brand-name{
  font-family: var(--font-serif); font-weight:600; font-size: 19px;
  letter-spacing: 0.06em;
}
.brand-name .accent{
  background: linear-gradient(100deg, var(--gold-dim) 20%, var(--gold-light) 40%, #fff6d8 50%, var(--gold-light) 60%, var(--gold-dim) 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 3.5s linear infinite;
}
.nav-links{ display:flex; align-items:center; gap:36px; }
@media (min-width: 1100px){
  .nav-links{
    display:grid; grid-template-columns:repeat(5, minmax(0, 1fr));
    width:720px; gap:0;
  }
  .nav-links > a{ justify-self:center; }
}
.nav-links a{
  font-size: 14px; font-weight: 500; color: var(--text-dim);
  position:relative; transition: color 0.3s ease;
}
.nav-links a:not(.nav-cta)::after{
  content:''; position:absolute; left:0; bottom:-6px; width:0; height:1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover{ color: var(--text); }
.nav-links a:not(.nav-cta):hover::after{ width:100%; }
.nav-cta{
  background: var(--gold);
  color: #100c02 !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding: 6px;
}
.nav-toggle span{ width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s ease; }

/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 140px 24px 0;
  overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.orb{
  position:absolute; border-radius:50%; filter: blur(90px);
  opacity:0.35;
}
.orb-1{
  width: 520px; height: 520px; background: radial-gradient(circle, var(--gold), transparent 70%);
  top: -180px; left: 50%; transform: translateX(-70%);
  animation: float1 14s ease-in-out infinite;
}
.orb-2{
  width: 420px; height: 420px; background: radial-gradient(circle, #6b5a1e, transparent 70%);
  bottom: -160px; right: 10%;
  animation: float2 16s ease-in-out infinite;
}
@keyframes float1{ 0%,100%{ transform: translate(-70%,0); } 50%{ transform: translate(-55%,40px); } }
@keyframes float2{ 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-30px,-30px); } }
.grid-lines{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.hero-watermark{
  position: absolute; top: 413px; left: 50%; transform: translate(-50%,-50%);
  width: min(920px, 92vw); z-index: 1; opacity: 0.13;
  pointer-events: none; user-select: none;
}
.hero-content{ position:relative; z-index:2; width:100%; max-width: 820px; }
.hero-content .eyebrow{
  background-image: linear-gradient(100deg, var(--gold-dim) 20%, var(--gold-light) 40%, #fff6d8 50%, var(--gold-light) 60%, var(--gold-dim) 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 3.5s linear infinite;
}
.hero-title{
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 16px 0 26px;
}
.title-line{ display:block; }
@media (min-width: 761px){
  .title-line{ white-space:nowrap; }
}
.hero-sub{
  color: var(--text-dim);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn svg{ transition: transform 0.3s ease; }
.btn:hover svg{ transform: translateX(4px); }
.btn-primary{
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 25%, #fff6d8 50%, var(--gold-light) 75%, var(--gold) 100%);
  background-size: 250% 100%;
  animation: shimmer 3.5s linear infinite;
  color: #100c02;
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 14px 32px rgba(212,175,55,0.3); }
.btn-ghost{
  color: var(--text);
  border-color: var(--border-soft);
  background: var(--surface);
}
.btn-ghost:hover{ border-color: var(--gold); background: rgba(212,175,55,0.06); transform: translateY(-3px); }
.btn-lg{ padding: 18px 36px; font-size: 15px; }
.btn-full{ width:100%; justify-content:center; }

/* Marquee */
.hero-marquee{
  position: relative; z-index: 2;
  width: 100%;
  margin-top: 90px;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow:hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track{
  display:flex; gap: 14px; white-space:nowrap; width:max-content;
  animation: marquee 28s linear infinite;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-faint);
}
.marquee-track span:nth-child(2n){
  background: linear-gradient(100deg, var(--gold-dim) 20%, var(--gold-light) 40%, #fff6d8 50%, var(--gold-light) 60%, var(--gold-dim) 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 3.5s linear infinite;
}
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ===== Hero check / intent pills ===== */
.hero-check{
  margin: 44px auto 0; max-width: 640px; padding: 26px; text-align:left;
}
.intent-row{ display:flex; flex-wrap:wrap; gap: 12px; margin-bottom: 20px; }
.intent-pill{
  font-size: 13px; font-weight:700; letter-spacing: 0.03em;
  padding: 11px 16px; border-radius: 999px;
  background: var(--surface-strong); border: 1px solid var(--border-soft); color: var(--text-dim);
  display:flex; align-items:center; gap:8px;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.intent-pill svg{ flex-shrink:0; opacity: 0.8; }
.intent-pill:not(:disabled):hover{
  transform: translateY(-2px);
  border-color: var(--border);
  background: rgba(255,255,255,0.09);
}
.intent-pill.active{
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 25%, #fff6d8 50%, var(--gold-light) 75%, var(--gold) 100%);
  background-size: 250% 100%;
  animation: shimmer 3.5s linear infinite;
  border-color: transparent;
  color: #100c02;
  box-shadow: 0 10px 26px rgba(212,175,55,0.35);
}
.intent-pill.active svg{ opacity: 1; }
.intent-pill.active:hover{ transform: translateY(-2px); }
.intent-pill:disabled{ cursor: not-allowed; }
.intent-pill:disabled svg{ opacity: 0.4; }
.pill-tag{
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform:uppercase;
  color: var(--text-faint);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-soft);
  padding: 3px 8px; border-radius: 999px;
}
.pill-tag-live{
  color: #100c02; background: rgba(16,12,2,0.15); border-color: rgba(16,12,2,0.25);
}
.listing-form{ display:flex; gap: 10px; flex-wrap:wrap; }
.listing-form input{
  flex: 1 1 260px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--text); font-size: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.listing-form input:focus{ outline:none; border-color: var(--gold); background: rgba(212,175,55,0.04); }
.hero-check-note{ margin-top: 14px; font-size: 12px; color: var(--text); }
.hero-check-note a{ color: var(--gold); text-decoration: underline; }

/* ===== Truth badges (shared) ===== */
.truth-badge{
  display:inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight:600; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
  background: rgba(122,201,148,0.12); color: #7ac994; border: 1px solid rgba(122,201,148,0.3);
}
.truth-badge-refuse, .truth-badge-refuse-sm{
  background: rgba(212,175,55,0.12); color: var(--gold-light); border-color: var(--border);
}
.truth-badge-sm{ font-size: 10px; padding: 4px 10px; }
.truth-fail .truth-badge{ background: rgba(224,108,108,0.12); color: #e06c6c; border-color: rgba(224,108,108,0.3); }

/* ===== Truth Model ===== */
.truth-model{ padding: 110px 0; background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.truth-grid{ margin-top: 48px; display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.truth-card{
  padding: 30px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border-soft);
}
.truth-card p{ color: var(--text-dim); font-size: 14px; line-height: 1.7; }

/* ===== Pipeline (How It Works) ===== */
.process{ padding: 130px 0; }
.pipeline{
  margin-top: 56px; display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 10px;
}
.pipeline-step{
  padding: 14px 20px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-soft);
  font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-dim);
  letter-spacing: 0.02em;
}
.pipeline-step-final{ border-color: var(--border); color: var(--gold-light); background: rgba(212,175,55,0.08); }
.pipeline-arrow{ color: var(--gold-dim); font-size: 16px; }

/* ===== Supported products ===== */
.supported{ padding: 130px 0; background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.supported-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.supported-card{
  padding: 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border-soft);
}
.supported-card h3{ font-family: var(--font-serif); font-size: 20px; margin-bottom: 8px; }
.supported-card p{ color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.supported-refuse{ border-color: var(--border); }
.factory-note{ margin-top: 32px; text-align:center; color: var(--text-faint); font-size: 13px; font-style: italic; }

/* ===== Demo ===== */
.demo{ padding: 130px 0; }
.demo-result-wrap{ margin-top: 24px; }
.demo-empty{
  padding: 48px; text-align:center; border-radius: var(--radius);
  background: var(--surface); border: 1px dashed var(--border-soft); color: var(--text-faint); font-size: 14px;
}
.fixture-banner{
  display:flex; align-items:center; gap:10px;
  background: rgba(212,175,55,0.1); border: 1px solid var(--border); color: var(--gold-light);
  font-size: 12px; font-weight:600; letter-spacing: 0.03em;
  padding: 10px 16px; border-radius: var(--radius-sm); margin-bottom: 22px;
}
.result-card{
  padding: 34px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border-soft);
}
.result-head{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-bottom: 18px; }
.result-head h3{ font-family: var(--font-serif); font-size: 24px; }
.result-reason{ color: var(--text-dim); font-size: 15px; line-height:1.7; margin-bottom: 24px; }
.result-fields{ display:grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin-bottom: 24px; }
.result-field span{ display:block; font-size: 11px; letter-spacing:0.08em; text-transform:uppercase; color: var(--text-faint); margin-bottom: 6px; }
.result-field p, .result-field div{ font-size: 15px; color: var(--text); font-family: 'JetBrains Mono', monospace; }
.result-lists{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.result-list h4{ font-size: 12px; letter-spacing:0.06em; text-transform:uppercase; color: var(--gold); margin-bottom: 10px; }
.result-list ul{ display:flex; flex-direction:column; gap: 6px; }
.result-list li{ font-size: 13px; color: var(--text-dim); padding-left: 14px; position:relative; }
.result-list li::before{ content:'•'; position:absolute; left:0; color: var(--text-faint); }

/* ===== Deal or Disaster ===== */
.deal-disaster{ padding: 130px 0; background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.dd-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.dd-card{ padding: 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-soft); }
.dd-card h3{ font-family: var(--font-serif); font-size: 19px; margin-bottom: 4px; }
.dd-fixture-tag{ font-size: 11px; color: var(--text-faint); text-transform:uppercase; letter-spacing:0.06em; margin-bottom: 18px; }
.dd-card ul{ display:flex; flex-direction:column; gap:6px; margin-bottom: 18px; }
.dd-card li{ font-size: 13px; color: var(--text-dim); }
.dd-verdict{ font-size: 14px; color: var(--text); line-height:1.6; }
.dd-disaster{ border-color: var(--border); }

/* ===== Services ===== */
.services{ padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.services-grid{
  margin-top: 56px;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.service-card{
  padding: 34px 26px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.service-card:hover{
  transform: translateY(-8px);
  border-color: var(--border);
  background: var(--surface-strong);
}
.service-icon{
  width: 52px; height: 52px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(212,175,55,0.08); color: var(--gold);
  margin-bottom: 22px;
  transition: background 0.3s ease;
}
.service-card:hover .service-icon{ background: rgba(212,175,55,0.18); }
.service-card h3{ font-family: var(--font-serif); font-size: 20px; font-weight:600; margin-bottom: 10px; }
.service-card p{ color: var(--text-dim); font-size: 14px; line-height:1.7; margin-bottom: 18px; }
.service-link{ font-size: 13px; font-weight:600; color: var(--gold); }

/* ===== Contact ===== */
.contact{ padding: 130px 0; background: var(--bg-alt); border-top: 1px solid var(--border-soft); }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items:start; }
.contact-info{ margin-top: 30px; display:flex; flex-direction:column; gap: 18px; }
.contact-info span{ display:block; font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color: var(--text-faint); margin-bottom: 4px; }
.contact-info a{ color: var(--gold); font-size: 16px; }
.contact-form{ padding: 38px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group{ margin-bottom: 18px; }
.form-group label{ display:block; font-size: 12px; letter-spacing:0.08em; text-transform:uppercase; color: var(--text-faint); margin-bottom: 8px; }
.form-group input, .form-group textarea{
  width:100%; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  padding: 13px 14px; color: var(--text); font-size: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus{
  outline:none; border-color: var(--gold); background: rgba(212,175,55,0.04);
}
.form-note{ margin-top: 14px; font-size: 13px; color: var(--gold); text-align:center; min-height: 18px; }

/* ===== Footer ===== */
.footer{ padding: 50px 0; }
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap: 20px;
  padding-top: 40px; border-top: 1px solid var(--border-soft);
}
.footer-brand{ display:flex; align-items:center; gap: 10px; }
.footer-brand .brand-mark{ width: 30px; height:30px; }
.footer-brand-text{ display:flex; flex-direction:column; gap: 2px; }
.footer-brand-text .brand-name{ font-size: 16px; }
.footer-tagline{ font-size: 11px; color: var(--text-faint); letter-spacing: 0.02em; }
.footer-links{ display:flex; gap: 26px; flex-wrap:wrap; }
.footer-links a{ font-size: 13px; color: var(--text-dim); transition: color 0.3s ease; }
.footer-links a:hover{ color: var(--gold); }
.footer-copy{ font-size: 12px; color: var(--text-faint); width:100%; text-align:center; margin-top: 10px; }

/* Back to top */
.back-to-top{
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 46px; height: 46px; border-radius:50%;
  background: var(--surface-strong); border: 1px solid var(--border-soft);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(10px);
}
.back-to-top.show{ opacity:1; visibility:visible; transform: translateY(0); }
.back-to-top:hover{ border-color: var(--gold); transform: translateY(-4px); }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .truth-grid{ grid-template-columns: 1fr; }
  .supported-grid{ grid-template-columns: 1fr; }
  .dd-grid{ grid-template-columns: 1fr; }
  .result-lists{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px){
  .brand{ margin-left:0; transform:translateX(-16px); }
  .nav-links{
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px,80vw);
    background: rgba(7,8,10,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content:center; align-items:flex-start;
    padding: 40px; gap: 28px;
    transition: right 0.45s var(--ease);
    border-left: 1px solid var(--border-soft);
  }
  .nav-links.open{ right: 0; }
  .nav-toggle{ display:flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
  .services-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .hero{ padding-top: 120px; }
  .hero-watermark{ top: 202px; }
  .section-inner{ padding: 0 20px; }
  .listing-form{ flex-direction: column; }
  .listing-form .btn{ width:100%; justify-content:center; }
  .result-fields{ grid-template-columns: 1fr; }
}
@media (max-width: 480px){
  .footer-inner{ justify-content:center; text-align:center; }
  .footer-brand-text{ align-items:center; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
