/* ============================================================
   CAMBRIA COMPLETE — ULTRA-PREMIUM VIN Intelligence Report v2
   Trends applied: gold glow/bloom · glassmorphism · film-grain
   noise · custom cursor · magnetic buttons · blur-reveal ·
   split-text masks · cinematic preloader · parallax depth
   ============================================================ */

:root {
  --bg:        #060709;
  --bg-2:      #0b0d12;
  --panel:     rgba(20, 24, 32, 0.55);
  --panel-solid:#12151c;
  --line:      rgba(212,175,55,.14);
  --line-soft: rgba(255,255,255,.07);
  --gold:      #d4af37;
  --gold-2:    #f7e08b;
  --gold-deep: #a37e1f;
  --ink:       #f5f2ea;
  --muted:     #9aa2b1;
  --muted-2:   #6b7280;
  --red:       #ff5449;
  --green:     #3ddc84;
  --amber:     #ffbb38;
  --radius:    18px;
  --shadow:    0 30px 80px -30px rgba(0,0,0,.85);
  --gold-grad: linear-gradient(135deg,#fff2c4 0%,#f7d67a 25%,#d4af37 55%,#a37e1f 100%);
  --e-quart:   cubic-bezier(.77,0,.175,1);
  --e-cubic:   cubic-bezier(.645,.045,.355,1);
  --e-out:     cubic-bezier(.16,1,.3,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  cursor:none;
}
@media (max-width:900px){ body{cursor:auto} }
h1,h2,h3,h4 { font-family:'Playfair Display',Georgia,serif; font-weight:800; line-height:1.12; letter-spacing:.2px; }
a { color:inherit; text-decoration:none; }
::selection { background:var(--gold); color:#000; }
img { -webkit-user-drag:none; user-select:none; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position:fixed; top:0; left:0; z-index:9999; pointer-events:none;
  border-radius:50%; transform:translate(-50%,-50%); mix-blend-mode:difference;
}
.cursor-dot { width:7px; height:7px; background:var(--gold-2); transition:width .2s,height .2s; }
.cursor-ring {
  width:38px; height:38px; border:1.5px solid rgba(212,175,55,.6);
  transition:transform .18s var(--e-out), width .25s, height .25s, border-color .25s, opacity .25s;
}
.cursor-ring.hover { width:64px; height:64px; border-color:var(--gold-2); background:rgba(212,175,55,.06); }
.cursor-dot.hover { width:0; height:0; }
@media (max-width:900px){ .cursor-dot,.cursor-ring{display:none} }

/* ---------- Preloader ---------- */
#preloader {
  position:fixed; inset:0; z-index:10000; background:var(--bg);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:26px; transition:opacity .8s ease, visibility .8s ease;
}
#preloader.done { opacity:0; visibility:hidden; }
.pl-mark {
  width:70px; height:70px; border-radius:16px; background:var(--gold-grad);
  display:grid; place-items:center; color:#000; font-family:'Playfair Display',serif;
  font-weight:900; font-size:38px; box-shadow:0 0 60px rgba(212,175,55,.5);
  animation:plpulse 1.6s var(--e-out) infinite;
}
@keyframes plpulse { 0%,100%{transform:scale(1);box-shadow:0 0 50px rgba(212,175,55,.4)} 50%{transform:scale(1.08);box-shadow:0 0 90px rgba(212,175,55,.7)} }
.pl-vin { font-family:'JetBrains Mono',monospace; letter-spacing:6px; color:var(--gold-2); font-size:14px; opacity:.9; }
.pl-bar { width:220px; height:2px; background:rgba(255,255,255,.1); border-radius:2px; overflow:hidden; }
.pl-bar span { display:block; height:100%; width:0; background:var(--gold-grad); box-shadow:0 0 14px var(--gold); animation:plload 1.8s var(--e-out) forwards; }
@keyframes plload { to{width:100%} }
.pl-label { font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--muted-2); }

/* ---------- Ambient / noise / spotlight ---------- */
.ambient {
  position:fixed; inset:0; z-index:-3; pointer-events:none;
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(212,175,55,.20), transparent 60%),
    radial-gradient(800px 600px at -5% 45%, rgba(255,84,73,.07), transparent 60%),
    radial-gradient(1200px 800px at 50% 115%, rgba(212,175,55,.11), transparent 60%);
}
.grid-overlay {
  position:fixed; inset:0; z-index:-2; pointer-events:none; opacity:.35;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:radial-gradient(ellipse at 50% 25%,black,transparent 78%);
}
.noise {
  position:fixed; inset:0; z-index:-1; pointer-events:none; opacity:.05; 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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.spotlight {
  position:fixed; width:600px; height:600px; border-radius:50%; z-index:-1; pointer-events:none;
  background:radial-gradient(circle, rgba(212,175,55,.10), transparent 65%);
  transform:translate(-50%,-50%); transition:opacity .4s; opacity:0; filter:blur(10px);
}

/* ---------- Progress ---------- */
#progress {
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:var(--gold-grad); z-index:200;
  box-shadow:0 0 16px rgba(212,175,55,.8);
}

/* ---------- Nav ---------- */
nav {
  position:fixed; top:0; left:0; right:0; z-index:150;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 6vw; transition:.45s var(--e-out);
}
nav.scrolled {
  background:rgba(6,7,9,.72); backdrop-filter:blur(18px) saturate(140%);
  border-bottom:1px solid var(--line); padding:13px 6vw;
}
.brand { display:flex; align-items:center; gap:12px; }
.brand .mark {
  width:40px; height:40px; border-radius:10px; background:var(--gold-grad);
  display:grid; place-items:center; color:#000; font-weight:900;
  font-family:'Playfair Display',serif; font-size:22px;
  box-shadow:0 0 26px rgba(212,175,55,.45); transition:.4s var(--e-out);
}
nav.scrolled .brand .mark { transform:scale(.9); }
.brand b { font-family:'Playfair Display',serif; font-size:19px; letter-spacing:2.5px; }
.brand span { color:var(--gold); }
.nav-links { display:flex; gap:30px; }
.nav-links a { position:relative; font-size:12.5px; letter-spacing:1.6px; text-transform:uppercase; color:var(--muted); transition:.25s; }
.nav-links a::after { content:''; position:absolute; left:0; bottom:-6px; width:0; height:1.5px; background:var(--gold-grad); transition:width .35s var(--e-out); }
.nav-links a:hover { color:var(--gold-2); } .nav-links a:hover::after { width:100%; }
.nav-cta {
  padding:10px 20px; border-radius:40px; font-size:12px; letter-spacing:1.5px;
  text-transform:uppercase; font-weight:700; background:var(--gold-grad); color:#000;
  box-shadow:0 10px 26px -10px rgba(212,175,55,.8); transition:.3s var(--e-out);
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 16px 34px -10px rgba(212,175,55,1); }
.hamb { display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:160; }
.hamb span { width:26px; height:2px; background:var(--gold); transition:.3s var(--e-out); }
.hamb.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamb.open span:nth-child(2){ opacity:0; }
.hamb.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position:fixed; inset:0; z-index:155; background:rgba(6,7,9,.97); backdrop-filter:blur(20px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:26px;
  opacity:0; visibility:hidden; transition:.4s var(--e-out);
}
.mobile-menu.open { opacity:1; visibility:visible; }
.mobile-menu a { font-family:'Playfair Display',serif; font-size:28px; color:var(--ink); }
.mobile-menu a:hover { color:var(--gold); }

/* ---------- Hero ---------- */
.hero { min-height:100vh; position:relative; display:flex; align-items:center; padding:130px 6vw 70px; gap:5vw; flex-wrap:wrap; }
.hero-copy { flex:1 1 460px; max-width:660px; }
.eyebrow {
  display:inline-flex; align-items:center; gap:10px; font-size:11.5px; letter-spacing:3px;
  text-transform:uppercase; color:var(--gold-2); padding:9px 18px; border:1px solid var(--line);
  border-radius:40px; background:rgba(212,175,55,.05); margin-bottom:28px; backdrop-filter:blur(6px);
}
.eyebrow .dot { width:7px; height:7px; border-radius:50%; background:var(--gold); box-shadow:0 0 12px var(--gold); animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(1.6)} }
.hero h1 { font-size:clamp(2.9rem,6.5vw,5.6rem); margin-bottom:6px; }
.hero h1 .gold {
  background:linear-gradient(120deg,#fff2c4,#f7d67a 30%,#d4af37 60%,#fff2c4);
  background-size:200% auto; -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; animation:shimmerText 6s linear infinite;
}
@keyframes shimmerText { to{background-position:200% center} }
.hero .sub { font-size:clamp(1rem,2vw,1.22rem); color:var(--muted); max-width:540px; margin:20px 0 32px; }
.vin-badge {
  display:inline-flex; flex-direction:column; gap:5px; padding:18px 28px; border-radius:16px; margin-bottom:32px;
  background:var(--panel); border:1px solid var(--line); box-shadow:var(--shadow);
  backdrop-filter:blur(14px); position:relative; overflow:hidden;
}
.vin-badge::before { content:''; position:absolute; inset:0; background:linear-gradient(120deg,transparent 40%,rgba(212,175,55,.1) 50%,transparent 60%); transform:translateX(-120%); animation:sheen 6s ease-in-out infinite 1s; }
.vin-badge small { font-size:10.5px; letter-spacing:3px; text-transform:uppercase; color:var(--muted); }
.vin-badge .vin { font-family:'JetBrains Mono',monospace; font-size:clamp(1.1rem,3vw,1.8rem); letter-spacing:5px; color:var(--gold-2); }
.hero-cta { display:flex; gap:16px; flex-wrap:wrap; }
.btn {
  position:relative; padding:16px 32px; border-radius:46px; font-weight:700; font-size:14px;
  letter-spacing:.8px; cursor:none; border:none; transition:.3s var(--e-out);
  display:inline-flex; align-items:center; gap:10px; overflow:hidden;
}
@media(max-width:900px){ .btn{cursor:pointer} }
.btn-gold { background:var(--gold-grad); color:#000; box-shadow:0 16px 40px -14px rgba(212,175,55,.85); }
.btn-gold:hover { transform:translateY(-3px); box-shadow:0 24px 50px -14px rgba(212,175,55,1); }
.btn-ghost { background:rgba(255,255,255,.02); color:var(--ink); border:1px solid var(--line); backdrop-filter:blur(6px); }
.btn-ghost:hover { border-color:var(--gold); color:var(--gold-2); }

.hero-visual { flex:1 1 380px; display:flex; justify-content:center; position:relative; perspective:1200px; }
.hero-visual .frame {
  position:relative; border-radius:24px; overflow:hidden; max-width:430px;
  border:1px solid rgba(212,175,55,.3); transform-style:preserve-3d; transition:transform .2s var(--e-out);
  box-shadow:0 50px 100px -30px rgba(0,0,0,.95), 0 0 80px -24px rgba(212,175,55,.45);
}
.hero-visual .frame::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.16) 50%,transparent 70%);
  transform:translateX(-120%); animation:sheen 5s ease-in-out infinite;
}
@keyframes sheen { 0%,55%{transform:translateX(-120%)} 100%{transform:translateX(120%)} }
.hero-visual img { display:block; width:100%; }
.rating-chip {
  position:absolute; top:-16px; right:-16px; z-index:3; width:82px; height:82px; border-radius:50%;
  display:grid; place-items:center; text-align:center;
  background:radial-gradient(circle at 30% 30%,#ff5449,#8f1c14);
  border:2px solid rgba(255,255,255,.2); box-shadow:0 0 36px rgba(255,84,73,.6); animation:pulse 2.5s infinite;
}
.rating-chip b { font-family:'Playfair Display',serif; font-size:32px; color:#fff; line-height:1; }
.rating-chip small { font-size:9px; letter-spacing:1.5px; color:rgba(255,255,255,.85); }
.scroll-hint { position:absolute; bottom:26px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; color:var(--muted); font-size:10px; letter-spacing:3px; text-transform:uppercase; }
.scroll-hint .mouse { width:22px; height:36px; border:1.5px solid var(--line); border-radius:12px; position:relative; }
.scroll-hint .mouse::after { content:''; position:absolute; top:7px; left:50%; width:3px; height:7px; background:var(--gold); border-radius:2px; transform:translateX(-50%); animation:scrolldot 1.8s var(--e-out) infinite; }
@keyframes scrolldot { 0%{opacity:0;top:7px} 40%{opacity:1} 80%{opacity:0;top:18px} }

/* ---------- Trust bar ---------- */
.trust-bar { display:flex; flex-wrap:wrap; gap:40px 60px; justify-content:center; padding:36px 6vw; border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.trust-item { display:flex; flex-direction:column; align-items:center; gap:4px; }
.trust-item b { font-family:'Playfair Display',serif; font-size:2rem; background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.trust-item span { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); }

/* ---------- Sections ---------- */
section { padding:100px 6vw; position:relative; }
.section-head { text-align:center; max-width:740px; margin:0 auto 60px; }
.section-head .kicker { color:var(--gold-2); font-size:12px; letter-spacing:4px; text-transform:uppercase; }
.section-head h2 { font-size:clamp(2.1rem,4.8vw,3.2rem); margin:12px 0 16px; }
.section-head h2 .gold { background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.section-head p { color:var(--muted); }

/* ---------- Glass card base ---------- */
.glass { background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); backdrop-filter:blur(16px) saturate(130%); box-shadow:var(--shadow); }

/* ---------- Summary grid ---------- */
.summary-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; max-width:1200px; margin:0 auto; }
.sum-card { position:relative; padding:28px; border-radius:var(--radius); overflow:hidden; background:var(--panel); border:1px solid var(--line); backdrop-filter:blur(12px); transition:.4s var(--e-out); }
.sum-card::before { content:''; position:absolute; inset:0; opacity:0; transition:opacity .4s; background:radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(212,175,55,.1), transparent 70%); }
.sum-card:hover { transform:translateY(-8px); border-color:rgba(212,175,55,.4); box-shadow:0 40px 70px -30px rgba(0,0,0,.9),0 0 40px -20px rgba(212,175,55,.4); }
.sum-card:hover::before { opacity:1; }
.sum-card .ic { font-size:28px; margin-bottom:14px; filter:drop-shadow(0 0 10px rgba(212,175,55,.3)); }
.sum-card h4 { font-family:'Inter',sans-serif; font-weight:600; font-size:13px; letter-spacing:.6px; color:var(--muted); text-transform:uppercase; }
.sum-card .val { font-family:'Playfair Display',serif; font-size:2.1rem; margin:6px 0 10px; }
.status { display:inline-flex; align-items:center; gap:7px; font-size:11.5px; font-weight:700; letter-spacing:.5px; padding:5px 12px; border-radius:30px; }
.status .d { width:8px; height:8px; border-radius:50%; box-shadow:0 0 8px currentColor; }
.s-ok   { color:var(--green); background:rgba(61,220,132,.1); } .s-ok .d{background:var(--green)}
.s-warn { color:var(--red);   background:rgba(255,84,73,.1); }  .s-warn .d{background:var(--red)}
.s-att  { color:var(--amber); background:rgba(255,187,56,.1); } .s-att .d{background:var(--amber)}
.sum-card .bar { position:absolute; left:0; top:0; bottom:0; width:4px; }

/* ---------- Gauges (donut) ---------- */
.gauge-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:24px; max-width:1000px; margin:0 auto; }
.gauge { text-align:center; padding:30px 20px; border-radius:var(--radius); background:var(--panel); border:1px solid var(--line); backdrop-filter:blur(12px); }
.gauge svg { width:150px; height:150px; }
.gauge .track { fill:none; stroke:rgba(255,255,255,.06); stroke-width:10; }
.gauge .fill { fill:none; stroke-width:10; stroke-linecap:round; transform:rotate(-90deg); transform-origin:center; transition:stroke-dashoffset 1.6s var(--e-out); }
.gauge .num { font-family:'Playfair Display',serif; font-size:1.6rem; }
.gauge .cap { font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); margin-top:8px; }

/* ---------- Grid-2 panels ---------- */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:1200px; margin:0 auto; }
.panel { padding:36px; background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); backdrop-filter:blur(16px); box-shadow:var(--shadow); }
.panel > h3 { font-size:1.5rem; margin-bottom:6px; }
.panel > h3 .gold { color:var(--gold-2); }
.panel .src { font-size:11px; color:var(--muted); letter-spacing:2px; text-transform:uppercase; margin-bottom:26px; }

.timeline { position:relative; padding-left:30px; }
.timeline::before { content:''; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background:linear-gradient(var(--gold),transparent); }
.tl-item { position:relative; padding-bottom:26px; }
.tl-item:last-child { padding-bottom:0; }
.tl-item::before { content:''; position:absolute; left:-25px; top:5px; width:12px; height:12px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 4px rgba(212,175,55,.15),0 0 12px var(--gold); }
.tl-item.flag::before { background:var(--red); box-shadow:0 0 0 4px rgba(255,84,73,.2),0 0 12px var(--red); }
.tl-item .date { font-size:12px; letter-spacing:1px; color:var(--gold-2); text-transform:uppercase; }
.tl-item .mi { font-family:'JetBrains Mono',monospace; font-size:1.15rem; font-weight:700; }
.tl-item .meta { font-size:13px; color:var(--muted); }
.tl-item .warn { color:var(--red); font-size:12px; font-weight:700; }

.owner { display:flex; gap:16px; padding:16px 0; border-bottom:1px solid var(--line-soft); transition:.3s; }
.owner:last-child { border-bottom:none; }
.owner:hover { padding-left:6px; }
.owner .num { width:44px; height:44px; flex:none; border-radius:12px; display:grid; place-items:center; font-family:'Playfair Display',serif; font-weight:800; background:rgba(212,175,55,.1); color:var(--gold-2); border:1px solid rgba(212,175,55,.3); }
.owner .oinfo b { display:block; font-size:15px; }
.owner .oinfo span { font-size:13px; color:var(--muted); }
.owner.current .num { background:var(--gold-grad); color:#000; box-shadow:0 0 20px rgba(212,175,55,.5); }

/* ---------- Chart ---------- */
.chart-wrap { max-width:1200px; margin:0 auto; }
.chart-card { background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:36px; backdrop-filter:blur(16px); box-shadow:var(--shadow); }
svg .grid { stroke:rgba(255,255,255,.05); }
svg .line { fill:none; stroke:url(#lineG); stroke-width:2.5; filter:drop-shadow(0 0 6px rgba(212,175,55,.5)); }
svg .area { fill:url(#areaG); }
svg text { fill:var(--muted); font-size:11px; font-family:'JetBrains Mono',monospace; }
svg .pt { fill:var(--gold-2); filter:drop-shadow(0 0 4px var(--gold)); }
svg .pt.flag { fill:var(--red); filter:drop-shadow(0 0 6px var(--red)); }

/* ---------- Recalls ---------- */
.recall-list { max-width:1020px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.recall { background:var(--panel); border:1px solid var(--line); border-left:4px solid var(--red); border-radius:14px; overflow:hidden; transition:.35s var(--e-out); backdrop-filter:blur(12px); }
.recall:hover { border-color:rgba(255,84,73,.5); transform:translateX(4px); }
.recall .rhead { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 26px; cursor:none; }
@media(max-width:900px){ .recall .rhead{cursor:pointer} }
.recall .rhead .rt { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.recall .rcode { font-family:'JetBrains Mono',monospace; color:var(--red); font-weight:700; }
.recall .rcomp { font-size:14px; color:var(--ink); }
.recall .rdate { font-size:12px; color:var(--muted); white-space:nowrap; }
.recall .chev { transition:.35s var(--e-out); color:var(--gold-2); }
.recall.open .chev { transform:rotate(180deg); }
.recall .rbody { max-height:0; overflow:hidden; transition:max-height .55s var(--e-out); padding:0 26px; }
.recall.open .rbody { max-height:640px; padding-bottom:24px; }
.recall .rbody p { font-size:14px; color:var(--muted); margin-top:12px; }
.recall .rbody b { color:var(--gold-2); }

/* ---------- Specs ---------- */
.spec-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; max-width:1200px; margin:0 auto; }
.spec { padding:24px; border-radius:14px; background:var(--panel); border:1px solid var(--line); backdrop-filter:blur(12px); transition:.35s var(--e-out); }
.spec:hover { transform:translateY(-5px); border-color:rgba(212,175,55,.4); box-shadow:0 0 30px -12px rgba(212,175,55,.5); }
.spec small { font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); }
.spec b { display:block; font-size:1.2rem; font-family:'Playfair Display',serif; margin-top:6px; }

/* ---------- Values ---------- */
.values { max-width:1020px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:30px; }
.value-card { background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:36px; backdrop-filter:blur(16px); box-shadow:var(--shadow); }
.value-card h3 { font-size:1.4rem; margin-bottom:4px; }
.value-card .vsub { font-size:13px; color:var(--muted); margin-bottom:24px; }
.value-row { display:flex; justify-content:space-between; align-items:center; padding:16px 0; border-bottom:1px solid var(--line-soft); }
.value-row:last-child { border-bottom:none; }
.value-row .lbl { color:var(--muted); font-size:14px; }
.value-row .amt { font-family:'Playfair Display',serif; font-size:1.6rem; }
.value-row .amt.hi { background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.value-bar { height:6px; border-radius:6px; background:rgba(255,255,255,.06); margin-top:8px; overflow:hidden; }
.value-bar span { display:block; height:100%; background:var(--gold-grad); width:0; transition:width 1.4s var(--e-out); border-radius:6px; }

/* ---------- Warranty ---------- */
.warr-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; max-width:1020px; margin:0 auto; }
.warr { padding:26px; border-radius:14px; background:var(--panel); border:1px solid var(--line); backdrop-filter:blur(12px); transition:.3s var(--e-out); }
.warr:hover { transform:translateY(-4px); }
.warr h4 { font-family:'Inter',sans-serif; font-size:16px; }
.warr .exp { font-size:12px; color:var(--red); font-weight:700; letter-spacing:1px; }
.warr p { font-size:13px; color:var(--muted); margin-top:10px; }

/* ---------- CTA ---------- */
.cta-band { text-align:center; }
.cta-inner { max-width:920px; margin:0 auto; padding:70px 44px; border-radius:26px; position:relative; overflow:hidden;
  background:linear-gradient(135deg,rgba(212,175,55,.14),rgba(255,84,73,.05)); border:1px solid rgba(212,175,55,.3); box-shadow:var(--shadow); }
.cta-inner::before { content:''; position:absolute; top:-50%; left:-20%; width:140%; height:200%; background:radial-gradient(circle,rgba(212,175,55,.15),transparent 60%); animation:ctaGlow 8s ease-in-out infinite; }
@keyframes ctaGlow { 0%,100%{transform:translate(0,0)} 50%{transform:translate(10%,10%)} }
.cta-inner h2 { font-size:clamp(2.1rem,4.2vw,3rem); position:relative; }
.cta-inner h2 .gold { background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.cta-inner p { color:var(--muted); margin:16px auto 30px; max-width:560px; position:relative; }
.cta-inner .hero-cta { position:relative; }

/* ---------- Footer ---------- */
footer { padding:56px 6vw 44px; border-top:1px solid var(--line); text-align:center; color:var(--muted); font-size:13px; }
footer .brand { justify-content:center; margin-bottom:14px; }
footer .disc { max-width:780px; margin:16px auto 0; font-size:11px; line-height:1.7; color:var(--muted-2); }

/* ---------- Reveal ---------- */
.reveal { opacity:0; transform:translateY(46px); filter:blur(8px); transition:opacity .9s var(--e-out),transform .9s var(--e-out),filter .9s var(--e-out); }
.reveal.in { opacity:1; transform:none; filter:blur(0); }
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}.reveal.d4{transition-delay:.32s}

/* split text words */
.split .word { display:inline-block; opacity:0; transform:translateY(120%) rotate(4deg); transition:transform .7s var(--e-out),opacity .7s var(--e-out); }
.split.in .word { opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media(max-width:900px){
  .nav-links,.nav-cta{display:none}
  .hamb{display:flex}
  .grid-2,.values{grid-template-columns:1fr}
  .scroll-hint{display:none}
}
@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important}
  .reveal{opacity:1;transform:none;filter:none}
}
