/* tibisnesmu.com — Global Stylesheet v3.0 | Pacific Depths
   Depends on tokens.css being loaded first.
*/

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes blob-drift {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  33%       { transform: translateY(-32px) scale(1.08) rotate(3deg); }
  66%       { transform: translateY(18px) scale(0.95) rotate(-2deg); }
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 196, 0); }
  50%       { box-shadow: 0 0 24px 6px rgba(0, 229, 196, 0.18); }
}
@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}
@keyframes shimmer-sweep {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes scan-rise {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
@keyframes count-blur {
  from { filter: blur(6px); opacity: 0; transform: scale(0.8); }
  to   { filter: blur(0); opacity: 1; transform: scale(1); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes cta-gradient {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes border-glow {
  0%, 100% { border-color: rgba(0, 229, 196, 0.15); }
  50%       { border-color: rgba(0, 229, 196, 0.40); }
}
@keyframes mesh-breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--abyss);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Ambient gradient mesh — fixed behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 500px at 15% 20%, rgba(0, 107, 143, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 600px 600px at 85% 80%, rgba(0, 70, 100, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 350px at 50% 50%, rgba(0, 229, 196, 0.04) 0%, transparent 70%);
  animation: mesh-breathe 18s ease-in-out infinite alternate;
}

/* Grain overlay for depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* Everything above the fixed bg */
nav, main, header, footer,
section, article, aside, .hero,
[class*="section"], [class*="wrap"], [class*="band"],
[class*="strip"], [class*="card"] {
  position: relative;
  z-index: 2;
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--bio);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  box-shadow: var(--glow-bio);
  opacity: 0;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(0, 229, 196, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.2s;
  opacity: 0;
}
.cursor-dot.active  { width: 12px; height: 12px; }
.cursor-ring.active { width: 56px; height: 56px; border-color: rgba(0, 229, 196, 0.3); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.stagger-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-child.visible { opacity: 1; transform: translateY(0); }

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(2, 11, 20, 0.70);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.4s ease, border-color 0.4s ease;
}
nav.scrolled {
  background: rgba(2, 11, 20, 0.94);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.5px;
  transition: color var(--transition-fast);
}
.nav-logo span {
  color: var(--bio);
  text-shadow: 0 0 16px rgba(0, 229, 196, 0.60);
}
.nav-logo:hover { color: var(--white); }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: .84rem; font-weight: 500; letter-spacing: .3px;
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--bio);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--bio); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--coral); color: var(--white);
  padding: 9px 22px; border-radius: 50px;
  font-size: .84rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 107, 82, 0.35);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--coral-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 107, 82, 0.50);
}

.nav-spacer { height: 76px; }

/* ─── HAMBURGER TOGGLE ────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ─── MOBILE NAV OVERLAY ──────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 98;
  background: rgba(2, 11, 20, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 80px 32px 48px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; text-decoration: none;
  padding: 10px 0;
  transition: color var(--transition-fast);
  border-bottom: 1px solid transparent;
}
.nav-mobile a:hover { color: var(--bio); }
.nav-mobile-cta {
  margin-top: 20px !important;
  background: var(--coral) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important; font-weight: 600 !important;
  padding: 14px 36px !important;
  border-radius: 50px !important;
  text-align: center;
}
.nav-mobile-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: none; cursor: pointer;
  color: var(--ink-muted); font-size: 2rem; line-height: 1;
  transition: color var(--transition-fast);
}
.nav-mobile-close:hover { color: var(--white); }

/* ─── SECTION HELPERS ────────────────────────────────────── */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.section-pad   { padding: 90px 0; }
.section-pad-sm{ padding: 60px 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--bio);
  font-size: .72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--bio);
  opacity: 0.7;
}
.section-tag.light { color: var(--turquoise); }
.section-tag.light::before { background: var(--turquoise); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.12; letter-spacing: -.6px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.02rem; color: var(--ink-soft); line-height: 1.72;
  max-width: 500px; margin-top: 14px;
}
.section-sub.light { color: rgba(220, 240, 255, 0.62); }

.section-header { margin-bottom: 52px; }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; border-radius: 50px;
  transition: var(--transition-normal);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--coral); color: var(--white);
  padding: 14px 32px; font-size: .95rem;
  box-shadow: 0 6px 24px rgba(255, 107, 82, 0.40);
}
.btn-primary:hover {
  background: var(--coral-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 107, 82, 0.55);
}
.btn-bio {
  background: var(--bio); color: var(--abyss);
  padding: 14px 32px; font-size: .95rem; font-weight: 700;
  box-shadow: var(--glow-bio);
}
.btn-bio:hover {
  background: var(--bio-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 229, 196, 0.60), 0 0 80px rgba(0, 229, 196, 0.20);
}
.btn-outline-light {
  background: rgba(255,255,255,.06); color: var(--ink);
  padding: 14px 32px; font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(0, 229, 196, 0.40);
  color: var(--bio);
  transform: translateY(-2px);
}
.btn-dark {
  background: rgba(255,255,255,.08); color: var(--ink);
  padding: 14px 32px; font-size: .95rem;
  border: 1px solid var(--border);
}
.btn-dark:hover {
  background: rgba(0, 229, 196, 0.10);
  border-color: var(--border-bright);
  color: var(--bio);
  transform: translateY(-2px);
}
.btn-ocean {
  background: var(--ocean); color: var(--white);
  padding: 11px 26px; font-size: .88rem;
}
.btn-ocean:hover { filter: brightness(1.15); transform: translateY(-1px); }

/* Magnetic wrapper */
.btn-magnetic { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

/* ─── LINK ARROW ──────────────────────────────────────────── */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--bio); font-size: .88rem; font-weight: 600;
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.link-arrow::after { content: '→'; }
.link-arrow:hover  { gap: 10px; }
.link-arrow.light  { color: var(--turquoise); }

/* ─── PILL / TAG ──────────────────────────────────────────── */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: .68rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}
.tag-coral  { background: rgba(255, 107, 82, 0.18); color: var(--coral); border: 1px solid rgba(255, 107, 82, 0.30); }
.tag-ocean  { background: rgba(0, 229, 196, 0.12); color: var(--bio); border: 1px solid var(--border); }
.tag-glass  { background: rgba(255,255,255,.08); color: var(--ink-soft); border: 1px solid var(--border-subtle); }

/* ─── GLASS CARD BASE ─────────────────────────────────────── */
.glass-panel {
  background: rgba(6, 15, 28, 0.80);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-slow);
}
.glass-panel:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 0 1px rgba(0, 229, 196, 0.12), 0 20px 60px rgba(0, 0, 0, 0.60), 0 0 40px rgba(0, 229, 196, 0.06);
  transform: translateY(-6px);
}

/* ─── FEATURE CARDS ───────────────────────────────────────── */
.feature-card {
  background: rgba(6, 15, 28, 0.80);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bio), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: scan-rise 0.4s ease forwards;
  animation-play-state: paused;
}
.feature-card:hover {
  border-color: rgba(0, 229, 196, 0.28);
  box-shadow: 0 0 0 1px rgba(0, 229, 196, 0.10), 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 229, 196, 0.07);
  transform: translateY(-8px);
}
.feature-card:hover::before { opacity: 1; }
.feature-card .icon-wrap {
  width: 64px; height: 64px;
  background: rgba(0, 229, 196, 0.08);
  border: 1px solid rgba(0, 229, 196, 0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.8rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.feature-card:hover .icon-wrap {
  background: rgba(0, 229, 196, 0.14);
  box-shadow: 0 0 20px rgba(0, 229, 196, 0.20);
}
.feature-card .icon { font-size: 2.5rem; margin-bottom: 18px; display: block; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--ink); margin-bottom: 12px; line-height: 1.25;
}
.feature-card p { font-size: .92rem; color: var(--ink-soft); line-height: 1.68; }

/* ─── NEWS CARDS ──────────────────────────────────────────── */
.news-card {
  background: rgba(6, 15, 28, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-slow);
}
.news-card:hover {
  border-color: rgba(0, 229, 196, 0.22);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(0, 229, 196, 0.06);
  transform: translateY(-5px);
}
.news-card .thumb {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, var(--depth-3), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,.20); flex-shrink: 0;
}
.news-card .thumb img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.news-card:hover .thumb img { transform: scale(1.06); }
.news-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card .source {
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--bio); margin-bottom: 8px;
}
.news-card .headline {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--ink); line-height: 1.35; margin-bottom: 8px; flex: 1;
}
.news-card .meta { font-size: .73rem; color: var(--ink-muted); margin-top: auto; }
.news-card .read-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; color: var(--bio);
  font-size: .82rem; font-weight: 600; text-decoration: none;
  transition: gap 0.2s ease;
}
.news-card .read-more::after { content: '→'; }
.news-card .read-more:hover { gap: 9px; }

/* ─── EXPLORE CARDS ───────────────────────────────────────── */
.explore-card {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; min-height: 280px;
  display: flex; align-items: flex-end;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform var(--transition-slow), border-color var(--transition-normal);
}
.explore-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 196, 0.25);
}
.explore-card img {
  position: absolute; inset: 0; width:100%; height:100%;
  object-fit: cover; transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.9);
}
.explore-card:hover img { transform: scale(1.06); filter: brightness(0.85) saturate(1.0); }
.explore-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,11,20,.95) 0%, rgba(2,11,20,.45) 55%, rgba(2,11,20,.10) 100%);
}
.explore-card .body { position: relative; z-index: 1; padding: 28px; }
.explore-card .title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--white); line-height: 1.18; margin: 8px 0 6px;
}
.explore-card .sub { font-size: .87rem; color: rgba(220, 240, 255, 0.65); line-height: 1.52; }
.explore-card .link-arrow { margin-top: 14px; }

/* ─── PILL SIGNUP FORM ────────────────────────────────────── */
.pill-form {
  display: flex; gap: 0; border-radius: 50px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(0, 229, 196, 0.20);
  padding: 6px 6px 6px 22px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease;
}
.pill-form:focus-within { border-color: rgba(0, 229, 196, 0.50); }
.pill-form input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--white); font-size: .95rem; font-family: var(--font-body);
  min-width: 0;
}
.pill-form input::placeholder { color: rgba(255,255,255,.32); }
.pill-form .suffix {
  color: var(--bio); font-weight: 700; font-size: .88rem;
  align-self: center; padding-right: 10px; white-space: nowrap;
}
.pill-form button {
  background: var(--coral); color: var(--white); border: none;
  border-radius: 50px; padding: 11px 22px; font-size: .88rem;
  font-weight: 600; cursor: pointer; white-space: nowrap;
  font-family: var(--font-body);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}
.pill-form button:hover {
  background: var(--coral-soft);
  box-shadow: 0 6px 20px rgba(255, 107, 82, 0.45);
}

/* ─── QUICK FACTS STRIP ───────────────────────────────────── */
.facts-strip {
  background: var(--depth-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 48px;
  display: flex; gap: 0; justify-content: center; overflow-x: auto;
  position: relative;
}
.facts-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0, 229, 196, 0.04), transparent);
}
.fact-item {
  flex: 1; min-width: 130px; text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--border);
  position: relative; z-index: 1;
}
.fact-item:last-child { border-right: none; }
.fact-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; font-style: italic;
  color: var(--bio);
  display: block; line-height: 1; margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 229, 196, 0.45);
  transition: text-shadow 0.3s ease;
}
.fact-item:hover .fact-num {
  text-shadow: 0 0 30px rgba(0, 229, 196, 0.70);
}
.fact-num.counting { animation: count-blur 0.4s ease; }
.fact-label { font-size: .78rem; color: var(--ink-muted); font-weight: 500; letter-spacing: 0.5px; }

/* ─── WAVE DIVIDERS ───────────────────────────────────────── */
.wave-divider { display: block; line-height: 0; }

/* ─── CTA / SIGNUP BAND ───────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #020B14 0%, #0A1A2E 40%, #060F1C 100%);
  background-size: 200% 200%;
  animation: cta-gradient 12s ease infinite;
  padding: 100px 48px;
  text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 196, 0.08), transparent 65%);
  top: -250px; right: -150px;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 82, 0.07), transparent 65%);
  bottom: -200px; left: -100px;
}
.cta-band-canvas {
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0.6;
}
.cta-band .inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.08; letter-spacing: -.8px; margin-bottom: 16px;
}
.cta-band h2 em { font-style: italic; color: var(--bio); }
.cta-band p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.72; margin-bottom: 36px; }
.cta-note { color: var(--ink-muted); font-size: .78rem; margin-top: 14px; }

/* ─── HERO (home page) ────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(2,11,20,.88) 0%, rgba(0,50,80,.65) 45%, rgba(0,80,110,.40) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1800&q=85&fit=crop') center/cover no-repeat;
  filter: saturate(0.7);
}
.hero-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .16;
  animation: blob-drift 12s ease-in-out infinite;
  z-index: 1;
}
.blob-1 { width:400px;height:400px;background:var(--bio);top:-100px;right:8%;animation-delay:0s; }
.blob-2 { width:280px;height:280px;background:var(--coral);bottom:12%;left:5%;animation-delay:4s; }
.blob-3 { width:220px;height:220px;background:var(--gold);top:35%;left:25%;animation-delay:8s; }
.blob-4 { width:180px;height:180px;background:var(--turquoise);top:60%;right:20%;animation-delay:2s; }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px; padding: 110px 28px 70px;
}
/* Staggered hero reveal — set by JS adding .loaded */
.hero-content > * { opacity: 0; transform: translateY(22px); }
.hero-content.loaded > *:nth-child(1) { animation: hero-reveal 0.75s 0.10s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-content.loaded > *:nth-child(2) { animation: hero-reveal 0.75s 0.28s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-content.loaded > *:nth-child(3) { animation: hero-reveal 0.75s 0.44s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-content.loaded > *:nth-child(4) { animation: hero-reveal 0.75s 0.58s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-content.loaded > *:nth-child(5) { animation: hero-reveal 0.75s 0.70s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-content.loaded > *:nth-child(6) { animation: hero-reveal 0.75s 0.82s cubic-bezier(0.16,1,0.3,1) forwards; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 229, 196, 0.08);
  border: 1px solid rgba(0, 229, 196, 0.28);
  color: var(--bio); font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: badge-pulse 3.5s ease-in-out infinite;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900; color: var(--white);
  line-height: 1.04; letter-spacing: -2.5px; margin-bottom: 12px;
}
.hero-h1 .accent {
  background: linear-gradient(90deg, var(--bio), var(--turquoise), var(--gold));
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-sweep 6s linear infinite;
}
.hero-sub-headline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400; font-style: italic;
  color: rgba(220, 240, 255, 0.78);
  letter-spacing: -.2px; margin-bottom: 22px;
  line-height: 1.45;
}
.hero-description {
  font-size: 1.05rem; color: rgba(185, 215, 235, 0.65);
  line-height: 1.75; max-width: 560px; margin: 0 auto 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 20px;
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; line-height: 0;
}

/* ─── INTERIOR PAGE HERO ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(170deg, var(--abyss) 0%, var(--depth-2) 60%, var(--depth-1) 100%);
  padding: 110px 48px 70px;
  text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 229, 196, 0.05), transparent);
}
.page-hero .inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero .breadcrumb { color: var(--ink-muted); font-size: .79rem; margin-bottom: 20px; }
.page-hero .breadcrumb a { color: var(--bio); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px;
}
.page-hero p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.72; }
.page-hero-wave { display: block; line-height: 0; }

/* ─── CONTENT PROSE ───────────────────────────────────────── */
.prose { max-width: 780px; }
.prose h2 {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  color: var(--ink); margin: 52px 0 16px; letter-spacing: -.5px;
}
.prose h3 {
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 700;
  color: var(--ink); margin: 34px 0 10px;
}
.prose p { font-size: 1rem; color: var(--ink-soft); line-height: 1.78; margin-bottom: 18px; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; }
.prose li { font-size: 1rem; color: var(--ink-soft); line-height: 1.72; margin-bottom: 7px; }
.prose blockquote {
  border-left: 3px solid var(--bio);
  padding: 12px 22px; margin: 28px 0;
  background: rgba(0, 229, 196, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.prose blockquote p { color: var(--ink); font-style: italic; margin: 0; }

/* ─── SIDEBAR FACT BOX ────────────────────────────────────── */
.fact-box {
  background: rgba(6, 15, 28, 0.90);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
}
.fact-box h4 {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: var(--bio); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.fact-box dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; }
.fact-box dt { font-size: .82rem; color: var(--ink-muted); font-weight: 500; }
.fact-box dd { font-size: .88rem; color: var(--ink); font-weight: 500; }

/* ─── TIMELINE ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--bio), rgba(0, 229, 196, 0.10));
}
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-item::before {
  content: ''; position: absolute; left: -26px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bio);
  box-shadow: 0 0 10px rgba(0, 229, 196, 0.60);
}
.timeline-year {
  font-family: var(--font-display); font-size: .78rem; font-weight: 800;
  color: var(--bio); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.timeline-desc { font-size: .92rem; color: var(--ink-soft); line-height: 1.68; }

/* ─── ACCORDION / FAQ ─────────────────────────────────────── */
.accordion {
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%; background: rgba(6, 15, 28, 0.80); border: none; text-align: left;
  padding: 20px 24px; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-body); font-size: .96rem; font-weight: 600; color: var(--ink);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.accordion-btn:hover { background: rgba(10, 26, 46, 0.90); color: var(--bio); }
.accordion-btn .icon { font-size: 1.1rem; transition: transform .35s; color: var(--bio); }
.accordion-btn.open .icon { transform: rotate(45deg); }
.accordion-body {
  background: rgba(2, 11, 20, 0.60); padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .35s ease;
}
.accordion-body.open { padding: 18px 24px 24px; max-height: 600px; }
.accordion-body p { font-size: .93rem; color: var(--ink-soft); line-height: 1.72; }

/* ─── FORMS ───────────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: .86rem; font-weight: 600; color: var(--ink);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(6, 15, 28, 0.80);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-group input::placeholder { color: var(--ink-muted); }
.form-group select option { background: var(--depth-2); color: var(--ink); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bio);
  box-shadow: 0 0 0 3px rgba(0, 229, 196, 0.12);
}
.form-group input.error,
.form-group select.error { border-color: var(--coral); }
.form-group .help-text { font-size: .78rem; color: var(--ink-muted); margin-top: 5px; }
.form-group .error-msg { font-size: .78rem; color: var(--coral); margin-top: 5px; display: none; }
.form-group .error-msg.show { display: block; }
.form-group .success-msg { font-size: .78rem; color: var(--bio); margin-top: 5px; display: none; }
.form-group .success-msg.show { display: block; }
.form-group textarea { min-height: 120px; resize: vertical; }

.username-field { position: relative; }
.username-wrapper {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; background: rgba(6, 15, 28, 0.80);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.username-wrapper:focus-within {
  border-color: var(--bio);
  box-shadow: 0 0 0 3px rgba(0, 229, 196, 0.12);
}
.username-wrapper input { border: none; border-radius: 0; flex: 1; padding: 13px 0 13px 16px; }
.username-wrapper input:focus { border: none; box-shadow: none; }
.username-suffix {
  background: rgba(0, 229, 196, 0.06); padding: 13px 14px;
  font-size: .87rem; color: var(--bio); font-weight: 600;
  border-left: 1px solid var(--border); white-space: nowrap;
  display: flex; align-items: center;
}
.username-status { position: absolute; right: 155px; top: 50%; transform: translateY(-50%); font-size: .78rem; }

.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--bio); flex-shrink: 0;
}
.checkbox-group label { font-size: .88rem; color: var(--ink-soft); font-weight: 400; cursor: pointer; }
.form-submit-row { margin-top: 30px; }

.alert {
  padding: 14px 20px; border-radius: var(--radius-sm); font-size: .92rem;
  margin-bottom: 24px; display: none;
}
.alert.show { display: block; }
.alert-success {
  background: rgba(0, 229, 196, 0.08); color: var(--bio);
  border: 1px solid rgba(0, 229, 196, 0.25);
}
.alert-error {
  background: rgba(255, 107, 82, 0.10); color: var(--coral);
  border: 1px solid rgba(255, 107, 82, 0.25);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--abyss);
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  padding: 70px 48px 32px;
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1100px; margin: 0 auto 50px;
}
.footer-brand .logo {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 800;
  color: var(--ink); text-decoration: none;
  display: inline-block; margin-bottom: 14px;
}
.footer-brand .logo span { color: var(--bio); text-shadow: 0 0 12px rgba(0, 229, 196, 0.50); }
.footer-brand .tagline {
  font-size: .85rem; color: var(--ink-muted); line-height: 1.65;
  max-width: 215px; margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: .73rem; font-weight: 700; color: var(--ink-muted);
  text-decoration: none; text-transform: uppercase;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.social-icon:hover {
  background: rgba(0, 229, 196, 0.10);
  border-color: var(--border);
  color: var(--bio);
}
.footer-col h4 {
  font-family: var(--font-display); font-size: .76rem; font-weight: 700;
  color: var(--ink); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--ink-muted); font-size: .84rem; text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-col ul a:hover { color: var(--bio); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle); padding-top: 26px;
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .77rem; color: var(--ink-muted); flex-wrap: wrap; gap: 8px;
}
.footer-bottom .heart { color: var(--coral); }

/* ─── ADMIN PANEL ─────────────────────────────────────────── */
.admin-wrap { max-width: 1000px; margin: 40px auto; padding: 0 24px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th { background: var(--depth-2); color: var(--ink); padding: 12px 14px; text-align: left; font-weight: 600; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--ink-soft); }
.admin-table tr:hover td { background: rgba(0, 229, 196, 0.03); }
.status-pending  { color: var(--gold); font-weight: 600; }
.status-approved { color: var(--bio); font-weight: 600; }
.status-denied   { color: var(--coral); font-weight: 600; }

/* ─── SCROLL PROGRESS BAR ─────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--bio), var(--turquoise));
  z-index: 9997;
  box-shadow: 0 0 8px rgba(0, 229, 196, 0.60);
  transition: width 0.1s linear;
}

/* ─── LINK DIRECTORY CARDS ────────────────────────────────── */
.link-card {
  display: flex; flex-direction: column; gap: 7px;
  background: rgba(6, 15, 28, 0.80);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-decoration: none;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-slow);
}
.link-card:hover {
  border-color: rgba(0, 229, 196, 0.30);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.40), 0 0 20px rgba(0, 229, 196, 0.06);
  transform: translateY(-4px);
}
.link-card-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--ink); line-height: 1.28;
}
.link-card-desc {
  font-size: .84rem; color: var(--ink-soft); line-height: 1.6; flex: 1;
}
.link-card-url {
  font-size: .75rem; font-weight: 600; color: var(--bio);
  letter-spacing: .3px; margin-top: 4px;
}

/* ─── FOOD / LIFESTYLE CARDS ───────────────────────────────── */
.food-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: rgba(6, 15, 28, 0.80);
  border: 1px solid var(--border);
  transition: border-color var(--transition-normal), transform var(--transition-slow);
}
.food-card:hover { border-color: rgba(0, 229, 196, 0.28); transform: translateY(-5px); }
.food-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--depth-3);
}
.food-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.food-card:hover .food-card-img img { transform: scale(1.06); }
.food-card-body { padding: 20px 22px 24px; }
.food-card-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bio); margin-bottom: 8px;
}
.food-card-title {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 700;
  color: var(--ink); line-height: 1.25; margin-bottom: 8px;
}
.food-card-desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.65; }

/* ─── LAYOUT GRIDS ────────────────────────────────────────── */
.feature-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-grid     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.explore-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.links-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.food-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
/* ─── LIFESTYLE PHOTO STRIP ────────────────────────────────── */
.lifestyle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }
  .lifestyle-grid { grid-template-columns: 1fr; }

  .section-wrap { padding: 0 20px; }
  .section-pad  { padding: 64px 0; }
  .section-pad-sm { padding: 44px 0; }

  .feature-grid  { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: repeat(2, 1fr); }
  .explore-grid  { grid-template-columns: 1fr; }
  .links-grid    { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-2  { grid-template-columns: 1fr; }
  .food-grid     { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 56px 24px 28px; }

  .facts-strip { padding: 42px 24px; flex-wrap: wrap; }
  .fact-item { min-width: 45%; border-right: none; border-bottom: 1px solid var(--border); padding: 18px 0; }
  .fact-item:nth-child(even) { border-right: none; }
  .hero-actions { flex-direction: column; align-items: center; }

  .explore-card { min-height: 240px; }
  .page-hero { padding: 100px 24px 56px; }
}
@media (max-width: 600px) {
  .feature-grid  { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: 1fr; }
  .explore-grid  { grid-template-columns: 1fr; }
  .links-grid    { grid-template-columns: 1fr; }
  .food-grid     { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .tagline { max-width: 100%; }
  .cta-band { padding: 70px 24px; }
  .page-hero { padding: 95px 20px 48px; }
  .hero-h1 { letter-spacing: -1.5px; font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-description { font-size: .94rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .explore-card { min-height: 220px; }
  .facts-strip { flex-direction: column; }
  .fact-item { min-width: 100%; border-right: none; }
}

/* ─── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .stagger-child { transition: none; opacity: 1; transform: none; }
  .hero-content > * { opacity: 1; transform: none; animation: none !important; }
  .blob, .cursor-dot, .cursor-ring { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
