:root {
  --bg: #070605;
  --panel: #0d0b08;
  --panel-2: #141009;
  --line: #2a2218;
  --gold: #c9a96a;
  --gold-soft: #e8d9a8;
  --ivory: #ffe0b0;
  --muted: #b7a888;
  --body: #efe7d6;
  --accent: #e06050;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
}

[hidden] {
  display: none !important;
}

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 30px;
  padding: 5px 12px;
  background: linear-gradient(90deg, #0b0805, #181008, #0b0805);
  border-bottom: 1px solid rgba(201, 169, 106, 0.22);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.trust-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(224, 96, 80, 0.9);
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(201, 169, 106, 0.24);
  background: rgba(7, 6, 5, 0.92);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 1080px);
  min-height: 56px;
  margin: 0 auto;
  padding: 8px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--ivory);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(201, 169, 106, 0.5);
  border-radius: 8px;
  background: linear-gradient(145deg, #191206, #0b0805);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.brand-name {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-name em {
  color: var(--gold);
  font-style: normal;
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid rgba(201, 169, 106, 0.34);
  border-radius: 8px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.official-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(201, 169, 106, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.lang-btn {
  min-width: 34px;
  min-height: 28px;
  padding: 3px 5px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, #c9a96a, #e8d9a8);
  color: #160f06;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 86px);
  overflow: hidden;
  background: #050403;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero-shade {
  background:
    radial-gradient(120% 80% at 50% 10%, rgba(5, 4, 3, 0.2), rgba(5, 4, 3, 0.82) 62%, rgba(5, 4, 3, 0.97)),
    linear-gradient(180deg, rgba(5, 4, 3, 0.55), rgba(5, 4, 3, 0.1) 30%, rgba(5, 4, 3, 0.72) 75%, #070605 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 820px);
  min-height: 100%;
  margin: 0 auto;
  padding: 22px 16px 28px;
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--ivory);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.85);
}

.hero-sub {
  max-width: 560px;
  margin: 10px auto 0;
  color: rgba(239, 231, 214, 0.82);
  font-size: 13px;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
}

.countdown-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 14px 0 8px;
}

.countdown-stage {
  position: relative;
  width: 186px;
  height: 186px;
  flex: 0 0 186px;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.55));
}

.clock-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: rgba(232, 217, 168, 0.72);
}

.ring-track {
  fill: rgba(10, 8, 6, 0.55);
  stroke: rgba(201, 169, 106, 0.28);
  stroke-width: 2;
}

.ring-progress {
  fill: none;
  stroke: url(#goldRing);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-dasharray: 653;
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: 120px 120px;
  transition: stroke-dashoffset 0.9s linear;
}

.roman text {
  fill: var(--gold-soft);
  stroke: none;
  font-family: var(--serif);
  font-size: 14px;
}

.ticks line {
  stroke: rgba(232, 217, 168, 0.58);
}

.sec-hand {
  fill: var(--accent);
  transform-origin: 120px 120px;
  transition: transform 0.9s linear;
  filter: drop-shadow(0 0 5px rgba(224, 96, 80, 0.55));
}

.center-cap {
  fill: var(--gold);
}

.countdown-number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--ivory);
  text-shadow: 0 0 28px rgba(201, 169, 106, 0.35), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.countdown-number.pop {
  animation: num-pop 0.32s ease;
}

@keyframes num-pop {
  0% { transform: scale(1.12); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.countdown-label {
  margin-top: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}

.suspense {
  min-height: 52px;
  margin-top: 8px;
}

.suspense-head {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.25;
  color: var(--ivory);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.suspense-sub {
  margin: 4px 0 0;
  color: rgba(239, 231, 214, 0.7);
  font-size: 12px;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(201, 169, 106, 0.3);
  border-radius: 999px;
  background: rgba(7, 6, 5, 0.58);
  color: rgba(232, 217, 168, 0.88);
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(224, 96, 80, 0.65);
  animation: live-pulse 1.7s infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(224, 96, 80, 0.65); }
  70% { box-shadow: 0 0 0 9px rgba(224, 96, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 96, 80, 0); }
}

/* Sections */
.section {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 58px 16px 56px;
}

.section-head {
  margin: 0 auto 28px;
  max-width: 680px;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-head h2,
.rules-block h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--ivory);
}

.section-sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.watch-card,
.acc-card {
  overflow: hidden;
  border: 1px solid rgba(201, 169, 106, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, #12100b, #0a0907);
}

.watch-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050403;
}

.watch-media img,
.acc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.watch-card:hover .watch-media img,
.acc-card:hover img {
  transform: scale(1.045);
}

.watch-body {
  padding: 12px 11px 14px;
}

.watch-tag {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.watch-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ivory);
}

.watch-body p {
  min-height: 36px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

/* Craft */
.craft-layout {
  display: grid;
  gap: 18px;
}

.craft-features {
  display: grid;
  gap: 12px;
}

.craft-item {
  padding: 13px 4px 12px;
  border-top: 1px solid rgba(201, 169, 106, 0.3);
}

.craft-index {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.craft-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ivory);
}

.craft-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.craft-images {
  display: grid;
  gap: 12px;
}

.craft-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(201, 169, 106, 0.2);
  border-radius: 8px;
  object-fit: cover;
}

/* Accessories */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.acc-card img {
  aspect-ratio: 1 / 1;
}

.acc-card {
  padding: 0 0 14px;
}

.acc-card h3 {
  margin: 12px 11px 4px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ivory);
}

.acc-card p {
  margin: 0 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Campaign */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  min-height: 112px;
  padding: 18px 12px;
  border: 1px solid rgba(201, 169, 106, 0.22);
  border-radius: 8px;
  background: linear-gradient(160deg, #12100b, #0a0907);
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  color: var(--ivory);
}

.stat-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.rules-block {
  margin-top: 26px;
  padding: 20px 18px;
  border: 1px solid rgba(201, 169, 106, 0.2);
  border-radius: 8px;
  background: rgba(13, 11, 8, 0.75);
}

.rules-block h3 {
  font-size: 22px;
}

.rules-block ol {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.rules-block li {
  padding-left: 2px;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 74px 18px 72px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.86), rgba(7, 6, 5, 0.55)),
    url("assets/hero.jpg") center / cover;
}

.final-eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--ivory);
}

.final-cta p:not(.final-eyebrow) {
  max-width: 520px;
  margin: 12px auto 20px;
  color: var(--muted);
  font-size: 14px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 238, 196, 0.65);
  border-radius: 8px;
  background: linear-gradient(135deg, #c9a96a, #f0dda5 55%, #c9a96a);
  color: #1a1208;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(201, 169, 106, 0.24);
}

.btn-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* Footer */
.site-footer {
  padding: 36px 18px 104px;
  border-top: 1px solid rgba(201, 169, 106, 0.2);
  text-align: center;
}

.footer-mark {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

/* Reveal modal */
.reveal-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.reveal-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.82);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  padding: 24px 18px 22px;
  border: 1px solid rgba(201, 169, 106, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(201, 169, 106, 0.12), transparent 60%),
    linear-gradient(180deg, #16120b, #0b0907);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s ease;
}

.reveal-modal.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(201, 169, 106, 0.34);
  border-radius: 50%;
  background: rgba(7, 6, 5, 0.7);
  color: var(--gold-soft);
  cursor: pointer;
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-eyebrow {
  margin: 0 0 8px;
  padding-right: 38px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.modal-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ivory);
}

.modal-sub {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.modal-showcase {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(201, 169, 106, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.showcase-img {
  width: 118px;
  height: 118px;
  overflow: hidden;
  border-radius: 8px;
  background: #050403;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-tag {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--ivory);
}

.showcase-copy p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}

.modal-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(201, 169, 106, 0.3);
  border-radius: 999px;
  background: rgba(201, 169, 106, 0.08);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 600;
}

.btn-modal-cta {
  width: 100%;
}

.modal-hint {
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.modal-keep {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(201, 169, 106, 0.42);
  background: rgba(9, 7, 5, 0.94);
  backdrop-filter: blur(14px);
}

.sticky-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(224, 96, 80, 0.9);
}

.sticky-label {
  overflow: hidden;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 148px;
  min-height: 42px;
  margin-left: auto;
  padding: 9px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #c9a96a, #f0dda5 55%, #c9a96a);
  color: #1a1208;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.sticky-cta a svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

body.revealed .site-footer {
  padding-bottom: 100px;
}

/* Desktop */
@media (min-width: 640px) {
  .trust-strip {
    gap: 24px;
    min-height: 34px;
    font-size: 12px;
  }

  .topbar-inner {
    min-height: 64px;
    gap: 14px;
    padding: 10px 24px;
  }

  .official-link {
    padding: 9px 14px;
    font-size: 12px;
  }

  .lang-btn {
    min-width: 40px;
    min-height: 32px;
    font-size: 12px;
  }

  .hero {
    min-height: calc(100svh - 98px);
  }

  .hero-inner {
    padding: 34px 24px 44px;
  }

  .hero-eyebrow {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .countdown-shell {
    margin: 22px 0 10px;
  }

  .countdown-stage {
    width: 232px;
    height: 232px;
    flex-basis: 232px;
  }

  .countdown-number {
    font-size: 66px;
  }

  .countdown-label {
    font-size: 12px;
  }

  .suspense {
    min-height: 62px;
    margin-top: 10px;
  }

  .suspense-head {
    font-size: 22px;
  }

  .suspense-sub {
    font-size: 14px;
  }

  .section {
    padding: 88px 24px 86px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-head h2 {
    font-size: 44px;
  }

  .section-sub {
    font-size: 15px;
  }

  .card-grid {
    gap: 18px;
  }

  .watch-body {
    padding: 16px 14px 18px;
  }

  .watch-tag {
    font-size: 11px;
  }

  .watch-body h3 {
    font-size: 21px;
  }

  .watch-body p {
    min-height: 40px;
    font-size: 12px;
  }

  .craft-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
  }

  .craft-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .craft-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .acc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .stat-card {
    min-height: 132px;
  }

  .stat-card strong {
    font-size: 42px;
  }

  .final-cta {
    padding: 110px 24px;
  }

  .final-cta h2 {
    font-size: 50px;
  }

  .btn-cta {
    min-width: 240px;
    min-height: 56px;
    font-size: 14px;
  }

  .site-footer {
    padding: 46px 24px 110px;
  }

  .modal-card {
    padding: 28px 26px 24px;
  }

  .modal-card h2 {
    font-size: 34px;
  }

  .modal-showcase {
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 16px;
    padding: 12px;
  }

  .showcase-img {
    width: 148px;
    height: 148px;
  }

  .showcase-copy h3 {
    font-size: 24px;
  }

  .modal-chips span {
    font-size: 12px;
  }
}

/* Small phones */
@media (max-width: 359px) {
  .trust-strip {
    gap: 8px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .topbar-inner {
    gap: 7px;
    padding: 8px 10px;
  }

  .brand-name {
    font-size: 16px;
  }

  .official-link {
    padding: 6px 8px;
    font-size: 10px;
  }

  .lang-btn {
    min-width: 30px;
    padding: 3px 4px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 12px;
  }

  .countdown-stage {
    width: 164px;
    height: 164px;
    flex-basis: 164px;
  }

  .countdown-number {
    font-size: 46px;
  }

  .section-head h2 {
    font-size: 27px;
  }

  .watch-body h3 {
    font-size: 16px;
  }
}

/* Short landscape/phone heights */
@media (max-height: 700px) and (orientation: portrait) {
  .hero {
    min-height: calc(100svh - 80px);
  }

  .hero-inner {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .hero-sub {
    margin-top: 7px;
  }

  .countdown-shell {
    margin: 10px 0 4px;
  }

  .countdown-stage {
    width: 158px;
    height: 158px;
    flex-basis: 158px;
  }

  .countdown-number {
    font-size: 44px;
  }

  .suspense {
    min-height: 44px;
    margin-top: 4px;
  }

  .hero-trust {
    margin-top: 6px;
  }
}
