/* ─── Secret Rivalry — Drop Machine ───────────────────────────────────────── */
:root {
  color-scheme: dark;
  --bg:      #090607;
  --red:     #e42046;
  --pink:    #ec2c5c;
  --pinktxt: #ff96c8;
  --white:   #f5f5f8;
  --muted:   #b9a8ae;
  --grad-a:  #f79428;
  --grad-b:  #e92654;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

::selection { background: var(--pink); color: #0a0507; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
h1, h2, h3, p, ol { margin-top: 0; }

.hidden { display: none !important; }

/* ─── Smoke world ─────────────────────────────────────────────────────────── */
.smoke {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 80% 25%, rgba(190, 20, 45, 0.55), transparent 65%),
    radial-gradient(ellipse 60% 70% at 20% 90%, rgba(160, 16, 40, 0.45), transparent 70%),
    radial-gradient(ellipse 35% 45% at 95% 92%, rgba(40, 55, 150, 0.35), transparent 70%),
    var(--bg);
  animation: smoke-breathe 9s ease-in-out infinite alternate;
}

@keyframes smoke-breathe {
  from { filter: brightness(1); }
  to   { filter: brightness(1.35); }
}

.smoke::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* ─── "Something big is coming" loom layer ────────────────────────────────── */
.loom {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.loom-row {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(90px, 16vw, 220px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 150, 200, 0.07);
}

.loom-a {
  animation: loom-left 70s linear infinite;
  transform: rotate(-2deg);
}

.loom-b {
  animation: loom-right 90s linear infinite;
  transform: rotate(1.5deg);
  -webkit-text-stroke: 1px rgba(247, 148, 40, 0.055);
}

.loom-row span { padding-right: 0.5em; }

@keyframes loom-left {
  from { transform: rotate(-2deg) translateX(0); }
  to   { transform: rotate(-2deg) translateX(-50%); }
}

@keyframes loom-right {
  from { transform: rotate(1.5deg) translateX(-50%); }
  to   { transform: rotate(1.5deg) translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .loom-a, .loom-b { animation: none; }
}

/* ─── Sold-out ticker ─────────────────────────────────────────────────────── */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom: 1px solid rgba(236, 44, 92, 0.25);
  background: rgba(12, 4, 7, 0.85);
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.ticker-track span.soldout { color: var(--pinktxt); }

.ticker-track i {
  font-style: normal;
  color: var(--pink);
  font-size: 12px;
}

/* ─── Stage layout ────────────────────────────────────────────────────────── */
.stage {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 56px) 40px;
  text-align: center;
}

.top { margin-bottom: clamp(30px, 4vw, 48px); }

.logo {
  width: min(320px, 60vw);
  margin: 0 auto 8px;
  filter: brightness(10);
}

/* Epic gradient logo — PNG used as a mask, gradient shimmer through it */
.logo-epic {
  width: min(380px, 66vw);
  aspect-ratio: 1024 / 173;
  margin: 0 auto 10px;
  background: linear-gradient(
    100deg,
    #fff6e8 0%,
    var(--grad-a) 22%,
    var(--grad-b) 48%,
    var(--pinktxt) 62%,
    var(--grad-a) 82%,
    #fff6e8 100%
  );
  background-size: 250% 100%;
  -webkit-mask: url("assets/harrison-logo.png") center / contain no-repeat;
  mask: url("assets/harrison-logo.png") center / contain no-repeat;
  animation: logo-shine 4.5s linear infinite;
  filter:
    drop-shadow(0 0 18px rgba(233, 38, 84, 0.65))
    drop-shadow(0 0 46px rgba(233, 38, 84, 0.3));
}

@keyframes logo-shine {
  from { background-position: 0% 0; }
  to   { background-position: 250% 0; }
}

.presents {
  margin: 0 0 4px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.brand {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand span {
  background: linear-gradient(100deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Drop zone / giant clock ─────────────────────────────────────────────── */
.drop-zone { margin-bottom: clamp(48px, 7vw, 80px); }

.drop-label {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.live-label { color: var(--pinktxt); animation: blink 1.2s ease-in-out infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}

.clock {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(6px, 1.4vw, 18px);
  margin-bottom: clamp(36px, 5vw, 56px);
}

.cell {
  min-width: clamp(74px, 16vw, 230px);
  padding: clamp(14px, 2.4vw, 34px) clamp(8px, 1.6vw, 22px) clamp(12px, 1.8vw, 24px);
  background: rgba(18, 6, 10, 0.72);
  border: 1px solid rgba(236, 44, 92, 0.4);
  box-shadow:
    0 0 40px rgba(233, 38, 84, 0.18),
    inset 0 1px 0 rgba(255, 150, 200, 0.15);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.cell::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(236, 44, 92, 0.25);
}

.digits {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(58px, 12vw, 170px);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, var(--pinktxt) 55%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(236, 44, 92, 0.55));
}

.digits.tick { animation: roll 0.45s cubic-bezier(0.22, 1, 0.36, 1); }

@keyframes roll {
  0%   { transform: translateY(-38%); opacity: 0; }
  60%  { transform: translateY(6%); opacity: 1; }
  100% { transform: translateY(0); }
}

.unit {
  display: block;
  margin-top: 8px;
  font-size: clamp(9px, 1.1vw, 13px);
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
}

.sep {
  align-self: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 110px);
  color: rgba(236, 44, 92, 0.6);
  animation: blink 1s steps(1) infinite;
  padding-bottom: clamp(18px, 3vw, 40px);
}

/* ─── Slot reel ───────────────────────────────────────────────────────────── */
.reel-wrap { max-width: 640px; margin: 0 auto; }

.reel-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.reel-window {
  height: 86px;
  overflow: hidden;
  border-top: 2px solid rgba(236, 44, 92, 0.5);
  border-bottom: 2px solid rgba(236, 44, 92, 0.5);
  background: rgba(14, 4, 8, 0.8);
  position: relative;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

.reel {
  animation: reel-spin 9s cubic-bezier(0.6, 0.05, 0.3, 0.95) infinite;
  will-change: transform;
}

.reel div {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 52px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

@keyframes reel-spin {
  0%   { transform: translateY(0); }
  100% { transform: translateY(calc(-86px * 12)); }
}

.reel-tease {
  margin: 14px 0 0;
  color: var(--pinktxt);
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Holding state — something big is coming ─────────────────────────────── */
.big-coming {
  margin: clamp(20px, 4vw, 48px) 0 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  display: grid;
  gap: 0;
}

.bc-line {
  font-size: clamp(80px, 15vw, 230px);
  color: var(--white);
  filter: drop-shadow(0 0 40px rgba(233, 38, 84, 0.35));
  animation: bc-breathe 3.4s ease-in-out infinite;
}

.bc-line.bc-grad {
  background: linear-gradient(100deg, var(--grad-a), var(--grad-b), var(--pinktxt), var(--grad-a));
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: bc-breathe 3.4s ease-in-out infinite, logo-shine 5s linear infinite;
  filter: drop-shadow(0 0 50px rgba(233, 38, 84, 0.55));
}

.bc-line:nth-child(1) { animation-delay: 0s; }
.bc-line:nth-child(2) { animation-delay: 0.25s; }
.bc-line:nth-child(3) { animation-delay: 0.5s; }

@keyframes bc-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.015); opacity: 0.92; }
}

.holding-sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── Reveal state ────────────────────────────────────────────────────────── */
.city {
  margin: 0 0 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: clamp(70px, 13vw, 200px);
  background: linear-gradient(100deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 60px rgba(233, 38, 84, 0.45));
  animation: city-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes city-in {
  from { transform: scale(0.82) translateY(30px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.reveal-sub {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal-warning {
  margin: 22px 0 0;
  color: var(--pinktxt);
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}

/* ─── Ticket button ───────────────────────────────────────────────────────── */
.ticket-btn {
  display: inline-block;
  padding: 18px 44px;
  background: linear-gradient(100deg, var(--grad-a), var(--grad-b));
  color: #14040a;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
  box-shadow: 0 0 34px rgba(233, 38, 84, 0.45);
}

.ticket-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 60px rgba(233, 38, 84, 0.75);
}

.ticket-btn:active { transform: scale(0.98); }

.ticket-btn.big { padding: 24px 70px; font-size: 18px; }

.pulse { animation: pulse 1.6s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 34px rgba(233, 38, 84, 0.45); }
  50%      { box-shadow: 0 0 74px rgba(233, 38, 84, 0.9); }
}

/* ─── The real thing ──────────────────────────────────────────────────────── */
.real {
  max-width: 900px;
  margin: 0 auto clamp(56px, 8vw, 96px);
  padding-top: clamp(20px, 3vw, 36px);
}

.real-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.real-head {
  margin: 0 0 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(38px, 6vw, 72px);
  color: var(--white);
}

.real-head span {
  background: linear-gradient(100deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.real-copy {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
}

.real-statements {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: rgba(236, 44, 92, 0.25);
  border: 1px solid rgba(236, 44, 92, 0.25);
}

.real-statements li {
  padding: 18px 22px;
  background: rgba(14, 5, 8, 0.78);
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.real-statements li span {
  background: linear-gradient(100deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Previous drops ──────────────────────────────────────────────────────── */
.drops {
  max-width: 720px;
  margin: 0 auto clamp(30px, 4vw, 44px);
  text-align: left;
}

.drops h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 24px;
  color: var(--pink);
  margin-bottom: 14px;
  text-align: center;
}

.drop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(236, 44, 92, 0.25);
}

.drop-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(14, 5, 8, 0.75);
  border-bottom: 1px solid rgba(236, 44, 92, 0.15);
}

.drop-list li:last-child { border-bottom: none; }

.drop-list strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.drop-list span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.drop-list em {
  flex-shrink: 0;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pinktxt);
  border: 1px solid rgba(255, 150, 200, 0.45);
  padding: 8px 14px;
}

.follow {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.follow a {
  color: var(--pinktxt);
  font-weight: 700;
  text-decoration: none;
}

.follow a:hover { color: var(--white); }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(236, 44, 92, 0.18);
  padding: 26px clamp(20px, 5vw, 56px) 38px;
  background: rgba(10, 4, 6, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-links a:hover { color: var(--pinktxt); }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
  color: #6d5a61;
  line-height: 1.6;
}

.footer-legal a { color: inherit; }

/* ─── Responsive & motion ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .sep { display: none; }
  .clock { flex-wrap: wrap; gap: 10px; }
  .cell { flex: 1 1 40%; }
}

@media (prefers-reduced-motion: reduce) {
  .smoke, .ticker-track, .reel, .digits.tick,
  .pulse, .live-label, .sep, .city { animation: none; }
}
