/* ─── CommunityPete Design System ─── */
:root {
  --bg-deep: #060a14;
  --bg-surface: #0c1222;
  --bg-card: rgba(14, 20, 40, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.04);

  --cyan: #00d4ff;
  --cyan-dim: #00aeef;
  --royal: #2e3192;
  --purple: #92278f;
  --purple-bright: #a855f7;
  --magenta: #ec008c;
  --magenta-bright: #ff2d9a;

  --gradient-brand: linear-gradient(135deg, var(--cyan) 0%, var(--royal) 35%, var(--purple) 65%, var(--magenta) 100%);
  --gradient-text: linear-gradient(90deg, var(--cyan) 0%, var(--purple-bright) 50%, var(--magenta) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(146, 39, 143, 0.15), rgba(236, 0, 140, 0.15));

  --text-primary: #f0f4ff;
  --text-secondary: rgba(200, 210, 240, 0.65);
  --text-muted: rgba(160, 170, 200, 0.45);

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-glow-cyan: 0 0 40px rgba(0, 212, 255, 0.25);
  --shadow-glow-magenta: 0 0 40px rgba(236, 0, 140, 0.25);

  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --flow-period: 24rem;
  --flow-speed: 14s;
  --flow-angle-text: 90deg;
  --flow-angle-btn: 125deg;
  --flow-btn-cyan: color-mix(in srgb, var(--cyan) 85%, black);
  --flow-btn-purple: color-mix(in srgb, var(--purple-bright) 85%, black);
  --flow-btn-magenta: color-mix(in srgb, var(--magenta) 85%, black);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  isolation: isolate;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Ambient Background ─── */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #0d1528 0%, var(--bg-deep) 55%);
}

/* Broad logo-gradient wash */
.ambient-stream {
  position: absolute;
  top: -25%;
  left: -35%;
  width: 170%;
  height: 150%;
  background: var(--gradient-brand);
  opacity: 0.28;
  filter: blur(55px);
  transform: rotate(-14deg);
  animation: streamDrift 20s ease-in-out infinite alternate;
}

/* Sharper diagonal ribbon — echoes the logo stripe */
.ambient-ribbon {
  position: absolute;
  top: 8%;
  left: -30%;
  width: 160%;
  height: 38%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 212, 255, 0.55) 12%,
    rgba(46, 49, 146, 0.45) 32%,
    rgba(146, 39, 143, 0.5) 52%,
    rgba(236, 0, 140, 0.55) 72%,
    rgba(0, 212, 255, 0.35) 88%,
    transparent 100%
  );
  opacity: 0.32;
  filter: blur(35px);
  transform: rotate(-16deg);
  animation: ribbonShift 24s ease-in-out infinite alternate;
}

.ambient::before {
  content: '';
  position: absolute;
  inset: -30%;
  width: 160%;
  height: 160%;
  background: linear-gradient(
    128deg,
    rgba(0, 212, 255, 0.5) 0%,
    rgba(46, 49, 146, 0.38) 24%,
    rgba(146, 39, 143, 0.42) 50%,
    rgba(236, 0, 140, 0.48) 74%,
    rgba(0, 212, 255, 0.35) 100%
  );
  background-size: 200% 200%;
  animation: brandFlow 22s ease-in-out infinite;
  filter: blur(65px);
  opacity: 0.85;
}

/* Lighter veil — colour shows through, text stays readable on cards */
.ambient::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 75% at 50% 42%, rgba(6, 10, 20, 0.08) 0%, rgba(6, 10, 20, 0.52) 100%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.45) 0%, rgba(6, 10, 20, 0.18) 48%, rgba(6, 10, 20, 0.5) 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 22s ease-in-out infinite;
}

.orb-1 {
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.85) 0%, transparent 65%);
  top: -220px;
  left: -160px;
  opacity: 0.32;
}

.orb-2 {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.9) 0%, transparent 65%);
  top: 32%;
  right: -200px;
  animation-delay: -8s;
  opacity: 0.28;
}

.orb-3 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(146, 39, 143, 0.8) 0%, transparent 65%);
  bottom: -60px;
  left: 22%;
  animation-delay: -15s;
  opacity: 0.26;
}

.orb-4 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(236, 0, 140, 0.85) 0%, transparent 65%);
  top: 48%;
  left: 55%;
  animation-delay: -4s;
  opacity: 0.24;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  opacity: 0.55;
}

@keyframes streamDrift {
  0% { transform: rotate(-14deg) translate(-2%, 0); opacity: 0.24; }
  100% { transform: rotate(-10deg) translate(4%, -5%); opacity: 0.34; }
}

@keyframes ribbonShift {
  0% { transform: rotate(-16deg) translateX(-4%); opacity: 0.26; }
  100% { transform: rotate(-12deg) translateX(6%); opacity: 0.38; }
}

@keyframes brandFlow {
  0%, 100% {
    background-position: 0% 50%;
    transform: translate(0, 0) scale(1);
  }
  33% {
    background-position: 60% 10%;
    transform: translate(2%, -2%) scale(1.04);
  }
  66% {
    background-position: 100% 60%;
    transform: translate(-2%, 2%) scale(1.03);
  }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(32px, -40px) scale(1.05); }
  66% { transform: translate(-22px, 26px) scale(0.96); }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-stream,
  .ambient-ribbon,
  .ambient::before,
  .orb {
    animation: none;
  }
}

/* ─── Typography ─── */
.gradient-text {
  background: repeating-linear-gradient(
    var(--flow-angle-text),
    var(--cyan) 0,
    var(--purple-bright) 6rem,
    var(--magenta) 12rem,
    var(--purple-bright) 18rem,
    var(--cyan) var(--flow-period)
  );
  background-size: var(--flow-period) 100%;
  background-position: 0 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow var(--flow-speed) linear infinite;
}

.logo-text .gradient-text {
  animation: none;
  background: var(--gradient-text);
  background-size: auto;
}

@keyframes gradient-flow {
  from { background-position: 0 50%; }
  to { background-position: var(--flow-period) 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-text {
    animation: none;
    background: var(--gradient-text);
    background-size: auto;
    background-position: 0 50%;
  }

  .btn-primary.btn-flow {
    animation: none;
    background: var(--gradient-brand);
    background-size: auto;
  }

  .btn-primary.btn-flow::after {
    display: none;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.2), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3), 0 0 0 1px rgba(255,255,255,0.15) inset;
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary.btn-flow {
  isolation: isolate;
  background: transparent;
}

.btn-primary.btn-flow::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300%;
  height: 600%;
  background: repeating-linear-gradient(
    90deg,
    var(--flow-btn-cyan) 0,
    var(--flow-btn-purple) 6rem,
    var(--flow-btn-magenta) 12rem,
    var(--flow-btn-purple) 18rem,
    var(--flow-btn-cyan) var(--flow-period)
  );
  background-size: var(--flow-period) 100%;
  background-position: 0 50%;
  transform: translate(-50%, -50%) rotate(calc(var(--flow-angle-btn) - 90deg));
  transform-origin: center center;
  animation: gradient-flow var(--flow-speed) linear infinite;
  z-index: -1;
  pointer-events: none;
}

.btn-primary.btn-flow::before {
  z-index: 1;
}

.btn-primary.btn-flow.hero-btn-glow {
  animation: hero-btn-glow 3s ease-in-out infinite;
}

.btn-ghost {
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.08);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(6, 10, 20, 0);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
}

.nav.nav-ready {
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--border);
  opacity: 0;
  pointer-events: none;
}

.nav.nav-ready::after {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(6, 10, 20, 0.85);
}

.nav.scrolled::after {
  opacity: 1;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 101;
}

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav .logo-text {
  color: var(--text-primary);
}

.footer .logo-text {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-brand);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu[hidden] { display: none; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6, 10, 20, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 1.25rem;
}

.mobile-menu a { color: var(--text-secondary); }
.mobile-menu a:hover { color: var(--text-primary); }

/* ─── Hero ─── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2.5s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 9s ease-out forwards;
}

.hero-slide.fade-out {
  opacity: 0;
  animation: none;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 10, 20, 0.88) 0%, rgba(6, 10, 20, 0.72) 45%, rgba(6, 10, 20, 0.85) 100%),
    linear-gradient(to bottom, rgba(6, 10, 20, 0.5) 0%, rgba(6, 10, 20, 0.92) 100%);
}

.hero-has-slides .hero-bg-overlay {
  background:
    linear-gradient(105deg, rgba(6, 10, 20, 0.92) 0%, rgba(6, 10, 20, 0.75) 42%, rgba(6, 10, 20, 0.55) 100%),
    linear-gradient(to bottom, rgba(6, 10, 20, 0.4) 0%, rgba(6, 10, 20, 0.95) 100%);
}

.hero-has-slides + .ambient,
.hero-has-slides ~ .ambient {
  opacity: 0.72;
}

body.hero-slides-active .ambient {
  opacity: 0.78;
}

.hero-grid,
.hero-scroll,
.hero-slide-dots {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  flex: 1;
  padding: 48px 24px 32px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-watermark {
  display: none;
}

.hero-stagger:not(.gradient-text) {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--stagger, 0) * 0.11s + 0.15s);
}

.gradient-text.hero-stagger {
  opacity: 0;
  transform: translateY(22px);
  animation:
    hero-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    gradient-flow 14s linear infinite;
  animation-delay:
    calc(var(--stagger, 0) * 0.11s + 0.15s),
    calc(var(--stagger, 0) * 0.11s + 0.15s);
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  border-radius: 100px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-sub-mobile {
  display: none;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-btn-glow {
  animation: hero-btn-glow 3s ease-in-out infinite;
}

@keyframes hero-btn-glow {
  0%, 100% {
    box-shadow:
      0 4px 24px rgba(0, 212, 255, 0.25),
      0 0 48px rgba(236, 0, 140, 0.15);
  }
  50% {
    box-shadow:
      0 6px 32px rgba(0, 212, 255, 0.4),
      0 0 64px rgba(236, 0, 140, 0.28);
  }
}

.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  flex-shrink: 0;
}

.pillar-icon.cyan { background: rgba(0, 212, 255, 0.1); }
.pillar-icon.magenta { background: rgba(236, 0, 140, 0.1); }
.pillar-icon.purple { background: rgba(146, 39, 143, 0.1); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}

.logo-showcase {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 1;
}

.logo-glow {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: var(--gradient-glow);
  filter: blur(70px);
  animation: glow-pulse 3.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.hero-logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 80px rgba(0, 212, 255, 0.28));
  animation: logo-float 5s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.02); }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(12, 18, 34, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: card-float 5s ease-in-out infinite;
}

.card-1 { top: 8%; left: -8%; animation-delay: 0s; }
.card-2 { bottom: 12%; right: -6%; animation-delay: -2.5s; }

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon.cyan { background: rgba(0, 212, 255, 0.12); color: var(--cyan); }
.card-icon.magenta { background: rgba(236, 0, 140, 0.12); color: var(--magenta); }

.card-title { font-size: 0.875rem; font-weight: 500; }
.card-sub { font-size: 0.75rem; color: var(--text-muted); }

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 28px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 12px;
}

.hero-slide-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slide-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.hero-slide-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
  transform: scale(1.15);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  pointer-events: none;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll-bounce 2.2s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes scroll-bounce {
  0%, 100% {
    opacity: 0.35;
    transform: scaleY(0.55);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ─── Marquee ─── */
.marquee-section {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(6, 10, 20, 0.18);
  overflow: hidden;
}

.marquee { overflow: hidden; }

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
  padding-right: 40px;
  white-space: nowrap;
}

.marquee-track .marquee-logo {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--magenta) 100%);
  -webkit-mask-image: url("assets/CP-Logo-_No_Title__-_Edited-f1c54a31-04c9-46fd-adf7-93bdfcb00e9d.png");
  mask-image: url("assets/CP-Logo-_No_Title__-_Edited-f1c54a31-04c9-46fd-adf7-93bdfcb00e9d.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-1 * var(--marquee-shift, 0px)), 0, 0); }
}

/* ─── Sections ─── */
.section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.section-dark {
  background: rgba(6, 10, 20, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Mission cards ─── */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mission-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.mission-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.mission-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-icon.cyan { background: rgba(0, 212, 255, 0.1); color: var(--cyan); }
.mission-icon.purple { background: rgba(146, 39, 143, 0.1); color: var(--purple-bright); }
.mission-icon.magenta { background: rgba(236, 0, 140, 0.1); color: var(--magenta); }

.mission-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── About preview ─── */
.about-preview {
  max-width: 720px;
}

.about-preview-text p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-preview-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about-preview-text .btn { margin-top: 12px; }

.fb-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.fb-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.fb-avatar {
  border-radius: 50%;
  mix-blend-mode: screen;
}

.fb-name { font-weight: 600; font-size: 0.9375rem; }
.fb-time { font-size: 0.75rem; color: var(--text-muted); }

.fb-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.fb-stats {
  display: flex;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

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

/* ─── Partners ─── */
#partners {
  position: relative;
  overflow: hidden;
}

#partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
  opacity: 0.6;
}

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

.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(14, 20, 40, 0.85) 0%, rgba(6, 10, 20, 0.6) 100%);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  color: inherit;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(146, 39, 143, 0.2), rgba(236, 0, 140, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.partner-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 32px rgba(0, 212, 255, 0.08),
    0 0 48px rgba(236, 0, 140, 0.06);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-logo {
  position: relative;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.partner-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.partner-logo img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-light {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.partner-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
  background: linear-gradient(90deg, var(--text-primary) 0%, rgba(200, 210, 240, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-card:hover h3 {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.partner-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
  transition: opacity var(--transition), filter var(--transition);
}

.partner-card:hover .partner-link {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ─── How It Works ─── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.how-content .section-tag,
.how-content h2,
.how-content .section-desc {
  text-align: left;
}

.how-content h2 { margin-bottom: 16px; }
.how-content .section-desc { margin-bottom: 40px; }

.steps { display: flex; flex-direction: column; gap: 28px; }

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  padding-top: 2px;
}

.step h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Phone Mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-screen {
  width: 300px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 24px 64px rgba(0, 0, 0, 0.4),
    var(--shadow-glow-cyan);
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9375rem;
}

.phone-channels {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
}

.channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.channel.active {
  background: rgba(0, 212, 255, 0.08);
  color: var(--text-primary);
}

.channel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.channel-dot.cyan { background: var(--cyan); }
.channel-dot.magenta { background: var(--magenta); }
.channel-dot.purple { background: var(--purple-bright); }

.channel-badge {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--magenta);
  color: #fff;
}

.phone-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.msg-right {
  flex-direction: row-reverse;
}

.msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.msg-avatar.cyan { background: linear-gradient(135deg, var(--cyan), var(--royal)); }
.msg-avatar.purple { background: linear-gradient(135deg, var(--purple), var(--magenta)); }

.msg-bubble {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  line-height: 1.5;
  background: rgba(255,255,255,0.06);
  max-width: 200px;
}

.msg-bubble.magenta-bg {
  background: linear-gradient(135deg, rgba(236,0,140,0.3), rgba(146,39,143,0.3));
}

/* ─── Testimonials ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.testimonial:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-avatar.cyan { background: linear-gradient(135deg, var(--cyan), var(--royal)); }
.testimonial-avatar.magenta { background: linear-gradient(135deg, var(--magenta), var(--purple)); }
.testimonial-avatar.purple { background: linear-gradient(135deg, var(--purple-bright), var(--cyan)); }

.testimonial cite {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: normal;
}

.testimonial footer span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: 72px 40px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: var(--gradient-glow);
  filter: blur(80px);
  pointer-events: none;
}

.cta-logo {
  margin: 0 auto 24px;
  position: relative;
}

.cta-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  position: relative;
}

.cta-slogan {
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
}

.cta-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-logo {
  mix-blend-mode: screen;
}

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-slogan {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-links h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── Pages ─── */
.page-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 60px) 0 40px;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding-top: 40px;
  padding-bottom: 120px;
}

.content-narrow {
  max-width: 720px;
}

/* ─── Prose (About) ─── */
.prose {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.prose p { margin-bottom: 1.25em; }
.prose .lead {
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2em 0 0.75em;
}

.prose blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  border-left: 3px solid var(--magenta);
  background: rgba(236, 0, 140, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.prose blockquote p {
  margin: 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-primary);
}

.text-link {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.text-link:hover { color: var(--magenta); }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 1.5em 0 2em;
}

.values-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.value-dot.cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.value-dot.purple { background: var(--purple-bright); box-shadow: 0 0 8px var(--purple-bright); }
.value-dot.magenta { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }

.values-list strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.values-list p { margin: 0; font-size: 0.9375rem; }

.about-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.about-logo {
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.15));
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon.cyan { background: rgba(0, 212, 255, 0.1); color: var(--cyan); }
.contact-icon.magenta { background: rgba(236, 0, 140, 0.1); color: var(--magenta); }
.contact-icon.purple { background: rgba(146, 39, 143, 0.1); color: var(--purple-bright); }

.contact-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-card p { font-size: 0.9375rem; color: var(--text-secondary); }

.contact-form-wrap {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(6, 10, 20, 0.6);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.btn-full { width: 100%; }

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.form-error {
  font-size: 0.875rem;
  color: #ff6b8a;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 138, 0.1);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p { color: var(--text-secondary); }

/* ─── WooCommerce products ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.products-loading,
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 48px 20px;
}

.product-card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.product-link { display: block; color: inherit; }

.product-image {
  aspect-ratio: 1;
  background: rgba(6, 10, 20, 0.5);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-glow);
  color: var(--text-muted);
}

.product-info { padding: 20px; }

.product-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-cta {
  font-size: 0.8125rem;
  color: var(--cyan);
}

.shop-fallback {
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.shop-fallback p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.0625rem;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero must be visible immediately — mobile browsers can miss the first observer pass */
.hero .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-stagger:not(.gradient-text) {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .gradient-text.hero-stagger {
    opacity: 1;
    transform: none;
  }

  .hero-btn-glow {
    animation: none;
  }

  .hero-logo,
  .logo-glow,
  .scroll-line {
    animation: none;
  }
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: 1fr; }
  .about-preview { max-width: 720px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .hero-watermark {
    display: flex;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
  }

  .hero-watermark-logo {
    width: min(300px, 78vw);
    height: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    opacity: 0.07;
  }

  .hero-content { max-width: 100%; }
  .hero-sub { display: none; }
  .hero-sub-mobile {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 36ch;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-pillars { align-items: center; }

  .hero-visual { display: none; }
  .floating-card { display: none; }

  .logo-showcase { width: min(280px, 70vw); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: 1 / -1; }

  .cta-card { padding: 48px 24px; }
  .contact-form-wrap { padding: 24px; }
}

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