/* ============================================================
   FaceValue — Standalone Landing Page Style System
   Ported & enhanced from originalglobals.css design system.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,300;6..72,400;6..72,500&family=Hanken+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* surfaces */
  --bg:        #FAFBFD;
  --surface:   #ffffff;
  --surface-2: #F4F6FA;
  --surface-3: #ECEFF5;

  /* hairlines */
  --line:      #E9EBF1;
  --line-soft: #F1F3F8;
  --line-strong: #DCDFE8;

  /* ink — deep slate, never pure black */
  --ink:   #1b1e26;
  --ink-2: #474d59;
  --muted: #767d8a;
  --faint: #a2a8b4;

  /* accent — refined electric-royal blue */
  --accent:      #3257e8;
  --accent-2:    #2845c9;
  --accent-ink:  #2742b8;
  --accent-wash: #EEF1FE;
  --accent-line: #D9E0FC;

  /* fan / verified — emerald, softened */
  --fan:      #1c9d6b;
  --fan-deep: #157a53;
  --fan-ink:  #15784f;
  --fan-wash: #E9F6EF;
  --fan-line: #CDEBDC;

  /* scalper / blocked — red, softened */
  --red:      #e2574d;
  --red-deep: #c8443c;
  --red-ink:  #bb4039;
  --red-wash: #FCEDEB;
  --red-line: #F6D6D2;

  /* cinematic stage (kept dark for the sim) */
  --stage:      #1a1d27;
  --stage-2:    #232734;
  --stage-line: #313644;
  --stage-ink:  #aeb4c2;

  /* radii — generous, soft */
  --r-xs: 9px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* shadow — soft, large, faintly blue */
  --sh-xs: 0 1px 2px rgba(28,40,80,.05);
  --sh-sm: 0 4px 16px -8px rgba(28,40,80,.12), 0 1px 3px rgba(28,40,80,.05);
  --sh:    0 20px 48px -24px rgba(28,40,90,.22), 0 4px 14px -8px rgba(28,40,80,.08);
  --sh-lg: 0 44px 90px -40px rgba(24,36,90,.30), 0 12px 30px -16px rgba(28,40,80,.12);

  --maxw: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* display = elegant light serif */
h1, h2, h3 {
  margin: 0; font-family: var(--font-display); font-weight: 400;
  letter-spacing: -0.012em; line-height: 1.08; color: var(--ink); text-wrap: balance;
  font-optical-sizing: auto;
}
h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: rgba(50,87,232,.16); }

.mono { font-family: var(--mono); font-feature-settings: "tnum"; }
.serif { font-family: var(--font-display); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- soft pastel air ---------- */
.aurora { position: relative; }
.aurora::before {
  content: ""; position: absolute; inset: -10% -10% auto -10%; height: 140%; z-index: -1;
  background:
    radial-gradient(70% 55% at 50% -8%, #E5EDFF 0%, rgba(229,237,255,0) 60%),
    radial-gradient(55% 45% at 86% 2%, #F1E9FE 0%, rgba(241,233,254,0) 55%),
    radial-gradient(50% 45% at 10% 6%, #E7F6EF 0%, rgba(231,246,239,0) 55%);
  pointer-events: none;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-tight { max-width: 720px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--muted);
}
.eyebrow .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--fan); box-shadow: 0 0 0 3px var(--fan-wash); }
.eyebrow.accent { color: var(--accent); }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,251,253,0.72);
  backdrop-filter: saturate(170%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font); font-weight: 600; letter-spacing: -0.02em; font-size: 18px; color: var(--ink); }
.brand .glyph {
  width: 27px; height: 27px; border-radius: 9px; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 15px; font-weight: 500; flex: none;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link { font-size: 14.5px; font-weight: 500; color: var(--muted); padding: 8px 13px; border-radius: var(--r-pill); transition: background .16s, color .16s; }
.nav-link:hover { background: var(--surface-2); color: var(--ink); }
.nav-link.here { color: var(--ink); }
.nav-valiron { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--muted); padding: 7px 12px; border: 1px solid var(--line); border-radius: var(--r-pill); background: rgba(255,255,255,.6); }
.nav-valiron .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fan); box-shadow: 0 0 0 3px var(--fan-wash); }

.backlink { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--muted); transition: color .16s, gap .16s; }
.backlink:hover { color: var(--ink); gap: 10px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  padding: 12px 22px; border-radius: var(--r-pill); border: 1px solid transparent; cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .2s, background .18s, border-color .16s, opacity .16s;
  white-space: nowrap; user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn[disabled] { cursor: not-allowed; opacity: .5 !important; pointer-events: none; }
.btn-lg { padding: 15px 28px; font-size: 15.5px; }
.btn-block { width: 100%; }

.btn-ink { background: var(--ink); color: #fff; box-shadow: 0 8px 22px -12px rgba(20,24,40,.6); }
.btn-ink:hover:not([disabled]) { background: #2a2f3b; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 10px 26px -12px rgba(50,87,232,.6); }
.btn-accent:hover:not([disabled]) { background: var(--accent-2); transform: translateY(-1px); }
.btn-fan { background: var(--fan); color: #fff; box-shadow: 0 10px 26px -12px rgba(28,157,107,.55); }
.btn-fan:hover:not([disabled]) { background: var(--fan-deep); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover:not([disabled]) { background: #fff; border-color: var(--ink-2); transform: translateY(-1px); }
.btn-quiet { background: transparent; color: var(--ink-2); padding: 10px 6px; }
.btn-quiet:hover:not([disabled]) { color: var(--ink); }

/* ---------- cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.card-pad { padding: 28px; }
.glass { background: rgba(255,255,255,.72); backdrop-filter: blur(14px) saturate(160%); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--sh); }

/* ---------- chips / badges ---------- */
.chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; letter-spacing: -0.005em; padding: 7px 13px; border-radius: var(--r-pill); border: 1px solid transparent; white-space: nowrap; }
.chip .mono { font-size: 12.5px; }
.chip-fv { background: var(--fan-wash); color: var(--fan-ink); border-color: var(--fan-line); }
.chip-fv .check { color: var(--fan); font-weight: 800; }
.chip-accent { background: var(--accent-wash); color: var(--accent-ink); border-color: var(--accent-line); }
.chip-neutral { background: var(--surface-2); color: var(--ink-2); border-color: var(--line); }

.badge-verified { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: var(--fan-ink); }
.badge-verified .seal { width: 22px; height: 22px; border-radius: 50%; background: var(--fan); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; box-shadow: 0 0 0 4px var(--fan-wash); flex: none; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.label { font-size: 13px; font-weight: 600; color: var(--ink-2); letter-spacing: -0.005em; }
.input, .select {
  font-family: var(--font); font-size: 15px; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 12px 14px; width: 100%;
  transition: border-color .16s, box-shadow .16s; appearance: none;
}
.input.mono { font-family: var(--mono); }
.input:focus, .select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-wash); }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer;
}

/* ---------- spinner ---------- */
.spin { width: 15px; height: 15px; border-radius: 50%; display: inline-block; border: 2px solid currentColor; border-right-color: transparent; opacity: .85; animation: spinrot .7s linear infinite; vertical-align: -2px; }
.spin-fan { color: var(--fan); } .spin-muted { color: var(--muted); }
@keyframes spinrot { to { transform: rotate(360deg); } }

.hr { height: 1px; background: var(--line-soft); border: 0; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-soft); margin-top: 110px; padding: 44px 0 60px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-mark { font-family: var(--mono); font-size: 12.5px; color: var(--muted); }

/* ---------- motion ---------- */
@keyframes riseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { 0% { opacity: 0; transform: scale(.85); } 60% { transform: scale(1.04); } 100% { opacity: 1; transform: scale(1); } }
@keyframes shimmer { 0% { background-position: -240px 0; } 100% { background-position: 240px 0; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.rise { animation: riseIn .7s var(--ease-out) both; }

.skel { background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 37%, var(--surface-2) 63%); background-size: 480px 100%; animation: shimmer 1.4s infinite linear; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } }

@media (max-width: 720px) {
  .wrap { padding: 0 18px; }
  .nav-inner { padding: 12px 18px; }
  .nav-links .nav-link { display: none; }
}

/* ============================================================
   HOME / landing
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(80px, 14vh, 160px) 0 clamp(60px, 10vh, 120px);
  text-align: center;
  background-image: linear-gradient(180deg, rgba(14, 16, 22, 0.72) 0%, rgba(14, 16, 22, 0.8) 50%, rgba(250, 251, 253, 1) 100%), url('hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}
.hero.aurora::before {
  display: none;
}
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
  backdrop-filter: blur(12px);
}
.hero h1 {
  font-size: clamp(44px, 7.6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin: 26px auto 0;
  max-width: 15ch;
  color: #ffffff;
}
.hero h1 .fv {
  color: #5fdca0;
  font-style: italic;
  text-shadow: 0 0 16px rgba(95, 220, 160, 0.3);
}
.hero-intro {
  margin: 28px auto 0;
  font-size: clamp(16px, 1.75vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
  max-width: 58ch;
}
.hero-intro b {
  color: #ffffff;
  font-weight: 600;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-foot {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.hero .newsletter-form-input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  backdrop-filter: blur(12px);
}
.hero .newsletter-form-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}
.hero .newsletter-form-input:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--accent) !important;
}
.hero .newsletter-success-message {
  color: #5fdca0 !important;
}
.hero .newsletter-error-message {
  color: #ff837c !important;
}
.hero .newsletter-back-button {
  color: rgba(255, 255, 255, 0.6) !important;
}

.hero-visual { margin: clamp(46px, 7vw, 80px) auto 0; max-width: 560px; position: relative; }
.ticket-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow: hidden; text-align: left; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.ticket-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 48px 96px -32px rgba(28,40,90,.32); }
.ticket-top { padding: 26px 28px 22px; }
.ticket-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.ticket-ev { font-family: var(--font-display); font-size: 24px; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); max-width: 14ch; line-height: 1.12; }
.ticket-meta { margin-top: 9px; font-size: 13.5px; color: var(--muted); }
.ticket-perf { position: relative; height: 0; border-top: 2px dashed var(--line-strong); margin: 2px 26px; }
.ticket-perf::before, .ticket-perf::after { content: ""; position: absolute; top: -14px; width: 28px; height: 28px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line); }
.ticket-perf::before { left: -41px; } .ticket-perf::after { right: -41px; }
.ticket-bot { padding: 22px 28px 26px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.ticket-seal { display: flex; align-items: center; gap: 12px; }
.ticket-seal .seal { width: 36px; height: 36px; border-radius: 50%; background: var(--fan); color: #fff; display: grid; place-items: center; font-size: 17px; font-weight: 800; box-shadow: 0 0 0 5px var(--fan-wash); flex: none; }
.ticket-seal .lbl { font-size: 13px; line-height: 1.3; }
.ticket-seal .lbl b { display: block; color: var(--ink); font-weight: 600; }
.ticket-seal .lbl span { color: var(--muted); }
.ticket-id { font-family: var(--mono); font-size: 11px; color: var(--faint); }

.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--sh); border-radius: var(--r); padding: 11px 15px; animation: floaty 6s var(--ease) infinite;
  z-index: 5;
}
.float-gate { right: -26px; top: -28px; }
.float-block { left: -30px; bottom: 64px; animation-delay: 1.4s; }
.float-chip .pulse { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.float-chip .gpulse { background: var(--fan); box-shadow: 0 0 0 0 rgba(28,157,107,.5); animation: pulse 2.4s infinite; }
.float-chip .rpulse { background: var(--red); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(28,157,107,.5);} 70%{box-shadow:0 0 0 9px rgba(28,157,107,0);} 100%{box-shadow:0 0 0 0 rgba(28,157,107,0);} }
.float-chip .t { font-size: 12px; line-height: 1.25; }
.float-chip .t b { display: block; color: var(--ink); font-weight: 600; }
.float-chip .t span { color: var(--muted); font-family: var(--mono); font-size: 10.5px; }
@media (max-width: 560px) { .float-gate { right: 4px; top: -18px; } .float-block { left: 2px; } }

.doors { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 16px; }
.door { display: flex; flex-direction: column; justify-content: space-between; gap: 34px; min-height: 184px; padding: 26px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--sh-sm); transition: transform .2s var(--ease), box-shadow .22s, border-color .18s; }
.door:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.door-primary { background: linear-gradient(150deg, #20242f 0%, #14171f 100%); border-color: #2a2f3b; box-shadow: var(--sh-lg); }
.door-kicker { font-size: 12px; font-weight: 600; letter-spacing: .01em; color: var(--muted); }
.door-primary .door-kicker { color: #8fe0bb; }
.door-label { font-family: var(--font-display); font-size: 22px; font-weight: 400; letter-spacing: -0.012em; line-height: 1.12; color: var(--ink); }
.door-primary .door-label { color: #fff; font-size: 25px; }
.door-foot { display: flex; align-items: center; justify-content: space-between; }
.door-arrow { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-strong); font-size: 16px; color: var(--ink); transition: transform .16s, background .16s; }
.door:hover .door-arrow { transform: translateX(3px); }
.door-primary .door-arrow { background: var(--accent); border-color: transparent; color: #fff; }
.door-mini { display: flex; gap: 5px; }
.door-mini i { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
@media (max-width: 860px) { .doors { grid-template-columns: 1fr; } }

.section { padding: clamp(64px, 11vh, 120px) 0; }
.sec-head { max-width: 60ch; margin: 0 auto; text-align: center; }
.sec-title { font-size: clamp(30px, 4.6vw, 50px); font-weight: 400; letter-spacing: -0.018em; margin-top: 16px; line-height: 1.05; }
.sec-title .fv { color: var(--fan-deep); font-style: italic; }
.sec-lead { margin: 18px auto 0; font-size: clamp(16px, 1.7vw, 19px); color: var(--muted); line-height: 1.55; max-width: 56ch; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.stat { padding: 30px; border-radius: var(--r-lg); background: rgba(255,255,255,.7); border: 1px solid var(--line); box-shadow: var(--sh-xs); text-align: center; }
.stat .n { font-family: var(--font-display); font-size: clamp(40px, 6vw, 62px); font-weight: 400; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.stat .n.red { color: var(--red-deep); }
.stat .k { margin-top: 16px; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.stat .k b { color: var(--ink-2); font-weight: 600; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.step { padding: 32px 28px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--sh-xs); }
.step .num { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink); }
.step h3 { font-size: 21px; font-weight: 400; letter-spacing: -0.012em; margin-top: 22px; }
.step p { margin-top: 11px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.aud { padding: 38px; border-radius: var(--r-xl); border: 1px solid; position: relative; overflow: hidden; }
.aud-fan { background: linear-gradient(160deg, #EAF7F0 0%, #F4FBF7 100%); border-color: var(--fan-line); }
.aud-vendor { background: linear-gradient(160deg, #EEF1FE 0%, #F6F7FF 100%); border-color: var(--accent-line); }
.aud .tag { font-size: 12.5px; letter-spacing: .01em; font-weight: 600; }
.aud-fan .tag { color: var(--fan-ink); } .aud-vendor .tag { color: var(--accent-ink); }
.aud h3 { font-size: clamp(26px, 3vw, 34px); font-weight: 400; letter-spacing: -0.015em; margin-top: 14px; }
.aud ul { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.aud li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-2); line-height: 1.45; }
.aud li .ck { flex: none; width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 800; color: #fff; margin-top: 1px; }
.aud-fan li .ck { background: var(--fan); } .aud-vendor li .ck { background: var(--accent); }
.aud .go { margin-top: 30px; }
@media (max-width: 820px) { .audience { grid-template-columns: 1fr; } }

/* ============================================================
   SIMULATION
   ============================================================ */
.sim-toolbar { display: flex; align-items: center; gap: 12px; }
.seg { display: inline-flex; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px; gap: 2px; }
.seg button {
  border: 0; background: transparent; cursor: pointer; font-family: var(--font); white-space: nowrap;
  font-size: 13.5px; font-weight: 600; color: var(--muted); padding: 8px 15px; border-radius: var(--r-pill);
  transition: color .15s, background .15s, box-shadow .15s; display: inline-flex; align-items: center; gap: 7px;
}
.seg button[aria-pressed="true"] { background: var(--surface); color: var(--ink); box-shadow: var(--sh-xs); }
.seg .ic { font-size: 13px; }

.panels { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
@media (max-width: 900px) { .panels { grid-template-columns: 1fr; } }

.panel-head { padding: 2px 4px 16px; }
.panel-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.panel-tag .pip { width: 8px; height: 8px; border-radius: 3px; }
.panel-A .panel-tag { color: var(--red-deep); } .panel-A .pip { background: var(--red); }
.panel-B .panel-tag { color: var(--fan-ink); } .panel-B .pip { background: var(--fan); }
.panel-title { font-family: var(--font-display); font-size: 24px; font-weight: 400; letter-spacing: -0.012em; margin-top: 12px; color: var(--ink); }
.panel-sub { margin-top: 7px; font-size: 14px; color: var(--muted); line-height: 1.45; }

.stage {
  position: relative; background: linear-gradient(160deg, #20242f 0%, #16191f 100%);
  border: 1px solid #2a2f3b; border-radius: var(--r-lg); padding: 22px; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), var(--sh);
}
.stage-meter { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.stage-meter .lab { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--stage-ink); }
.stage-meter .cnt { font-family: var(--mono); font-size: 13px; font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }

.grid40 { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.tile {
  position: relative; aspect-ratio: 1 / 1;
  background: #2b2e37; border: 1px solid #3a3e49;
  opacity: .25; transform: scale(.82);
  transition: transform .32s var(--ease-out), opacity .32s, background .32s, border-color .32s, box-shadow .32s;
}
.seat .tile { border-radius: 7px 7px 4px 4px; }
.seat .tile::after { content: ""; position: absolute; left: 16%; right: 16%; bottom: -3px; height: 4px; border-radius: 0 0 3px 3px; background: inherit; filter: brightness(.82); }
.crowd .tile { border-radius: 50% 50% 32% 32%; }
.crowd .tile::before { content: ""; position: absolute; top: 13%; left: 50%; transform: translateX(-50%); width: 36%; height: 36%; border-radius: 50%; background: #181b22; z-index: 1; }

/* Tile status modifications */
.tile.filled-fan { opacity: 1; transform: scale(1); background: var(--fan); border-color: var(--fan-line); box-shadow: 0 0 8px rgba(28,157,107,0.4); }
.tile.filled-scalper { opacity: 1; transform: scale(1); background: var(--red); border-color: var(--red-line); box-shadow: 0 0 8px rgba(226,87,77,0.4); }
.tile.filled { opacity: 1; transform: scale(1); background: var(--muted); border-color: var(--line); }

.stage.running::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  animation: sweep 1.1s linear infinite; pointer-events: none;
}
@keyframes sweep { from { left: -40%; } to { left: 100%; } }

.summary { margin-top: 18px; padding: 18px 20px; border-radius: var(--r); font-size: 15px; line-height: 1.5; border: 1px solid; animation: riseIn .5s var(--ease-out) both; }
.summary.A { background: var(--red-wash); border-color: var(--red-line); color: var(--red-ink); }
.summary.B { background: var(--fan-wash); border-color: var(--fan-line); color: var(--fan-ink); }
.summary b { font-weight: 700; }
.summary .big { font-family: var(--mono); font-weight: 700; }
.summary-ph { margin-top: 18px; padding: 18px 20px; border-radius: var(--r); border: 1px dashed var(--line-strong); color: var(--faint); font-size: 13.5px; font-family: var(--mono); }

.live { margin-top: 64px; }
.live-head { text-align: center; max-width: 60ch; margin: 0 auto; }
.live-head h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 400; letter-spacing: -0.015em; }
.live-head .sub { margin-top: 12px; font-size: 16px; color: var(--muted); }
.live-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
@media (max-width: 900px) { .live-cards { grid-template-columns: 1fr; } }

.vcard { padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--sh-sm); }
.vcard.allow { border-color: var(--fan-line); }
.vcard.deny { border-color: var(--red-line); }
.vcard-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vcard-tag { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.vcard-id { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.verdict { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.verdict .v { font-family: var(--font-display); font-size: 38px; font-weight: 500; letter-spacing: -0.01em; }
.verdict.allow .v { color: var(--fan-deep); }
.verdict.deny .v { color: var(--red-deep); }
.verdict .mk { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 18px; font-weight: 800; flex: none; }
.verdict.allow .mk { background: var(--fan); box-shadow: 0 0 0 5px var(--fan-wash); }
.verdict.deny .mk { background: var(--red); box-shadow: 0 0 0 5px var(--red-wash); }
.vdetail { margin-top: 16px; font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); }
.vbadges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.vbadge { font-family: var(--mono); font-size: 11px; font-weight: 500; padding: 5px 10px; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-2); }
.vreasons { list-style: none; padding: 18px 0 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line-soft); }
.vreasons li { display: flex; gap: 11px; font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.vreasons li .b { flex: none; width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; font-size: 10px; font-weight: 800; color: #fff; margin-top: 1px; }
.vcard.allow .vreasons li .b { background: var(--fan); }
.vcard.deny .vreasons li .b { background: var(--red); }
.vloading { display: flex; align-items: center; gap: 11px; margin-top: 22px; color: var(--muted); font-size: 14.5px; }
.vskel { height: 13px; border-radius: 6px; margin-top: 12px; }

/* ============================================================
   FAN
   ============================================================ */
.fan-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: start; margin-top: 36px; }
@media (max-width: 900px) { .fan-grid { grid-template-columns: 1fr; gap: 26px; } }

.dropcard { position: sticky; top: 90px; }
.dropcard .ev { font-family: var(--font-display); font-size: 27px; font-weight: 400; letter-spacing: -0.014em; color: var(--ink); line-height: 1.1; }
.dropcard .meta { margin-top: 10px; font-size: 14.5px; color: var(--muted); }
.drop-perf { position: relative; height: 0; border-top: 2px dashed var(--line-strong); margin: 24px -28px; }
.drop-perf::before, .drop-perf::after { content: ""; position: absolute; top: -13px; width: 26px; height: 26px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line); }
.drop-perf::before { left: -13px; } .drop-perf::after { right: -13px; }
.drop-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.drop-stat .k { font-size: 12px; color: var(--muted); }
.drop-stat .v { font-family: var(--mono); font-size: 18px; font-weight: 600; color: var(--ink); margin-top: 3px; }
.remaining-bar { height: 7px; border-radius: 99px; background: var(--surface-3); overflow: hidden; margin-top: 18px; }
.remaining-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--fan), #3cc492); border-radius: 99px; transition: width .5s var(--ease); }

.steps-col { display: flex; flex-direction: column; gap: 18px; }
.stepc { position: relative; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--sh-sm); padding: 26px; transition: border-color .3s, box-shadow .3s, opacity .3s, transform .3s; }
.stepc.locked { opacity: .45; pointer-events: none; }
.stepc.active { border-color: var(--accent-line); box-shadow: 0 0 0 4px var(--accent-wash), var(--sh-sm); transform: scale(1.01); }
.stepc.done-step { border-color: var(--fan-line); }
.step-num { display: inline-flex; align-items: center; gap: 10px; }
.step-num .b { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-family: var(--mono); font-size: 13px; font-weight: 600; flex: none; background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-2); }
.stepc.active .step-num .b { background: var(--accent); border-color: transparent; color: #fff; }
.stepc.done-step .step-num .b { background: var(--fan); border-color: transparent; color: #fff; }
.step-num .lbl { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.stepc h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; letter-spacing: -0.012em; margin-top: 14px; }
.stepc p.sd { margin-top: 8px; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.step-action { margin-top: 22px; }

.worldid { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: var(--r); background: var(--surface-2); border: 1px solid var(--line); margin-top: 18px; }
.worldid .orb { width: 44px; height: 44px; border-radius: 50%; flex: none; background: radial-gradient(circle at 35% 30%, #fff, #cfd6e6 40%, #1b1e26 100%); box-shadow: 0 4px 14px -4px rgba(0,0,0,.3); position: relative; }
.worldid .orb::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); }
.worldid .wt { font-size: 13px; line-height: 1.4; }
.worldid .wt b { display: block; color: var(--ink); font-weight: 600; }
.worldid .wt span { color: var(--muted); }

.id-readout { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--fan-wash); border: 1px solid var(--fan-line); animation: riseIn .4s var(--ease-out); }
.id-readout .k { font-size: 12px; color: var(--fan-ink); font-weight: 600; white-space: nowrap; }
.id-readout .h { font-family: var(--mono); font-size: 12.5px; color: var(--fan-ink); }

.result { margin-top: 22px; border-radius: var(--r-lg); padding: 24px; border: 1px solid; animation: popIn .5s var(--ease-out) both; box-shadow: 0 20px 40px -15px rgba(28,157,107,0.2); }
.result.approved { background: linear-gradient(160deg, #EAF7F0, #F5FBF8); border-color: var(--fan-line); }
.result.denied { background: var(--red-wash); border-color: var(--red-line); }
.result-head { display: flex; align-items: center; gap: 12px; }
.result-head .mk { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 18px; font-weight: 800; flex: none; }
.result.approved .mk { background: var(--fan); box-shadow: 0 0 0 5px rgba(28,157,107,.14); }
.result.denied .mk { background: var(--red); box-shadow: 0 0 0 5px rgba(226,87,77,.14); }
.result-head .rt { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--ink); }
.result-msg { margin-top: 14px; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.result-ticket { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(28,157,107,.2); }
.result-ticket .tid { font-family: var(--mono); font-size: 12.5px; color: var(--fan-ink); }

.reset-row { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.reset-row .note { font-size: 13px; color: var(--muted); max-width: 32ch; line-height: 1.4; text-align: left; }

/* ============================================================
   VENDOR
   ============================================================ */
.vendor-grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: 26px; align-items: start; margin-top: 36px; }
@media (max-width: 940px) { .vendor-grid { grid-template-columns: 1fr; } }

.form-card { padding: 30px; }
.form-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; letter-spacing: -0.012em; }
.form-card .fsub { margin-top: 6px; font-size: 14px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.form-grid .col-2 { grid-column: span 2; }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } .form-grid .col-2 { grid-column: span 1; } }

.modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.mode-opt { cursor: pointer; border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 12px 13px; transition: border-color .16s, background .16s, box-shadow .16s; background: var(--surface); position: relative; }
.mode-opt:hover { border-color: var(--ink-2); }
.mode-opt.sel { border-color: var(--accent); background: var(--accent-wash); box-shadow: 0 0 0 3px var(--accent-wash); }
.mode-opt .mn { font-size: 14px; font-weight: 600; color: var(--ink); }
.mode-opt .md { font-size: 11.5px; color: var(--muted); margin-top: 3px; line-height: 1.35; }
.mode-opt.sel .mn { color: var(--accent-ink); }
.mode-opt input { position: absolute; opacity: 0; pointer-events: none; }

.launch-row { margin-top: 26px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.launch-note { font-size: 12.5px; color: var(--muted); }

.launched {
  margin-top: 22px; border-radius: var(--r-lg); padding: 22px 24px; display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(160deg, #EAF7F0, #F5FBF8); border: 1px solid var(--fan-line); animation: popIn .5s var(--ease-out) both;
}
.launched .mk { width: 36px; height: 36px; border-radius: 50%; background: var(--fan); color: #fff; display: grid; place-items: center; font-size: 17px; font-weight: 800; flex: none; box-shadow: 0 0 0 5px rgba(28,157,107,.14); }
.launched .lt b { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--ink); }
.launched .lt p { margin-top: 5px; font-size: 14px; color: var(--ink-2); line-height: 1.45; }

.props { padding: 30px; }
.props h4 { font-size: 13px; font-weight: 600; color: var(--muted); }
.prop { display: flex; gap: 13px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.prop:last-child { border-bottom: 0; padding-bottom: 0; }
.prop .pi { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-wash); border: 1px solid var(--accent-line); display: grid; place-items: center; flex: none; color: var(--accent); font-weight: 800; font-size: 14px; }
.prop .pt b { display: block; font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.prop .pt span { font-size: 13.5px; color: var(--muted); line-height: 1.45; }

.drops-section { margin-top: 56px; }
.drops-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.drops-head h2 { font-family: var(--font-display); font-size: 28px; font-weight: 400; letter-spacing: -0.014em; white-space: nowrap; }
.drops-head .cnt { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.drops-list { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.droprow {
  display: grid; grid-template-columns: 1.6fr 0.8fr 0.9fr 0.8fr; gap: 18px; align-items: center;
  padding: 20px 24px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--sh-xs);
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.droprow:hover { box-shadow: var(--sh-sm); transform: translateY(-1px); }
.droprow.fresh { border-color: var(--fan-line); background: linear-gradient(160deg, #F1FAF5, #fff); animation: popIn .5s var(--ease-out); }
.droprow .ev { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--ink); letter-spacing: -0.008em; }
.droprow .sub { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.droprow .cell-k { font-size: 11px; color: var(--faint); }
.droprow .cell-v { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 3px; }
.droprow .cell-v.fan { color: var(--fan-deep); }
@media (max-width: 720px) {
  .droprow { grid-template-columns: 1fr 1fr; }
  .droprow .ev-cell { grid-column: span 2; }
}
.drops-empty { padding: 40px; text-align: center; border: 1px dashed var(--line-strong); border-radius: var(--r-lg); color: var(--muted); }

/* ============================================================
   FAN — live engine terminal (shows real Valiron + policy calls)
   ============================================================ */
.engine-term { margin-top: 20px; border: 1px solid #2a2f3b; border-radius: var(--r-sm); overflow: hidden; background: #14171f; box-shadow: var(--sh-xs); }
.term-bar { display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: #1a1d27; border-bottom: 1px solid #2a2f3b; }
.term-bar .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.term-bar .t { margin-left: 7px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: #8b93a7; }
.term-bar .live { margin-left: auto; font-family: var(--mono); font-size: 10px; color: #5fdca0; text-transform: uppercase; letter-spacing: .08em; display: inline-flex; align-items: center; gap: 6px; }
.term-bar .live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #5fdca0; box-shadow: 0 0 0 0 rgba(95,220,160,.5); animation: pulse 2s infinite; }
.term-body { padding: 12px 14px; font-family: var(--mono); font-size: 11.5px; line-height: 1.7; color: #c9d2e3; max-height: 210px; overflow-y: auto; scroll-behavior: smooth; }
.term-body .ln { white-space: pre-wrap; word-break: break-word; }
.term-body .ln .ts { color: #5a6478; margin-right: 9px; }
.term-body .ln.ok { color: #5fdca0; }
.term-body .ln.bad { color: #f1837c; }
.term-body .ln.dim { color: #6b7488; }

/* ============================================================
   MODALS (WORLD ID SCANNING)
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(14, 16, 22, 0.6);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.modal-card {
  position: relative; max-width: 480px; width: 90%;
  text-align: center; border-radius: var(--r-xl);
  transform: translateY(24px) scale(0.95);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute; top: 18px; right: 22px;
  font-size: 28px; font-weight: 300; color: var(--muted);
  cursor: pointer; transition: color 0.16s;
  user-select: none;
}
.modal-close:hover {
  color: var(--ink);
}
.modal-orb-container {
  position: relative; width: 120px; height: 120px; margin: 12px auto 24px;
}
.modal-orb {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #8da0cc 35%, #18223c 75%, #050a14 100%);
  box-shadow: 0 10px 30px rgba(24, 34, 60, 0.4), inset 0 2px 5px rgba(255,255,255,0.4);
  position: relative;
}
.modal-orb::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(50,87,232,0.2);
}
.modal-scanner {
  position: absolute; left: -10%; right: -10%; top: 50%; height: 2px;
  background: linear-gradient(90deg, transparent, #3257e8, #3cc492, #3257e8, transparent);
  box-shadow: 0 0 12px rgba(50,87,232,0.8), 0 0 4px rgba(60,196,146,0.8);
  animation: scanEffect 3s ease-in-out infinite;
}
@keyframes scanEffect {
  0%, 100% { top: 15%; opacity: 0.3; }
  50% { top: 85%; opacity: 1; }
}
.modal-card h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 400; line-height: 1.2;
}
.modal-card .sub {
  margin-top: 10px; font-size: 14.5px; color: var(--muted); line-height: 1.5;
}
.modal-status {
  font-family: var(--mono); font-size: 12px; color: var(--accent-ink);
  margin-top: 28px; font-weight: 500;
}
.modal-progress {
  height: 6px; border-radius: 99px; background: var(--surface-3);
  margin-top: 10px; overflow: hidden; position: relative;
}
.modal-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--fan));
  border-radius: 99px; transition: width 0.1s linear;
}

/* ============================================================
   NEWSLETTER FORM HERO INTEGRATION
   ============================================================ */
.newsletter-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.newsletter-form-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px var(--accent-wash) !important;
}
.newsletter-form-button:hover:not([disabled]) {
  background: var(--accent-2) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px rgba(50,87,232,.7) !important;
}
.newsletter-form-button:active {
  transform: translateY(1px);
}

/* ============================================================
   HERO SOCIAL INTEGRATION
   ============================================================ */
.hero-social-link {
  position: absolute;
  bottom: -32px;
  right: -240px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  cursor: pointer;
  transition: transform 0.2s var(--ease);
}
.hero-social-link svg {
  width: 42px;
  height: 42px;
  display: block;
}
.hero-social-link:hover {
  transform: translateY(-2px) scale(1.12);
  filter: drop-shadow(0 4px 8px rgba(220, 39, 67, 0.3));
}
@media (max-width: 1040px) {
  .hero-social-link {
    bottom: -40px;
    right: 12px;
  }
}
@media (max-width: 720px) {
  .hero-social-link {
    bottom: 8px;
    right: 8px;
  }
}

/* ============================================================
   NAVIGATION LOGO BADGE STYLING
   ============================================================ */
.nav-logo-badge:hover img {
  transform: scale(1.08);
  border-color: var(--ink) !important;
  box-shadow: var(--sh-sm) !important;
}



