/* ---------- tokens ---------- */
:root {
  --cream: #fbf3e6;
  --cream-dim: #f3e6d2;
  --ink: #241512;
  --ink-soft: #4a352f;

  --maroon-950: #1c070c;
  --maroon-900: #2c0a13;
  --maroon-800: #3a0f1a;
  --maroon-700: #5a1524;
  --maroon-600: #7a1e2b;

  --gold: #e8b23d;
  --gold-light: #f4d38a;
  --terracotta: #c9622f;

  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 64px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: var(--maroon-900);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

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

/* ---------- ambient background ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 520px at var(--mx, 50%) var(--my, 20%), rgba(232, 178, 61, 0.16), transparent 60%),
    radial-gradient(1000px 700px at 15% 0%, var(--maroon-700), transparent 55%),
    radial-gradient(900px 900px at 100% 30%, var(--maroon-800), transparent 60%),
    linear-gradient(180deg, var(--maroon-900) 0%, var(--maroon-950) 100%);
  transition: background 0.3s var(--ease-soft);
  transform: translateY(calc(var(--scroll-y, 0px) * -0.03));
}

.bg-mandala {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(140vw, 1200px);
  height: min(140vw, 1200px);
  transform: translate(-50%, -50%) translateY(var(--mandala-parallax, 0px));
  color: var(--gold);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  animation: spin-slow 140s linear infinite;
}
.bg-mandala svg { width: 100%; height: 100%; }

@keyframes spin-slow {
  to { transform: translate(-50%, -50%) translateY(var(--mandala-parallax, 0px)) rotate(360deg); }
}

/* ---------- garba dance ring (diyas circling the hero, like dancers around the garbo) ---------- */
.garba-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(120vw, 900px);
  height: min(120vw, 900px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  animation: spin-reverse 110s linear infinite;
}
.garba-ring svg { width: 100%; height: 100%; }
.garba-flame {
  fill: url(#flame-gradient);
  opacity: calc(0.45 + var(--scroll-energy, 0) * 0.4);
}

@keyframes spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* ---------- garba dancers ---------- */
.dancer {
  --rhythm: 1.7s;
  --delay: 0s;
  --sway: 3.5deg;
  --bounce: 2px;
  --flare: 2.5deg;
  --arm-swing: 14deg;
  display: block;
  height: 100%;
  width: auto;
  overflow: visible;
  color: inherit;
}
.dancer-skirt,
.dancer-torso,
.dancer-head,
.dancer-bun { fill: currentColor; }
.dancer-limb,
.dandiya,
.dancer-dupatta {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
}
.dancer-limb { stroke-width: 3.2; }
.dandiya { stroke-width: 3.4; }
.dancer-dupatta { stroke-width: 4; opacity: 0.5; }

.dancer-body,
.dancer-skirt,
.dancer-dupatta,
.dancer-arm {
  transform-box: fill-box;
  animation-duration: var(--rhythm);
  animation-delay: var(--delay);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.dancer-body { transform-origin: 50% 100%; animation-name: dancer-sway; }
.dancer-skirt { transform-origin: 50% 0%; animation-name: dancer-flare; }
.dancer-dupatta { transform-origin: 100% 0%; animation-name: dancer-dupatta; }
.dancer-arm-l { transform-origin: 100% 0%; animation-name: dancer-arm-left; }
/* the raised arm pivots at the shoulder, which is this group's bottom-left corner */
.dancer-arm-r { transform-origin: 0% 100%; animation-name: dancer-arm-right; }

@keyframes dancer-sway {
  0%, 100% { transform: rotate(calc(var(--sway) * -1)) translateY(0); }
  25%      { transform: rotate(0deg) translateY(calc(var(--bounce) * -1)); }
  50%      { transform: rotate(var(--sway)) translateY(0); }
  75%      { transform: rotate(0deg) translateY(calc(var(--bounce) * -1)); }
}
@keyframes dancer-flare {
  0%, 100% { transform: skewX(calc(var(--flare) * -1)) scaleX(1); }
  50%      { transform: skewX(var(--flare)) scaleX(1.07); }
}
@keyframes dancer-dupatta {
  0%, 100% { transform: rotate(calc(var(--flare) * -1.8)); }
  50%      { transform: rotate(calc(var(--flare) * 1.8)); }
}
@keyframes dancer-arm-left {
  0%, 100% { transform: rotate(calc(var(--arm-swing) * -0.6)); }
  50%      { transform: rotate(calc(var(--arm-swing) * 0.6)); }
}
/* swings the raised arm inward on the beat, so the pair's sticks cross at centre */
@keyframes dancer-arm-right {
  0%, 100% { transform: rotate(var(--arm-swing)); }
  50%      { transform: rotate(calc(var(--arm-swing) * -1)); }
}

/* ambient row of dancers along the hero floor */
.dance-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 128px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 4vw;
  z-index: -1;
  pointer-events: none;
  color: var(--gold);
  transform: translateX(var(--floor-drift, 0px)) skewX(var(--floor-tilt, 0deg));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}
.floor-dancer { height: 70px; }

.petal-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translateY(calc(var(--scroll-y, 0px) * -0.12));
}

.petal {
  position: absolute;
  top: -5%;
  border-radius: 50% 0 50% 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--terracotta));
  opacity: 0;
  animation: drift linear infinite;
  will-change: transform, opacity;
}

@keyframes drift {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.55; }
  92%  { opacity: 0.35; }
  100% { transform: translate3d(var(--drift-x, 40px), 115vh, 0) rotate(340deg); opacity: 0; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft), backdrop-filter 0.4s var(--ease-soft);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(28, 7, 12, 0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: rgba(232, 178, 61, 0.15);
}

.nav-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.brand-mark {
  display: inline-block;
  color: var(--gold);
  animation: twinkle 2.6s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.6; transform: scale(0.85) rotate(15deg); }
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(232, 178, 61, 0.4);
  transition: background 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft), transform 0.2s var(--ease-soft);
}
.nav-cta:hover {
  background: rgba(232, 178, 61, 0.12);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ---------- layout helpers ---------- */
main { position: relative; z-index: 1; }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-inner.narrow { max-width: 640px; text-align: center; }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 32px) 24px 80px;
  position: relative;
  z-index: 0;
}

.hero-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: var(--hero-opacity, 1);
  transform: translateY(var(--hero-shift, 0px)) scale(var(--hero-scale, 1));
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.eyebrow-dark { color: var(--maroon-600); }

.hero-title {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
  font-weight: 600;
  color: var(--cream);
}
.hero-title .accent {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 40%, var(--terracotta) 55%, var(--gold) 70%, var(--gold-light));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(251, 243, 230, 0.72);
  max-width: 540px;
}

/* countdown */
.countdown {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
}

.digit-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.digit-glass {
  min-width: 74px;
  padding: 14px 6px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  animation: glass-glow 4s ease-in-out infinite;
}
.digit-block:nth-child(3) .digit-glass { animation-delay: 1s; }
.digit-block:nth-child(5) .digit-glass { animation-delay: 2s; }
.digit-block:nth-child(7) .digit-glass { animation-delay: 3s; }

@keyframes glass-glow {
  0%, 100% { box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12); }
  50% { box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 24px -2px rgba(232, 178, 61, 0.4); }
}

.digit {
  display: block;
  font-family: "Playfair Display", serif;
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 5.5vw, 48px);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.digit-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 243, 230, 0.5);
}

.colon {
  font-size: clamp(20px, 3vw, 32px);
  color: rgba(251, 243, 230, 0.35);
  align-self: center;
  margin-top: -18px;
}

.target-date {
  margin-top: 8px;
  font-size: 15px;
  color: rgba(251, 243, 230, 0.65);
}
.target-date strong { color: var(--gold-light); font-weight: 600; }

/* buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple), background 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(110deg, var(--gold-light) 0%, var(--gold) 35%, var(--gold-light) 50%, var(--gold) 65%, var(--gold-light) 100%);
  background-size: 240% 100%;
  background-position: 0% 0%;
  color: var(--maroon-950);
  box-shadow: 0 10px 30px -8px rgba(232, 178, 61, 0.55);
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple), background-position 0.6s var(--ease-soft);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(232, 178, 61, 0.7);
  background-position: 100% 0%;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.16);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.calendar-picker {
  position: relative;
  display: inline-flex;
}

.calendar-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(28, 7, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-apple), transform 0.22s var(--ease-apple), visibility 0.22s;
  z-index: 20;
}

.calendar-picker.is-open .calendar-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.calendar-menu-item {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: background 0.2s var(--ease-soft), color 0.2s var(--ease-soft);
}

.calendar-menu-item:hover,
.calendar-menu-item:focus-visible {
  background: rgba(232, 178, 61, 0.16);
  color: var(--gold-light);
  outline: none;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(251, 243, 230, 0.3);
  border-radius: 100px;
}
.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { opacity: 0.3; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* ---------- sections ---------- */
.section { padding: 120px 0; position: relative; }

.section-light {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: 32px 32px 0 0;
}
.section-light .section-title { color: var(--ink); }
.section-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 640px);
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 16px);
  opacity: 0.55;
  border-radius: 4px;
}

.section-dark {
  background:
    radial-gradient(rgba(232, 178, 61, 0.05) 1px, transparent 1.6px) 0 0 / 26px 26px,
    var(--maroon-950);
}

.section-title {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 600;
  margin-top: 10px;
  max-width: 640px;
}
.section-title.light { color: var(--cream); }

.section-sub {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(251, 243, 230, 0.65);
  max-width: 460px;
}

/* cards */
.cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 32px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(36, 21, 18, 0.06);
  box-shadow: 0 24px 48px -32px rgba(36, 21, 18, 0.25);
  transition: transform 0.5s var(--ease-apple), box-shadow 0.5s var(--ease-apple);
}
.cards .card:hover {
  transform: translateY(calc(var(--card-drift, 0px) - 6px));
  box-shadow: 0 32px 60px -28px rgba(36, 21, 18, 0.32);
}

.card-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-600);
  background: linear-gradient(160deg, #fbe8cf, #f6d9b0);
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(232, 178, 61, 0.4), transparent 70%);
  opacity: 0;
  animation: icon-glow 3.6s ease-in-out infinite;
}
.card:nth-child(2) .card-icon::before { animation-delay: 1.2s; }
.card:nth-child(3) .card-icon::before { animation-delay: 2.4s; }

@keyframes icon-glow {
  0%, 100% { opacity: 0; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* featured dandiya pair */
.dandiya-duo {
  position: relative;
  height: 150px;
  margin: 0 auto 26px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.duo-dancer {
  height: 100%;
  color: var(--gold-light);
}
.duo-dancer--mirror { transform: scaleX(-1); }
.duo-dancer .dancer {
  --rhythm: 1.5s;
  --sway: 5deg;
  --bounce: 3px;
  --flare: 3.5deg;
  --arm-swing: 20deg;
}

.strike-spark {
  position: absolute;
  left: 50%;
  top: 21%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cream) 0%, var(--gold-light) 35%, rgba(232, 178, 61, 0.35) 60%, transparent 72%);
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  animation: strike-spark 1.5s ease-in-out infinite;
}
@keyframes strike-spark {
  0%, 34%   { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  50%       { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  66%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
}

/* the pair holds still until you scroll them into view */
.dandiya-duo .dancer-body,
.dandiya-duo .dancer-skirt,
.dandiya-duo .dancer-dupatta,
.dandiya-duo .dancer-arm,
.dandiya-duo .strike-spark { animation-play-state: paused; }
.dandiya-duo.is-dancing .dancer-body,
.dandiya-duo.is-dancing .dancer-skirt,
.dandiya-duo.is-dancing .dancer-dupatta,
.dandiya-duo.is-dancing .dancer-arm,
.dandiya-duo.is-dancing .strike-spark { animation-play-state: running; }

/* notify form */
.notify-form {
  margin-top: 36px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.notify-form input {
  flex: 1 1 260px;
  max-width: 320px;
  padding: 13px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}
.notify-form input::placeholder { color: rgba(251, 243, 230, 0.4); }
.notify-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.notify-status {
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s var(--ease-apple), transform 0.4s var(--ease-apple);
}
.notify-status.show { opacity: 1; transform: translateY(0); }

/* footer */
.footer {
  position: relative;
  z-index: 1;
  /* full-bleed background, content still held to the 1120px column */
  padding: 32px max(24px, calc((100% - 1120px) / 2)) 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(251, 243, 230, 0.45);
  background:
    radial-gradient(rgba(232, 178, 61, 0.05) 1px, transparent 1.6px) 0 0 / 26px 26px,
    var(--maroon-950);
}
.footer-dim { color: rgba(251, 243, 230, 0.3); }

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease-apple), transform 0.9s var(--ease-apple);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-type="twirl"] {
  transform: translateY(calc(26px + var(--card-drift, 0px))) rotate(-6deg) scale(0.92);
}
[data-reveal-type="twirl"].is-visible {
  transform: translateY(var(--card-drift, 0px)) rotate(0deg) scale(1);
}

/* ---------- scroll progress chakra ---------- */
.scroll-chakra {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  z-index: 60;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft), visibility 0.4s;
}
.scroll-chakra.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-chakra svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.chakra-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 2.5;
}
.chakra-progress {
  fill: none;
  stroke: url(#chakra-gradient);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}
.scroll-chakra:hover .chakra-progress { stroke-width: 3; }
.scroll-chakra:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 50%;
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .countdown { gap: 6px; }
  .digit-glass { min-width: 58px; padding: 10px 4px; border-radius: 14px; }
  .colon { margin-top: -12px; }
  .section { padding: 88px 0; }
  .section-light { border-radius: 24px 24px 0 0; }
  .footer { flex-direction: column; gap: 6px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
