/* ============================================================
   FRAMEWORKS — Video Production & Social Media
   Master stylesheet
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand */
  --brand-cyan: #01BAFF;
  --brand-cyan-dim: #0095cc;
  --brand-cyan-soft: rgba(1, 186, 255, 0.12);
  --brand-red: #E7513B;
  --brand-red-dim: #c53d29;
  --brand-red-soft: rgba(231, 81, 59, 0.14);
  --brand-gradient: linear-gradient(90deg, var(--brand-cyan) 0%, var(--brand-red) 100%);

  /* Neutrals (dark theme) */
  --bg: #07090e;
  --bg-elev: #0e131c;
  --bg-card: #131a25;
  --bg-card-hover: #1a2230;
  --border: #1f2a3a;
  --border-strong: #2c3a4f;

  /* Text */
  --text: #f4f6fa;
  --text-secondary: #b6bfcc;
  --text-muted: #7a8595;

  /* Type */
  --font-display: 'Space Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: 24px;
  --gutter-lg: 48px;
  --section-pad: 96px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.35s;
}

/* ---------- 2. Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--brand-cyan); }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0 0 1em; color: var(--text-secondary); }
hr { border: none; border-top: 1px solid var(--border); margin: 4rem 0; }

::selection { background: var(--brand-cyan); color: #001623; }

/* ---------- 3. Typography scale ---------- */
.h-display { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.03em; }
.h-1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.h-2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.h-3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: .8125rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand-cyan);
  margin-bottom: 1rem;
}
.lead { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--text-secondary); max-width: 60ch; }

/* ---------- 4. Utility classes ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 768px) { .container { padding: 0 var(--gutter-lg); } }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: calc(var(--section-pad) * 0.6) 0; }
.center { text-align: center; }
.text-cyan { color: var(--brand-cyan); }
.text-red { color: var(--brand-red); }
.text-muted { color: var(--text-muted); }
.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow-red { color: var(--brand-red) !important; }
.divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 0;
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 0.95rem 1.6rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: .9375rem;
  text-decoration: none; border: 1px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--brand-cyan); color: #001623;
  box-shadow: 0 6px 24px -8px rgba(1, 186, 255, 0.5);
}
.btn-primary:hover { background: #1cc4ff; color: #001623; box-shadow: 0 10px 32px -8px rgba(1, 186, 255, 0.7); }
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--brand-cyan); color: var(--brand-cyan); }
.btn-ghost { color: var(--text); padding: 0.5rem 0; }
.btn-ghost:hover { color: var(--brand-cyan); }

/* ---------- 6. Header + Navigation ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(7, 9, 14, 0.6);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(7, 9, 14, 0.92);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: .9375rem;
  color: var(--text-secondary); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--brand-cyan); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none; background: transparent; border: none; color: var(--text);
  width: 40px; height: 40px; padding: 8px; border-radius: 8px;
}
.menu-toggle:hover { background: var(--bg-card); }
.menu-toggle svg { width: 24px; height: 24px; pointer-events: none; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; width: 100%; max-width: 360px; height: 100vh;
  background: var(--bg-elev); border-left: 1px solid var(--border);
  z-index: 200; padding: 24px;
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .close-btn {
  background: transparent; border: none; color: var(--text); margin-bottom: 32px;
  width: 40px; height: 40px;
}
.mobile-drawer ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer ul a {
  display: block; padding: 16px 12px; font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 600; border-radius: 8px;
}
.mobile-drawer ul a:hover { background: var(--bg-card); color: var(--brand-cyan); }
.drawer-cta { margin-top: 24px; }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 150;
  opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video video, .hero-video .hero-poster {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-poster {
  background: radial-gradient(ellipse at 50% 40%, #0c2440 0%, #07090e 70%);
  position: absolute; inset: 0;
}
.hero-poster::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(1, 186, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(231, 81, 59, 0.10), transparent 40%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(7,9,14,0.4) 0%,
    rgba(7,9,14,0.6) 50%,
    rgba(7,9,14,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--brand-cyan); }
.hero p.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); margin-bottom: 2.5rem; color: var(--text-secondary); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--text-muted); font-size: .8125rem;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-display); letter-spacing: .12em; text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px; height: 36px; background: var(--brand-cyan);
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { opacity: 0; transform: translateY(-12px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  padding: 180px 0 80px;
  background: linear-gradient(180deg, #0c1422 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1.125rem; max-width: 700px; }

/* ---------- 8. Section header ---------- */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }

/* ---------- 8b. Brand-color alternation (cyan ↔ red rhythm) ---------- */
/* Hero accent word becomes a gradient (already has .gradient-text) */
.hero h1 .accent.gradient-text { color: transparent; }

/* Stats: alternate cyan / red so the strip reads as both colors */
.stats > div:nth-child(2) .stat-num,
.stats > div:nth-child(4) .stat-num { color: var(--brand-red); }

/* Process steps: alternate the big numbered badge */
.process-step:nth-child(2)::before,
.process-step:nth-child(4)::before { color: var(--brand-red); }

/* Hero background: boost the orange glow so it reads warmer */
.hero-poster::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(1, 186, 255, 0.20), transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(231, 81, 59, 0.22), transparent 42%) !important;
}

/* CTA glow: add a red accent on the opposite side */
.cta-section::before {
  background:
    radial-gradient(circle at 30% 0%, rgba(1, 186, 255, 0.20), transparent 50%),
    radial-gradient(circle at 70% 100%, rgba(231, 81, 59, 0.18), transparent 50%) !important;
}

/* Service-card top bar: keep gradient, make it always visible at low opacity */
.service-card::before { opacity: 0.35; transform: scaleX(1) !important; }
.service-card:hover::before { opacity: 1; }

/* Alternate service icons cyan / red */
.services-grid .service-card:nth-child(2) .service-icon,
.services-grid .service-card:nth-child(4) .service-icon {
  background: var(--brand-red-soft); color: var(--brand-red);
}

/* Testimonial quote mark in red (warmer accent) */
.testimonial::before { color: var(--brand-red); }

/* Work-card tags alternating color */
.work-grid .work-card:nth-child(2) .work-tag,
.work-grid .work-card:nth-child(4) .work-tag,
.work-grid .work-card:nth-child(6) .work-tag,
.work-grid .work-card:nth-child(8) .work-tag,
.work-grid .work-card:nth-child(10) .work-tag,
.work-grid .work-card:nth-child(12) .work-tag { color: var(--brand-red); }

/* Filter-button active: keep cyan; red border accent on hover */
.filter-btn:hover { color: var(--brand-red); border-color: var(--brand-red); }

/* Orange button variant (for use where appropriate) */
.btn-accent {
  background: var(--brand-red); color: #2a0c06;
  box-shadow: 0 6px 24px -8px rgba(231, 81, 59, 0.45);
}
.btn-accent:hover {
  background: #ff6347; color: #2a0c06;
  box-shadow: 0 10px 32px -8px rgba(231, 81, 59, 0.65);
}

/* ---------- 9. Services grid ---------- */
.services-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--dur) var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-red));
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.service-card:hover { border-color: var(--border-strong); background: var(--bg-card-hover); transform: translateY(-2px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-cyan-soft); color: var(--brand-cyan);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.service-card p { font-size: .9375rem; margin-bottom: 1.25rem; }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.service-list li {
  font-size: .875rem; color: var(--text-secondary); padding-left: 22px; position: relative;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 1px;
  background: var(--brand-cyan);
}
.service-link { color: var(--brand-cyan); font-weight: 600; font-size: .9375rem; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- 10. Work / portfolio grid ---------- */
.work-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.work-card {
  position: relative; aspect-ratio: 16/10;
  background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.work-card:hover { transform: translateY(-3px); border-color: var(--brand-cyan); }
.work-thumb { position: absolute; inset: 0; }
.work-thumb img, .work-thumb video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-thumb-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0e1a2e 0%, #1a2842 100%);
  display: flex; align-items: center; justify-content: center;
}
.work-thumb-placeholder svg { width: 64px; height: 64px; color: var(--brand-cyan); opacity: 0.6; }
.work-overlay {
  position: absolute; inset: 0; padding: 24px;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 1;
}
.work-tag {
  display: inline-block; font-family: var(--font-display);
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-cyan);
  margin-bottom: 8px;
}
.work-title {
  font-size: 1.35rem; font-weight: 700; margin: 0;
  font-family: var(--font-display);
}
.work-client { color: var(--text-secondary); font-size: .9rem; margin-top: 4px; }
.work-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(1, 186, 255, 0.95); color: #001623;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; opacity: 0; transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.work-play svg { width: 22px; height: 22px; margin-left: 3px; }
.work-card:hover .work-play { opacity: 1; }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 18px; border-radius: 999px;
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  font-family: var(--font-display); font-size: .875rem; font-weight: 500;
  transition: all var(--dur) var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--text-muted); }
.filter-btn.active {
  background: var(--brand-cyan); color: #001623; border-color: var(--brand-cyan);
}

/* ---------- 11. Client logo strip ---------- */
.clients-strip {
  padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 48px; align-items: center;
}
.clients-grid img {
  max-height: 48px; max-width: 100%; width: auto; margin: 0 auto;
  opacity: 0.65; filter: grayscale(0%) brightness(1.05);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.clients-grid img:hover { opacity: 1; transform: scale(1.04); }
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* ---------- 12. Stats ---------- */
.stats {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding: 40px 0;
}
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--brand-cyan); line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label { font-size: .875rem; color: var(--text-muted); margin-top: 8px; text-transform: uppercase; letter-spacing: .1em; }

/* ---------- 13. Process steps ---------- */
.process-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}
.process-step {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; counter-increment: step; position: relative;
}
.process-step::before {
  content: '0' counter(step);
  font-family: var(--font-display); font-weight: 700; font-size: 2.5rem;
  color: var(--brand-cyan); opacity: 0.3; line-height: 1; display: block; margin-bottom: 12px;
}
.process-step h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.process-step p { font-size: .9375rem; margin: 0; }

/* ---------- 14. Testimonial ---------- */
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 16px; left: 32px;
  font-family: serif; font-size: 6rem; line-height: 1;
  color: var(--brand-cyan); opacity: 0.25;
}
.testimonial blockquote {
  margin: 0; padding-left: 16px;
  font-size: 1.15rem; font-style: italic; color: var(--text);
  font-family: var(--font-display); font-weight: 400; line-height: 1.5;
}
.testimonial-meta {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
  font-size: .9375rem;
}
.testimonial-meta strong { color: var(--text); display: block; margin-bottom: 2px; }
.testimonial-meta span { color: var(--text-muted); font-size: .85rem; }

/* ---------- 15. CTA section ---------- */
.cta-section {
  background: linear-gradient(135deg, #0c1a2e 0%, #0a0e15 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(1, 186, 255, 0.18), transparent 50%);
}
.cta-section .container { position: relative; }
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem;
}
.cta-section p { font-size: 1.125rem; max-width: 580px; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- 16. Forms ---------- */
.form-grid { display: grid; gap: 20px; max-width: 720px; }
.form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-display); font-size: .8125rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-secondary);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 16px;
  background: var(--bg-card); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1rem; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--brand-cyan); background: var(--bg-card-hover);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-status { margin-top: 12px; padding: 12px 16px; border-radius: 8px; display: none; font-size: .9375rem; }
.form-status.success { display: block; background: rgba(34, 197, 94, 0.12); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3); }
.form-status.error { display: block; background: rgba(231, 81, 59, 0.12); color: var(--brand-red); border: 1px solid rgba(231, 81, 59, 0.3); }

/* ---------- 17. About / Team ---------- */
.about-grid {
  display: grid; gap: 60px;
  grid-template-columns: 1fr 1fr; align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-image {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #0e1a2e, #1a2842);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image .placeholder { color: var(--brand-cyan); opacity: .3; font-size: 4rem; }

.team-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.team-photo {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, #0e1a2e, #1a2842);
  border: 2px solid var(--border-strong); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; color: var(--brand-cyan);
}
.team-name { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; margin-bottom: 4px; }
.team-role { color: var(--text-muted); font-size: .9rem; }

/* ---------- 17b. Co-founders (large 2-up grid) ---------- */
.founders-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.founder-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.founder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-gradient);
  opacity: 0.7;
}
.founder-card:nth-child(2)::before { background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-cyan) 100%); }
.founder-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.founder-photo {
  position: relative;
  width: 100%; aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #0e1a2e, #1a2842);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.founder-photo-fallback {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  color: var(--brand-cyan); opacity: 0.6;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0e1a2e, #1a2842);
}
.founder-card:nth-child(2) .founder-photo-fallback { color: var(--brand-red); }
.founder-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-bottom: 4px; }
.founder-role {
  color: var(--brand-cyan);
  font-family: var(--font-display); font-size: .875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px;
}
.founder-card:nth-child(2) .founder-role { color: var(--brand-red); }
.founder-card p { font-size: .95rem; line-height: 1.7; margin: 0; }

/* ---------- 18. Blog ---------- */
.blog-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--brand-cyan); transform: translateY(-3px); }
.blog-cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0e1a2e, #1a2842);
  display: flex; align-items: center; justify-content: center;
}
.blog-cover svg { width: 56px; height: 56px; color: var(--brand-cyan); opacity: .4; }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 12px; font-size: .8125rem; color: var(--text-muted); margin-bottom: 12px; }
.blog-meta .dot { color: var(--brand-cyan); }
.blog-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.blog-body p { font-size: .9375rem; flex: 1; }
.blog-body .blog-link { color: var(--brand-cyan); font-weight: 600; margin-top: 12px; font-size: .9375rem; }

/* ---------- 19. Contact info cards ---------- */
.contact-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 60px;
}
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--dur) var(--ease);
}
.contact-card:hover { border-color: var(--brand-cyan); transform: translateY(-2px); }
.contact-card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-cyan-soft); color: var(--brand-cyan);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 6px; font-family: var(--font-display); }
.contact-card a { color: var(--text); font-size: .9375rem; word-break: break-word; overflow-wrap: anywhere; line-height: 1.4; }
.contact-card a:hover { color: var(--brand-cyan); }
.contact-card .contact-email { font-size: .875rem; display: block; }

/* ---------- 20. Footer ---------- */
.site-footer {
  background: var(--bg-elev); border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: .9375rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: .8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-secondary); font-size: .9375rem; }
.footer-col a:hover { color: var(--brand-cyan); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: .8125rem; color: var(--text-muted);
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
}
.social-links a:hover { background: var(--brand-cyan); color: #001623; border-color: var(--brand-cyan); }
.social-links svg { width: 18px; height: 18px; }

/* ---------- 21. WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.5);
  transition: transform var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: white; }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- 22. Reveal-on-scroll (graceful: visible by default; JS adds .js-active to body which then hides until .in) ---------- */
.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js-active .reveal:not(.in) { opacity: 0; transform: translateY(20px); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 23. Misc ---------- */
.kbd {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-family: monospace; font-size: .8125rem; color: var(--text-secondary);
}
.badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: var(--brand-cyan-soft); color: var(--brand-cyan);
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag-row .badge { background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border); }

/* Faq */
.faq-item {
  border-bottom: 1px solid var(--border); padding: 24px 0;
}
.faq-item summary {
  list-style: none; cursor: pointer; font-family: var(--font-display);
  font-weight: 600; font-size: 1.125rem; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-weight: 300; font-size: 1.5rem; color: var(--brand-cyan);
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding-top: 16px; color: var(--text-secondary); }
