/* ============ shell ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 5vw, 56px);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: block;
  box-shadow: var(--shadow-sm);
}

.brand strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  display: block;
}

.brand span span,
.brand > span > span { font-size: 11.5px; color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  transition: color .15s ease;
}

.nav-links a:hover { color: var(--accent-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px -10px color-mix(in srgb, var(--accent) 75%, transparent);
}

.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }

.btn-on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-on-dark:hover { background: rgba(255, 255, 255, 0.22); }

nav.mobile-hide { display: flex; }

@media (max-width: 880px) {
  nav.mobile-hide { display: none; }
  .site-header .btn { padding: 10px 18px; }
}

/* ============ doodles ============ */

.dd {
  position: absolute;
  width: 54px;
  height: 54px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-14px) rotate(calc(var(--r, 0deg) + 6deg)); }
}

@media (prefers-reduced-motion: reduce) {
  .dd { animation: none; }
}

/* ============ hero ============ */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  color: var(--panel-text);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52% 80% at 88% 6%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 60%),
    radial-gradient(46% 64% at 6% 96%, color-mix(in srgb, var(--c-grape) 40%, transparent), transparent 62%);
  pointer-events: none;
}

.hero-doodles { position: absolute; inset: 0; pointer-events: none; }
.hero-doodles .dd-sun      { top: 8%;  inset-inline-start: 6%;  --r: -6deg; width: 66px; height: 66px; }
.hero-doodles .dd-plane    { top: 14%; inset-inline-end: 8%;  --r: 8deg; }
.hero-doodles .dd-book     { bottom: 20%; inset-inline-start: 4%; --r: -10deg; animation-delay: -2s; }
.hero-doodles .dd-star     { top: 42%; inset-inline-end: 4%;  --r: 12deg; width: 40px; height: 40px; animation-delay: -1s; }
.hero-doodles .dd-squiggle { bottom: 26%; inset-inline-end: 16%; width: 90px; height: 24px; animation-delay: -3s; }
.hero-doodles .dd-pencil   { top: 26%; inset-inline-start: 20%; --r: 18deg; width: 44px; height: 44px; animation-delay: -4s; }

@media (max-width: 900px) {
  .hero-doodles .dd-pencil, .hero-doodles .dd-squiggle { display: none; }
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(52px, 9vw, 104px) clamp(20px, 5vw, 56px) clamp(84px, 12vw, 150px);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: #ffe0cf;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px dashed rgba(255, 255, 255, 0.32);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--accent);
  transform: rotate(15deg);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 6.4vw, 54px);
  line-height: 1.28;
  text-wrap: balance;
  overflow-wrap: break-word;
  margin: 0 0 20px;
  color: #fff;
}

.hero h1 em {
  font-style: normal;
  color: var(--c-yellow);
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 10px;
  background: color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 6px;
  z-index: -1;
}

.hero p.lead {
  font-size: 16.5px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
  margin: 0 0 30px;
}

@media (max-width: 900px) { .hero p.lead { margin-inline: auto; } }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

@media (max-width: 900px) { .hero-ctas { justify-content: center; } }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) { .hero-chips { justify-content: center; } }

.hero-chips span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 15px;
}

.hero-chips b { font-family: var(--font-display); color: #fff; font-weight: 700; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.hero-ring {
  position: relative;
  width: min(320px, 74vw);
  aspect-ratio: 1;
  border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%;
  background: radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 62%);
  border: 2px dashed rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: blob 12s ease-in-out infinite;
}

@keyframes blob {
  0%, 100% { border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; }
  50% { border-radius: 58% 42% 38% 62% / 55% 58% 42% 45%; }
}

@media (prefers-reduced-motion: reduce) { .hero-ring { animation: none; } }

.hero-ring img {
  width: 60%;
  border-radius: 26%;
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.55);
}

.orbit-dot {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.orbit-dot.od1 { width: 18px; height: 18px; background: var(--c-yellow); top: 6%; inset-inline-start: 18%; }
.orbit-dot.od2 { width: 12px; height: 12px; background: var(--c-mint); bottom: 12%; inset-inline-start: 6%; }
.orbit-dot.od3 { width: 22px; height: 22px; background: var(--c-pink); bottom: 4%; inset-inline-end: 16%; }

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(56px, 9vw, 120px);
}

/* ============ section scaffolding ============ */

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 56px);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(34px, 5vw, 50px);
}

.section-head.center { margin-inline: auto; text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 5px 14px;
  border-radius: 999px;
  transform: rotate(-2deg);
  margin: 0 0 14px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.34;
  text-wrap: balance;
  margin: 0 0 12px;
  color: var(--text);
}

.section-head p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.9;
  margin: 0;
}

.section-head.center p { margin-inline: auto; }

/* ============ about ============ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.pull {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.7vw, 27px);
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  padding: 20px 24px;
  background: var(--bg-warm);
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
}

.pull span { color: var(--accent-deep); }

.about-copy p { color: var(--text-muted); font-size: 15.5px; margin: 0 0 16px; }

/* ============ icon badge ============ */

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  transform: rotate(-4deg);
  transition: transform .18s ease;
}

.icon-badge svg { width: 26px; height: 26px; }

/* ============ tracks ============ */

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.track-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.track-card::before {
  content: "";
  position: absolute;
  top: -40px;
  inset-inline-end: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--tc, var(--accent-soft));
  opacity: .5;
}

.track-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.track-card:hover .icon-badge { transform: rotate(4deg) scale(1.04); }

.track-card .icon-badge { position: relative; background: var(--tc-solid, var(--accent)); color: #fff; }

.track-card.t-blue  { --tc: var(--c-blue-soft);  --tc-solid: var(--c-blue); }
.track-card.t-grape { --tc: var(--c-grape-soft); --tc-solid: var(--c-grape); }
.track-card.t-mint  { --tc: var(--c-mint-soft);  --tc-solid: var(--c-mint); }

.track-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin: 18px 0 10px;
  color: var(--text);
}

.track-card p { color: var(--text-muted); font-size: 14.5px; margin: 0 0 16px; }

.track-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.track-card li {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}

.track-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 3px;
  background: var(--tc-solid, var(--accent));
  transform: rotate(15deg);
  flex-shrink: 0;
}

/* ============ summer school ============ */

.summer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffd76a, var(--accent));
  color: #3a1c05;
}

.summer-doodles { position: absolute; inset: 0; pointer-events: none; }
.summer-doodles .dd-ball  { top: 12%; inset-inline-end: 6%; --r: 6deg; width: 64px; height: 64px; }
.summer-doodles .dd-cloud { top: 16%; inset-inline-start: 8%; width: 88px; height: 52px; animation-delay: -2s; }
.summer-doodles .dd-drops { bottom: 14%; inset-inline-start: 14%; --r: -8deg; width: 40px; height: 58px; animation-delay: -3s; }

@media (max-width: 760px) { .summer-doodles .dd-cloud { display: none; } }

.summer-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) clamp(20px, 5vw, 56px);
  text-align: center;
}

.summer-head { max-width: 640px; margin: 0 auto clamp(28px, 4vw, 40px); }

.sticker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: var(--panel);
  padding: 6px 16px;
  border-radius: 999px;
  transform: rotate(-3deg);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.summer-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.8vw, 36px);
  line-height: 1.32;
  margin: 0 0 12px;
  color: #2a1404;
}

.summer-head p { margin: 0; font-size: 15.5px; line-height: 1.9; color: #4a2409; }

.activity-grid {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 720px) { .activity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .activity-grid { grid-template-columns: 1fr; } }

.activity-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease;
}

.activity-grid li:hover { transform: translateY(-3px) rotate(-1deg); }

.activity-grid .dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  transform: rotate(15deg);
  flex-shrink: 0;
  background: var(--accent);
}

.a-blue   .dot { background: var(--c-blue); }
.a-grape  .dot { background: var(--c-grape); }
.a-mint   .dot { background: var(--c-mint); }
.a-pink   .dot { background: var(--c-pink); }
.a-yellow .dot { background: var(--c-yellow); }
.a-lime   .dot { background: var(--c-lime); }
.a-accent .dot { background: var(--accent); }

/* ============ features ============ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card:hover .icon-badge { transform: rotate(4deg) scale(1.05); }

.feature-card.f-blue   .icon-badge { background: var(--c-blue-soft);  color: var(--c-blue); }
.feature-card.f-mint   .icon-badge { background: var(--c-mint-soft);  color: var(--c-mint); }
.feature-card.f-yellow .icon-badge { background: var(--c-yellow-soft); color: #c9930c; }
.feature-card.f-grape  .icon-badge { background: var(--c-grape-soft); color: var(--c-grape); }
.feature-card.f-pink   .icon-badge { background: var(--c-pink-soft);  color: var(--c-pink); }
.feature-card.f-lime   .icon-badge { background: var(--c-lime-soft);  color: #63a11f; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--text);
}

.feature-card p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* ============ course spotlight ============ */

.course-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 720px) {
  .course-card { grid-template-columns: 1fr; text-align: center; }
  .course-card .icon-badge { margin-inline: auto; }
}

.course-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-grape);
  background: var(--c-grape-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.course-card h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 6px; color: var(--text); }
.course-card p { margin: 0; color: var(--text-muted); font-size: 14px; }

/* ============ app section ============ */

.app-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  color: var(--panel-text);
}

.app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(48% 76% at 88% 18%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 64%);
}

.app-doodles { position: absolute; inset: 0; pointer-events: none; }
.app-doodles .dd-star2 { top: 16%; inset-inline-start: 7%; --r: -8deg; width: 42px; height: 42px; }
.app-doodles .dd-ring  { bottom: 14%; inset-inline-end: 6%; width: 70px; height: 70px; animation-delay: -2s; }

.app-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) { .app-inner { grid-template-columns: 1fr; text-align: center; } }

.app-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}

.app-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15.5px;
  max-width: 48ch;
  margin: 0 0 22px;
}

@media (max-width: 900px) { .app-inner p { margin-inline: auto; } }

.app-badges { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) { .app-badges { justify-content: center; } }

.store-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  padding: 10px 18px;
  font-size: 13px;
  color: #fff;
}

.store-badge small { display: block; color: rgba(255, 255, 255, 0.62); font-size: 11px; }
.store-badge strong { font-family: var(--font-display); font-size: 14px; }

a.store-badge { text-decoration: none; transition: border-color .18s, background-color .18s, transform .18s; }

.store-badge--live {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.store-badge--live:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; transform: translateY(-2px); }
.store-badge--live .store-badge__icon { display: flex; }
.store-badge--live .store-badge__icon svg { width: 24px; height: 24px; display: block; }
.store-badge--live .store-badge__text small { color: rgba(255, 255, 255, 0.72); }

.app-persona-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-persona-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.app-persona-list .icon-badge {
  background: rgba(255, 255, 255, 0.14);
  color: var(--c-yellow);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  transform: none;
}

.app-persona-list .icon-badge svg { width: 20px; height: 20px; }

/* ============ contact ============ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}

.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card:hover .icon-badge { transform: rotate(4deg); }

.contact-card.c-mint  .icon-badge { background: var(--c-mint-soft);  color: var(--c-mint); }
.contact-card.c-blue  .icon-badge { background: var(--c-blue-soft);  color: var(--c-blue); }
.contact-card.c-grape .icon-badge { background: var(--c-grape-soft); color: var(--c-grape); }
.contact-card.c-yellow .icon-badge { background: var(--c-yellow-soft); color: #c9930c; }

.contact-card .label { font-size: 12.5px; color: var(--text-muted); font-weight: 600; }

.contact-card .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  direction: ltr;
  text-align: right;
  color: inherit;
  text-decoration: none;
}

.contact-card .value:hover { color: var(--accent-deep); }

.contact-card.address .value {
  direction: rtl;
  text-align: right;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
}

/* ============ footer ============ */

.site-footer {
  border-top: 2px dashed var(--border);
  padding: 40px clamp(20px, 5vw, 56px) 32px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13.5px; font-weight: 600; }
.footer-links a:hover { color: var(--accent-deep); }

.footer-copy { font-size: 12.5px; color: var(--text-muted); }

/* ============ reveal ============ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-in .7s ease forwards;
}

.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .16s; }
.reveal.d3 { animation-delay: .24s; }

@keyframes reveal-in { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
}
