:root {
  /* ===== Color (white editorial) ===== */
  --bg:        #FFFFFF;
  --bg-2:      #F6F3EB;  /* warm off-white lift */
  --surface:   #EFEBE0;
  --surface-2: #E5E0D2;
  --ink:       #0B0B0F;
  --ink-2:     #2A2922;
  --ink-dim:   #6B655A;
  --ink-deep:  #A39C8E;
  --gold:      #F8BF3D;  /* Brand primary — fills, large display, hover */
  --gold-ink:  #A0710E;  /* Deeper variant for small text on white where contrast matters */
  --gold-deep: #7E5808;  /* Darkest — for shadows / hovers on gold fills */
  --gold-soft: #FDEBB5;  /* Light tint — backgrounds, borders */
  --on-gold:   #0B0B0F;  /* Text on a gold fill — black for AAA contrast on #F8BF3D */
  --hairline:  rgba(11,11,15,0.10);
  --hairline-strong: rgba(11,11,15,0.24);
  --gold-line: rgba(248,191,61,0.55);

  /* ===== Type ===== */
  --f-serif: "Playfair Display", "Times New Roman", serif;
  --f-sans:  "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* aliases kept so existing rules using --f-mono/--f-brush still resolve */
  --f-mono:  "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-brush: "Playfair Display", "Times New Roman", serif;

  /* ===== Layout ===== */
  --max:      100%;
  --gutter:   clamp(28px, 5.2vw, 96px);
  --rule:     1px solid var(--hairline);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(1400px 900px at 85% -250px, rgba(248,191,61,0.10), transparent 60%),
    radial-gradient(900px 700px at -10% 40%, rgba(248,191,61,0.05), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--on-gold); }

/* ===== Utility ===== */
.wrap {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: 1px;
}
.eyebrow .num {
  color: var(--gold-ink);
}

.display {
  font-family: var(--f-serif);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 0.98;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.mono {
  font-family: var(--f-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brush {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hr {
  height: 1px; width: 100%;
  background: var(--hairline);
}
.hr-gold {
  height: 1px; width: 100%;
  background: var(--gold-line);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #FFFFFF;
  transition: all .2s ease;
  cursor: pointer;
  position: relative;
}
.btn .arrow {
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 32px; }
.btn:hover { background: var(--gold); border-color: var(--gold-ink); color: var(--on-gold); }

.btn--ghost {
  background: transparent;
  border-color: var(--hairline-strong);
  color: var(--ink);
}
.btn--ghost:hover { background: transparent; border-color: var(--gold-ink); color: var(--gold-ink); }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold-ink);
  color: var(--on-gold);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #FFFFFF; }

.btn--sm {
  padding: 12px 18px;
  font-size: 11px;
}

/* ===== Ticker ===== */
.ticker {
  position: relative;
  border-bottom: var(--rule);
  background: var(--bg-2);
  overflow: hidden;
  height: 40px;
}
.ticker .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 28px;
}
.ticker .live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.ticker .live::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(248,191,61,0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(248,191,61,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(248,191,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(248,191,61,0); }
}

.ticker .feed {
  position: relative;
  height: 40px;
  overflow: hidden;
}
.ticker .feed-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.ticker .feed-item.active { opacity: 1; transform: translateY(0); }
.ticker .feed-item .gold { color: var(--gold-ink); margin: 0 6px; }
.ticker .feed-item .sep { color: var(--ink-deep); margin: 0 10px; }

/* Marquee track — used on mobile only (hidden on desktop) */
.ticker .feed-marquee { display: none; }

.ticker .right {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.ticker .right .gold { color: var(--gold-ink); }

/* ===== Header / Masthead ===== */
.masthead {
  border-bottom: var(--rule);
  padding: 26px 0 22px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.92);
}
.masthead .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 32px;
}

.logo {
  display: inline-block;
  position: relative;
  text-align: left;
  line-height: 0;
}
.logo img {
  width: auto;
  display: block;
  transition: transform .25s ease;
}
.logo--lg img { height: 72px; }
.logo--md img { height: 52px; }
.logo--sm img { height: 36px; }
.logo:hover img { transform: rotate(-1.5deg) scale(1.02); }

.masthead .establish {
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink-dim);
  letter-spacing: 0;
  padding-bottom: 6px;
}
.masthead .establish .sep {
  margin: 0 14px;
  color: var(--ink-deep);
  font-style: normal;
}

/* Header app store badges (centerpiece) */
.masthead .header-stores {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
}
.masthead .store-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 16px;
  background: var(--ink);
  color: #FFFFFF;
  border: 1px solid var(--ink);
  border-radius: 10px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  line-height: 1;
}
.masthead .store-pill:hover {
  background: #1A1A20;
  border-color: #1A1A20;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(11,11,15,0.55);
}
.masthead .store-pill .glyph {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}
.masthead .store-pill .glyph svg {
  width: 26px;
  height: 26px;
}
.masthead .store-pill .lab {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  text-align: left;
}
.masthead .store-pill .lab .small {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.masthead .store-pill .lab .big {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.005em;
  color: #FFFFFF;
}

.next-draw {
  text-align: right;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
}
.next-draw .label {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.next-draw .clock {
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.next-draw .clock .colon {
  color: var(--gold);
  animation: colonBlink 1s infinite;
}
@keyframes colonBlink { 50% { opacity: 0.3; } }
.next-draw .clock .unit {
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.16em;
  margin-left: 2px;
}

.masthead .nav-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: var(--rule);
}
.masthead .nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.masthead .nav a {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.masthead .nav a .idx {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--ink-dim);
  margin-right: 8px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.masthead .nav a:hover { color: var(--gold-ink); }
.masthead .nav a:hover .idx { color: var(--gold-ink); }

.masthead .utility {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.masthead .utility .div {
  width: 1px; height: 14px;
  background: var(--hairline);
}
.masthead .utility a:hover { color: var(--gold-ink); }
.masthead .basket {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--hairline-strong);
  transition: all .2s ease;
}
.masthead .basket:hover {
  border-color: var(--gold-ink);
  color: var(--gold-ink);
}
.masthead .basket .count {
  color: var(--gold-ink);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  border-bottom: var(--rule);
  padding: 0;
  overflow: hidden;
}
.hero .grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 0;
  min-height: 760px;
}
.hero .imagepane {
  position: relative;
  border-right: var(--rule);
  overflow: hidden;
}
.hero .imagepane::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(11,11,15,0.45) 0%, rgba(11,11,15,0) 22%, rgba(11,11,15,0) 70%, rgba(11,11,15,0.55) 100%),
    linear-gradient(to right, rgba(11,11,15,0.1), rgba(11,11,15,0) 30%);
}
.hero .imagepane .meta-stripe,
.hero .imagepane .pebbles { z-index: 3; }
.hero .imagepane .ph {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero .imagepane .ph .label { display: none; }
.hero .imagepane .pebbles {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  z-index: 3;
}
.hero .imagepane .pebbles .credit {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D8D3C7;
}
.hero .imagepane .pebbles .geo {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #908A7D;
}

.hero .meta-stripe {
  position: absolute;
  top: 0; left: 0;
  padding: 22px 26px;
  display: flex;
  gap: 22px;
  z-index: 3;
}
.hero .meta-stripe .tag {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F6F4EF;
  padding: 6px 10px;
  background: rgba(11,11,15,0.7);
  border: 1px solid rgba(246,244,239,0.22);
  backdrop-filter: blur(4px);
}
.hero .meta-stripe .tag.gold {
  color: var(--gold);
  border-color: rgba(248,191,61,0.55);
}

.hero .copypane {
  padding: 56px var(--gutter) 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg);
  position: relative;
}
.hero .copypane::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
}

.hero .lot {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 26px;
}
.hero .lot .num {
  color: var(--gold-ink);
}
.hero .lot .line {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

.hero h1 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
}

.hero .standfirst {
  margin-top: 28px;
  max-width: 460px;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink-2);
}

.hero .specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--rule);
  margin-top: 36px;
  padding-top: 22px;
}
.hero .specs .item {
  padding: 4px 0;
}
.hero .specs .k {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: block;
  margin-bottom: 6px;
}
.hero .specs .v {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero .specs .v small {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  color: var(--ink-dim);
  margin-left: 4px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ===== Hero slider chrome ===== */
.hero-slider .hero-viewport { position: relative; }
.hero-slide-anim { animation: heroFade 0.6s ease both; }
@keyframes heroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide-anim { animation: none; }
}

.hero-ctrls {
  position: absolute;
  top: 64px;
  left: 22px;
  z-index: 5;
  display: flex;
  align-items: stretch;
  gap: 6px;
}
.hero-ctrls button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,11,15,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #F6F4EF;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  font-family: var(--f-serif);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero-ctrls button:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.hero-ctrls .count {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  background: rgba(11,11,15,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #F6F4EF;
}
.hero-ctrls .count .cur { color: var(--gold); }
.hero-ctrls .count .sep { opacity: 0.45; margin: 0 5px; }

.hero-dots {
  position: absolute;
  bottom: 60px;
  left: 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-dots .dot {
  width: 26px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(248,244,239,0.35);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.hero-dots .dot.on {
  background: var(--gold);
  width: 40px;
}

.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(11,11,15,0.12);
  z-index: 5;
}
.hero-progress-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation-name: heroProg;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.hero-slider.paused .hero-progress-fill { animation-play-state: paused; }
@keyframes heroProg {
  from { width: 0; }
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-progress-fill { animation: none; width: 100%; }
}

/* Mechanic block */
.mech {
  margin-top: 32px;
  padding-top: 26px;
  border-top: var(--rule);
}
.mech .countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 22px;
  border: 1px solid var(--hairline);
}
.mech .countdown .cell {
  padding: 16px 8px;
  text-align: center;
  border-right: 1px solid var(--hairline);
  position: relative;
}
.mech .countdown .cell:last-child { border-right: 0; }
.mech .countdown .num {
  font-family: var(--f-serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.mech .countdown .lbl {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.mech .progress-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.mech .progress-row .l, .mech .progress-row .r {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.mech .progress-row .l b {
  color: var(--ink);
  font-weight: 500;
  margin-right: 4px;
}
.mech .progress-row .r b {
  color: var(--gold-ink);
  font-weight: 500;
}
.mech .bar {
  height: 4px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.mech .bar .fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 60%, var(--gold-soft));
  width: 62%;
  box-shadow: 0 0 12px rgba(248,191,61,0.4);
}

.mech .cta-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: var(--rule);
}
.mech .price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mech .price .k {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.mech .price .v {
  font-family: var(--f-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mech .price .v .currency {
  color: var(--gold);
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}
.mech .free {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.5;
  text-align: right;
}
.mech .free a {
  color: var(--gold-ink);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 1px;
}

/* ===== Section frame ===== */
section.band {
  border-bottom: var(--rule);
  padding: 96px 0;
  position: relative;
}
section.band.tight { padding: 72px 0; }
section.band.dark { background: var(--bg-2); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-head h2 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.section-head .right {
  align-self: end;
  padding-bottom: 12px;
}
.section-head .right p {
  max-width: 520px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-left: auto;
}
.section-head .marker {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-head .marker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule);
}
.step {
  padding: 40px 36px 36px;
  border-right: var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
}
.step:last-child { border-right: 0; }
.step .num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 88px;
  line-height: 0.8;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 8px;
}
.step h3 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 320px;
}
.step .meta {
  margin-top: auto;
  padding-top: 22px;
  border-top: var(--rule);
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  justify-content: space-between;
}
.step .meta b { color: var(--ink); font-weight: 500; }

/* ===== Competitions ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.filters .f {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 18px 22px;
  border-right: var(--rule);
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.filters .f:hover { color: var(--ink); }
.filters .f.active {
  color: var(--ink);
  background: var(--bg-2);
}
.filters .f.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold);
}
.filters .f .count {
  color: var(--ink-deep);
  font-size: 9px;
}
.filters .f.active .count { color: var(--gold-ink); }
.filters .f:last-child { border-right: 0; }
.filters .f.right { margin-left: auto; border-right: 0; color: var(--ink); }

.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.comp {
  border: var(--rule);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .25s ease;
  cursor: pointer;
}
.comp:hover { background: var(--bg-2); }
.comp:hover .comp-img .ph { transform: scale(1.04); }

.comp .comp-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.comp .comp-img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,11,15,0.45) 0%, rgba(11,11,15,0) 28%, rgba(11,11,15,0) 70%, rgba(11,11,15,0.35) 100%);
}
.comp .comp-img .ph {
  position: absolute; inset: 0;
  transition: transform .6s ease;
}
.comp .corner, .comp .lot { z-index: 3; }
.comp .corner {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6F4EF;
  background: rgba(11,11,15,0.75);
  border: 1px solid rgba(246,244,239,0.22);
  padding: 5px 9px;
  backdrop-filter: blur(4px);
}
.comp .corner.gold {
  color: var(--gold);
  border-color: rgba(248,191,61,0.55);
}
.comp .lot {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #D8D3C7;
}

.comp .body {
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.comp .body .cat {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.comp .body .cat .dot {
  width: 4px; height: 4px;
  background: var(--gold);
}
.comp .body h4 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.comp .body .value {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-dim);
}
.comp .body .value b {
  color: var(--gold-ink);
  font-style: normal;
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-left: 6px;
}

/* ===== Progress block (sold / remaining / %) ===== */
.comp .body .progress-block {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--hairline);
}
.comp .body .prog-stats {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  align-items: end;
  gap: 12px;
  margin-bottom: 12px;
}
.comp .body .prog-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.comp .body .prog-stats .stat .num {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.comp .body .prog-stats .stat .num i {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 18px;
  margin-left: 1px;
}
.comp .body .prog-stats .stat .lbl {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.comp .body .prog-stats .stat.pct {
  text-align: right;
}
.comp .body .prog-stats .stat.pct .lbl { text-align: right; }
.comp .body .prog-stats .stat.pct .num { color: var(--gold-ink); }

/* Warn state — when stock is low, remaining counter is loud */
.comp .body .prog-stats .stat.remaining.warn .num {
  color: #C8410E;
  animation: warnPulse 1.8s ease-in-out infinite;
}
.comp .body .prog-stats .stat.remaining.warn .lbl { color: #C8410E; }
@keyframes warnPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

/* Bar */
.comp .body .mini-bar {
  height: 8px;
  background: var(--surface);
  position: relative;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.comp .body .mini-bar .fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  background:
    linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 55%, #FFD96B 100%);
  box-shadow: 0 0 14px rgba(248,191,61,0.55), inset 0 0 0 1px rgba(255,255,255,0.18);
  transition: width .6s cubic-bezier(.2,.7,.2,1);
}
.comp .body .mini-bar .fill::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: -2px;
  width: 14px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85));
  filter: blur(2px);
  animation: barShimmer 2.2s linear infinite;
}
@keyframes barShimmer {
  0%   { opacity: 0;   transform: translateX(-20px); }
  40%  { opacity: 0.9; }
  100% { opacity: 0;   transform: translateX(0); }
}
.comp .body .mini-bar .bar-ticks {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}
.comp .body .mini-bar .bar-ticks span {
  border-right: 1px solid rgba(11,11,15,0.18);
}
.comp .body .mini-bar .bar-ticks span:last-child { border-right: 0; }

/* Hot card — slightly warmer body */
.comp.hot .body .mini-bar .fill {
  background: linear-gradient(90deg, #C8410E 0%, #E07333 50%, var(--gold) 100%);
  box-shadow: 0 0 14px rgba(200,65,14,0.45), inset 0 0 0 1px rgba(255,255,255,0.2);
}

/* Status pill (over image) */
.comp .comp-img .status-pill {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 11px 7px 11px;
  color: var(--on-gold);
  background: var(--gold);
  border: 1px solid var(--gold-ink);
  box-shadow: 0 6px 18px -8px rgba(248,191,61,0.6);
}
.comp .comp-img .status-pill .dot {
  width: 6px; height: 6px;
  background: var(--on-gold);
  border-radius: 50%;
}
.comp .comp-img .status-pill.hot {
  color: #FFF4E9;
  background: #C8410E;
  border-color: #8C2D08;
  box-shadow: 0 6px 18px -8px rgba(200,65,14,0.7);
  animation: hotPulse 1.4s ease-in-out infinite;
}
.comp .comp-img .status-pill.hot .dot {
  background: #FFF4E9;
  box-shadow: 0 0 0 0 rgba(255,244,233,0.8);
  animation: hotDot 1.4s ease-in-out infinite;
}
@keyframes hotPulse {
  0%, 100% { box-shadow: 0 6px 18px -8px rgba(200,65,14,0.7); }
  50%      { box-shadow: 0 6px 22px -6px rgba(200,65,14,0.95); }
}
@keyframes hotDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,244,233,0.7); }
  50%      { box-shadow: 0 0 0 5px rgba(255,244,233,0); }
}

/* ===== Foot (price · closes · ENTER) ===== */
.comp .foot {
  border-top: 1px solid var(--ink);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  gap: 0;
}
.comp .foot .foot-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 14px 18px;
  gap: 16px;
  border-right: 1px solid var(--hairline);
}
.comp .foot .price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.comp .foot .price .from {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.comp .foot .price .amt {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.comp .foot .price .amt i {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-right: 1px;
}
.comp .foot .closes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
  text-align: right;
}
.comp .foot .closes .lbl {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.comp .foot .closes .num {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
}
.comp.hot .foot .closes .num {
  color: #C8410E;
}

/* The aggressive ENTER button — solid brand gold on every card */
.comp .foot .enter-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 26px;
  min-width: 168px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-gold);
  background: var(--gold);
  border: 0;
  cursor: pointer;
  overflow: hidden;
  transition: background .25s ease, color .25s ease;
}
.comp .foot .enter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}
.comp .foot .enter-btn .label,
.comp .foot .enter-btn .arrow {
  position: relative;
  z-index: 1;
}
.comp .foot .enter-btn .arrow {
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .25s ease;
}
.comp .foot .enter-btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.comp .foot .enter-btn:hover,
.comp:hover .foot .enter-btn {
  color: #FFFFFF;
}
.comp .foot .enter-btn:hover::before,
.comp:hover .foot .enter-btn::before {
  transform: translateX(0);
}
.comp .foot .enter-btn:hover .arrow,
.comp:hover .foot .enter-btn .arrow {
  width: 32px;
}

.comp.featured {
  grid-column: span 2;
}
.comp.featured .comp-img {
  aspect-ratio: 16/10;
}
.comp.featured h4 {
  font-size: 34px;
  line-height: 1;
}

.see-all {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.see-all .count {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.see-all .count b { color: var(--gold-ink); }

/* ===== Instant Wins ===== */
.instant {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.instant::before {
  content: "INSTANT INSTANT INSTANT INSTANT INSTANT";
  position: absolute;
  top: 24px; left: -2vw;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18vw;
  line-height: 0.85;
  color: rgba(248,191,61,0.14);
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-weight: 400;
  pointer-events: none;
  z-index: 0;
}
.instant .wrap { position: relative; z-index: 1; }

.instant-head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.instant-head h2 {
  font-family: var(--f-serif);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.instant-head h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  display: block;
}
.instant-head .side {
  padding-bottom: 12px;
  border-left: 1px solid var(--gold-line);
  padding-left: 28px;
}
.instant-head .side p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 22px;
}
.instant-head .stat {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.6;
}
.instant-head .stat b {
  color: var(--gold-ink);
  font-weight: 500;
  margin: 0 4px;
}

.iwins {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--rule);
  background: var(--bg);
}
.iwin {
  padding: 28px 22px 22px;
  border-right: var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  cursor: pointer;
  transition: background .2s ease;
}
.iwin:hover { background: var(--bg-2); }
.iwin:last-child { border-right: 0; }
.iwin .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.iwin .odds {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.iwin .odds b { color: var(--gold-ink); }
.iwin .lot {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  color: var(--ink-deep);
  letter-spacing: 0.14em;
}
.iwin h4 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.iwin .val {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-dim);
}
.iwin .val b {
  color: var(--gold-ink);
  font-style: normal;
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
  margin-left: 4px;
  font-weight: 500;
}
.iwin .price-row {
  margin-top: auto;
  padding-top: 18px;
  border-top: var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.iwin .price-row .p {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
}
.iwin .price-row .p .c { color: var(--gold); font-style: italic; font-weight: 400; }
.iwin .price-row .reveal {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.iwin .price-row .reveal::after {
  content: " →";
}

/* ===== Winners ===== */
.winners-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 48px;
}
.winners-head h2 {
  font-family: var(--f-serif);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.winners-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.winners-head .right {
  text-align: right;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  padding-bottom: 12px;
}
.winners-head .right b {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  text-transform: none;
  letter-spacing: -0.01em;
}

.winners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-left: var(--rule);
}
.winner {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 0;
  position: relative;
  background: var(--bg);
}
.winner .ph-wrap {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.winner .ph-wrap .ph {
  position: absolute; inset: 0;
}
.winner .badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--on-gold);
  padding: 5px 9px;
  font-weight: 500;
}
.winner .lot {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  color: #D8D3C7;
  letter-spacing: 0.14em;
}
.winner .caption {
  padding: 22px 20px 24px;
  border-top: var(--rule);
}
.winner .name {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.winner .name em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}
.winner .prize {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
  line-height: 1.5;
}
.winner .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-deep);
}
.winner .meta b { color: var(--gold-ink); }

/* ===== Membership ===== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
}
.tier {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--bg);
  position: relative;
}
.tier.popular {
  background: var(--surface);
  border-top: 1px solid var(--gold);
}
.tier.popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -1px; left: 36px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  background: var(--gold);
  color: var(--on-gold);
  padding: 6px 12px;
  font-weight: 500;
  transform: translateY(-100%);
}
.tier .lvl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.tier .lvl .name {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.tier .lvl .num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}
.tier .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0 16px;
  border-bottom: var(--rule);
}
.tier .price .p {
  font-family: var(--f-serif);
  font-size: 64px;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.tier .price .p .c {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.tier .price .per {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.tier .feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0;
}
.tier .feats li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: baseline;
}
.tier .feats li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  display: block;
  margin-top: 6px;
}
.tier .feats li b {
  color: var(--ink);
  font-weight: 600;
}
.tier .cta {
  margin-top: auto;
  padding-top: 22px;
  border-top: var(--rule);
}
.tier .cta .btn { width: 100%; justify-content: space-between; }

/* ===== Trust signals ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
}
.trust {
  padding: 36px 30px 32px;
  border-right: var(--rule);
  border-bottom: var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.trust .num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 52px;
  line-height: 0.85;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 4px;
}
.trust h4 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.trust p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.trust .tag {
  margin-top: auto;
  padding-top: 14px;
  border-top: var(--rule);
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.trust .tag b { color: var(--gold-ink); }

/* ===== App promo ===== */
.app {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
  background: var(--bg-2);
}
.app .col {
  padding: 80px 56px;
}
.app .col.left {
  border-right: var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.app .col.right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.app h2 {
  font-family: var(--f-serif);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.96;
}
.app h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.app p {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.5;
  max-width: 460px;
}
.app .stores {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.app .store {
  border: 1px solid var(--hairline-strong);
  padding: 16px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: all .2s ease;
}
.app .store:hover {
  border-color: var(--gold-ink);
  background: rgba(248,191,61,0.04);
}
.app .store .glyph {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.app .store .lab {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.app .store .lab .small {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.app .store .lab .big {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.app .notify {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.app .notify b { color: var(--gold-ink); }

.phone-wrap {
  position: relative;
  width: 320px;
  height: 600px;
}
.phone {
  width: 100%; height: 100%;
  background: #0B0B0F;
  border: 1px solid #1d1d22;
  border-radius: 38px;
  padding: 14px;
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(11,11,15,0.35), 0 8px 24px -12px rgba(11,11,15,0.18);
}
.phone .screen {
  width: 100%; height: 100%;
  background: #131318;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  color: #F6F4EF;
}
.phone .notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #0B0B0F;
  border-radius: 14px;
  z-index: 3;
}
.phone .pscreen-inner {
  padding: 56px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone .pscreen-placeholder {
  position: absolute;
  inset: 38px 14px 14px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}
.phone .pscreen-placeholder .ph {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.phone .pmark {
  text-align: center;
  margin-bottom: 6px;
  line-height: 0;
}
.phone .pmark img {
  height: 36px;
  width: auto;
  display: inline-block;
}
.phone .pcard {
  background: #0B0B0F;
  border: 1px solid rgba(246,244,239,0.09);
  padding: 12px;
  color: #F6F4EF;
}
.phone .pcard .pimg {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a2230, #0e1620);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.phone .pcard .pimg::after {
  content: "PEBBLE BEACH";
  position: absolute;
  bottom: 8px; left: 8px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
}
.phone .pcard h5 {
  font-family: var(--f-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #F6F4EF;
}
.phone .pcard .prow {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #908A7D;
}
.phone .pcard .prow b { color: var(--gold); }
.phone .pbar {
  height: 2px;
  background: rgba(246,244,239,0.09);
  margin-top: 8px;
}
.phone .pbar .pfill {
  height: 100%;
  width: 64%;
  background: var(--gold);
}

/* ===== FAQ ===== */
.faq-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-top: var(--rule);
}
.faq-row .head-side {
  padding: 36px 36px 36px 0;
  border-right: var(--rule);
  position: sticky;
  top: 200px;
  align-self: start;
}
.faq-row .head-side h2 {
  font-family: var(--f-serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.faq-row .head-side h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.faq-row .head-side p {
  margin-top: 20px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 320px;
}
.faq-row .head-side .contact {
  margin-top: 28px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.faq-row .head-side .contact a {
  color: var(--gold-ink);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 2px;
}

.faqs { padding-left: 0; }
.faq {
  border-bottom: var(--rule);
  padding: 28px 0 28px 36px;
  cursor: pointer;
}
.faq summary {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 18px;
  align-items: baseline;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .q {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}
.faq .plus {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 24px;
  color: var(--ink-dim);
  text-align: right;
  transition: transform .25s ease, color .25s ease;
  padding-top: 0;
  line-height: 1;
}
.faq[open] .plus { transform: rotate(45deg); color: var(--gold-ink); }
.faq .a {
  margin-top: 18px;
  margin-left: 0;
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ===== Newsletter ===== */
.news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 100px 0;
  border-bottom: var(--rule);
  position: relative;
}
.news::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--gold-line);
}
.news h2 {
  font-family: var(--f-serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.news h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.news .right { padding-left: 56px; }
.news p {
  margin-bottom: 24px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 440px;
}
.news .field {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--hairline-strong);
  align-items: center;
  transition: border-color .25s ease;
  margin-top: 22px;
}
.news .field:focus-within { border-color: var(--gold-ink); }
.news .field input {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 18px 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  width: 100%;
}
.news .field input::placeholder { color: var(--ink-deep); }
.news .field button {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 18px 0 18px 22px;
  transition: color .2s ease;
}
.news .field button:hover { color: var(--gold-ink); }
.news .small {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-deep);
}

/* ===== Footer ===== */
footer {
  background: var(--bg);
  padding-top: 0;
  position: relative;
}

/* === Signed-off band (top of footer) ============================ */
.foot-signoff {
  background: var(--ink);
  color: #F6F4EF;
  border-bottom: 1px solid rgba(248,191,61,0.28);
  position: relative;
  overflow: hidden;
}
.foot-signoff::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(248,191,61,0.10), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(248,191,61,0.06), transparent 60%);
  pointer-events: none;
}
.foot-signoff .wrap { position: relative; z-index: 1; }
.foot-signoff .grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: stretch;
  padding: 84px 0 80px;
}
.foot-signoff .manifesto {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.foot-signoff .manifesto .marker {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.foot-signoff .manifesto .marker::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
}
.foot-signoff .manifesto .line {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #F6F4EF;
}
.foot-signoff .manifesto .line em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.foot-signoff .tune-in {
  padding-left: 64px;
  border-left: 1px solid rgba(248,191,61,0.32);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.foot-signoff .tune-in .kicker {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.55);
}
.foot-signoff .tune-in .clock {
  font-family: var(--f-mono);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: -4px;
}
.foot-signoff .tune-in .clock > span {
  font-family: var(--f-serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #F6F4EF;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.foot-signoff .tune-in .clock > span.c {
  color: var(--gold);
  animation: colonBlink 1s infinite;
  font-style: italic;
  font-weight: 400;
}
.foot-signoff .tune-in .clock i {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(246,244,239,0.45);
  margin-right: 6px;
  margin-left: 2px;
  align-self: end;
  padding-bottom: 6px;
}
.foot-signoff .tune-in .handle-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(246,244,239,0.12);
  border-bottom: 1px solid rgba(246,244,239,0.12);
}
.foot-signoff .tune-in .handle {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--gold);
  font-weight: 500;
  transition: color .2s ease;
}
.foot-signoff .tune-in .handle:hover { color: #FFD96B; }
.foot-signoff .tune-in .handle-row .arrow {
  width: 22px; height: 1px;
  background: var(--gold);
  position: relative;
  margin-left: 4px;
}
.foot-signoff .tune-in .handle-row .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}
.foot-signoff .tune-in .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.55);
}
.foot-signoff .tune-in .meta b {
  color: var(--gold);
  font-weight: 600;
}

/* === Restored top spacing for the foot-typo row =================== */
.foot-typo {
  padding-top: 80px !important;
}
.foot-typo {
  padding-bottom: 12px;
  padding-top: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.foot-typo img {
  height: auto;
  width: clamp(180px, 22vw, 280px);
  display: block;
}
.foot-typo .star {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: right;
  line-height: 1.8;
  padding-bottom: 0;
  flex-shrink: 0;
}
.foot-typo .star b { color: var(--gold-ink); display: block; font-weight: 600; }

.foot-cols {
  margin-top: 64px;
  padding: 56px 0 36px;
  border-top: var(--rule);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.foot-cols .col h5 {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 18px;
}
.foot-cols .col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-cols .col a {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  transition: color .2s ease;
  position: relative;
}
.foot-cols .col a:hover { color: var(--gold-ink); }
.foot-cols .col.brand p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 320px;
  margin-bottom: 22px;
}
.foot-cols .col.brand .socials {
  display: flex;
  gap: 14px;
}
.foot-cols .col.brand .socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-style: normal;
  transition: all .2s ease;
}
.foot-cols .col.brand .socials a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold-ink);
}

.foot-schedule {
  margin-top: 16px;
  padding: 28px 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
  display: grid;
  grid-template-columns: auto repeat(7, 1fr) auto;
  gap: 0;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-items: center;
}
.foot-schedule .lbl {
  color: var(--gold-ink);
  padding-right: 22px;
  border-right: var(--rule);
  margin-right: 22px;
}
.foot-schedule .day {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  color: var(--ink-dim);
  padding: 4px 8px;
  position: relative;
}
.foot-schedule .day.on { color: var(--ink); }
.foot-schedule .day.on::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--gold);
}
.foot-schedule .day b {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  font-feature-settings: "tnum";
  text-transform: none;
  letter-spacing: 0;
  color: inherit;
}
.foot-schedule .right {
  text-align: right;
  color: var(--ink);
  border-left: var(--rule);
  padding-left: 22px;
  margin-left: 22px;
}
.foot-schedule .right b { color: var(--gold-ink); display: block; font-family: var(--f-serif); font-style: italic; font-size: 18px; font-weight: 500; text-transform: none; letter-spacing: 0; }

/* === Giant wordmark — magazine colophon moment ==================== */
.foot-wordmark {
  margin-top: 32px;
  padding: 56px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-align: center;
  border-top: var(--rule);
  position: relative;
  overflow: hidden;
}
.foot-wordmark::before,
.foot-wordmark::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold-line);
}
.foot-wordmark::before { top: -1px; }
.foot-wordmark::after  { display: none; }
.foot-wordmark .big {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(96px, 16vw, 240px);
  color: var(--ink);
  display: block;
}
.foot-wordmark .big.italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  margin-top: -4px;
}

.foot-legal {
  padding: 28px 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-deep);
}
.foot-legal .center {
  display: flex;
  gap: 24px;
}
.foot-legal .center a { transition: color .2s ease; }
.foot-legal .center a:hover { color: var(--gold-ink); }
.foot-legal .right { text-align: right; }
.foot-legal b { color: var(--ink-dim); }

/* ===== Placeholder image system ===== */
.ph {
  position: relative;
  background: linear-gradient(135deg, var(--ph-c1, #1a1f28), var(--ph-c2, #0d1118));
  overflow: hidden;
}
.ph-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(0.92) contrast(1.02);
}
.ph-img + .cross { display: none; }
.ph:has(.ph-img) .label { display: none; }
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 14px);
  pointer-events: none;
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(248,191,61,0.08), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(0,0,0,0.4), transparent 50%);
}
.ph .label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.55);
  z-index: 2;
  max-width: 60%;
  line-height: 1.4;
}
.ph .label .arrow {
  display: inline-block;
  width: 12px;
  border-top: 1px solid currentColor;
  margin-right: 8px;
  vertical-align: 4px;
}
.ph.golf  { --ph-c1: #1e2a1c; --ph-c2: #0b1208; }
.ph.coast { --ph-c1: #14222b; --ph-c2: #08121a; }
.ph.hotel { --ph-c1: #20191a; --ph-c2: #0d0809; }
.ph.gear  { --ph-c1: #181818; --ph-c2: #050505; }
.ph.bar   { --ph-c1: #2a1f12; --ph-c2: #14100a; }
.ph.car   { --ph-c1: #1a1a22; --ph-c2: #0a0a10; }
.ph.watch { --ph-c1: #1d1611; --ph-c2: #0a0805; }
.ph.bag   { --ph-c1: #18211e; --ph-c2: #07100d; }
.ph.lite  { --ph-c1: #25241f; --ph-c2: #100f0c; }

.ph .topo {
  position: absolute; inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(ellipse 60% 40% at 30% 60%, transparent 38%, rgba(248,191,61,0.35) 40%, transparent 42%),
    radial-gradient(ellipse 50% 35% at 30% 60%, transparent 30%, rgba(248,191,61,0.3) 32%, transparent 34%),
    radial-gradient(ellipse 38% 28% at 30% 60%, transparent 22%, rgba(248,191,61,0.25) 24%, transparent 26%);
}

.ph .horizon {
  position: absolute;
  left: 0; right: 0;
  top: 58%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(248,191,61,0.25), transparent);
}

.ph .cross {
  position: absolute;
  top: 14px; right: 14px;
  width: 16px; height: 16px;
  z-index: 2;
}
.ph .cross::before, .ph .cross::after {
  content: "";
  position: absolute;
  background: rgba(246,244,239,0.25);
}
.ph .cross::before { left: 7px; top: 0; bottom: 0; width: 1px; }
.ph .cross::after  { top: 7px; left: 0; right: 0; height: 1px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero .grid { grid-template-columns: 1fr; }
  .hero .copypane { padding: 56px var(--gutter); }
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .comp.featured { grid-column: span 2; }
  .iwins { grid-template-columns: repeat(2, 1fr); }
  .winners { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .app { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-signoff .grid { grid-template-columns: 1fr; gap: 48px; padding: 56px 0; }
  .foot-signoff .tune-in { padding-left: 0; border-left: 0; border-top: 1px solid rgba(248,191,61,0.32); padding-top: 32px; }
  .foot-wordmark { padding: 36px 0 24px; }
  .masthead .nav { gap: 22px; flex-wrap: wrap; }
  .masthead .row { grid-template-columns: 1fr 1fr; }
  .masthead .establish { display: none; }
  .masthead .header-stores { display: none; }
  .news { grid-template-columns: 1fr; padding: 60px 0; }
  .news .right { padding-left: 0; padding-top: 36px; border-top: var(--rule); }
  .news::before { display: none; }
  .faq-row { grid-template-columns: 1fr; }
  .faq-row .head-side { position: static; border-right: 0; border-bottom: var(--rule); padding: 40px 0; }
  .faq { padding-left: 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .right { align-self: start; padding-bottom: 0; }
  .winners-head { grid-template-columns: 1fr; gap: 24px; }
  .winners-head .right { text-align: left; padding-bottom: 0; align-self: start; }
}

@media (max-width: 760px) {
  :root { --gutter: 22px; }

  body { font-size: 14.5px; }

  /* === Ticker — continuous marquee on mobile === */
  .ticker { height: auto; min-height: 38px; }
  .ticker .wrap {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .ticker .live,
  .ticker .right { display: none; }
  .ticker .feed {
    height: 38px;
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  }
  /* Hide the fade-rotated desktop items on mobile */
  .ticker .feed-item { display: none; }
  /* Show the marquee track */
  .ticker .feed-marquee {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .ticker .feed-marquee .track {
    display: inline-flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    width: max-content;
    animation: tickerMarquee 48s linear infinite;
    will-change: transform;
  }
  .ticker .feed-marquee .m-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--f-sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 0;
    flex-shrink: 0;
  }
  .ticker .feed-marquee .m-item .sep {
    color: var(--ink-deep);
    margin: 0 8px;
  }
  .ticker .feed-marquee .m-item .gold {
    color: var(--gold-ink);
    margin: 0 6px;
  }
  .ticker .feed-marquee .m-item .dot {
    color: var(--gold);
    margin: 0 22px;
    font-size: 6px;
    transform: translateY(-1px);
  }
  @keyframes tickerMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* === Masthead === */
  .masthead { padding: 16px 0 14px; }
  .masthead .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .logo--lg img { height: 44px; }
  .logo--md img { height: 38px; }
  .logo--sm img { height: 28px; }

  /* Compact countdown */
  .next-draw {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .next-draw .label {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .next-draw .clock {
    font-size: 15px;
    gap: 3px;
  }
  .next-draw .clock .unit { font-size: 7.5px; margin-left: 1px; margin-right: 4px; }
  .next-draw .clock .colon { margin: 0 1px; }

  /* Nav row → single-line scroller + utility on second row */
  .masthead .nav-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
    margin-top: 14px;
  }
  .masthead .nav {
    gap: 18px;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin: 0 calc(-1 * var(--gutter));
    padding: 0 var(--gutter);
    scrollbar-width: none;
  }
  .masthead .nav::-webkit-scrollbar { display: none; }
  .masthead .nav a { font-size: 11px; white-space: nowrap; flex-shrink: 0; }
  .masthead .utility {
    gap: 14px;
    font-size: 10.5px;
    padding-top: 2px;
    border-top: var(--rule);
    padding-top: 10px;
  }
  .masthead .basket { padding: 6px 12px; font-size: 10.5px; }

  /* === HERO === */
  .hero .grid { min-height: auto; }
  .hero .imagepane {
    height: 56vh;
    min-height: 380px;
    border-right: 0;
    border-bottom: var(--rule);
  }
  .hero .imagepane::after { display: none; }
  .hero .copypane { padding: 40px var(--gutter); }
  .hero h1 { font-size: clamp(44px, 11vw, 64px); line-height: 0.95; }
  .hero .standfirst { font-size: 16px; margin-top: 22px; }
  .hero .specs { gap: 18px; margin-top: 28px; padding-top: 18px; }
  .hero .specs .v { font-size: 18px; }
  .hero .lot { margin-bottom: 18px; font-size: 10px; }
  .hero .meta-stripe { padding: 14px 18px; gap: 8px; flex-wrap: wrap; }
  .hero .meta-stripe .tag { font-size: 9px; padding: 5px 9px; }
  .hero .imagepane .pebbles { left: 14px; right: 14px; bottom: 14px; }

  /* === Section heads / band rhythm === */
  section.band, section.app { padding: 64px 0 60px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(34px, 8.5vw, 52px); line-height: 0.98; }
  .section-head .right p { font-size: 16px; max-width: none; }
  .winners-head h2 { font-size: clamp(34px, 8.5vw, 52px); }
  .winners-head .right { font-size: 10px; }
  .winners-head .right b { font-size: 22px; }

  /* === How it works === */
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: var(--rule); padding: 28px 0; }
  .step:last-child { border-bottom: 0; }
  .step p { max-width: none; }

  /* === Competitions === */
  .comp-grid { grid-template-columns: 1fr; gap: 14px; }
  .comp.featured { grid-column: span 1; }

  /* === Instant Wins === */
  .iwins { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* === Winners === */
  .winners { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* === Trust grid === */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 0; }

  /* === App promo === */
  .app { grid-template-columns: 1fr; }
  .app .col { padding: 56px var(--gutter); }
  .app .col.left { border-right: 0; border-bottom: var(--rule); gap: 20px; }
  .app .col.right { padding: 48px var(--gutter) 60px; }
  .app h2 { font-size: clamp(36px, 9vw, 56px); }
  .app p { font-size: 15px; }
  .app .stores { flex-wrap: wrap; }

  /* === FAQ === */
  .faq summary { padding: 18px 0; }
  .faq .q { font-size: 17px; }

  /* === Newsletter === */
  .news { padding: 48px 0; }

  /* === Footer === */
  .foot-signoff .grid { padding: 48px 0 44px; gap: 36px; }
  .foot-signoff .manifesto .line { font-size: clamp(26px, 6.5vw, 38px); }
  .foot-signoff .tune-in { padding-top: 28px; }
  .foot-signoff .tune-in .clock > span { font-size: 40px; }

  .foot-typo {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 48px !important;
    padding-bottom: 18px;
  }
  .foot-typo img { width: 180px; }
  .foot-typo .star { text-align: left; }

  .foot-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    margin-top: 32px;
    padding: 36px 0 24px;
  }
  .foot-cols .col.brand { grid-column: span 2; order: -1; }
  .foot-cols .col a { font-size: 16px; }
  .foot-schedule { display: none; }

  /* Giant wordmark — keep dramatic but fit screen */
  .foot-wordmark { padding: 24px 0 18px; margin-top: 16px; }
  .foot-wordmark .big {
    font-size: clamp(56px, 22vw, 120px);
    line-height: 0.95;
  }

  .foot-legal {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 24px 0 36px;
  }
  .foot-legal .center,
  .foot-legal .right { text-align: center; }
}

@media (max-width: 420px) {
  :root { --gutter: 18px; }

  /* Tighter masthead at very small */
  .logo--lg img { height: 38px; }
  .masthead .nav a { font-size: 10.5px; }
  .next-draw .clock { font-size: 13px; }
  .next-draw .label { font-size: 8.5px; }

  /* Hero h1 smaller */
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero .imagepane { min-height: 320px; height: 50vh; }
  .hero .specs { grid-template-columns: 1fr; gap: 14px; }

  /* Stack winners / instant / trust to 1 col */
  .iwins,
  .winners,
  .trust-grid { grid-template-columns: 1fr; }

  /* Tighter section heads */
  .section-head h2,
  .winners-head h2 { font-size: clamp(30px, 9vw, 44px); }

  /* Footer cols stack */
  .foot-cols { grid-template-columns: 1fr; }
  .foot-cols .col.brand { grid-column: span 1; }
}


/* =============================================================
   Mobile menu — hamburger toggle + slide-in panel
   ============================================================= */

/* Hamburger toggle — icon only, sharp 3-bar with gold accent middle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 70;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle .bars {
  position: relative;
  width: 26px;
  height: 16px;
  display: inline-block;
}
.menu-toggle .bars span {
  position: absolute;
  left: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transform-origin: center;
  transition:
    transform .35s cubic-bezier(.65,0,.35,1),
    opacity .2s ease,
    width .35s cubic-bezier(.65,0,.35,1),
    background .25s ease,
    top .35s cubic-bezier(.65,0,.35,1);
}
.menu-toggle .bars span:nth-child(1) { top: 0;  width: 26px; }
.menu-toggle .bars span:nth-child(2) { top: 7px; width: 16px; background: var(--gold); }
.menu-toggle .bars span:nth-child(3) { top: 14px; width: 22px; }

/* Hover: subtle convergence */
.menu-toggle:hover .bars span:nth-child(2) { width: 22px; }
.menu-toggle:hover .bars span:nth-child(3) { width: 26px; }

/* Open: morph to X */
.menu-toggle.is-open .bars span:nth-child(1) {
  top: 7px;
  width: 26px;
  transform: rotate(45deg);
  background: var(--ink);
}
.menu-toggle.is-open .bars span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-toggle.is-open .bars span:nth-child(3) {
  top: 7px;
  width: 26px;
  transform: rotate(-45deg);
}
/* Visually-hidden label for a11y */
.menu-toggle .lbl {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Slide-in mobile menu — full screen, in from the right */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-2);
  background-image:
    radial-gradient(1000px 700px at 100% -120px, rgba(248,191,61,0.18), transparent 60%),
    radial-gradient(700px 500px at -100px 70%, rgba(248,191,61,0.08), transparent 60%);
  z-index: 65;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform .45s cubic-bezier(.7,0,.2,1),
    visibility .45s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS notch safe area */
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

/* Gold curtain line that draws in as menu opens */
.mobile-menu::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s cubic-bezier(.7,0,.2,1) .15s;
  z-index: 2;
}
.mobile-menu.is-open::before { transform: scaleX(1); }

.mm-inner {
  padding: 22px var(--gutter) 36px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 0;
}

.mm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  position: relative;
}
.mm-top .logo img { height: 44px; }

/* Close X — borderless, brand-feel */
.mm-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mm-close span {
  position: absolute;
  top: 50%; left: 50%;
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: background .2s ease;
}
.mm-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mm-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.mm-close:hover span { background: var(--gold-ink); }

/* Nav list — editorial scale */
.mm-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0 4px;
}
.mm-nav a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: var(--rule);
  font-family: var(--f-serif);
  font-size: clamp(30px, 8.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  transition: padding-left .25s ease, color .2s ease;
}
.mm-nav a:first-child { border-top: var(--rule); }
.mm-nav a:hover,
.mm-nav a:active {
  color: var(--gold-ink);
  padding-left: 10px;
}
.mm-nav a .idx {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold-ink);
  text-transform: uppercase;
  align-self: center;
}
.mm-nav a .lbl {
  font-style: normal;
}
.mm-nav a .arr {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  align-self: center;
  font-weight: 400;
  opacity: 0.55;
  transition: transform .25s ease, opacity .2s ease;
}
.mm-nav a:hover .arr { transform: translateX(6px); opacity: 1; }

/* Utility row */
.mm-util {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 22px 0 24px;
  border-bottom: var(--rule);
}
.mm-util a {
  padding: 16px 14px;
  text-align: center;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.mm-util a:hover {
  border-color: var(--gold-ink);
  color: var(--gold-ink);
}
.mm-util a.basket {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.mm-util a.basket:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.mm-util a.basket .count {
  color: var(--gold);
  margin-left: 4px;
}
.mm-util a.basket:hover .count { color: var(--ink); }

/* Billboard countdown */
.mm-countdown {
  padding: 26px 0 24px;
  border-bottom: var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mm-countdown .kicker {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mm-countdown .kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
}
.mm-countdown .clock {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--f-serif);
}
.mm-countdown .clock > span {
  font-size: clamp(44px, 13vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.mm-countdown .clock > span.c {
  color: var(--gold);
  animation: colonBlink 1s infinite;
  margin: 0 2px;
  font-style: italic;
}
.mm-countdown .clock i {
  font-style: normal;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  margin-left: 3px;
  margin-right: 8px;
  align-self: flex-end;
  padding-bottom: 10px;
}

/* App stores */
.mm-stores {
  padding: 24px 0 22px;
  border-bottom: var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mm-stores .kicker {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mm-stores .kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
}
.mm-stores .row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mm-stores .store-pill {
  background: var(--ink);
  color: var(--bg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--ink);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.mm-stores .store-pill:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.mm-stores .store-pill .glyph {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex-shrink: 0;
}
.mm-stores .store-pill .glyph svg {
  width: 26px;
  height: 26px;
}
.mm-stores .store-pill .lab {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.mm-stores .store-pill .lab .small {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.mm-stores .store-pill:hover .lab .small {
  color: rgba(11,11,15,0.6);
}
.mm-stores .store-pill .lab .big {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* Foot manifesto */
.mm-foot {
  margin-top: auto;
  padding-top: 26px;
  font-family: var(--f-serif);
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.mm-foot .i {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* Stagger entrance — items glide up + fade in */
.mobile-menu .mm-nav a,
.mobile-menu .mm-util,
.mobile-menu .mm-countdown,
.mobile-menu .mm-stores,
.mobile-menu .mm-foot,
.mobile-menu .mm-top {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}
.mobile-menu.is-open .mm-top         { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.mobile-menu.is-open .mm-nav a       { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.mobile-menu.is-open .mm-nav a:nth-child(2) { transition-delay: 0.20s; }
.mobile-menu.is-open .mm-nav a:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.is-open .mm-nav a:nth-child(4) { transition-delay: 0.32s; }
.mobile-menu.is-open .mm-nav a:nth-child(5) { transition-delay: 0.38s; }
.mobile-menu.is-open .mm-util       { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }
.mobile-menu.is-open .mm-countdown  { opacity: 1; transform: translateY(0); transition-delay: 0.50s; }
.mobile-menu.is-open .mm-stores     { opacity: 1; transform: translateY(0); transition-delay: 0.56s; }
.mobile-menu.is-open .mm-foot       { opacity: 1; transform: translateY(0); transition-delay: 0.62s; }


/* ── Show hamburger and hide desktop chrome on mobile ─────── */
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .masthead .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .masthead .nav-row { display: none !important; }

  /* Sticky, scroll-blurred header.
     IMPORTANT: backdrop-filter on .masthead creates a containing block for
     position:fixed descendants — which would clip the off-canvas .mobile-menu
     to the header's box. So the blur lives on a ::before pseudo instead. */
  .masthead {
    padding: 12px 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: var(--rule);
    position: sticky;
    top: 0;
    z-index: 60;
    padding-top: calc(12px + env(safe-area-inset-top, 0));
    isolation: isolate;
  }
  .masthead::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(246,243,235,0.86);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    z-index: -1;
    pointer-events: none;
  }
  .logo--lg img { height: 40px; }

  /* Center live-tick chip — fills the gap between logo and hamburger
     with a hint of live activity. Full countdown lives in the mobile menu. */
  .masthead .row .next-draw {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 5px 10px 5px 11px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    background: rgba(255,255,255,0.5);
    position: relative;
  }
  .masthead .row .next-draw .label {
    display: none;
  }
  .masthead .row .next-draw::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(248,191,61,0.6);
    animation: livePulse 1.6s ease-out infinite;
    flex-shrink: 0;
  }
  .masthead .row .next-draw .clock {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--ink);
    gap: 0;
    line-height: 1;
  }
  .masthead .row .next-draw .clock .unit {
    font-size: 8px;
    color: var(--ink-dim);
    margin: 0 4px 0 1px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
  }
  .masthead .row .next-draw .clock .unit:last-of-type { margin-right: 0; }
  .masthead .row .next-draw .clock .colon {
    display: none;
  }
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(248,191,61,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(248,191,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(248,191,61,0); }
}


