:root{
  --bg:#070707;
  --bg-2:#0e0e0f;
  --panel:#121214;
  --panel-2:#151517;
  --text:#f3f3f3;
  --muted:#bdbdbd;
  --red-1:#a60808;
  --red-2:#c31111;
  --red-3:#e21717;
  --accent:#e6e6e6;
  --glow: 0 0 32px rgba(194,17,17,.28);
  --radius:14px;
  --ring: inset 0 0 0 1px rgba(230,230,230,.06);
  --shadow: 0 18px 70px rgba(0,0,0,.55);
  --shadow-soft: 0 10px 40px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(226,23,23,.22), transparent 60%),
    radial-gradient(1000px 700px at 8% 35%,  rgba(194,17,17,.20), transparent 65%),
    radial-gradient(900px 600px  at 82% 90%, rgba(226,23,23,.16), transparent 60%),
    linear-gradient(135deg,#000000 0%,#1a0000 18%,#0b0b0c 32%,#7a0000 50%,#0a0a0a 68%,#b30000 82%,#000000 100%);
  background-attachment: fixed;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}
.sr-only{
  position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.container{max-width:1200px;margin:auto;padding:0 20px}
.page{
  min-height:100%;
  display:flex;
  flex-direction:column;
}
main{flex:1}

/* Promo banner */
.promo-bar{
  background:linear-gradient(90deg, rgba(194,17,17,.92), rgba(7,7,7,.98));
  border-bottom:1px solid rgba(255,255,255,.16);
  font-size:13px;
}
.promo-inner{
  max-width:1200px;margin:auto;
  padding:8px 20px;
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:center;
}
.promo-label{
  font-weight:800;text-transform:uppercase;letter-spacing:.14em;font-size:10px;
  color:#ffe0e0;
  padding:4px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(0,0,0,.25);
}
.promo-text{color:#f7f7f7;}
.promo-countdown{
  font-family:"Bebas Neue";font-size:18px;letter-spacing:.12em;
  padding:3px 10px;border-radius:999px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.28);
}
.promo-cta{
  padding:8px 16px;border-radius:999px;
  background:#f5f5f5;color:#111;font-weight:800;border:none;
  display:inline-flex;align-items:center;gap:6px;
  font-size:12px;
}
.promo-cta:hover{filter:brightness(1.05);}

/* Header */
.nav{
  position:sticky;top:0;z-index:60;
  backdrop-filter:saturate(150%) blur(10px);
  background:linear-gradient(to bottom, rgba(7,7,7,.92), rgba(7,7,7,.75));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{
  max-width:1200px;margin:auto;display:flex;align-items:center;justify-content:space-between;
  padding:14px 20px;gap:14px;
}
.brand{display:flex;gap:12px;align-items:center;min-width:max-content}
.brand-logo{
  width:38px;height:38px;border-radius:8px;
  background:linear-gradient(180deg,#1a1a1d,#0c0c0d);
  display:grid;place-items:center;box-shadow:var(--glow)
}
.brand-name{font-family:"Bebas Neue",system-ui;font-size:28px;letter-spacing:.5px}
.nav-links{
  display:flex;gap:18px;font-weight:700;color:#e9e9e9;font-size:13px;align-items:center
}
.nav-links a{opacity:.92;padding:8px 10px;border-radius:10px}
.nav-links a:hover{opacity:1;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);padding:7px 9px}
.nav-links a.active{opacity:1;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12)}
.nav-cta{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 18px;border-radius:10px;font-weight:800;
  background:linear-gradient(180deg,var(--red-2),var(--red-1));
  box-shadow:0 10px 24px rgba(226,23,23,.26);
  transition:transform .15s ease, box-shadow .2s ease, filter .2s ease;
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;white-space:nowrap;
}
.nav-cta:hover{transform:translateY(-1px);filter:saturate(110%);box-shadow:0 14px 36px rgba(226,23,23,.36)}

.nav-right{display:flex;align-items:center;gap:10px}
.burger{
  display:none;
  width:42px;height:42px;border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;cursor:pointer;
  backdrop-filter: blur(6px);
}
.burger svg{width:20px;height:20px}

/* Drawer */
.mobile-drawer{
  position:fixed;inset:0;z-index:80;
  background:rgba(0,0,0,.72);
  opacity:0;pointer-events:none;
  transition:opacity .18s ease;
}
.mobile-drawer.open{opacity:1;pointer-events:auto}
.drawer-panel{
  position:absolute;top:12px;right:12px;left:12px;
  max-width:560px;margin-left:auto;
  border-radius:18px;
  background:linear-gradient(180deg,#141416,#0e0e10);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 60px rgba(0,0,0,.65), 0 0 60px rgba(226,23,23,.18);
  overflow:hidden;
}
.drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 14px;border-bottom:1px solid rgba(255,255,255,.08);
}
.drawer-links{display:grid;gap:10px;padding:14px}
.drawer-links a{
  padding:12px 12px;border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-weight:800;
}
.drawer-links a:hover{filter:brightness(1.05)}
.drawer-cta{display:grid;gap:10px;padding:0 14px 14px}
.drawer-cta .btn{justify-content:center}
.xbtn{
  width:40px;height:40px;border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;cursor:pointer;
}

@media (max-width:940px){
  .nav-links{display:none}
  .burger{display:inline-grid;place-items:center}
}

/* Page header */
.page-head{
  padding:34px 0 18px;
}
.kicker{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  font-weight:900;
}
.page-title{
  margin:10px 0 8px;
  font-family:"Bebas Neue",system-ui;
  letter-spacing:1px;
  font-size:58px;
  line-height:1.02;
  text-transform:uppercase;
  text-shadow:0 6px 32px rgba(0,0,0,.45);
}
.page-sub{
  margin:0;
  color:#e3e3e3;
  font-size:16px;
  max-width:820px;
}
@media (max-width:640px){
  .page-title{font-size:44px}
}

/* Sections & cards */
.section{padding:40px 0}
.section.tight{padding:26px 0}
.panel{
  border-radius:18px;
  background:linear-gradient(180deg,#141416,#0e0e10);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow-soft), var(--ring);
}
.panel.pad{padding:18px}
.grid-2{display:grid;grid-template-columns:1fr .85fr;gap:18px;align-items:start}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
@media (max-width:980px){
  .grid-2{grid-template-columns:1fr}
}
@media (max-width:900px){
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .grid-3,.grid-4{grid-template-columns:1fr}
}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:10px;padding:14px 18px;border-radius:12px;font-weight:900;letter-spacing:.02em;font-size:14px;cursor:pointer}
.btn-primary{background:linear-gradient(180deg,var(--red-3),var(--red-2));box-shadow:0 10px 28px rgba(226,23,23,.35);border:1px solid rgba(255,255,255,.12)}
.btn-primary:hover{filter:saturate(112%) brightness(1.03)}
.btn-ghost{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);color:var(--accent)}
.btn-ghost:hover{filter:brightness(1.05)}
.btn-discord{background:#5865F2;color:#fff;border:none;border-radius:10px;padding:12px 18px;font-weight:900;cursor:pointer;font-size:14px}
.btn-discord:hover{background:#4752C4}
.actions{display:flex;gap:12px;flex-wrap:wrap}

/* Home hero */
.hero{
  padding:34px 0 18px;
  position:relative;isolation:isolate;
}
.hero-bg{
  position:absolute;inset:-40px 0 auto 0;height:420px;z-index:-1;opacity:.22;
  background:url('../assets/ggb-hero.jpg') center/cover no-repeat;
  mix-blend:screen;
  pointer-events:none;
}
.h-1{
  margin:10px 0 14px;
  font-family:"Bebas Neue",system-ui;
  letter-spacing:1px;font-size:64px;line-height:1;
  text-transform:uppercase;
  text-shadow:0 6px 32px rgba(0,0,0,.45);
}
.sub{max-width:820px;color:#e3e3e3;font-size:18px;margin:0}
.meta{margin-top:10px;font-size:13px;color:var(--muted);display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.meta span{display:inline-flex;align-items:center;gap:6px}
@media(max-width:640px){
  .h-1{font-size:48px}
  .sub{font-size:16px}
}

/* Bullet list */
.bullets{display:grid;gap:10px}
.bullet{
  padding:12px 14px;border-radius:14px;
  background:linear-gradient(180deg,#161618,#0f0f11);
  border:1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  display:flex;gap:10px;align-items:flex-start;
  color:#e6e6e6;font-size:14px;
}
.dot{
  width:9px;height:9px;border-radius:999px;background:var(--red-2);
  box-shadow: 0 0 0 6px rgba(194,17,17,.16);
  flex:0 0 auto;margin-top:5px;
}
.bullet small{display:block;color:var(--muted);font-size:12px;margin-top:3px}

/* Proof card */
.proof-card{
  border-radius:18px;
  background:linear-gradient(180deg,#141416,#0e0e10);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow), 0 0 48px rgba(226,23,23,.12), var(--ring);
  overflow:hidden;
}
.proof-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(20,20,22,.96), rgba(14,14,16,.92));
}
.proof-pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;font-size:12px;color:#f1f1f1;
}
.proof-pill .tiny-dot{
  width:8px;height:8px;border-radius:999px;background:var(--red-2);
  box-shadow: 0 0 0 5px rgba(194,17,17,.18);
}
.proof-time{font-size:12px;color:var(--muted);font-weight:800}
.video{
  width:100%;
  background:#131316;
  /* makes the box much taller */
  height: clamp(220px, 36vw, 515px);
  overflow:hidden;
}
.video-embed{
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 0;   /* remove the 16:9 lock */
  overflow: hidden;
}
.video-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video video{width:100%;height:100%;display:block;object-fit:cover;background:#000}
.proof-foot{
  padding:12px 14px;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#d7d7d7;font-size:13px;
  background:linear-gradient(180deg,#141416,#101012);
}
.proof-brand{display:flex;flex-direction:column;gap:2px;min-width:0}
.proof-brand strong{font-size:13px}
.proof-brand span{font-size:12px;color:var(--muted)}
.proof-link{
  font-size:12px;font-weight:900;color:var(--accent);
  padding:8px 10px;border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  white-space:nowrap;
}
.proof-link:hover{filter:brightness(1.06)}
.disclaimer{font-size:12px;color:var(--muted);margin-top:10px}

/* Feature cards (cross-page) */
.feature{
  padding:16px;border-radius:16px;
  background:linear-gradient(180deg,#161618,#0f0f11);
  border:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;gap:6px;
}
.feature .tag{
  font-size:11px;text-transform:uppercase;letter-spacing:.14em;color:var(--muted);font-weight:900
}
.feature .title{font-weight:900;font-size:16px}
.feature .desc{font-size:13px;color:#cfcfcf;line-height:1.45}
.feature .link{margin-top:auto;font-size:12px;color:var(--accent);font-weight:900}

/* Logos pills */
.logos-row{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.logo-pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.22));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  color:#e9e9e9;font-weight:900;font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  transition: transform .15s ease, border-color .2s ease, filter .2s ease, box-shadow .2s ease;
  user-select:none;
}
.logo-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(226,23,23,.38);
  box-shadow: 0 10px 22px rgba(0,0,0,.35), 0 0 0 1px rgba(226,23,23,.18) inset;
  filter: brightness(1.05);
}
.logo-pill img{width:20px;height:20px;object-fit:contain;border-radius:6px;filter: drop-shadow(0 0 6px rgba(0,0,0,.65))}
.logo-pill img.has-bg{background: rgba(255,255,255,.92);padding: 2px}

/* Stats */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.stat{
  padding:16px;border-radius:14px;text-align:center;
  background:linear-gradient(180deg,#161618,#0f0f11);
  border:1px solid rgba(255,255,255,.08)
}
.stat h3{margin:4px 0 0;font-family:"Bebas Neue";font-size:34px;letter-spacing:.5px}
.stat p{margin:6px 0 0;color:#cfcfcf;font-size:13px}
@media (max-width:820px){.stats{grid-template-columns:repeat(2,1fr)}}

/* Ticker */
.ticker{display:flex;align-items:center;gap:14px;padding:12px 16px;border-radius:999px;background:linear-gradient(90deg,#161618,#0f0f11);overflow:hidden;border:1px solid rgba(255,255,255,.12)}
.ticker-label{font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.16em;color:var(--muted)}
.ticker-marquee{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:13px;color:#f0f0f0}

/* FAQ */
.faq{max-width:980px;margin:auto}
.faq-item{margin-bottom:10px;border-radius:12px;overflow:hidden}
.faq-q{
  width:100%;text-align:left;padding:16px 18px;
  background:linear-gradient(180deg,#151517,#101014);
  color:#f4f4f4;border:1px solid rgba(255,255,255,.08);
  font-weight:900;cursor:pointer;
}
.faq-q:focus{outline:2px solid rgba(226,23,23,.55);outline-offset:2px}
.faq-a{padding:16px 18px;color:#d6d6d6;border:1px solid rgba(255,255,255,.08);border-top:none;background:#0f0f11}

/* Swiper cards */
.swiper{width:100%}
.swiper-slide{height:auto}
.slide-card{position:relative}
.slide-card img{border-radius:12px;border:1px solid rgba(255,255,255,.08)}
.caption{
  position:absolute;left:8px;right:8px;bottom:8px;
  padding:8px 10px;font-size:13px;line-height:1.25;
  color:#f2f2f2;border-radius:10px;
  background:linear-gradient(180deg,rgba(0,0,0,.0),rgba(0,0,0,.35));
  backdrop-filter: blur(2px);
  border:1px solid rgba(255,255,255,.08);
}
.slider-wrap{position:relative}
.nav-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;cursor:pointer;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;user-select:none;
  transition:filter .15s ease, transform .15s ease;
  backdrop-filter: blur(4px);
  z-index:3;
}
.nav-btn:hover{filter:brightness(1.1)}
.nav-btn svg{width:20px;height:20px}
.nav-prev{left:-12px}
.nav-next{right:-12px}
@media (max-width:640px){
  .nav-prev{left:-6px}
  .nav-next{right:-6px}
}

/* Testimonial video */
.testi-video{aspect-ratio: 9/16;width:100%;border-radius:12px;overflow:hidden;border:1px solid rgba(255,255,255,.08);background:#131316}
.testi-video video{width:100%;height:100%;display:block;object-fit:cover}
.testi-meta{padding:10px 12px 14px;color:#d9d9d9;font-size:14px}

/* Instagram */
.ig-grid{display:grid;grid-template-columns:2fr 3fr;gap:20px}
.ig-preview{border-radius:14px;border:1px solid rgba(255,255,255,.12);background:linear-gradient(180deg,#16161a,#101015);padding:16px}
.ig-embeds{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:12px;align-items:start}
.ig-embeds .instagram-media{
  margin:0 !important;width:100% !important;min-width:0 !important;background:transparent !important;
  border-radius:14px !important;overflow:hidden;border:1px solid rgba(255,255,255,.10) !important;
}
@media(max-width:980px){
  .ig-grid{grid-template-columns:1fr}
  .ig-embeds{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media(max-width:640px){
  .ig-embeds{grid-template-columns:1fr}
}

/* Email capture */
.capture{display:grid;grid-template-columns:1.2fr .8fr;gap:16px;align-items:stretch}
.capture-card{padding:18px;border-radius:18px;background:linear-gradient(180deg,#18181c,#101014);border:1px solid rgba(255,255,255,.12);box-shadow:var(--ring)}
.capture h3{margin:0 0 6px}
.capture p{margin:0 0 14px;color:#d7d7d7;font-size:14px}
.form-row{display:flex;gap:10px;flex-wrap:wrap}
.input{
  flex:1;min-width:220px;
  padding:12px 12px;border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;outline:none;
}
.input::placeholder{color:#bdbdbd}
.mini{font-size:12px;color:var(--muted);margin-top:10px}
@media(max-width:900px){.capture{grid-template-columns:1fr}}

/* Giveaway */
.giveaway-card{padding:20px;border-radius:18px;background:linear-gradient(180deg,#18181c,#101014);border:1px solid rgba(255,255,255,.12);box-shadow:var(--ring)}
.giveaway-card h3{margin:0 0 8px}
.giveaway-card p{margin:0 0 10px;color:#dcdcdc}
.giveaway-list{margin:0 0 12px;padding-left:18px;font-size:14px;color:#cfcfcf}

/* Calls */
.calls-grid{display:grid;grid-template-columns:2fr 3fr;gap:24px}
.call-card{padding:18px;border-radius:14px;background:linear-gradient(180deg,#17171b,#101014);border:1px solid rgba(255,255,255,.08)}
.call-card h3{margin:0 0 6px;font-size:18px}
.call-card p{margin:0 0 12px;font-size:14px;color:#d0d0d0}
.call-meta{font-size:12px;color:var(--muted)}
.calendly-inline-widget{border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:#0b0b0d}
@media(max-width:900px){.calls-grid{grid-template-columns:1fr}}

/* Footer */
footer{
  padding:40px 20px;background:rgba(0,0,0,.55);
  border-top:1px solid rgba(255,255,255,.06);
  color:#b9b9b9;font-size:13px
}
.footer-inner{max-width:1200px;margin:auto;display:flex;flex-wrap:wrap;gap:18px;justify-content:space-between}
.footer-links a{opacity:.92}
.footer-links a:hover{opacity:1;text-decoration:underline;text-underline-offset:4px}

/* Cookie banner */
.cookie-banner{position:fixed;bottom:18px;left:18px;right:18px;z-index:95}
.cookie-inner{
  max-width:980px;margin:auto;
  display:flex;gap:14px;justify-content:space-between;align-items:center;
  padding:14px 16px;border-radius:14px;
  background:linear-gradient(180deg,#151518,#0f0f12);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 50px rgba(0,0,0,.6),var(--ring);
}
.cookie-text{font-size:13px;color:#e6e6e6;line-height:1.35}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.cookie-btn{
  padding:10px 14px;border-radius:12px;font-weight:900;cursor:pointer;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);color:#e6e6e6;
}
.cookie-btn.accept{
  background:linear-gradient(180deg,var(--red-3),var(--red-2));
  color:#fff;border:1px solid rgba(255,255,255,.12);
}
.cookie-btn:hover{filter:brightness(1.06)}
@media(max-width:640px){
  .cookie-inner{flex-direction:column;align-items:flex-start}
  .cookie-actions{width:100%}
}

/* Reveal */
.reveal{opacity:0;transform:translateY(14px);transition:opacity .5s ease, transform .5s ease}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
}

/* ---------- Calculators ---------- */
.calc-hero{padding-top:40px;padding-bottom:22px}
.calc-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:14px
}
.calc-card{
  background:rgba(0,0,0,.50);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.calc-head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.calc-title{font-weight:800;color:#f3f3f3}
.calc-desc{color:#b9b9b9;font-size:13px;line-height:1.45;margin-top:6px}
.calc-body{margin-top:12px;display:flex;flex-direction:column;gap:10px}
.calc-row{display:grid;grid-template-columns:160px 1fr;gap:10px;align-items:center}
.calc-row label{color:#d7d7d7;font-size:13px}
.calc-row input,.calc-row select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#f3f3f3;
  outline:none;
}
.calc-row input:focus,.calc-row select:focus{border-color:rgba(255,255,255,.22)}
.calc-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:4px}
.calc-actions .btn{padding:10px 12px}
.calc-result{
  margin-top:8px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.35);
  color:#eaeaea;
  font-variant-numeric:tabular-nums;
}
.calc-result .muted{display:block;margin-top:4px;color:#b9b9b9;font-size:12px}

.calc-legs{display:flex;flex-direction:column;gap:8px}
.calc-leg{display:grid;grid-template-columns:1fr 110px;gap:10px;align-items:center}
.calc-leg input{width:100%}
.calc-leg .remove-leg{padding:10px 12px;border-radius:12px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.04);color:#f3f3f3}
.calc-leg .remove-leg:hover{border-color:rgba(255,255,255,.22)}

@media (max-width: 880px){
  .calc-grid{grid-template-columns:1fr}
  .calc-row{grid-template-columns:1fr}
}

.proof-note{margin-top:14px;text-align:center;color:#d7d7d7;font-weight:700;}
.proof-note .muted{font-weight:500;color:#b9b9b9}

.shot-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.shot-grid img{
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.35);
}
@media (max-width: 900px){
  .shot-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 560px){
  .shot-grid{grid-template-columns:1fr}
}

.footer-right{display:flex;flex-direction:column;gap:10px;align-items:flex-end;}
.social-row{display:flex;gap:10px;align-items:center;flex-wrap:wrap;}

.social-icon{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  text-decoration:none;color:inherit;
  transition:transform .12s ease,border-color .12s ease,background .12s ease;
}
.social-icon:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.04);}
.social-logo{width:18px;height:18px;display:block;}
.social-label{font-size:12px;letter-spacing:.08em;opacity:.85;}


/* ===== Footer polish ===== */
.site-footer{
  padding: 26px 0 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer .footer-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.site-footer .footer-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer .footer-brand{
  font-size: 14px;
  opacity: .9;
  white-space: nowrap;
}

.site-footer .footer-social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer .social{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  line-height: 1;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.site-footer .social svg{
  width: 16px;
  height: 16px;
  opacity: .95;
}

.site-footer .social:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

.site-footer .footer-links{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: .9;
  white-space: nowrap;
}

.site-footer .footer-links a{
  text-decoration: none;
  color: inherit;
}

.site-footer .footer-links a:hover{
  text-decoration: underline;
}

.site-footer .footer-legal{
  margin-top: 12px;
  font-size: 12px;
  opacity: .75;
  line-height: 1.45;
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile stack */
@media (max-width: 720px){
  .site-footer .footer-top{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===== Pro Footer (flashy + organized) ===== */
.site-footer--pro{
  position: relative;
  padding: 26px 0 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  overflow: hidden;
}

.site-footer--pro::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height: 240px;
  background:
    radial-gradient(closest-side, rgba(195,17,17,.22), transparent 70%),
    radial-gradient(closest-side, rgba(195,17,17,.12), transparent 70%);
  filter: blur(6px);
  pointer-events:none;
}

.site-footer--pro .footer-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
}

.site-footer--pro .footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.site-footer--pro .footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

.site-footer--pro .footer-logo{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .5px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

.site-footer--pro .footer-name{
  font-weight: 800;
  font-size: 14px;
  line-height: 1.1;
}

.site-footer--pro .footer-mini{
  font-size: 12px;
  opacity: .75;
  margin-top: 2px;
}

.site-footer--pro .footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.site-footer--pro .social-icon{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: inherit;
  text-decoration:none;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, background .14s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}

.site-footer--pro .social-icon svg{
  width: 18px;
  height: 18px;
  opacity: .95;
}

.site-footer--pro .social-icon:hover{
  transform: translateY(-2px);
  border-color: rgba(195,17,17,.55);
  background: rgba(195,17,17,.10);
  box-shadow: 0 14px 28px rgba(0,0,0,.32), 0 0 0 6px rgba(195,17,17,.10);
}

.site-footer--pro .footer-links{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size: 13px;
  opacity: .9;
  white-space: nowrap;
  min-width: 180px;
  justify-content:flex-end;
}

.site-footer--pro .footer-links a{
  color: inherit;
  text-decoration: none;
}
.site-footer--pro .footer-links a:hover{
  text-decoration: underline;
}

.site-footer--pro .footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}

.site-footer--pro .footer-legal{
  font-size: 12px;
  opacity: .75;
  line-height: 1.45;
  max-width: 780px;
}

.site-footer--pro .footer-copy{
  font-size: 12px;
  opacity: .65;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 720px){
  .site-footer--pro .footer-top{
    flex-direction: column;
    align-items: center;
    text-align:center;
  }
  .site-footer--pro .footer-links{
    justify-content: center;
    min-width: unset;
  }
  .site-footer--pro .footer-bottom{
    flex-direction: column;
    align-items: center;
    text-align:center;
  }
}
