/* ═══════════════════════════════════════════
   DESIGN SYSTEM — "Dark Botanical Tech"
   ═══════════════════════════════════════════ */
:root {
  --bg-deep: #060918;
  --bg-base: #0b0f1e;
  --bg-surface: #111827;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(255, 255, 255, 0.12);

  --text-primary: #f0f4f8;
  --text-secondary: rgba(240, 244, 248, 0.6);
  --text-muted: rgba(240, 244, 248, 0.4);

  --accent-coral: #ff6b6b;
  --accent-pink: #ee5a6e;
  --accent-teal: #00d2ff;
  --accent-blue: #3a7bd5;

  --gradient-warm: linear-gradient(135deg, #ff6b6b, #ee5a6e, #c471ed);
  --gradient-cool: linear-gradient(135deg, #00d2ff, #3a7bd5);
  --gradient-hero: linear-gradient(135deg, #ff6b6b 0%, #ee5a6e 30%, #c471ed 60%, #7c4dff 100%);
  --gradient-surface: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);

  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-glow-warm: 0 0 40px rgba(255, 107, 107, 0.15);
  --shadow-glow-cool: 0 0 40px rgba(0, 210, 255, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* ─── Page entrance ─── */
@keyframes page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: clip;
}

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

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

main {
  overflow-x: clip;
  animation: page-in 0.6s ease-out;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  padding: 1rem 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.site-header.scrolled {
  background: rgba(6, 9, 24, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.site-header.nav-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.site-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Nav — desktop (inside header) */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--gradient-warm) !important;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.5rem !important;
}

.nav-cta:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-glow-warm);
}

/* Mobile nav overlay — lives outside header */
.nav-mobile-overlay {
  display: none;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  /* Hide desktop nav */
  .nav-desktop {
    display: none;
  }

  /* Show mobile overlay structure */
  .nav-mobile-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1005;
    background: rgba(6, 9, 24, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .nav-mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 0;
  }

  .nav-mobile li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-mobile a {
    display: block;
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    margin: 0.35rem 0;
    border-radius: var(--radius-sm);
  }

  .nav-mobile a:hover,
  .nav-mobile a.active {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-mobile .nav-cta {
    margin-top: 0.75rem !important;
  }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn-glow {
  background: var(--gradient-warm);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.45);
  color: white;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ═══════════════════════════════════════════
   BLUEPRINT GRID (reusable pattern)
   ═══════════════════════════════════════════ */
.blueprint-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.035) 1px, transparent 0),
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size:
    60px 60px,
    60px 60px,
    60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: clip;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(0, 210, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(196, 113, 237, 0.04) 0%, transparent 60%),
    var(--bg-deep);
}

/* Decorative gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-coral);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-teal);
  bottom: 5%;
  left: -8%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: #c471ed;
  top: 40%;
  right: 20%;
  animation-delay: -2s;
  opacity: 0.25;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.97); }
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  padding-top: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
  background: linear-gradient(
    135deg,
    #ff6b6b 0%, #ee5a6e 20%, #c471ed 40%,
    #7c4dff 60%, #c471ed 80%, #ff6b6b 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero cursor glow */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: left 0.3s ease-out, top 0.3s ease-out;
  opacity: 0;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-cue:hover {
  color: var(--text-primary);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

@media (max-width: 600px) {
  .hero { min-height: 100svh; padding-top: 5rem; }
  .hero-scroll-cue { display: none; }
}

/* ═══════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════ */
section {
  position: relative;
}

.section-pad {
  padding: 7rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.section-label.warm { color: var(--accent-coral); }
.section-label.cool { color: var(--accent-teal); }

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  border-radius: 2px;
}

.section-label.warm::before { background: var(--gradient-warm); }
.section-label.cool::before { background: var(--gradient-cool); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin: 0 auto;
}

/* Decorative divider — blueprint dashed line */
.section-divider {
  position: relative;
  height: 0;
  border: none;
  margin: 0 auto;
  max-width: 80%;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0px,
    rgba(255, 255, 255, 0.06) 8px,
    transparent 8px,
    transparent 16px
  );
}

.section-divider::after {
  content: '◆';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.1);
  background: var(--bg-base);
  padding: 0 0.75rem;
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  counter-reset: feature;
}

.feature-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  counter-increment: feature;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-warm);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card::after {
  content: '0' counter(feature);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  opacity: 0.4;
  font-variant-numeric: tabular-nums;
  transition: all 0.4s;
}

.feature-card:hover::after {
  color: var(--accent-coral);
  opacity: 0.8;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-warm);
}

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

.feature-icon {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin: 0 auto 1.5rem auto;
  transition: all 0.4s ease;
}

.feature-icon img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

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

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ═══════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════ */
.products {
  background: var(--bg-deep);
  overflow: hidden;
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
}

/* Dashed connector line between product items */
.product-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 3rem;
  border-left: 1px dashed rgba(255, 255, 255, 0.08);
}

.product-item:last-child {
  margin-bottom: 0;
}

.product-item.reverse .product-visual {
  order: -1;
}

.product-visual {
  position: relative;
}

.product-visual-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.product-item:nth-child(odd) .product-visual-glow {
  background: var(--accent-coral);
}

.product-item:nth-child(even) .product-visual-glow {
  background: var(--accent-teal);
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 420px;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item:hover .product-visual img {
  transform: scale(1.03);
}

.product-item:hover .product-visual-glow {
  opacity: 0.22;
}

.product-info .section-label {
  margin-bottom: 0.75rem;
}

.product-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.product-info .subtitle {
  color: var(--accent-teal);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.product-info p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .product-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .product-item.reverse .product-visual {
    order: 0;
  }
}

/* ═══════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════ */
.team {
  background: var(--bg-base);
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.team-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all 0.4s;
  width: 260px;
  color: inherit;
  text-decoration: none;
  display: block;
}

.team-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-cool);
}

.team-avatar {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-cool);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.team-card:hover .team-avatar::before {
  opacity: 1;
}

.team-avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--bg-base);
}

.team-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--accent-teal);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.15);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.team-bio {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.team-bio em {
  color: var(--text-primary);
  font-style: italic;
}

.team-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════ */
.partners {
  background: var(--bg-deep);
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  padding: 2rem 0;
}

.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}

.partners-track {
  display: flex;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  animation: marquee 60s linear infinite;
}

.partners-track:hover .marquee-group {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.partner-logo {
  height: 256px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity 0.4s, transform 0.4s;
  flex-shrink: 0;
  padding: 0 2rem;
}

.partner-logo:hover {
  opacity: 0.85;
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.cta-bg-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-coral);
  opacity: 0.12;
  top: -20%;
  left: 30%;
}

.cta-bg-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-teal);
  opacity: 0.08;
  bottom: -20%;
  right: 25%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .overline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-coral);
  margin-bottom: 0.75rem;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.cta-section h2 .gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   NEWS PAGE
   ═══════════════════════════════════════════ */
.page-hero {
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent-coral);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  top: -30%;
  right: -10%;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero h1 .gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .section-desc {
  margin-top: 1rem;
}

.news-section {
  background: var(--bg-base);
  padding: 4rem 0 6rem;
}

.news-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all 0.4s;
  color: inherit;
  text-decoration: none;
}

.news-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.news-card-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.news-card-text h2 a {
  transition: color 0.3s;
}

.news-card-text h2 a:hover {
  color: var(--accent-coral);
}

.news-card-text blockquote {
  border-left: 3px solid rgba(255, 107, 107, 0.4);
  padding-left: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
}

.news-card-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.news-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card-image {
    order: -1;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.3), rgba(0, 210, 255, 0.3), transparent);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 107, 107, 0.03), transparent);
  pointer-events: none;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-brand h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 360px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all 0.3s;
}

.footer-social a:hover {
  color: var(--text-primary);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-nav h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--accent-coral);
}

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

.footer-bottom a {
  color: var(--accent-coral);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--accent-pink);
}
