/* Akhyas · akhyas.com · landing page
   Black ground, gold display, teal stage light. Mobile first. No JS. */

:root {
  --bg: #06090c;            /* off-black, teal-tinted: no pure black */
  --bg-2: #0b1418;          /* deep teal-black surface */
  --bg-3: #10202a;          /* raised surface */
  --line: #1c2c34;
  --ink: #f4f1e8;           /* warm white */
  --ink-soft: #b7c3c8;      /* tinted, never flat grey */
  --ink-dim: #7f8f95;
  --gold: #f0c75e;          /* gold as text on dark */
  --gold-core: #d4a017;     /* fills */
  --gold-deep: #9a6f0f;
  --on-gold: #1a1400;
  --teal: #38d9ec;          /* cyan stage light, text-safe on dark */
  --teal-soft: #9fe9f2;
  --teal-glow: rgba(56, 217, 236, .18);
  --gold-glow: rgba(212, 160, 23, .28);

  --font-display: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;
  --gutter: clamp(16px, 5vw, 48px);
  --section: clamp(56px, 10vw, 128px);
  --measure: 60ch;
  --r-sm: 4px; --r-md: 10px; --r-lg: 16px; --r-full: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--teal-soft); text-decoration-thickness: 1px; text-underline-offset: 3px; }
b { font-weight: 600; }
p { margin: 0; text-wrap: pretty; }
h1, h2 { margin: 0; text-wrap: balance; }

.skip { position: absolute; left: -999px; top: var(--s3); background: var(--gold-core); color: var(--on-gold); padding: var(--s2) var(--s4); border-radius: var(--r-md); z-index: 50; }
.skip:focus { left: var(--s3); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .01em;
  display: grid;
  gap: var(--s1);
}
.line-gold { font-size: clamp(3.6rem, 17vw, 9rem); color: var(--gold); text-shadow: 0 0 40px var(--gold-glow); }
.line-teal { font-size: clamp(2rem, 9vw, 4.5rem); color: var(--teal); letter-spacing: .06em; text-shadow: 0 0 30px var(--teal-glow); }
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 8vw, 4rem);
  line-height: .95;
  letter-spacing: .03em;
  color: var(--gold);
}
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--teal-soft);
}
.tagline {
  margin-top: var(--s4);
  font-size: 13px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft);
}
.sub { color: var(--ink-soft); max-width: var(--measure); margin-top: var(--s3); }
.fine { font-size: 13px; color: var(--ink-dim); margin-top: var(--s3); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .08em; line-height: 1;
  padding: 0 var(--s6); height: 52px; border-radius: var(--r-md);
  background: linear-gradient(180deg, #f5d061 0%, #d4a017 55%, #b8860b 100%);
  color: var(--on-gold); text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 28px var(--gold-glow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 12px 36px var(--gold-glow); }
.btn:active { transform: translateY(0); }
.btn-lg { height: 60px; font-size: 1.6rem; padding: 0 var(--s7); }
.btn-sm { height: 40px; font-size: 1.1rem; padding: 0 var(--s4); box-shadow: none; }
.btn-ghost { background: transparent; color: var(--gold); border: 1.5px solid var(--gold-core); box-shadow: none; }
.btn-ghost:hover { background: rgba(212,160,23,.1); box-shadow: none; }

/* ---------- Header ---------- */
.top {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: var(--s3) var(--gutter);
  background: linear-gradient(180deg, rgba(6,9,12,.94), rgba(6,9,12,.78));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: var(--s2); text-decoration: none; color: var(--ink);
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 15px; }
.brand b { color: var(--gold); font-weight: 600; }
.brand-mark { width: 30px; height: 26px; fill: var(--gold-core); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 92svh;
  display: grid; align-content: center;
  padding: var(--s8) var(--gutter) var(--s9);
  background:
    radial-gradient(120% 60% at 50% 110%, #0d2530 0%, transparent 60%),
    radial-gradient(60% 40% at 50% 0%, #0f2a34 0%, transparent 70%),
    var(--bg);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s5);
  margin: var(--s6) 0 var(--s6); padding: var(--s5) 0 0;
  border-top: 1px solid rgba(212,160,23,.35);
}
.facts div { display: grid; gap: var(--s1); }
.facts dt { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-soft); }
.facts dd { margin: 0; font-family: var(--font-display); font-size: 1.7rem; line-height: 1; letter-spacing: .02em; color: var(--ink); }

/* stage light beams: four teal cones from above, one warm */
.beams { position: absolute; inset: -10% -20% 0; z-index: 1; pointer-events: none; }
.beams i {
  position: absolute; top: 0; width: 34%; height: 110%;
  background: linear-gradient(180deg, rgba(56,217,236,.28) 0%, rgba(56,217,236,.08) 45%, transparent 80%);
  clip-path: polygon(46% 0, 54% 0, 100% 100%, 0 100%);
  filter: blur(6px); mix-blend-mode: screen; opacity: .9;
  transform-origin: 50% 0;
}
.beams i:nth-child(1) { left: -2%;  transform: rotate(-14deg); }
.beams i:nth-child(2) { left: 24%;  transform: rotate(-4deg);  opacity: .7; }
.beams i:nth-child(3) { left: 46%;  transform: rotate(6deg);   background: linear-gradient(180deg, rgba(245,208,97,.22) 0%, rgba(245,208,97,.06) 45%, transparent 80%); }
.beams i:nth-child(4) { left: 68%;  transform: rotate(16deg);  opacity: .8; }

/* crowd: a dark, uneven silhouette along the bottom edge */
.crowd {
  position: absolute; left: -4%; right: -4%; bottom: -6px; height: 120px; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60px 90px at 6% 100%, var(--bg) 60%, transparent 62%),
    radial-gradient(70px 110px at 19% 100%, var(--bg) 60%, transparent 62%),
    radial-gradient(55px 80px at 31% 100%, var(--bg) 60%, transparent 62%),
    radial-gradient(75px 120px at 45% 100%, var(--bg) 60%, transparent 62%),
    radial-gradient(60px 95px at 58% 100%, var(--bg) 60%, transparent 62%),
    radial-gradient(80px 125px at 72% 100%, var(--bg) 60%, transparent 62%),
    radial-gradient(55px 85px at 85% 100%, var(--bg) 60%, transparent 62%),
    radial-gradient(70px 105px at 96% 100%, var(--bg) 60%, transparent 62%),
    linear-gradient(180deg, transparent, var(--bg) 92%);
}

/* the metallic gold band between hero and content */
.band {
  height: 14px;
  background: linear-gradient(90deg, #b8860b, #f5d061 22%, #d4a017 40%, #fff1b3 55%, #d4a017 70%, #f5d061 86%, #b8860b);
  box-shadow: 0 0 24px var(--gold-glow), 0 1px 0 rgba(0,0,0,.6) inset;
}

/* ---------- Sections ---------- */
main > section:not(.hero) { padding: var(--section) var(--gutter); max-width: 1080px; margin: 0 auto; }
.about { padding-bottom: 0 !important; }
.lede {
  font-size: clamp(1.25rem, 3.6vw, 1.7rem); line-height: 1.45; font-weight: 400;
  max-width: 34ch; color: var(--ink);
}
.lede::before { content: ""; display: block; width: 48px; height: 3px; background: var(--teal); margin-bottom: var(--s5); border-radius: var(--r-full); }

/* Tickets */
.tiers { list-style: none; margin: var(--s6) 0 var(--s6); padding: 0; display: grid; gap: var(--s3); }
.tier a {
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "name price" "line line";
  gap: var(--s1) var(--s4); align-items: baseline;
  padding: var(--s4) var(--s5);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  color: var(--ink); text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.tier a:hover { border-color: var(--gold-core); background: var(--bg-3); transform: translateY(-2px); }
.tier-name { grid-area: name; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .04em; line-height: 1; }
.tier-price { grid-area: price; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--gold); }
.tier-price small { font-family: var(--font-body); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); margin-left: 2px; }
.tier-line { grid-area: line; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.tier-vip a { border-color: rgba(212,160,23,.45); }
.tier-elite a {
  border-color: var(--gold-core);
  background: linear-gradient(135deg, #14161a 0%, #0f1a1f 100%);
  box-shadow: 0 0 0 1px rgba(245,208,97,.12) inset, 0 8px 32px var(--gold-glow);
}
.tier-elite .tier-name::before { content: "★ "; color: var(--gold); }

/* Venue */
.venue-card {
  display: grid; gap: var(--s2);
  padding: var(--s6) var(--s5);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  border-top: 4px solid var(--teal);
}
.venue-card .h2 { margin-bottom: var(--s3); }
.venue-name { font-size: 1.25rem; font-weight: 600; }
.venue-sub { color: var(--ink-soft); margin-top: -4px; }
address { font-style: normal; color: var(--ink-soft); margin-top: var(--s2); }
.venue-times { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); margin: var(--s4) 0; color: var(--ink-soft); font-size: 14px; }
.venue-times b { color: var(--ink); font-weight: 600; }
.venue-card .btn { justify-self: start; }

/* Entry */
.steps { margin: var(--s5) 0 0; padding: 0; list-style: none; counter-reset: step; display: grid; gap: var(--s4); max-width: var(--measure); }
.steps li { position: relative; padding-left: 56px; color: var(--ink-soft); }
.steps li b { color: var(--ink); display: block; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 2px;
  width: 40px; height: 40px; border-radius: var(--r-full);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.4rem; line-height: 1;
  color: var(--on-gold); background: linear-gradient(180deg, #f5d061, #d4a017);
}

/* Footer */
.foot { border-top: 1px solid var(--line); background: #040608; padding: var(--s7) var(--gutter) var(--s8); }
.foot-inner { max-width: 1080px; margin: 0 auto; display: grid; gap: var(--s2); color: var(--ink-soft); font-size: 14px; }
.foot-brand { font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.foot-brand b { color: var(--gold); }
.foot-contact a { color: var(--gold); }
.foot-fine { color: var(--ink-dim); font-size: 12px; margin-top: var(--s3); }

/* ---------- Scroll feel (CSS only; falls back to static) ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
    .tier:nth-child(even).reveal { animation-range: entry 8% entry 65%; }
    .hero-inner {
      animation: settle linear both;
      animation-timeline: scroll();
      animation-range: 0 60vh;
    }
    .beams i {
      animation: sway 9s ease-in-out infinite alternate;
    }
    .beams i:nth-child(2) { animation-duration: 11s; }
    .beams i:nth-child(3) { animation-duration: 13s; }
    .beams i:nth-child(4) { animation-duration: 10s; }
  }
}
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes settle { from { transform: none; opacity: 1; } to { transform: translateY(80px); opacity: .25; } }
@keyframes sway { from { transform: rotate(-16deg) } to { transform: rotate(-11deg) } }
.beams i:nth-child(2) { animation-name: sway2; } @keyframes sway2 { from { transform: rotate(-5deg) } to { transform: rotate(-1deg) } }
.beams i:nth-child(3) { animation-name: sway3; } @keyframes sway3 { from { transform: rotate(4deg) } to { transform: rotate(9deg) } }
.beams i:nth-child(4) { animation-name: sway4; } @keyframes sway4 { from { transform: rotate(14deg) } to { transform: rotate(19deg) } }

/* ---------- Larger screens ---------- */
@media (min-width: 700px) {
  .hero { padding-top: var(--s9); }
  .facts { grid-template-columns: repeat(4, auto); justify-content: start; gap: var(--s4) var(--s7); }
  .tiers { grid-template-columns: 1fr 1fr; gap: var(--s4); }
  .tier-elite { grid-column: 1 / -1; }
  .tier-elite a { grid-template-columns: 1fr auto; }
  .venue-card { grid-template-columns: 1fr auto; align-items: end; column-gap: var(--s7); }
  .venue-card > * { grid-column: 1; }
  .venue-card .btn { grid-column: 2; grid-row: 1 / span 6; align-self: end; }
  .foot-inner { grid-template-columns: 1fr auto; align-items: end; }
  .foot-inner > :nth-child(3) { grid-column: 2; grid-row: 1 / span 2; text-align: right; }
}
@media (min-width: 1000px) {
  .tiers { grid-template-columns: repeat(3, 1fr); }
  .tier-elite { grid-column: 1 / -1; }
}
