/* ============================================================
   VVORKZY — DESIGN SYSTEM v3.0
   Theme: Light Cream / Warm White — premium, clean, modern
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --clr-bg:         #F8F6F2;
  --clr-bg-2:       #FFFFFF;
  --clr-bg-dark:    #0A0F1E;
  --clr-bg-dark-2:  #0D1525;

  /* Glass surfaces */
  --clr-surface:    rgba(255,255,255,0.7);
  --clr-surface-hv: rgba(255,255,255,0.9);
  --clr-surface-dk: rgba(255,255,255,0.06);
  --clr-border:     rgba(0,0,0,0.08);
  --clr-border-hv:  rgba(0,0,0,0.16);
  --clr-border-dk:  rgba(255,255,255,0.1);

  /* Brand colours */
  --clr-orange:       #FF6B2B;
  --clr-orange-light: #FFF0E8;
  --clr-orange-glow:  rgba(255,107,43,0.25);
  --clr-cyan:         #00AADD;
  --clr-cyan-light:   #E6F7FC;
  --clr-cyan-glow:    rgba(0,170,221,0.2);
  --clr-purple:       #6C3FF5;
  --clr-purple-light: #EEE9FE;

  /* Text */
  --clr-text:       #111827;
  --clr-text-2:     #374151;
  --clr-text-muted: #6B7280;
  --clr-text-dim:   #9CA3AF;
  --clr-text-inv:   #F9FAFB;

  /* Hero dark section text */
  --clr-hero-text:       #F9FAFB;
  --clr-hero-text-muted: rgba(249,250,251,0.65);

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-2xl: 48px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-orange: 0 8px 32px rgba(255,107,43,0.3);
  --shadow-cyan:   0 8px 32px rgba(0,170,221,0.25);
  --shadow-card:   0 2px 8px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);

  /* Transitions */
  --trans-fast: 150ms cubic-bezier(0.4,0,0.2,1);
  --trans-med:  280ms cubic-bezier(0.4,0,0.2,1);
  --trans-slow: 500ms cubic-bezier(0.16,1,0.3,1);

  /* Layout */
  --nav-h:        72px;
  --section-pad:  clamp(5rem,9vw,9rem);
  --inner-max:    1260px;
  --inner-pad:    clamp(1.25rem,5vw,3.5rem);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  cursor: none;
}
body.page-scroll { overflow-y: auto; }
body.page-scroll .page-wrapper { padding-top: var(--nav-h); }
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; color: inherit; }

/* ── Custom Cursor ──────────────────────────────────────────── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  will-change: transform;
}
#cursor-dot {
  width: 7px; height: 7px;
  background: var(--clr-orange);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--clr-orange);
  transition: width .15s, height .15s, background .15s;
}
#cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,107,43,0.55);
  transform: translate(-50%, -50%);
  transition: width .25s var(--trans-slow),
              height .25s var(--trans-slow),
              border-color .25s,
              background .25s;
}
#cursor-ring.is-hover {
  width: 52px; height: 52px;
  border-color: var(--clr-cyan);
  background: rgba(0,170,221,0.07);
}
#cursor-ring.is-down {
  width: 26px; height: 26px;
  background: rgba(255,107,43,0.12);
}
@media (hover: none) {
  #cursor-dot, #cursor-ring { display: none; }
  body, button { cursor: auto; }
  a, button, [role="button"] { cursor: pointer; }
}

/* ── Page Transition ────────────────────────────────────────── */
#page-transition {
  position: fixed; inset: 0;
  background: var(--clr-bg-dark);
  z-index: 8000;
  pointer-events: none;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

/* ── Noise overlay ──────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── Navigation ─────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex; align-items: center;
  padding: 0 var(--inner-pad);
  /* Default: fully transparent — no colour bleed from body */
  background: transparent;
  transition: background var(--trans-slow), box-shadow var(--trans-slow);
}

/* Light pages: cream glass after scrolling */
#nav.scrolled {
  background: rgba(248,246,242,0.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 var(--clr-border), 0 4px 24px rgba(0,0,0,0.04);
}

/* Hero/dark page: dark background ALWAYS (before and after scroll) */
#nav.nav-dark {
  background: rgba(10,15,30,0.55);
}
#nav.nav-dark.scrolled {
  background: rgba(10,15,30,0.9);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.nav-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.45rem;
  letter-spacing: -0.03em; flex-shrink: 0; display: flex; align-items: center;
}
.nav-logo .vv { color: var(--clr-orange); }
.nav-logo .zy { color: var(--clr-cyan); }
/* On dark hero the logo text is white except brand colours */
#nav .nav-logo { color: var(--clr-hero-text); }

.nav-links {
  display: flex; align-items: center;
  gap: clamp(1.5rem,3vw,2.5rem);
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--clr-cyan-light);
  position: relative; padding: 0.25rem 0;
  transition: color var(--trans-fast);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-cyan));
  transition: width var(--trans-med);
}
.nav-links a:hover, .nav-links a.active { color: var(--clr-cyan-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
#nav:not(.scrolled) .nav-links a { color: var(--clr-hero-text-muted); }
#nav:not(.scrolled) .nav-links a:hover,
#nav:not(.scrolled) .nav-links a.active { color: var(--clr-hero-text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.62rem 1.35rem;
  border-radius: 100px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--trans-med);
  position: relative; overflow: hidden; flex-shrink: 0;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--clr-orange), #FF8F55);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 36px rgba(255,107,43,0.4); }
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  background: rgba(0,0,0,0.05);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn-ghost:hover { background: rgba(0,0,0,0.08); transform: translateY(-1px); }
.btn-ghost-dark {
  background: rgba(255,255,255,0.08);
  color: var(--clr-hero-text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--clr-cyan);
  border: 1.5px solid var(--clr-cyan);
}
.btn-outline:hover { background: var(--clr-cyan-light); transform: translateY(-2px); box-shadow: var(--shadow-cyan); }

.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: all var(--trans-med);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#nav:not(.scrolled) .nav-hamburger { color: var(--clr-hero-text); }

/* Drawer */
.nav-drawer {
  position: fixed; left: 0; right: 0;
  background: rgba(248,246,242,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.25rem var(--inner-pad) 1.75rem;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform var(--trans-slow);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.nav-drawer.open { transform: translateY(0);top: var(--nav-h); }
.nav-drawer a {
  font-size: 1.05rem; font-weight: 500; color: var(--clr-text-muted);
  padding: 0.6rem 0; border-bottom: 1px solid var(--clr-border);
  transition: color var(--trans-fast);
}
.nav-drawer a:hover { color: var(--clr-text); }
.nav-cta { margin-left: auto; }

/* ── Typography ─────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display); font-size: clamp(2.8rem,7vw,7rem);
  font-weight: 800; line-height: 0.95; letter-spacing: -0.04em;
}
.display-lg {
  font-family: var(--font-display); font-size: clamp(2rem,4.5vw,4.5rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.03em;
}
.display-md {
  font-family: var(--font-display); font-size: clamp(1.65rem,3.2vw,2.75rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.025em;
}
.headline {
  font-family: var(--font-display); font-size: clamp(1.15rem,2vw,1.5rem);
  font-weight: 600; line-height: 1.25;
}
.lead {
  font-size: clamp(0.95rem,1.4vw,1.1rem); line-height: 1.75;
  color: var(--clr-text-muted); font-weight: 400;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--clr-orange);
}
.eyebrow::after {
  content: ''; width: 28px; height: 1.5px; background: var(--clr-orange); flex-shrink: 0;
}

/* Gradients */
.grad-orange {
  background: linear-gradient(135deg,var(--clr-orange),#FF9A55);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-cyan {
  background: linear-gradient(135deg,var(--clr-cyan),var(--clr-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-full {
  background: linear-gradient(135deg,var(--clr-orange),var(--clr-purple),var(--clr-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Layout Helpers ─────────────────────────────────────────── */
.section-inner {
  max-width: var(--inner-max); margin: 0 auto;
  padding: 0 var(--inner-pad); width: 100%;
}
.section-header {
  text-align: center; max-width: 700px;
  margin: 0 auto clamp(2.5rem,4.5vw,4.5rem);
}
.section-header .eyebrow { justify-content: center; margin-bottom: 1rem; }
.section-header .eyebrow::before {
  content: ''; width: 28px; height: 1.5px; background: var(--clr-orange);
}
.section-header .eyebrow::after { display: none; }
.section-header p { margin-top: 1rem; color: var(--clr-text-muted); line-height: 1.7; font-size: clamp(0.9rem,1.4vw,1.05rem); }

/* Grids */
.grid-2   { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1rem,2vw,1.5rem); }
.grid-3   { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.5rem); }
.grid-4   { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,2vw,1.5rem); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: clamp(1rem,2vw,1.5rem); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: transform var(--trans-med), box-shadow var(--trans-med), border-color var(--trans-med);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: rgba(255,107,43,0.15);
}
/* Subtle top accent line on hover */
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--clr-orange),var(--clr-cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans-med);
}
.card:hover::before { transform: scaleX(1); }

/* Dark glass card (used in hero / dark sections) */
.card-dark {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: transform var(--trans-med), background var(--trans-med), border-color var(--trans-med);
}
.card-dark:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,107,43,0.35);
  transform: translateY(-4px);
}

/* ── Service Card ───────────────────────────────────────────── */
.service-card {
  padding: clamp(1.5rem,2.5vw,2rem);
  display: flex; flex-direction: column; gap: 0.9rem;
  height: 100%;
}
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; }
.svc-orange { background: var(--clr-orange-light); color: var(--clr-orange); }
.svc-cyan   { background: var(--clr-cyan-light);   color: var(--clr-cyan);   }
.svc-purple { background: var(--clr-purple-light);  color: var(--clr-purple); }

.service-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--clr-text); }
.service-card p  { font-size: 0.875rem; color: var(--clr-text-muted); line-height: 1.65; flex: 1; }
.card-link {
  font-size: 0.8rem; font-weight: 600; color: var(--clr-orange);
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: auto; transition: gap var(--trans-fast);
}
.card:hover .card-link { gap: 0.55rem; }

/* Service list mini */
.service-list-mini { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.25rem; }
.service-list-mini li {
  font-size: 0.8rem; color: var(--clr-text-muted);
  display: flex; align-items: center; gap: 0.5rem; line-height: 1.4;
}
.service-list-mini li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--clr-orange); flex-shrink: 0;
}

/* ── Tags / Chips ───────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.tag-orange { background: var(--clr-orange-light); color: var(--clr-orange); }
.tag-cyan   { background: var(--clr-cyan-light);   color: var(--clr-cyan);   }
.tag-purple { background: var(--clr-purple-light);  color: var(--clr-purple); }

/* Dark versions */
.tag-dk-orange { background: rgba(255,107,43,0.15); color: #FF9A55; border: 1px solid rgba(255,107,43,0.25); }
.tag-dk-cyan   { background: rgba(0,170,221,0.12);  color: #55D4FF; border: 1px solid rgba(0,170,221,0.2); }
.tag-dk-purple { background: rgba(108,63,245,0.15); color: #A47FFF; border: 1px solid rgba(108,63,245,0.25); }

/* ── Stats Row ──────────────────────────────────────────────── */
.stats-row {
  display: flex; flex-wrap: wrap;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  gap: 0;
}
.stat-item {
  flex: 1; min-width: 130px;
  padding: clamp(1.25rem,2.5vw,1.75rem);
  border-right: 1px solid var(--clr-border);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.25rem);
  font-weight: 800; line-height: 1;
  background: linear-gradient(135deg,var(--clr-orange),var(--clr-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--clr-text-muted); font-weight: 400; }

/* ── Marquee ────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.7rem 0;
  background: var(--clr-bg-2);
}
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; will-change: transform; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0 2rem; font-size: 0.75rem; font-weight: 600;
  color: var(--clr-text-muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.marquee-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--clr-orange); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Divider ────────────────────────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--clr-border); }

/* ── Scroll Indicator ───────────────────────────────────────── */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-mouse {
  width: 20px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 10px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
  width: 2.5px; height: 6px; background: var(--clr-orange); border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { opacity:1; transform:translateY(0); }
  75%  { opacity:0; transform:translateY(10px); }
  100% { opacity:0; transform:translateY(0); }
}

/* ── Highlight Box ──────────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg,rgba(255,107,43,0.05),rgba(0,170,221,0.05));
  border: 1px solid rgba(255,107,43,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.highlight-box-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

/* ── Partner chip ───────────────────────────────────────────── */
.partner-chip {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem; color: var(--clr-text-muted);
  display: flex; align-items: center; gap: 0.4rem;
}
.partner-chip::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--clr-cyan); flex-shrink: 0;
}

/* ── Value card ─────────────────────────────────────────────── */
.value-card {
  padding: clamp(1.5rem,2.5vw,2rem);
  display: flex; flex-direction: column; gap: 0.75rem;
  text-align: center; align-items: center;
}
.value-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 0.25rem;
}
.value-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.value-card p  { font-size: 0.875rem; color: var(--clr-text-muted); line-height: 1.65; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2.25rem; display: flex; flex-direction: column; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg,var(--clr-orange),var(--clr-cyan));
  border-radius: 2px;
}
.timeline-item { position: relative; padding-left: 1.5rem; padding-bottom: 2.25rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -2.25rem; top: 7px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--clr-orange);
  border: 2px solid var(--clr-bg);
  box-shadow: 0 0 0 2px var(--clr-orange);
}
.timeline-year { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--clr-cyan); text-transform: uppercase; margin-bottom: 0.3rem; }
.timeline-item h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.timeline-item p  { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.65; }

/* ── Step card ──────────────────────────────────────────────── */
.step-card { padding: clamp(1.5rem,2.5vw,2rem); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg,var(--clr-orange),var(--clr-purple));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,43,0.4); flex-shrink: 0;
}
.step-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.step-card p  { font-size: 0.875rem; color: var(--clr-text-muted); line-height: 1.65; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  border: 1px solid var(--clr-border); border-radius: var(--radius-md);
  overflow: hidden; transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.faq-item.open { border-color: rgba(0,170,221,0.3); box-shadow: 0 0 0 3px rgba(0,170,221,0.06); }
.faq-question {
  width: 100%; text-align: left;
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--clr-bg-2); color: var(--clr-text);
  font-size: 0.92rem; font-weight: 500;
  transition: background var(--trans-fast);
}
.faq-question:hover { background: var(--clr-bg); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: var(--clr-bg); border: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-cyan); font-size: 1rem; font-weight: 300;
  transition: transform var(--trans-med), background var(--trans-med), color var(--trans-med);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--clr-cyan-light); color: var(--clr-cyan); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.faq-answer-inner { padding: 0 1.4rem 1.1rem; font-size: 0.875rem; color: var(--clr-text-muted); line-height: 1.75; }

/* ── CTA Box ────────────────────────────────────────────────── */
.cta-box {
  max-width: 860px; margin: 0 auto;
  background: var(--clr-bg-dark);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem,5vw,4.5rem) clamp(2rem,5vw,5rem);
  text-align: center; position: relative; overflow: hidden;
  color: var(--clr-hero-text);
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,107,43,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 100%, rgba(0,170,221,0.1) 0%, transparent 55%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box p { color: var(--clr-hero-text-muted); }

/* ── Orbs ───────────────────────────────────────────────────── */
.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0; will-change: transform;
  filter: blur(72px);
}
.orb-orange { background: radial-gradient(circle,rgba(255,107,43,0.25) 0%,transparent 70%); }
.orb-cyan   { background: radial-gradient(circle,rgba(0,170,221,0.2) 0%,transparent 70%); }
.orb-purple { background: radial-gradient(circle,rgba(108,63,245,0.18) 0%,transparent 70%); }

/* ── Animations — ALWAYS VISIBLE BY DEFAULT ─────────────────── */
/* Start visible; JS adds .will-animate before observing */
.anim-fade-up   { opacity: 1; transform: none; }
.anim-fade-left { opacity: 1; transform: none; }
.anim-fade-right{ opacity: 1; transform: none; }
.anim-scale     { opacity: 1; transform: none; }

/* Only animate when JS marks them ready */
.anim-ready.anim-fade-up    { opacity: 0; transform: translateY(36px); }
.anim-ready.anim-fade-left  { opacity: 0; transform: translateX(-36px); }
.anim-ready.anim-fade-right { opacity: 0; transform: translateX(36px); }
.anim-ready.anim-scale      { opacity: 0; transform: scale(0.92); }

.anim-ready.anim-fade-up.visible,
.anim-ready.anim-fade-left.visible,
.anim-ready.anim-fade-right.visible,
.anim-ready.anim-scale.visible {
  opacity: 1; transform: none;
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.delay-1.visible { transition-delay: 0.08s !important; }
.delay-2.visible { transition-delay: 0.16s !important; }
.delay-3.visible { transition-delay: 0.24s !important; }
.delay-4.visible { transition-delay: 0.32s !important; }
.delay-5.visible { transition-delay: 0.40s !important; }
.delay-6.visible { transition-delay: 0.48s !important; }

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--clr-orange); color: #fff;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  z-index: 9999; font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Focus visible ──────────────────────────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--clr-cyan); outline-offset: 3px; border-radius: 4px;
}

/* ── WhatsApp float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ── Footer ─────────────────────────────────────────────────── */
#footer {
  background: var(--clr-bg-dark);
  color: var(--clr-hero-text);
  padding: clamp(3rem,6vw,5rem) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr repeat(3,1fr);
  gap: clamp(2rem,4vw,4rem);
  padding-bottom: clamp(3rem,5vw,4rem);
}
.footer-brand .footer-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  letter-spacing: -0.03em; margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-brand p + p { margin-top: 0.5rem; }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--trans-fast); }
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.social-links { display: flex; gap: 0.65rem; align-items: center; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: all var(--trans-fast);
}
.social-link:hover { border-color: var(--clr-orange); color: var(--clr-orange); background: rgba(255,107,43,0.08); }
.social-link svg { width: 14px; height: 14px; }

/* ── Hero Section (dark) ────────────────────────────────────── */
.hero-section {
  background: var(--clr-bg-dark);
  min-height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
#three-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  width: 100%;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem,5vw,3rem) 5rem;
  color: var(--clr-hero-text);
}
.hero-content .eyebrow { color: var(--clr-orange); justify-content: center; margin-bottom: 1.5rem; }
.hero-content .eyebrow::after { background: var(--clr-orange); }

/* ‼ Hero title — contained, no overflow */
.hero-title {
  font-family: var(--font-display); font-weight: 800; line-height: 0.97; letter-spacing: -0.03em;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  word-break: break-word; overflow-wrap: break-word;
  hyphens: none;
}
.hero-tagline {
  margin: 1.5rem auto 0; max-width: 580px;
  font-size: clamp(0.9rem,1.4vw,1.05rem); line-height: 1.75;
  color: var(--clr-hero-text-muted);
}
.hero-cta-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-top: 2.25rem; }
.hero-tags    { display: flex; gap: 0.65rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }

/* ── Snap container ─────────────────────────────────────────── */
.snap-container {
  height: 100vh; overflow-y: scroll; scroll-snap-type: y mandatory;
  scroll-behavior: smooth; scrollbar-width: none;
}
.snap-container::-webkit-scrollbar { display: none; }
.snap-section { scroll-snap-align: start; scroll-snap-stop: always; min-height: 100vh; width: 100%; position: relative; }

/* ── Section backgrounds ─────────────────────────────────────── */
.bg-white  { background: var(--clr-bg-2); }
.bg-cream  { background: var(--clr-bg); }
.bg-dark   { background: var(--clr-bg-dark); }
.bg-dark-2 { background: var(--clr-bg-dark-2); }

/* Standard light sections */
.section-light {
  padding: var(--section-pad) 0;
  background: var(--clr-bg-2);
  display: flex; align-items: center;
  flex-direction: column; justify-content: center;
}
.section-cream {
  padding: var(--section-pad) 0;
  background: var(--clr-bg);
  display: flex; align-items: center;
  flex-direction: column; justify-content: center;
}
/* ── Ecosystem nodes ────────────────────────────────────────── */
.eco-center {
  width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 3rem;
  background: var(--clr-bg-dark);
  border: 1.5px solid rgba(255,107,43,0.3);
  display: flex; align-items: center; justify-content: center; position: relative;
  box-shadow: 0 0 0 12px rgba(255,107,43,0.04), 0 0 0 24px rgba(255,107,43,0.02);
  animation: ecoPulse 3s ease-in-out infinite;
}
@keyframes ecoPulse {
  0%,100% { box-shadow: 0 0 0 12px rgba(255,107,43,0.04), 0 0 40px rgba(255,107,43,0.12); }
  50%     { box-shadow: 0 0 0 20px rgba(255,107,43,0.06), 0 0 80px rgba(255,107,43,0.2); }
}
.eco-center-lbl { font-family: var(--font-display); font-weight: 800; text-align: center; line-height: 1.15; color: var(--clr-hero-text); font-size: 0.95rem; }
.eco-orbit { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.eco-node  { padding: 1.5rem 1.25rem; text-align: center; }
.eco-node .eco-icon { width: 44px; height: 44px; border-radius: var(--radius-md); margin: 0 auto 0.85rem; display: flex; align-items: center; justify-content: center; }
.eco-node h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--clr-hero-text); }
.eco-node p  { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ── Contact form ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.contact-info  { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--clr-cyan-light); color: var(--clr-cyan);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-body h4  { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: 0.25rem; }
.ci-body a, .ci-body p { font-size: 0.92rem; color: var(--clr-text); transition: color var(--trans-fast); }
.ci-body a:hover { color: var(--clr-cyan); }

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--clr-text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: var(--radius-md);
  padding: 0.8rem 1rem; color: var(--clr-text); font-family: var(--font-body); font-size: 0.9rem;
  outline: none; width: 100%; resize: vertical;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--clr-text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(0,170,221,0.5); box-shadow: 0 0 0 3px rgba(0,170,221,0.1);
}
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236B7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

/* ── Partner detail card ────────────────────────────────────── */
.partner-detail-inner { display: grid; grid-template-columns: 1fr 1.5fr; }
.partner-detail-left  { padding: clamp(2rem,4vw,3rem); border-right: 1px solid var(--clr-border); display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.partner-detail-right { padding: clamp(2rem,4vw,3rem); }
.partner-detail-right h3 { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: 1rem; }
.partner-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 0.75rem; }

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .anim-ready.anim-fade-up, .anim-ready.anim-fade-left,
  .anim-ready.anim-fade-right, .anim-ready.anim-scale { opacity: 1 !important; transform: none !important; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4              { grid-template-columns: repeat(2,1fr); }
  .eco-orbit           { grid-template-columns: repeat(2,1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .partner-detail-inner { grid-template-columns: 1fr; }
  .partner-detail-left  { border-right: none; border-bottom: 1px solid var(--clr-border); }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--clr-border); }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .hero-title   { font-size: clamp(1.5rem, 6vw, 3.5rem); }
  .partner-services-grid { grid-template-columns: 1fr; }
  .it-grid, .edu-grid, .startup-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 46px; height: 46px; }
  .cta-box { padding: 2.5rem 1.5rem; }
}
/* view transitions */
@keyframes vt-in  { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
@keyframes vt-out { from { opacity:1; transform:none; } to { opacity:0; transform:translateY(-10px); } }
::view-transition-old(root) { animation: 0.3s ease-in  both vt-out; }
::view-transition-new(root) { animation: 0.4s ease-out both vt-in;  }