/* ============================================================
   AHH Whales — premium mascot landing
   Type: Outfit (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  /* Backgrounds — peaceful ocean at night */
  --bg-900: #0B1220;
  --bg-850: #0D1424;
  --bg-800: #0F172A;
  --bg-700: #111827;

  /* Primary — bioluminescent cyan */
  --cyan: #3CC7F5;
  --cyan-light: #78E4FF;

  /* Accent — warm sunset */
  --amber: #FFB84D;
  --amber-light: #FFD76A;

  /* Text */
  --white: #FFFFFF;
  --muted: #D1D5DB;
  --muted-dim: #93A3B8;

  /* Glass */
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(120, 228, 255, 0.14);
  --glass-border-soft: rgba(255, 255, 255, 0.08);

  --shadow-glow: 0 30px 90px -30px rgba(60, 199, 245, 0.45);
  --shadow-soft: 0 24px 60px -24px rgba(0, 0, 0, 0.7);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient ocean gradient fixed behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(60, 199, 245, 0.10), transparent 60%),
    radial-gradient(90% 60% at 85% 110%, rgba(255, 184, 77, 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-900), var(--bg-800) 45%, var(--bg-900));
}

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

h1, h2, h3, .display {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-light);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.grad-text {
  background: linear-gradient(120deg, var(--cyan-light), var(--cyan) 60%, var(--amber-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  color: #04222e;
  background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
  box-shadow: 0 12px 30px -10px rgba(60, 199, 245, 0.7), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -12px rgba(60, 199, 245, 0.85), inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn-ghost {
  color: var(--white);
  background: var(--glass);
  border-color: var(--glass-border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: var(--glass-strong);
  border-color: rgba(120, 228, 255, 0.4);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 18, 32, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--glass-border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 56px; width: auto; display: block; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--cyan-light), var(--cyan) 70%);
  box-shadow: 0 8px 22px -8px rgba(60,199,245,0.8), inset 0 1px 0 rgba(255,255,255,0.5);
  position: relative;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-name {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-name span { color: var(--cyan-light); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: -8% 0 0 0;
  z-index: -3;
  background-image: url("assets/images/whale-hero.webp");
  background-size: cover;
  background-position: center 22%;
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.18) 45%, transparent 72%),
    linear-gradient(180deg, rgba(11,18,32,0.45) 0%, transparent 22%, transparent 42%, rgba(11,18,32,0.78) 82%, var(--bg-900) 100%);
}
/* light ray sweep */
.hero-rays {
  position: absolute;
  inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 40%, rgba(120,228,255,0.06) 50%, transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 760px; padding-left: clamp(28px, 6vw, 120px); padding-right: 28px; padding-bottom: clamp(70px, 12vh, 130px); }
.hero h1 {
  font-size: clamp(44px, 6.4vw, 86px);
  margin: 22px 0 0;
}
.hero h1 .line2 { display: block; color: var(--white); }
.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  margin-top: 26px;
  max-width: 480px;
  line-height: 1.5;
}
.hero-sub strong { color: var(--cyan-light); font-weight: 700; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  color: var(--muted-dim);
  font-size: 14px;
  font-weight: 600;
}
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:.4; transform:scale(.8);} 50%{opacity:1; transform:scale(1.15);} }

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted-dim);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.35); border-radius: 14px; position: relative;
}
.scroll-cue .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 7px; border-radius: 2px; background: var(--cyan-light);
  animation: wheel 1.8s infinite;
}
@keyframes wheel { 0%{opacity:0; transform: translate(-50%, 0);} 30%{opacity:1;} 100%{opacity:0; transform: translate(-50%, 12px);} }

/* ---------- Floating bubbles ---------- */
.bubbles { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, rgba(255,255,255,0.85), rgba(120,228,255,0.32) 52%, rgba(120,228,255,0.04) 76%);
  border: 1px solid rgba(180,240,255,0.4);
  box-shadow: inset 0 0 8px rgba(255,255,255,0.25);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  10% { opacity: 0.8; }
  50% { transform: translateY(-50vh) translateX(20px) scale(1); }
  90% { opacity: 0.7; }
  100% { transform: translateY(-105vh) translateX(-10px) scale(1.1); opacity: 0; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; }
.section-pad { padding: clamp(90px, 12vw, 160px) 0; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 60px); margin-top: 18px; }
.section-head p { color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); margin-top: 18px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.from-l { transform: translateX(-46px); }
.reveal.from-r { transform: translateX(46px); }
.reveal.from-l.in, .reveal.from-r.in { transform: none; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 42%, #10203a, var(--bg-900) 72%);
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
body.loading { overflow: hidden; }
.pre-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.pre-whale { position: relative; width: 230px; height: 210px; display: grid; place-items: center; }
.pre-whale img { width: 178px; height: auto; animation: preBob 3.6s ease-in-out infinite; filter: drop-shadow(0 18px 42px rgba(60,199,245,0.45)); }
@keyframes preBob { 0%,100%{ transform: translateY(0) rotate(-1.2deg);} 50%{ transform: translateY(-10px) rotate(1.2deg);} }
.pre-ring { position: absolute; top: 50%; left: 50%; width: 200px; height: 200px; margin: -100px 0 0 -100px; border-radius: 50%; border: 2px solid rgba(120,228,255,0.4); animation: preRing 3.2s ease-out infinite; }
.pre-ring.r2 { animation-delay: 1.6s; }
@keyframes preRing { 0%{ transform: scale(.42); opacity: .8;} 100%{ transform: scale(1.06); opacity: 0;} }
.pre-bar { width: 200px; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden; }
.pre-bar span { display: block; height: 100%; width: 36%; border-radius: 99px; background: linear-gradient(90deg, var(--cyan), var(--cyan-light), var(--amber-light)); animation: preLoad 1.8s ease-in-out infinite; }
@keyframes preLoad { 0%{ transform: translateX(-130%);} 100%{ transform: translateX(420%);} }
.pre-label { font-family: "Outfit", sans-serif; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; font-size: 12px; color: var(--muted-dim); }

/* ============================================================
   MEET AHH
   ============================================================ */
.meet { overflow: hidden; }
.meet-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.meet-figure { position: relative; }
.meet-figure .frame {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  position: relative;
}
.meet-figure .frame img { width: 100%; height: auto; display: block; }
.meet-figure .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,18,32,0.45));
  pointer-events: none;
}
.float-soft { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-16px) } }

.meet-figure .glow-blob {
  position: absolute; inset: -14% -10% -18% -10%; z-index: -1;
  background: radial-gradient(circle at 50% 60%, rgba(255,184,77,0.35), transparent 62%);
  filter: blur(40px);
}
.meet-copy p { color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); margin-top: 20px; max-width: 48ch; }
.meet-copy .lede { color: var(--white); font-family: "Outfit", sans-serif; font-weight: 600; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.4; max-width: none; margin-top: 24px; }
.meet-copy .hl { color: var(--white); font-weight: 700; }
.meet-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.tag {
  font-size: 14px; font-weight: 700; color: var(--cyan-light);
  padding: 9px 16px; border-radius: 999px;
  background: rgba(60,199,245,0.08);
  border: 1px solid var(--glass-border);
}
.tag.amber { color: var(--amber-light); background: rgba(255,184,77,0.08); border-color: rgba(255,184,77,0.22); }

/* ============================================================
   WHY AHH — cards
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.card {
  position: relative;
  padding: 36px 32px 38px;
  border-radius: 26px;
  background: var(--glass);
  border: 1px solid var(--glass-border-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .5s;
}
.card:hover { transform: translateY(-8px); border-color: var(--glass-border); background: var(--glass-strong); }
.card:hover::before { opacity: 1; }
.card-ico {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(60,199,245,0.18), rgba(120,228,255,0.05));
  border: 1px solid var(--glass-border);
  margin-bottom: 24px;
}
.card-ico svg { width: 28px; height: 28px; stroke: var(--cyan-light); }
.card.amber .card-ico { background: linear-gradient(140deg, rgba(255,184,77,0.2), rgba(255,215,106,0.05)); border-color: rgba(255,184,77,0.25); }
.card.amber .card-ico svg { stroke: var(--amber-light); }
.card h3 { font-size: 23px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 16px; }
.card .num {
  position: absolute; top: 26px; right: 30px;
  font-family: "Outfit", sans-serif; font-weight: 800; font-size: 15px;
  color: rgba(255,255,255,0.16);
}

/* ============================================================
   DAILY WHALE LIFE — equal cards + hover reveal
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.shot {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8,13,24,0.55) 62%, rgba(8,13,24,0.92));
  opacity: .9; transition: opacity .5s;
}
.shot-cap {
  position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2;
}
.shot-cap .k { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan-light); }
.shot-cap .t { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 20px; margin-top: 5px; }
.shot-hover {
  color: var(--muted); font-size: 14.5px; line-height: 1.5;
  max-height: 0; opacity: 0; margin-top: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease), opacity .4s var(--ease), margin-top .45s var(--ease);
}
.shot:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-soft), 0 30px 60px -28px rgba(60,199,245,0.5);
}
.shot:hover img { transform: scale(1.07); }
.shot:hover::after { opacity: 1; }
.shot:hover .shot-hover { max-height: 140px; opacity: 1; margin-top: 12px; }

/* ============================================================
   THE JOURNEY AHEAD — vertical timeline
   ============================================================ */
.journey-intro {
  max-width: 760px; margin: 34px auto 0; text-align: center;
}
.journey-intro p { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); }
.ji-tags {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 26px;
}
.ji-tags span {
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px;
  white-space: nowrap;
  color: var(--cyan-light);
  padding: 8px 18px; border-radius: 999px;
  background: rgba(60,199,245,0.08);
  border: 1px solid var(--glass-border);
}
.ji-tags span:nth-child(2) { color: var(--amber-light); background: rgba(255,184,77,0.08); border-color: rgba(255,184,77,0.22); }

.timeline { position: relative; max-width: 980px; margin: 80px auto 0; padding: 10px 0; }
.tl-line {
  position: absolute; top: 8px; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; border-radius: 3px;
  background: rgba(120,228,255,0.13);
  overflow: hidden;
}
.tl-progress {
  position: absolute; top: 0; left: 0; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-light) 55%, var(--amber-light));
  border-radius: 3px;
  box-shadow: 0 0 16px rgba(60,199,245,0.7);
}
.tl-item { position: relative; width: 50%; padding: 16px 56px 40px; box-sizing: border-box; }
.tl-item.pos-l { left: 0; text-align: right; }
.tl-item.pos-r { left: 50%; text-align: left; }
.tl-node {
  position: absolute; top: 22px;
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 36% 30%, #15314f, #0c1c30 75%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 0 7px rgba(60,199,245,0.08), 0 14px 34px -12px rgba(60,199,245,0.6);
  z-index: 3;
}
.tl-node svg { width: 32px; height: 32px; stroke: var(--cyan-light); }
.tl-item.pos-l .tl-node { right: -32px; }
.tl-item.pos-r .tl-node { left: -32px; }
.tl-item.last .tl-node { background: radial-gradient(circle at 36% 30%, #3a2c12, #1f1605 75%); box-shadow: 0 0 0 7px rgba(255,184,77,0.09), 0 14px 34px -12px rgba(255,184,77,0.6); }
.tl-item.last .tl-node svg { stroke: var(--amber-light); }
.tl-card {
  display: inline-block; text-align: left;
  background: var(--glass);
  border: 1px solid var(--glass-border-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 28px 30px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.tl-item:hover .tl-card { transform: translateY(-6px); border-color: var(--glass-border); box-shadow: var(--shadow-soft), 0 26px 50px -26px rgba(60,199,245,0.5); }
.tl-step { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan-light); }
.tl-item.last .tl-step { color: var(--amber-light); }
.tl-card h3 { font-size: 24px; margin: 10px 0 12px; }
.tl-card p { color: var(--muted); font-size: 15.5px; }

/* ============================================================
   JOIN
   ============================================================ */
.join { position: relative; overflow: hidden; }
.join-inner {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}
.join-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("assets/images/whale-sunset.webp");
  background-size: cover;
  background-position: center 40%;
}
.join-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,18,32,0.9) 0%, rgba(11,18,32,0.55) 48%, rgba(11,18,32,0.1) 100%),
    linear-gradient(180deg, transparent 50%, rgba(11,18,32,0.6));
}
.join-content { padding: clamp(44px, 6vw, 80px); max-width: 620px; }
.join-content h2 { font-size: clamp(48px, 7vw, 92px); }
.join-content p { color: var(--muted); font-size: clamp(18px, 2vw, 23px); margin-top: 20px; max-width: 30ch; }
.join-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 70px 0 50px; border-top: 1px solid var(--glass-border-soft); margin-top: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer .brand-name { font-size: 22px; }
.socials { display: flex; gap: 14px; }
.soc {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border-soft);
  transition: transform .35s var(--ease), background .35s, border-color .35s, box-shadow .35s;
}
.soc svg { width: 22px; height: 22px; fill: var(--muted); transition: fill .35s; }
.soc:hover { transform: translateY(-4px); background: var(--glass-strong); border-color: var(--glass-border); box-shadow: 0 14px 30px -14px rgba(60,199,245,0.6); }
.soc:hover svg { fill: var(--cyan-light); }
.footer-note { width: 100%; margin-top: 40px; color: var(--muted-dim); font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-note .disc { max-width: 60ch; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .meet-grid { grid-template-columns: 1fr; }
  .meet-figure { order: -1; max-width: 540px; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .timeline { max-width: 520px; margin-left: 0; }
  .tl-line { left: 22px; transform: none; }
  .tl-item { width: 100%; left: 0 !important; padding: 6px 0 34px 62px; text-align: left !important; }
  .tl-item.pos-l .tl-node, .tl-item.pos-r .tl-node { left: -10px; right: auto; top: 6px; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .hero-meta { flex-wrap: wrap; gap: 12px; }
  .gallery { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .nav-cta .btn-ghost { display: none; }
  .join-content { padding: 40px 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .float-soft, .bubble, .hero-meta .dot, .pre-whale img, .pre-ring, .pre-bar span { animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
