/* ================================================
   AI REGATTA 2027 — Stylesheet
   Charte graphique by Yuzu Digital
   ================================================ */

/* ── Custom Properties ───────────────────────── */
:root {
  --blue:       #2438B5;
  --navy:       #0F172A;
  --blue-mid:   #1A3A8F;
  --blue-light: #3552D1;
  --red:        #D80000;
  --red-dark:   #AA0000;
  --white:      #FFFFFF;
  --gray-light: #F5F7FA;
  --gray-mid:   #E2E6EF;

  --font-sans:  'Inter', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;

  --nav-h:    68px;
  --pad-x:    clamp(1.25rem, 5vw, 3rem);
  --pad-y:    clamp(4rem, 8vw, 7rem);
  --max-w:    1200px;
  --r:        6px;

  --shadow-card:  0 2px 16px rgba(15,23,42,0.07);
  --shadow-hover: 0 12px 40px rgba(36,56,181,0.16);
  --shadow-red:   0 8px 28px rgba(216,0,0,0.38);
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ──────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.8rem;
}
.tag--dim { color: rgba(255,255,255,0.4); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn--red  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: var(--shadow-red); }

.btn--ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn--ghost-white:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

.btn--ghost-blue  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--ghost-blue:hover { background: var(--blue); color: var(--white); }

.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ── Navigation ───────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  transition: background .3s, box-shadow .3s;
}
.nav.is-scrolled {
  background: rgba(9, 15, 31, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Logo */
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Links */
.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .2s;
  position: relative;
}
.nav__links a:not(.btn):hover { color: #fff; }
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: width .25s;
}
.nav__links a:not(.btn):hover::after { width: 100%; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all .3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) var(--pad-x) 8rem;
  position: relative;
  overflow: hidden;
}

/* Radial atmosphere */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 65% 45%, rgba(36,56,181,.22) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 15% 75%, rgba(26,58,143,.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__bg-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* Animated sail lines */
.sail-group { animation: sailDrift 12s ease-in-out infinite alternate; }
.sail-group:nth-child(2) { animation-duration: 15s; animation-direction: alternate-reverse; }
.sail-group:nth-child(3) { animation-duration: 10s; animation-delay: -4s; }
.sail-group:nth-child(4) { animation-duration: 18s; animation-delay: -8s; animation-direction: alternate-reverse; }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  animation: aFadeDown .7s ease both;
}

.hero__title {
  font-size: clamp(3.5rem, 9.5vw, 8.5rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: aFadeUp .8s ease .12s both;
}
.hero__title .ac-blue { color: var(--blue); }
.hero__title .ac-red  { color: var(--red); }

.hero__sub {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 3rem;
  animation: aFadeUp .8s ease .28s both;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
  animation: aFadeUp .8s ease .44s both;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 88px;
  padding: 0 .6rem;
}
.cd-num {
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.cd-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: .3rem;
}
.cd-sep {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--blue);
  font-weight: 700;
  padding-bottom: 1.2rem;
  align-self: center;
  opacity: .7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: aFadeUp .8s ease .6s both;
}

/* Diagonal bottom clip */
.hero__divider {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  pointer-events: none;
  line-height: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.2);
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
  z-index: 1;
}
.hero__scroll-arrow {
  width: 16px; height: 16px;
  border-right: 1.5px solid rgba(255,255,255,.22);
  border-bottom: 1.5px solid rgba(255,255,255,.22);
  transform: rotate(45deg);
}

/* ── Vidéo ────────────────────────────────────── */
.video-section {
  background: var(--navy);
  padding: var(--pad-y) 0;
}

.video-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.video-section__head .headline {
  color: var(--white);
}

.video-section__player {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-section__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Présentation ─────────────────────────────── */
.presentation {
  background: var(--gray-light);
  padding: calc(var(--pad-y) + 2rem) 0 var(--pad-y);
}

.section-head { margin-bottom: 3rem; }
.section-head .headline { color: var(--navy); }

.headline {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.headline--light { color: var(--white); }

.lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(15,23,42,.65);
  max-width: 640px;
  margin-top: 1rem;
}
.lead--light { color: rgba(255,255,255,.58); }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feat-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2rem;
  border: 1px solid rgba(36,56,181,.07);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.feat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-mid));
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feat-card__icon { width: 52px; height: 52px; margin-bottom: 1.2rem; }
.feat-card__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .55rem; }
.feat-card__text  { font-size: .875rem; line-height: 1.68; color: rgba(15,23,42,.56); }

/* ── Categories ───────────────────────────────── */
.categories {
  background: var(--navy);
  padding: calc(var(--pad-y) + 4vw) 0;
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin: -4vw 0;
  position: relative;
  z-index: 2;
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.cat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s;
}
.cat-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 70px; height: 70px;
  background: linear-gradient(225deg, rgba(36,56,181,.3) 0%, transparent 70%);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.cat-card:hover {
  background: rgba(36,56,181,.14);
  border-color: rgba(36,56,181,.45);
  transform: translateY(-5px);
}
.cat-card__num {
  font-family: var(--font-mono);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--blue);
  opacity: .22;
  line-height: 1;
  margin-bottom: .75rem;
}
.cat-card__icon { width: 40px; height: 40px; margin-bottom: 1rem; }
.cat-card__title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .65rem; }
.cat-card__text  { font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.5); margin-bottom: 1.4rem; }
.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--blue);
  transition: color .2s, gap .2s;
}
.cat-card__link:hover { color: var(--red); gap: .7rem; }

/* ── Participants ─────────────────────────────── */
.participants {
  background: var(--white);
  padding: calc(var(--pad-y) + 4vw) 0 var(--pad-y);
  position: relative;
  z-index: 3;
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.part-card {
  padding: 2rem 1.5rem;
  border: 2px solid var(--gray-mid);
  border-radius: var(--r);
  text-align: center;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.part-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(36,56,181,.1);
}
.part-card--featured { border-color: rgba(216,0,0,.28); background: rgba(216,0,0,.02); }
.part-card--featured:hover { border-color: var(--red); box-shadow: 0 8px 28px rgba(216,0,0,.12); }
.part-card__badge {
  position: absolute;
  top: -1px; right: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .22rem .55rem;
  border-radius: 0 0 3px 3px;
}
.part-card__icon { width: 52px; height: 52px; margin: 0 auto 1.1rem; }
.part-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .45rem; }
.part-card__text  { font-size: .82rem; color: rgba(15,23,42,.5); line-height: 1.55; }

/* ── Programme / Timeline ─────────────────────── */
.programme {
  background: var(--gray-light);
  padding: var(--pad-y) 0;
}

.timeline {
  margin-top: 3rem;
  position: relative;
  padding-left: 52px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px; bottom: 44px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue) 0%, rgba(36,56,181,.12) 100%);
}

.tl-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  position: relative;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -52px; top: 0;
  width: 40px; height: 40px;
  border-radius: var(--r);
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, box-shadow .3s;
  z-index: 1;
}
.tl-dot--active {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(36,56,181,.15);
}
.tl-dot--active .tl-icon { stroke: #fff !important; }
.tl-item:hover .tl-dot { background: var(--blue); }
.tl-item:hover .tl-icon { stroke: #fff !important; }

.tl-body {
  flex: 1;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(36,56,181,.08);
}
.tl-item:last-child .tl-body { border-bottom: none; padding-bottom: 0; }

.tl-date {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .35rem;
}
.tl-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.tl-text  { font-size: .875rem; color: rgba(15,23,42,.55); line-height: 1.6; }

/* ── Partners ─────────────────────────────────── */
.partners { background: var(--white); padding: var(--pad-y) 0; }

.partners-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.partner-main {
  background: var(--navy);
  color: var(--white);
  padding: 1.4rem 2.8rem;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.partner-main__label {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.partner-main__name { font-size: 1.7rem; font-weight: 900; letter-spacing: .06em; }

.partner-add {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1.4rem 2rem;
  border: 2px dashed rgba(36,56,181,.22);
  border-radius: var(--r);
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  transition: all .3s;
}
.partner-add:hover { background: var(--blue); color: #fff; border-color: var(--blue); border-style: solid; }

/* ── CTA Inscription ──────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  text-align: center;
  padding: var(--pad-y) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::before { inset: -100% 0 auto auto; width: 550px; height: 550px; border: 1px solid rgba(255,255,255,.07); right: -5%; top: -60%; }
.cta-section::after  { width: 380px; height: 380px; border: 1px solid rgba(255,255,255,.05); bottom: -50%; left: -3%; }

.cta-section .container { position: relative; z-index: 1; }

.cta-section__title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.035em;
  margin-bottom: .75rem;
}
.cta-section__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.62);
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: start;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: .7rem;
}

.footer__brand p {
  margin-top: .7rem;
  font-size: .84rem;
  color: rgba(255,255,255,.32);
  line-height: 1.65;
  max-width: 240px;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: .85rem;
}

.footer__nav { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav a { font-size: .875rem; color: rgba(255,255,255,.48); transition: color .2s; }
.footer__nav a:hover { color: var(--white); }

.footer__contact a {
  display: block;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  margin-bottom: .5rem;
  transition: color .2s;
}
.footer__contact a:hover { color: var(--white); }
.footer__contact address {
  font-style: normal;
  font-size: .78rem;
  color: rgba(255,255,255,.22);
  margin-top: .75rem;
  line-height: 1.7;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.5rem 0;
}
.footer__bottom p {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: rgba(255,255,255,.2);
}

/* ── Scroll Reveal ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: .1s; }
.reveal--d2 { transition-delay: .2s; }
.reveal--d3 { transition-delay: .3s; }
.reveal--d4 { transition-delay: .4s; }

/* ── Keyframes ────────────────────────────────── */
@keyframes aFadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes aFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}
@keyframes sailDrift {
  0%   { transform: translate(0,0) rotate(0deg); }
  25%  { transform: translate(7px,-5px) rotate(.4deg); }
  50%  { transform: translate(3px,4px) rotate(-.2deg); }
  75%  { transform: translate(-5px,-2px) rotate(.3deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: rgba(9,15,31,.97);
    backdrop-filter: blur(14px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .3s, opacity .3s;
    pointer-events: none;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 768px) {
  .categories {
    clip-path: none;
    margin: 0;
    padding: var(--pad-y) 0;
  }
  .participants { padding-top: var(--pad-y); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .timeline { padding-left: 40px; }
  .timeline::before { left: 14px; }
  .tl-dot { left: -40px; width: 30px; height: 30px; }
  .cd-item { min-width: 65px; padding: 0 .35rem; }
  .hero__title { line-height: 0.95; }
}

@media (max-width: 480px) {
  .hero__actions .btn--lg,
  .cta-actions .btn--lg { width: 100%; justify-content: center; }
  .countdown { gap: 0; }
  .cd-num { font-size: 2.2rem; }
  .cd-sep { font-size: 1.8rem; padding-bottom: 1rem; }
}
