/* ─────────────────────────────────────────────────────────
   COMPONENTS — Every UI section and widget
───────────────────────────────────────────────────────── */

/* ── Announce bar ─────────────────────────────────────── */
.announce {
  background: var(--yellow);
  color: #1a1200;
  padding: 10px 48px;
  text-align: center;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  z-index: 850;
}
.abar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}
.adot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .3);
  flex-shrink: 0;
}
.announce strong { font-weight: 700; }
.abar-close {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  color: rgba(0, 0, 0, .5);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--t-base);
}
.abar-close:hover { color: rgba(0, 0, 0, .9); }

/* ── Navigation ───────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  transition: background var(--t-slow), border-color var(--t-slow);
}
#nav.on {
  background: rgba(8, 8, 9, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-6);
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .1em;
}
.ldot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color var(--t-base);
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: transparent;
  transition: all var(--t-base);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue);
  color: #06151c;
  box-shadow: 0 0 20px var(--blueg);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  display: block;
  transition: all var(--t-slow);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; /* nav height; JS updates when announce bar is visible */
  left: 0; right: 0;
  background: rgba(8, 8, 9, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--space-6) 28px;
  z-index: 799;
  flex-direction: column;
  gap: 20px;
}
/* .open is handled inside the 960px media query in animations.css */
.mobile-menu a {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(77, 184, 255, .06), transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(255, 79, 154, .04), transparent 50%),
    var(--bg);
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77, 184, 255, .04);
  background: repeating-radial-gradient(
    circle,
    rgba(77, 184, 255, .025) 0px,
    rgba(77, 184, 255, .025) 1px,
    transparent 2px,
    transparent 10px
  );
  pointer-events: none;
}
.ring1 { width: 900px;  height: 900px;  top: 50%; left: 60%; transform: translate(-50%, -50%); animation: rspin 120s linear infinite; }
.ring2 { width: 1300px; height: 1300px; top: 50%; left: 60%; transform: translate(-50%, -50%); animation: rspin 200s linear infinite reverse; opacity: .4; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-16);
  align-items: center;
}
.hero-eye {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: 18px;
}
.hero-eye::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
}
.hero h1 {
  font-size: clamp(58px, 9.5vw, 124px);
  line-height: .88;
  background: linear-gradient(175deg, var(--cream) 0%, var(--cream) 52%, rgba(77, 184, 255, .65) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
}
.hero-tag {
  font-size: 18px;
  font-style: italic;
  font-family: Georgia, serif;
  color: var(--dim);
  line-height: 1.5;
  max-width: 460px;
  margin-bottom: 18px;
}
.hero-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--dim);
  max-width: 460px;
  margin-bottom: 30px;
}
.chips {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.chip {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--dim);
  transition: transform var(--t-base), border-color var(--t-base);
}
/* Sticker-style tilt — each chip leans a different way */
.chip:nth-child(1) { transform: rotate(-1.8deg); }
.chip:nth-child(2) { transform: rotate(1.2deg); }
.chip:nth-child(3) { transform: rotate(-0.9deg); }
.chip:nth-child(4) { transform: rotate(1.6deg); }
.chip:hover { transform: rotate(0deg) scale(1.07) !important; border-color: var(--blue); }
.btns { display: flex; gap: var(--space-4); align-items: center; flex-wrap: wrap; }

.hero-vis { position: relative; display: flex; justify-content: center; }
.hero-box {
  border-radius: var(--r-lg);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .8), 0 0 80px rgba(77, 184, 255, .07);
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

/* ── Vinyl disc (spins behind hero box at 33⅓ rpm) ────── */
.vdisc {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  right: -18px;
  top: 50%;
  z-index: 0;
  animation: vinyl-spin 1.8s linear infinite;
  background:
    radial-gradient(circle, #3e2a08 0% 14%, transparent 14.01%),
    repeating-radial-gradient(circle at 50% 50%, #0b0b0b 0px, #0b0b0b 2.5px, #191919 2.5px, #191919 3.5px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    0 0 60px rgba(0,0,0,.9),
    0 8px 40px rgba(0,0,0,.7);
}
.vdisc-lbl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #1a1200;
  text-transform: uppercase;
  animation: label-counter 1.8s linear infinite;
  z-index: 2;
}
.vdisc-lbl::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0,0,0,.4);
  transform: translate(-50%, -50%);
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  right: 24px;
  z-index: 2;
  background: var(--pink);
  color: #1a0512;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 15px;
  border-radius: 10px;
  transform: rotate(3deg);
  box-shadow: 0 0 24px rgba(255, 79, 154, .5);
  white-space: nowrap;
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 2;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.arr {
  width: 18px;
  height: 18px;
  border-right: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
  transform: rotate(45deg);
  animation: bob 2s ease infinite;
}

/* ── Ticker ───────────────────────────────────────────── */
.ticker {
  background: var(--panel);
  border-top: 1px solid rgba(77, 184, 255, .2);
  border-bottom: 1px solid rgba(255, 79, 154, .2);
  box-shadow:
    0 -1px 0 rgba(77, 184, 255, .08),
    0  1px 0 rgba(255, 79, 154, .08),
    inset 0 0 40px rgba(0, 0, 0, .4);
  padding: 14px 0;
  overflow: hidden;
}
.t-track { display: flex; width: max-content; animation: tmove 36s linear infinite; }
.t-track:hover { animation-play-state: paused; }
.t-item {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color var(--t-base);
}
/* Neon cycling: blue → neutral → pink → neutral → yellow → neutral */
.t-item:nth-child(6n+1) { color: var(--blue);   text-shadow: 0 0 14px rgba(77, 184, 255, .9); }
.t-item:nth-child(6n+3) { color: var(--pink);   text-shadow: 0 0 14px rgba(255, 79, 154, .9); }
.t-item:nth-child(6n+5) { color: var(--yellow); text-shadow: 0 0 14px rgba(255, 210, 63, .9); }
/* Separator dot — neon pink */
.t-item::after { content: '·'; color: var(--pink); text-shadow: 0 0 8px rgba(255, 79, 154, 1); }

/* ── About cards ──────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.acard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 20px;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  cursor: default;
}
.acard:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(77, 184, 255, .05);
}
.acard .ico { font-size: 24px; margin-bottom: 12px; }
.acard h3 { font-size: 13px; letter-spacing: .04em; color: var(--blue); margin-bottom: 9px; }
.acard p  { font-size: 13px; color: var(--dim); line-height: 1.65; text-transform: none; font-family: var(--body); }

/* ── Component cards ──────────────────────────────────── */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ccard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow);
}
.ccard:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 184, 255, .3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 30px rgba(77, 184, 255, .05);
}
.cimg { overflow: hidden; background: #000; display: flex; align-items: center; justify-content: center; }
.cimg.r43 { aspect-ratio: 4/3; }
.cimg.r34 { aspect-ratio: 3/4; }
.cimg.r11 { aspect-ratio: 1/1; }
.cimg img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.ccard:hover .cimg img { transform: scale(1.06); }
.cinfo { padding: 16px 18px; }
.cinfo h4 {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 5px;
}
.cinfo p { font-size: 12px; color: var(--dim); line-height: 1.55; font-family: var(--body); }

/* ── Fullbleed editorial ──────────────────────────────── */
.fullbleed {
  position: relative;
  height: 72vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullbleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.35) saturate(.8);
  z-index: 0;
}
/* CRT scan-line texture over the photo */
.fullbleed::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0)      0px,
    rgba(0,0,0,0)      3px,
    rgba(0,0,0,.09)    3px,
    rgba(0,0,0,.09)    4px
  );
}
.fb-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 var(--space-6);
}
.fb-pre {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
}
.fb-quote {
  font-family: var(--display);
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 1.05;
  color: var(--cream);
  font-weight: 600;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .6);
}

/* ── Stats bar ────────────────────────────────────────── */
.stats-bar { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.sitem {
  padding: 44px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background var(--t-slow);
}
.sitem:last-child { border-right: none; }
.sitem:hover { background: rgba(77, 184, 255, .03); }
.snum {
  font-family: var(--display);
  font-size: 50px;
  font-weight: 700;
  color: var(--blue);
  display: block;
  line-height: 1;
  text-shadow: 0 0 40px rgba(77, 184, 255, .28);
}
.snum .pl { color: var(--pink); }
.slbl {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ── Hook / Story ─────────────────────────────────────── */
.hook-sec { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hook-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: start; }
.hook-text p { font-size: 16px; line-height: 1.85; color: var(--dim); margin-bottom: 20px; }
.hook-text strong { color: var(--cream); font-weight: 600; }
.pquote {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.4;
  color: var(--yellow);
  text-transform: none;
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
  margin: 30px 0;
  box-shadow: -3px 0 20px rgba(255, 210, 63, .18);
}

/* Condition widget */
.widget {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  position: sticky;
  top: 88px;
}
.wlbl {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.cscale { display: flex; flex-direction: column; gap: 7px; }
.crow {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .03em;
}
.chead { display: flex; align-items: center; gap: 11px; }
.crow.p   { background: #28101a; color: #ff7a9a; }
.crow.g   { background: #26170c; color: #ffdd8a; }
.crow.vg  { background: #281d0e; color: #ffb057; }
.crow.vgp { background: #12281c; color: #7ef2c4; }
.crow.nm  { background: #0e2230; color: #5dc9ff; }
.crow.m   { background: #0e1e2e; color: #9fd9ff; }
.cdot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.crow.p   .cdot { background: #ff4f9a; box-shadow: 0 0 7px #ff4f9a; }
.crow.g   .cdot { background: #ffd23f; box-shadow: 0 0 7px #ffd23f; }
.crow.vg  .cdot { background: #ffa040; box-shadow: 0 0 7px #ffa040; }
.crow.vgp .cdot { background: #4dffb8; box-shadow: 0 0 7px #4dffb8; }
.crow.nm  .cdot { background: #4db8ff; box-shadow: 0 0 7px #4db8ff; }
.crow.m   .cdot { background: #80d4ff; box-shadow: 0 0 7px #80d4ff; }
.cn { flex: 1; }
.cd { font-size: 11px; color: var(--muted); font-family: var(--body); text-transform: none; letter-spacing: 0; padding-left: 18px; line-height: 1.5; }
.wnote {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── How to Play ──────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step  { padding: 0 38px; position: relative; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.sn {
  font-family: var(--display);
  font-size: 68px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.step h3 { font-size: 20px; margin-bottom: 13px; }
.step p  { font-size: 14px; color: var(--dim); line-height: 1.7; text-transform: none; font-family: var(--body); }

/* ── Board feature ────────────────────────────────────── */
.board-feat { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.bwrap { position: relative; }
.bwrap img {
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7), 0 0 60px rgba(77, 184, 255, .1);
  width: 100%;
}
.bglow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at center, rgba(77, 184, 255, .07), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.glist { list-style: none; margin-top: 24px; }
.gitem {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--dim);
  transition: color var(--t-base);
}
.gitem:hover { color: var(--cream); }
.ghead { display: flex; align-items: center; gap: 12px; }
.gdot  { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.gname { font-family: var(--display); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--cream); }
.gdesc { padding-left: 19px; font-size: 13px; line-height: 1.55; }

/* ── Why ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.wcard {
  background: linear-gradient(145deg, var(--panel), var(--bg2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 42px;
  transition: border-color var(--t-slow), box-shadow var(--t-slow);
}
.wcard:hover {
  border-color: rgba(255, 210, 63, .3);
  box-shadow: 0 0 40px rgba(255, 210, 63, .04);
}
.wtag {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 5px 12px;
  border: 1px solid rgba(255, 210, 63, .28);
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
}
.wcard h3 { font-size: 24px; margin-bottom: 14px; line-height: 1.1; }
.wcard p  { font-size: 15px; color: var(--dim); line-height: 1.8; text-transform: none; font-family: var(--body); }

/* ── Vinyl scroll ─────────────────────────────────────── */
.vscroll-sec { overflow: hidden; }
.vscroll-outer {
  padding: 0 var(--space-6);
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}
.vscroll-outer:active { cursor: grabbing; }
.vscroll-outer::-webkit-scrollbar { display: none; }
.vscroll {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-bottom: 4px;
}
.vcard {
  width: 230px;
  flex-shrink: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t-slow), border-color var(--t-slow);
}
.vcard:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 184, 255, .3);
}
.vcard img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.vcap {
  padding: 12px 14px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Gallery ──────────────────────────────────────────── */
.gal-sec { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.pitem {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform var(--t-slow), border-color var(--t-slow);
  cursor: pointer;
}
.pitem:hover { transform: scale(1.02); border-color: rgba(77, 184, 255, .3); }
.pitem img   { width: 100%; height: 100%; object-fit: cover; display: block; }
.pitem.wide  { grid-column: span 2; }
.pitem.wide img { aspect-ratio: 16/9; }
.pitem.sq   img { aspect-ratio: 4/3; }

/* ── Instagram ────────────────────────────────────────── */
.ig-sec { border-top: 1px solid var(--line); }
.ig-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.ig-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--dim);
  padding: 10px 18px;
  border-radius: 999px;
  transition: all var(--t-base);
  white-space: nowrap;
  flex-shrink: 0;
}
.ig-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 79, 154, .15);
}
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ig-item {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  display: block;
  transition: transform var(--t-slow), border-color var(--t-slow);
  aspect-ratio: 1;
}
.ig-item:hover { transform: scale(1.03); border-color: rgba(255, 79, 154, .3); }
.ig-item img   { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Author ───────────────────────────────────────────── */
.auth-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.aphoto {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
  position: relative;
}
.aphoto img { width: 100%; display: block; }
.albl {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 1;
  background: rgba(8, 8, 9, .82);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  padding: 9px 13px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}
.atext p      { font-size: 16px; line-height: 1.9; color: var(--dim); margin-bottom: 20px; }
.atext strong { color: var(--cream); font-weight: 600; }
.asig  { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.sname { font-family: var(--display); font-size: 20px; text-transform: none; margin-bottom: 5px; }
.srole { font-size: 13px; color: var(--blue); }
.sloc  { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Signup / Form ────────────────────────────────────── */
.sig-sec { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }
.sigglow {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 79, 154, .12), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.sig-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.sig-inner h2 { font-size: clamp(34px, 5vw, 58px); margin-bottom: 14px; }
.sig-sub { font-size: 16px; color: var(--dim); margin-bottom: 10px; }
.perks { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin: 32px 0 38px; text-align: left; }
.perk  { display: flex; gap: 9px; align-items: flex-start; max-width: 188px; font-size: 13px; color: var(--dim); line-height: 1.5; }
.pe    { font-size: 17px; flex-shrink: 0; margin-top: 2px; }

.sform {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.frow { display: flex; gap: 10px; }
.field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
}
.field input {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--cream);
  font-size: 15px;
  font-family: var(--body);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  width: 100%;
}
.field input::placeholder { color: var(--muted); }
.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 184, 255, .1);
}
.field.err input { border-color: var(--pink); }
.errmsg { font-size: 11px; color: var(--pink); min-height: 13px; display: none; }
.field.err .errmsg { display: block; }

.subbtn {
  width: 100%;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 15px;
  font-weight: 700;
  background: var(--blue);
  color: #06151c;
  padding: 17px;
  border-radius: 12px;
  border: none;
  transition: box-shadow var(--t-base), transform var(--t-base);
  margin-top: 2px;
}
.subbtn:hover { box-shadow: 0 0 40px rgba(77, 184, 255, .4); transform: translateY(-1px); }
.fnote { font-size: 11px; color: var(--muted); text-align: center; }

.ok { display: none; text-align: center; padding: 44px 20px; }
.ok.show { display: block; }
.okico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue);
  color: #06151c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  box-shadow: 0 0 40px rgba(77, 184, 255, .4);
}
.ok h3 { font-size: 22px; margin-bottom: 9px; text-transform: none; }
.ok p  { font-size: 14px; color: var(--dim); }

/* ── FAQ ──────────────────────────────────────────────── */
.flist { max-width: 760px; margin: 0 auto; }
.fi    { border-bottom: 1px solid var(--line); }
.fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 16px;
  text-transform: none;
  color: var(--cream);
  transition: color var(--t-base);
  user-select: none;
  text-align: left;
}
.fq:hover { color: var(--blue); }
.ficon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--t-slow), background var(--t-slow), border-color var(--t-slow);
}
.fi.open .ficon {
  transform: rotate(45deg);
  background: rgba(77, 184, 255, .1);
  border-color: var(--blue);
}
.fa     { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.fai    { padding: 0 0 22px; font-size: 14px; color: var(--dim); line-height: 1.8; max-width: 680px; }

/* ── Footer ───────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 52px 0; }
.foot  { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.flogo { font-family: var(--display); font-size: 14px; letter-spacing: .12em; display: flex; align-items: center; gap: 8px; }
.flinks { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.flinks a { font-size: 13px; color: var(--muted); transition: color var(--t-base); }
.flinks a:hover { color: var(--cream); }
.fmeta { font-size: 12px; color: var(--muted); }

/* ── Floating CTA ─────────────────────────────────────── */
.fcta {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 700;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.fcta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fbtn {
  background: var(--pink);
  color: #1a0512;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 8px 32px rgba(255, 79, 154, .38);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.fbtn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255, 79, 154, .5); }

/* ── Cookie consent ────────────────────────────────────── */
.cookie {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: min(680px, calc(100vw - 32px));
  background: rgba(10, 10, 13, .94);
  border: 1px solid rgba(77, 184, 255, .22);
  border-radius: 16px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 0 0 1px rgba(77,184,255,.06),
              0 24px 64px rgba(0,0,0,.7),
              0 0 40px rgba(77,184,255,.06);
  z-index: 99990;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease, transform .4s cubic-bezier(.23,1,.32,1);
}
.cookie.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cookie-in {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 28px;
}
.cookie-body { flex: 1; }
.cookie-ttl {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 6px;
}
.cookie-txt {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-ok {
  background: var(--blue);
  color: #020d1a;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: box-shadow var(--t-base), transform var(--t-base);
  white-space: nowrap;
}
.cookie-ok:hover { box-shadow: 0 0 22px rgba(77,184,255,.5); transform: translateY(-1px); }
.cookie-no {
  background: transparent;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color var(--t-base), color var(--t-base);
  white-space: nowrap;
}
.cookie-no:hover { border-color: rgba(255,255,255,.25); color: var(--fg); }

@media (max-width: 600px) {
  .cookie-in { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-btns { justify-content: stretch; }
  .cookie-ok, .cookie-no { flex: 1; text-align: center; }
}
