/* Setly site — sport editorial × Apple glass */

:root {
  --font-display: 'Antonio', system-ui, sans-serif;
  --font-body: 'Barlow Condensed', system-ui, sans-serif;
}
[data-font="bebas"] {
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font-body: 'Barlow Condensed', system-ui, sans-serif;
}
[data-font="oswald"] {
  --font-display: 'Oswald', system-ui, sans-serif;
  --font-body: 'Saira Condensed', system-ui, sans-serif;
}

[data-palette="clay"] {
  --accent: #C84500;
  --accent-soft: #FF6B30;
  --accent-tint: #FFE0CC;
  --accent-deep: #4A1900;
  --surface-name: "TERRA ROSSA";
}
[data-palette="grass"] {
  --accent: #196B1E;
  --accent-soft: #5AE860;
  --accent-tint: #D6F0D8;
  --accent-deep: #082B0B;
  --surface-name: "GRASS";
}
[data-palette="hard"] {
  --accent: #1A44B0;
  --accent-soft: #4E98FF;
  --accent-tint: #D7E3F9;
  --accent-deep: #08204E;
  --surface-name: "HARD";
}
[data-palette="indoor"] {
  --accent: #6D28D9;
  --accent-soft: #A78BFA;
  --accent-tint: #E5DBFB;
  --accent-deep: #2E0D60;
  --surface-name: "INDOOR";
}

[data-mode="light"] {
  --bg: #FBF7F3;
  --bg-2: #F4ECE4;
  --surface: #FFFFFF;
  --surface-elev: #F4ECE4;
  --divider: #E8D5C8;
  --text: #1C0E08;
  --text-2: #6B4A38;
  --text-3: #9A7060;
  --glass: rgba(255,255,255,0.55);
  --glass-strong: rgba(255,255,255,0.78);
  --glass-border: rgba(255,255,255,0.7);
  --shadow-soft: 0 30px 60px -20px rgba(60, 24, 0, 0.18);
  --shadow-deep: 0 50px 90px -30px rgba(60, 24, 0, 0.28);
}
[data-mode="dark"] {
  --bg: #08080C;
  --bg-2: #14141E;
  --surface: #14141E;
  --surface-elev: #1C1C28;
  --divider: #2C2C3A;
  --text: #FFFFFF;
  --text-2: #B5B5C5;
  --text-3: #7E7E8E;
  --glass: rgba(28,28,40,0.55);
  --glass-strong: rgba(20,20,30,0.85);
  --glass-border: rgba(255,255,255,0.08);
  --shadow-soft: 0 30px 60px -10px rgba(0,0,0,0.5);
  --shadow-deep: 0 50px 90px -20px rgba(0,0,0,0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
button { font-family: inherit; border: none; cursor: pointer; }
a { color: inherit; }

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.85;
  text-transform: uppercase;
}
.h-mono { font-family: ui-monospace, 'JetBrains Mono', monospace; }
.eyebrow {
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-2);
}

/* ====== NAV ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background: var(--glass);
  border-bottom: 1px solid var(--glass-border);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 10px 28px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.logo-ball {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #E8FF80, #C8FF3C 55%, #8BB300 95%);
  box-shadow: inset -2px -3px 6px rgba(0,0,0,0.18);
  position: relative; flex-shrink: 0;
}
.logo-ball::before, .logo-ball::after {
  content: ""; position: absolute; inset: 1px; border-radius: 50%;
  border-top: 1.5px solid rgba(255,255,255,0.85);
  border-bottom: 1.5px solid rgba(255,255,255,0.85);
  border-left: transparent; border-right: transparent;
}
.logo-ball::before { transform: rotate(20deg); width: 80%; height: 80%; left: 10%; top: 10%; }
.logo-ball::after  { transform: rotate(-160deg); width: 80%; height: 80%; left: 10%; top: 10%; opacity: 0; }
.nav-links {
  display: flex; gap: 26px;
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.nav-links a {
  color: var(--text-2); text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px var(--accent); }
.nav-cta .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* NAV CONTROLS */
.nav-controls {
  display: flex; align-items: center; gap: 12px;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 64px 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, var(--accent-tint), transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 100%, var(--accent-tint), transparent 60%),
    var(--bg);
}
.hero-court {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: 1;
}
.hero-trail-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}
.serve-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-dasharray: 4 8;
  opacity: 0.35;
}
.ball-shadow {
  fill: rgba(0,0,0,0.18);
}

.hero-grid {
  position: relative;
  z-index: 3;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 48px;
}
.hero-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-2);
}
.hero-meta .pip {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.hero-meta .live-pip {
  background: #FF3B30;
  animation: pulse-red 1.6s ease-out infinite;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255,59,48,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,59,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
}

.claim {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 15vw, 240px);
  line-height: 0.82;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 8px;
}
.claim .accent {
  color: var(--accent);
  font-style: italic;
}
.claim .outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}

.hero-sub {
  max-width: 620px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--text-2);
  margin-top: 28px;
  font-weight: 400;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px;
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 40px -12px var(--accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -10px var(--accent); }
.btn-ghost {
  background: var(--glass-strong);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
}
.btn-ghost:hover { transform: translateY(-2px); background: var(--surface); }
.btn .arrow {
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.hero-foot {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--divider);
  padding-top: 28px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--text);
}
.hero-stat .num .unit { color: var(--accent); }
.hero-stat .lbl {
  margin-top: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-3);
}

/* SECTION HEADER */
.section { padding: 120px 64px; position: relative; }
.section-head {
  max-width: 1480px; margin: 0 auto 64px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: end;
}
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.section-eyebrow .num {
  font-family: var(--font-display); font-size: 20px; color: var(--text-2); font-weight: 700;
  letter-spacing: 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 20px;
}
.section-kicker {
  font-size: 19px; color: var(--text-2);
  max-width: 540px;
  line-height: 1.4;
}

/* ====== FEATURES ====== */
.features-section { background: var(--bg); padding-top: 60px; }
.features-grid {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.feat-card {
  border-radius: 28px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s, border-color 0.3s;
  display: flex; flex-direction: column;
  min-height: 380px;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--accent);
}
.feat-card .feat-num {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-3);
}
.feat-card .feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: 12px;
}
.feat-card .feat-body {
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-2);
  margin-top: 14px;
  max-width: 420px;
}
.feat-card .feat-mock { margin-top: auto; padding-top: 28px; }

.feat-card.span-7 { grid-column: span 7; min-height: 460px; }
.feat-card.span-5 { grid-column: span 5; }
.feat-card.span-6 { grid-column: span 6; }
.feat-card.span-12 { grid-column: span 12; }

.feat-card.dark {
  background: #0F0F18;
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}
.feat-card.dark .feat-body { color: rgba(255,255,255,0.7); }
.feat-card.dark .feat-num { color: rgba(255,255,255,0.5); }

.feat-card.accent {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.feat-card.accent .feat-body { color: rgba(255,255,255,0.85); }
.feat-card.accent .feat-num { color: rgba(255,255,255,0.65); }

/* ====== WIDGET MOCK ====== */
.widget {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 360px;
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(135deg, #14141E, #0A0A10);
  color: #fff;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.widget.large { aspect-ratio: 2 / 1; max-width: 100%; padding: 22px 24px; }
.widget.medium { aspect-ratio: 2 / 1; }
.widget.lock {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}
.widget-row { display: flex; align-items: center; justify-content: space-between; }
.widget-mono { font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: 0.18em; opacity: 0.7; text-transform: uppercase; }
.widget-title { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1; text-transform: uppercase; letter-spacing: -0.01em; }
.widget-sub { font-size: 14px; opacity: 0.7; margin-top: 4px; }
.widget-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.12); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
}
.widget-pill.live { background: #FF3B30; }
.widget-pill.live .dot { background: #fff; }
.widget-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-soft); }

/* ====== CALENDAR ====== */
.calendar-wrap {
  max-width: 1480px; margin: 0 auto;
  position: relative;
}
.cal-track {
  display: flex; gap: 16px;
  padding: 8px 0 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.cal-track::-webkit-scrollbar { height: 6px; }
.cal-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.cal-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 22px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--accent); }
.cal-card .cal-surface-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.cal-card[data-surface="hard"]   .cal-surface-bar { background: #4E98FF; }
.cal-card[data-surface="clay"]   .cal-surface-bar { background: #C84500; }
.cal-card[data-surface="grass"]  .cal-surface-bar { background: #196B1E; }
.cal-card[data-surface="indoor"] .cal-surface-bar { background: #6D28D9; }
.cal-card .cal-cat {
  font-family: ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--text-3);
}
.cal-card .cal-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; line-height: 0.95; text-transform: uppercase;
  margin-top: 10px;
}
.cal-card .cal-city {
  font-size: 14px; color: var(--text-2);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.cal-card .cal-meta {
  display: flex; justify-content: space-between; align-items: end;
  margin-top: 16px;
}
.cal-card .cal-date {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; line-height: 1;
}
.cal-card .cal-pill {
  font-size: 10px; padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600;
  background: var(--surface-elev); color: var(--text-2);
}
.cal-card.live .cal-pill { background: #FF3B30; color: #fff; }
.cal-card.upcoming .cal-pill { background: var(--accent-tint); color: var(--accent-deep); }
[data-mode="dark"] .cal-card.upcoming .cal-pill { background: rgba(255,255,255,0.1); color: var(--text); }
.cal-card.past .cal-pill { background: var(--divider); color: var(--text-3); }

.cal-controls {
  display: flex; gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cal-chip {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--divider);
  background: transparent; color: var(--text-2);
  font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.cal-chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }
.cal-chip:hover:not(.active) { color: var(--text); border-color: var(--text); }

/* ====== DOWNLOAD ====== */
.dl-section { background: var(--bg-2); }
.dl-grid {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.dl-phone-stage {
  position: relative;
  height: 620px;
  display: flex; align-items: center; justify-content: center;
}
.iphone {
  width: 280px; height: 580px;
  border-radius: 56px;
  background: linear-gradient(160deg, #2A2A35, #14141E);
  padding: 14px;
  position: relative;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.4), inset 0 0 0 1.5px rgba(255,255,255,0.06);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.iphone:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0deg); }
.iphone .screen {
  width: 100%; height: 100%;
  border-radius: 44px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  position: relative; overflow: hidden;
  padding: 50px 16px 30px;
  display: flex; flex-direction: column; gap: 14px;
}
.iphone .notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 32px; border-radius: 999px;
  background: #000;
  z-index: 5;
}
.iphone .lock-time {
  text-align: center; color: #fff;
  font-family: var(--font-display); font-weight: 500;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.02em;
}
.iphone .lock-date {
  text-align: center; color: rgba(255,255,255,0.85);
  font-size: 14px; font-weight: 500;
  margin-top: -4px;
  letter-spacing: 0.04em;
}
.iphone .lock-widgets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 14px;
}
.iphone .lock-widgets .widget { padding: 12px; border-radius: 18px; aspect-ratio: 1/1; max-width: 100%; }
.iphone .lock-widgets .widget .widget-title { font-size: 16px; }
.iphone .lock-widgets .widget .widget-mono { font-size: 8px; }
.iphone .lock-widgets .widget .widget-sub { font-size: 10px; }
.iphone .lock-widgets .widget .widget-pill { font-size: 8px; padding: 2px 6px; }
.iphone .lock-widgets .widget .widget-pill .dot { width: 4px; height: 4px; }

.dl-stage-glow {
  position: absolute; width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.45;
  z-index: -1;
  filter: blur(40px);
}

.tf-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 28px;
  padding: 36px;
  margin-top: 32px;
  display: flex; align-items: center; gap: 24px;
}
.tf-icon {
  width: 80px; height: 80px; border-radius: 20px;
  background: linear-gradient(135deg, #4E98FF, #1A44B0);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 36px;
  flex-shrink: 0;
  box-shadow: 0 16px 40px -12px #1A44B0;
}
.tf-meta .tf-title { font-family: var(--font-display); font-weight: 700; font-size: 28px; text-transform: uppercase; line-height: 1; letter-spacing: -0.01em; }
.tf-meta .tf-sub { color: var(--text-2); font-size: 15px; margin-top: 6px; }
.tf-cta {
  margin-left: auto;
}

/* ====== FAQ ====== */
.faq-wrap { max-width: 980px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--divider);
  padding: 22px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: 30px; text-transform: uppercase; line-height: 1.05;
  letter-spacing: -0.01em;
}
.faq-q .ico {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--text-2);
  flex-shrink: 0; margin-left: 24px;
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item.open .faq-q .ico {
  transform: rotate(45deg);
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 17px; color: var(--text-2);
  line-height: 1.5;
  transition: max-height 0.4s ease, margin 0.3s ease;
}
.faq-item.open .faq-a { max-height: 220px; margin-top: 14px; }

/* ====== CONTACT + SUPPORT ====== */
.cta-row-2 {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px;
}
.big-cta {
  border-radius: 36px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.big-cta.beta {
  background: var(--accent);
  color: #fff;
}
.big-cta.support {
  background: var(--text);
  color: var(--bg);
}
.big-cta .label {
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.7;
}
.big-cta h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 0.92; text-transform: uppercase; letter-spacing: -0.02em;
  margin-top: 14px;
}
.big-cta p {
  font-size: 18px; max-width: 520px; line-height: 1.4;
  opacity: 0.85;
  margin-top: 18px;
}
.big-cta .btn-on-color {
  margin-top: 32px;
  background: rgba(255,255,255,0.95); color: var(--accent-deep);
}
.big-cta.support .btn-on-color { color: var(--text); }
.big-cta .bg-blob {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  right: -80px; bottom: -80px;
  background: rgba(255,255,255,0.12);
  pointer-events: none;
}

/* ====== FOOTER ====== */
.footer {
  padding: 60px 64px 32px;
  border-top: 1px solid var(--divider);
}
.footer-row {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer h5 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-3); font-weight: 600; margin-bottom: 14px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer a { color: var(--text-2); text-decoration: none; font-size: 15px; }
.footer a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1480px; margin: 48px auto 0;
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--divider); padding-top: 24px;
  font-size: 12px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ====== HUGE WORD MARK ====== */
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(140px, 24vw, 380px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

/* responsive */
@media (max-width: 1100px) {
  .section { padding: 80px 24px; }
  .hero { padding: 110px 24px 40px; }
  .footer { padding: 60px 24px 24px; }
  .nav-links { display: none; }
  .nav-controls { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .feat-card.span-7, .feat-card.span-5, .feat-card.span-6 { grid-column: span 12; }
  .dl-grid { grid-template-columns: 1fr; }
  .cta-row-2 { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr 1fr; }
  .hero-foot { grid-template-columns: 1fr 1fr; gap: 18px; }
  .big-cta { padding: 36px; }
}
