/* =============================================
   Sola Summit 2026 — Sponsor Prospectus
   Brand palette (from 2024 Brand Book):
     Sola Blue     #3177FF
     Bright Sky    #2995FF
     Deep Ink      #003654
     Power Yellow  #E7FF76
     Pink Pop      #FF98EC
     Vibrant Orange #F44B03
     Light Lilac   #F0EFF6
   Typography: Manrope (Sofia Pro substitute) + Fraunces italic (Jazmin substitute)
   ============================================= */

:root {
  --sola-blue: #3177FF;
  --bright-sky: #2995FF;
  --deep-ink: #003654;
  --deep-ink-2: #002238;
  --power-yellow: #E7FF76;
  --pink-pop: #FF98EC;
  --orange: #F44B03;
  --lilac: #F0EFF6;
  --ink-text: #0F2233;
  --muted: #5d6e7c;
  --line: #e5e7ec;
  --white: #ffffff;

  --max: 1200px;
  --r: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 54, 84, 0.06), 0 1px 3px rgba(0, 54, 84, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(0, 54, 84, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(0, 54, 84, 0.25);

  --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-text);
  background: #fff;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ----- Typography ----- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sola-blue);
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--power-yellow); }

.display {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw + 0.6rem, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--deep-ink);
  margin: 0 0 18px;
}
.display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--sola-blue);
}
.display--light { color: #fff; }
.display--light em { color: var(--power-yellow); }

.lede {
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 22px;
}
.lede--light { color: rgba(255,255,255,0.85); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--sola-blue); color: #fff; }
.btn--primary:hover { background: var(--deep-ink); }
.btn--accent { background: var(--power-yellow); color: var(--deep-ink); }
.btn--accent:hover { background: #fff; box-shadow: 0 10px 30px -10px rgba(231,255,118,0.5); }
.btn--ghost { background: transparent; color: var(--deep-ink); border-color: var(--deep-ink); }
.btn--ghost:hover { background: var(--deep-ink); color: #fff; }
.btn--ghost--light { color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost--light:hover { background: #fff; color: var(--deep-ink); border-color: #fff; }

/* ----- NAV ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 10px 28px;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 38px; width: auto; }
.nav__logo--dark { display: block; }
.nav__logo--light { display: none; }
.nav.is-scrolled .nav__logo--dark { display: none; }
.nav.is-scrolled .nav__logo--light { display: block; }

.nav__links {
  display: flex; gap: 26px; align-items: center;
}
.nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.01em;
  opacity: 0.92;
  transition: opacity .2s, color .2s;
}
.nav__links a:hover { opacity: 1; }
.nav.is-scrolled .nav__links a { color: var(--deep-ink); }

.nav__cta { padding: 11px 18px; font-size: 14px; }

.nav__menu-btn {
  display: none;
  background: transparent; border: 0;
  width: 40px; height: 40px;
  padding: 0; position: relative;
}
.nav__menu-btn span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: background .2s, transform .25s, top .25s, opacity .2s;
}
.nav__menu-btn span:nth-child(1) { top: 13px; }
.nav__menu-btn span:nth-child(2) { top: 19px; }
.nav__menu-btn span:nth-child(3) { top: 25px; }
.nav.is-scrolled .nav__menu-btn span { background: var(--deep-ink); }
.nav.is-open .nav__menu-btn span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav.is-open .nav__menu-btn span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__menu-btn span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; padding: 24px 28px 32px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s, transform .22s;
  }
  .nav__links a { color: var(--deep-ink); font-size: 17px; }
  .nav.is-open .nav__links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__cta { display: none; }
  .nav__menu-btn { display: block; }
}

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 28px 80px;
  display: flex; align-items: center;
  background:
    radial-gradient(80% 60% at 80% 20%, rgba(41,149,255,0.35), transparent 60%),
    radial-gradient(60% 50% at 10% 80%, rgba(231,255,118,0.18), transparent 60%),
    linear-gradient(180deg, var(--deep-ink) 0%, #00253e 100%);
  color: #fff;
  overflow: hidden;
}
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.4;
  pointer-events: none;
  animation: float 16s ease-in-out infinite;
}
.hero__blob--1 {
  width: 520px; height: 520px;
  background: var(--sola-blue);
  top: -120px; right: -120px;
}
.hero__blob--2 {
  width: 360px; height: 360px;
  background: var(--pink-pop);
  bottom: -140px; left: -100px;
  animation-delay: -8s;
  opacity: 0.25;
}
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(-30px) translateX(20px); }
}

.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.hero__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw + 0.5rem, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  max-width: 16ch;
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--power-yellow);
}

.hero__lede {
  max-width: 60ch;
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero__ctas .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero__ctas .btn--ghost:hover { background: #fff; color: var(--deep-ink); border-color: #fff; }

.hero__facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
  max-width: 820px;
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--power-yellow);
}
.fact__value {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
}
.fact__sub { color: rgba(255,255,255,0.7); font-size: 14px; }

@media (max-width: 640px) {
  .hero__facts { grid-template-columns: 1fr; }
}

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero__scroll-line {
  width: 1px; height: 36px; margin-top: 10px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ----- SECTION BASE ----- */
.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.section--ink {
  background: linear-gradient(180deg, var(--deep-ink) 0%, var(--deep-ink-2) 100%);
  color: #fff;
}
.section--ink .lede { color: rgba(255,255,255,0.8); }
.section--lilac { background: var(--lilac); }

.section__head { max-width: 720px; margin-bottom: 56px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 820px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- ABOUT / Bullets ----- */
.bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.bullets li {
  padding: 20px 22px 20px 56px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  position: relative;
  font-size: 16px;
  border-left: 3px solid var(--sola-blue);
}
.bullets li::before {
  content: "";
  position: absolute; left: 22px; top: 28px;
  width: 18px; height: 2px;
  background: var(--sola-blue);
}
.bullets li:nth-child(2) { border-left-color: var(--bright-sky); }
.bullets li:nth-child(2)::before { background: var(--bright-sky); }
.bullets li:nth-child(3) { border-left-color: var(--orange); }
.bullets li:nth-child(3)::before { background: var(--orange); }
.bullets li:nth-child(4) { border-left-color: var(--pink-pop); }
.bullets li:nth-child(4)::before { background: var(--pink-pop); }
.bullets strong { color: var(--deep-ink); font-weight: 700; }

/* ----- STATS ----- */
.stats {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 820px) { .stats { grid-template-columns: 1fr; gap: 28px; } }
.stat {
  text-align: center;
  position: relative;
  padding: 36px 20px;
  border: 1px solid rgba(231,255,118,0.18);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
}
.stat__num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(3.5rem, 5vw + 1rem, 5.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--power-yellow);
}
.stat__plus {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  color: var(--power-yellow);
  vertical-align: top;
  margin-left: 4px;
}
.stat__label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* ----- CARDS ----- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--lilac);
  color: var(--sola-blue);
  margin-bottom: 20px;
  transition: background .25s, color .25s, transform .25s;
}
.card__icon svg { width: 24px; height: 24px; }
.card:hover .card__icon { background: var(--sola-blue); color: #fff; transform: rotate(-4deg); }
.card h3 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 700; color: var(--deep-ink); }
.card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ----- TIERS ----- */
.tier-toggle {
  display: inline-flex; gap: 4px;
  padding: 4px;
  background: #fff;
  border-radius: 999px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.tier-toggle__btn {
  border: 0; background: transparent;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  color: var(--muted);
  transition: background .2s, color .2s;
}
.tier-toggle__btn.is-active {
  background: var(--deep-ink); color: #fff;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tier__head { position: relative; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.tier__avail {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: var(--power-yellow); color: var(--deep-ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.tier__name {
  margin: 0 0 4px;
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--deep-ink);
}
.tier__price {
  margin: 0; font-size: 2rem; font-weight: 800;
  color: var(--sola-blue);
  letter-spacing: -0.02em;
}
.tier__feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.tier__feats li {
  position: relative; padding-left: 26px; color: var(--muted);
}
.tier__feats li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--sola-blue);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.tier__feats strong { color: var(--deep-ink); font-weight: 700; }

/* Featured / premium tier styling */
.tier--title {
  background: linear-gradient(165deg, var(--deep-ink) 0%, #001f33 100%);
  color: #fff;
  border-color: transparent;
}
.tier--title::after {
  content: "Flagship"; position: absolute; top: 18px; right: -34px;
  background: var(--power-yellow); color: var(--deep-ink);
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 40px; transform: rotate(35deg);
}
.tier--title .tier__name,
.tier--title .tier__price { color: #fff; }
.tier--title .tier__price { color: var(--power-yellow); }
.tier--title .tier__head { border-bottom-color: rgba(255,255,255,0.15); }
.tier--title .tier__feats li { color: rgba(255,255,255,0.82); }
.tier--title .tier__feats li::before { background: var(--power-yellow); }
.tier--title .tier__feats strong { color: #fff; }

.tier--diamond { border: 2px solid var(--sola-blue); }
.tier--diamond .tier__name { color: var(--sola-blue); }

/* Comparison table */
.tiers-table { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 8px; overflow: hidden; }
.tiers-table__scroll { overflow-x: auto; }
.tiers-table table {
  width: 100%; border-collapse: collapse; min-width: 760px;
  font-size: 14px;
}
.tiers-table th, .tiers-table td {
  padding: 14px 14px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.tiers-table tbody th { text-align: left; font-weight: 600; color: var(--deep-ink); white-space: nowrap; }
.tiers-table thead th {
  font-size: 13px;
  background: var(--lilac);
  color: var(--deep-ink);
  position: sticky; top: 0;
}
.tiers-table thead th:first-child { background: #fff; }
.th-name { display: block; font-weight: 800; font-size: 15px; }
.th-avail { display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sola-blue); margin-top: 2px; }
.tiers-table .yes { color: var(--sola-blue); font-weight: 800; font-size: 18px; }
.tiers-table .no { color: #c3ccd4; }
.tiers-table__cost th, .tiers-table__cost td {
  background: var(--power-yellow); color: var(--deep-ink);
  font-weight: 800; font-size: 16px;
  border-bottom: 0;
}
.tiers-table__note { font-size: 13px; color: var(--muted); margin: 16px 4px 0; }

.packages-cta { margin-top: 48px; text-align: center; }

/* ----- ENHANCEMENTS ----- */
.enh {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
}
.enh__item {
  padding: 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.enh__item:hover { transform: translateY(-2px); border-color: var(--sola-blue); box-shadow: var(--shadow-md); }
.enh__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 8px; }
.enh__item h3 { margin: 0; font-size: 1rem; font-weight: 700; color: var(--deep-ink); line-height: 1.3; flex: 1; }
.enh__price {
  display: flex; flex-direction: column; align-items: flex-end;
  font-weight: 800; font-size: 1.05rem; color: var(--sola-blue);
  white-space: nowrap;
}
.enh__price small {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-top: 2px;
}
.enh__item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ----- AGENDA ----- */
.agenda {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .agenda { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .agenda { grid-template-columns: 1fr; } }
.agenda__day {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border-top: 4px solid var(--sola-blue);
  transition: transform .2s, box-shadow .2s;
}
.agenda__day:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.agenda__day:nth-child(2) { border-top-color: var(--bright-sky); }
.agenda__day:nth-child(3) { border-top-color: var(--orange); }
.agenda__day:nth-child(4) { border-top-color: var(--pink-pop); }
.agenda__date {
  margin: 0 0 18px;
  font-size: 1.4rem; font-weight: 800;
  color: var(--deep-ink);
  letter-spacing: -0.02em;
}
.agenda__date span {
  display: block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--sola-blue);
  margin-bottom: 4px;
}
.agenda__day ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.agenda__day li {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.agenda__day li:last-child { border-bottom: 0; padding-bottom: 0; }
.agenda__day time { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.agenda__day span:not(:first-child) { color: var(--deep-ink); font-weight: 600; }

/* ----- STAY / LOGISTICS ----- */
.dl { margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.dl div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.dl dt { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin: 0; }
.dl dd { margin: 0; font-weight: 700; color: var(--deep-ink); text-align: right; }

.logistics {
  background: var(--lilac);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}
.logistics h3 {
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--sola-blue);
  margin: 0 0 20px;
}
.logistics__item { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid #dcdde6; }
.logistics__item:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.logistics__item h4 { margin: 0 0 6px; font-size: 1.05rem; color: var(--deep-ink); font-weight: 700; }
.logistics__item p { margin: 0 0 10px; color: var(--muted); font-size: 15px; }
.link { color: var(--sola-blue); font-weight: 700; text-decoration: none; font-size: 14px; }
.link:hover { color: var(--deep-ink); }

/* ----- FINAL CTA ----- */
.cta-final {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(41,149,255,0.6), transparent 65%),
    radial-gradient(40% 40% at 15% 80%, rgba(255,152,236,0.35), transparent 65%),
    var(--deep-ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-final__blob {
  position: absolute; inset: auto auto -200px 50%;
  transform: translateX(-50%);
  width: 900px; height: 400px;
  background: radial-gradient(closest-side, var(--power-yellow), transparent);
  opacity: 0.18;
  filter: blur(20px);
}
.cta-final__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 28px; }
.cta-final__inner .display { margin-bottom: 16px; }
.cta-final__inner .lede { margin-left: auto; margin-right: auto; }
.cta-final__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 32px 0 36px; }
.cta-final__contact {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
}
.cta-final__contact span { font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; color: var(--power-yellow); }
.cta-final__contact a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; }
.cta-final__contact a:hover { border-bottom-color: var(--power-yellow); }

/* ----- FOOTER ----- */
.footer {
  background: var(--deep-ink-2);
  color: rgba(255,255,255,0.7);
  padding: 56px 0;
  text-align: center;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer__logo { height: 44px; width: auto; opacity: 0.9; }
.footer__tag { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: #fff; margin: 0; }
.footer__copy { font-size: 13px; margin: 0; letter-spacing: 0.04em; }

/* ----- REVEAL ANIMATIONS ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
.reveal:nth-child(5) { transition-delay: .24s; }
.reveal:nth-child(6) { transition-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__blob { animation: none; }
  .hero__scroll-line { animation: none; }
  html { scroll-behavior: auto; }
}

/* Selection */
::selection { background: var(--power-yellow); color: var(--deep-ink); }

/* Focus styles */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--bright-sky);
  outline-offset: 3px;
  border-radius: 4px;
}
