:root {
  --bg: #F7FAFD;
  --surface: #FFFFFF;
  --text: #10233F;
  --text-muted: #5A6B85;
  --border: #E1E9F2;

  --accent: #0077C8;
  --accent-dark: #10233F;
  --accent-mid: #2A8FCE;
  --accent-light: #6EC6F2;
  --accent-xlight: #D6EDFB;
  --accent-bg: #EFF7FD;

  --cta: #FF7A1A;
  --cta-dark: #E05F00;
  --cta-bg: #FFF1E5;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(16,35,63,.04), 0 1px 1px rgba(16,35,63,.03);
  --shadow-md: 0 12px 40px rgba(16,35,63,.08);
  --shadow-lg: 0 24px 60px rgba(16,35,63,.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  --bg: #0C1626;
  --surface: #10233F;
  --surface-elevated: #16305A;
  --text: #F0F5FB;
  --text-muted: #9CB1CC;
  --border: rgba(255,255,255,0.08);

  --accent: #6EC6F2;
  --accent-dark: #A9E0FA;
  --accent-mid: #6EC6F2;
  --accent-light: #2A8FCE;
  --accent-xlight: #163E63;
  --accent-bg: #122A48;

  --cta: #FF8F42;
  --cta-dark: #FFB073;
  --cta-bg: #3A2415;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow-md: 0 20px 50px rgba(0,0,0,.4);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  transition: background .35s var(--ease), color .35s var(--ease);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.accent-text { color: var(--accent); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.section-sub {
  color: var(--text-muted);
  max-width: 380px;
}
.section { padding: 128px 0; }
.section-tight { padding: 48px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .25s var(--ease), background .2s ease, box-shadow .25s ease, border-color .2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn .arrow { display: inline-block; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-outline { border-color: var(--border); color: var(--text); background: var(--surface); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-cta { background: #fff; color: var(--cta-dark); }
.btn-cta:hover { background: var(--cta-bg); transform: translateY(-1px); }

.text-link { color: var(--accent); font-weight: 600; }
.text-link:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.logo-img.logo-dark { display: none; }
:root[data-theme="dark"] .logo-img.logo-light { display: none; }
:root[data-theme="dark"] .logo-img.logo-dark { display: block; }

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s ease;
  position: relative;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
  font-size: .78rem;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color .2s ease, color .2s ease;
}
.lang-switch:hover { border-color: var(--accent); color: var(--accent); }

.theme-switch {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: border-color .2s ease, transform .3s var(--ease);
}
.theme-switch:hover { border-color: var(--accent); transform: rotate(20deg); }
.icon-moon { display: none; }
:root[data-theme="dark"] .icon-sun { display: none; }
:root[data-theme="dark"] .icon-moon { display: block; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s ease;
}
.burger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 32px 24px;
    gap: 4px;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .cta-desktop { display: none; }
  .burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 140px 0 96px;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cloud-grid { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--border); opacity: .5; }
.flow-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.flow-path {
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 1.4;
  opacity: .35;
}
.flow-path-2 { opacity: .2; }
.flow-dot { fill: var(--accent); opacity: .8; }
.flow-dot-2 { fill: var(--accent-mid); opacity: .6; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 24px 0 32px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.tech-strip {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tech-strip li {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Hero mockup composition */
.hero-visual { position: relative; height: 460px; }
.mock-stack { position: relative; width: 100%; height: 100%; }

.glow-orb {
  position: absolute;
  top: 30%; left: 40%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: .25;
  filter: blur(30px);
  z-index: 0;
  border-radius: 50%;
}

.browser-frame {
  position: absolute;
  width: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 1;
  animation: floatSlow 8s ease-in-out infinite;
}
.frame-1 { top: 0; left: 0; z-index: 3; animation-delay: 0s; }
.frame-2 { top: 130px; left: 90px; z-index: 2; filter: brightness(0.98); animation-delay: 1.2s; animation-duration: 9s; }
.frame-3 { top: 270px; left: 150px; z-index: 1; filter: brightness(0.96); animation-delay: 2.4s; animation-duration: 10s; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--accent-bg);
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.r { background: #F0645C; }
.dot.y { background: #F5BD4F; }
.dot.g { background: #61C554; }
.frame-title { margin-left: 8px; font-size: .74rem; font-weight: 600; color: var(--text-muted); }

.frame-body { padding: 16px; font-size: .78rem; }

.ad-row, .ad-row-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  color: var(--text);
}
.pill {
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  font-style: normal;
}
.pill.success { background: var(--accent-xlight); color: var(--accent-dark); }
.pill.running { background: #FCEFD2; color: #8A6416; }

.ad-progress { height: 5px; background: var(--border); border-radius: 4px; margin: 10px 0; overflow: hidden; }
.ad-progress-bar {
  display: block; height: 100%; width: 30%;
  background: var(--accent);
  border-radius: 4px;
  animation: progressGrow 4s ease-in-out infinite;
}
@keyframes progressGrow { 0% { width: 20%; } 50% { width: 85%; } 100% { width: 20%; } }

.ad-stat { display: flex; flex-direction: column; margin-top: 8px; }
.ad-stat strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--accent); }
.ad-stat small { color: var(--text-muted); }

.ad-feed { display: flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--text-muted); font-size: .72rem; }
.feed-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.silos-step {
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  color: var(--text-muted);
  background: var(--accent-bg);
  position: relative;
  padding-left: 26px;
}
.silos-step::before {
  content: "○";
  position: absolute; left: 8px; color: var(--text-muted); font-size: .7rem;
}
.silos-step.done { color: var(--text); }
.silos-step.done::before { content: "✓"; color: var(--accent); }
.silos-step.active { background: var(--accent-xlight); color: var(--accent-dark); font-weight: 600; }
.silos-step.active::before { content: "●"; color: var(--accent); animation: pulse 1.4s ease-in-out infinite; }

.silos-ai {
  margin-top: 10px;
  padding: 10px;
  background: var(--accent-bg);
  border-radius: 8px;
  font-size: .74rem;
  color: var(--text-muted);
}

.laat-audience { display: flex; flex-direction: column; margin-bottom: 10px; }
.laat-audience strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); }
.laat-audience small { color: var(--text-muted); }
.laat-poll { margin-bottom: 8px; }
.laat-poll span { font-size: .72rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.laat-poll i {
  display: block; height: 6px; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  width: var(--w, 20%);
  transition: width 1s var(--ease);
}
.frame-static .laat-poll i { width: 0; }
.frame-static.in-view .laat-poll i { width: var(--w, 20%); }
.frame-static .pill { transition: transform .3s var(--ease); }
.laat-reactions { margin-top: 10px; font-size: .9rem; color: var(--text-muted); }
.laat-reactions span { font-size: .72rem; margin-left: 4px; }

@media (prefers-reduced-motion: reduce) {
  .browser-frame, .ad-progress-bar, .feed-dot, .silos-step.active::before { animation: none !important; }
}

/* ============ TRUST STRIP ============ */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-icon { font-size: 1.3rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: .92rem; margin-bottom: 4px; }
.trust-item p { color: var(--text-muted); font-size: .84rem; }
.trust-underline {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 8px;
  background: var(--cta);
  transform-origin: left center;
  transform: scaleX(0);
}

/* ============ PRODUCTS ============ */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.product-row:last-of-type { border-bottom: none; }
.product-row.reverse .product-visual { order: 2; }
.product-row.reverse .product-text { order: 1; }

.product-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.product-text h3 { margin-bottom: 12px; font-size: 1.6rem; }
.product-text > p { color: var(--text-muted); margin-bottom: 20px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.feature-list li {
  font-size: .93rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}
.feature-list li::before {
  content: "✓";
  position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.product-link { font-weight: 700; color: var(--accent); font-size: .92rem; }
.product-link:hover { text-decoration: underline; }

.product-visual { display: flex; justify-content: center; }
.frame-static { width: 100%; max-width: 420px; animation: none; position: static; box-shadow: var(--shadow-lg); }
.ad-body-lg, .silos-body-lg, .laat-body-lg { padding: 20px; font-size: .82rem; }

.view-all { text-align: right; margin-top: 24px; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
/* transform on hover is handled by the GSAP 3D tilt (js/animations.js) */
.service-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
}
.service-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: inline-flex;
  transition: transform .25s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.12) rotate(-4deg); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: .92rem; }

/* ============ PARTNERS ============ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.partner-card:hover { border-color: var(--accent-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.partner-body { display: flex; flex-direction: column; align-items: flex-start; width: 100%; flex: 1 1 auto; }
.partner-top {
  width: 100%;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--accent-bg), transparent);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo-img { height: 44px; width: auto; max-width: 160px; object-fit: contain; }
.partner-card h3 { margin-bottom: 8px; }
.partner-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 16px; }
.partner-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
}
.partner-cta { align-self: stretch; justify-content: center; margin-top: 24px; }

/* ============ PROCESS ============ */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.process-line {
  position: absolute;
  top: -32px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
}
.process-line-fill {
  display: block; height: 100%; width: 0%;
  background: var(--accent);
  transition: width 1.2s var(--ease);
}
.process-dot {
  position: absolute;
  top: 50%; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 4px var(--cta-bg);
  transform: translate(-50%, -50%);
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .92rem; }

/* ============ WHY ============ */
.why { background: var(--accent-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: box-shadow .25s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-icon { font-size: 1.6rem; margin-bottom: 16px; }
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 20px; }
.why-metric { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 14px; }
.metric-up { color: var(--accent); font-weight: 700; }
.why-code {
  font-family: monospace;
  font-size: .76rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  color: var(--text-muted);
}

/* ============ CTA BAND ============ */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
:root[data-theme="dark"] .cta-band {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-mid));
}
.cta-glow {
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  border-radius: 50%;
}
.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 420px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.contact h2 { margin: 8px 0 12px; }
.contact-grid > div > p { color: var(--text-muted); margin-bottom: 24px; }
.contact-info { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-info a:hover { color: var(--accent); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.contact-form label { font-size: .85rem; font-weight: 600; margin-top: 12px; }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form button { margin-top: 20px; align-self: flex-start; }
.form-note { color: var(--accent); font-size: .9rem; margin-top: 12px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: .88rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .9rem; color: var(--text); transition: color .2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.copyright { font-size: .82rem; color: var(--text-muted); }

/* ============ SCROLL REVEAL ============ */
/* Initial hidden state only — GSAP (js/animations.js) drives the actual animation. */
.reveal-in {
  opacity: 0;
  transform: translateY(18px);
}

/* Hero copy children animate in via a GSAP timeline; hide until it runs. */
.hero-copy .eyebrow,
.hero-sub,
.hero-cta .btn,
.tech-strip li {
  opacity: 0;
  transform: translateY(18px);
}

/* The headline is split into .word spans by JS and animated individually;
   the h1 itself must stay visible as a container. */
.hero-copy h1 .word {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
}

.browser-frame { opacity: 0; }
.glow-orb { opacity: 0; }
.feature-list li { opacity: 0; }
.service-icon, .why-icon, .trust-icon { opacity: 0; }
.step-num { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal-in,
  .hero-copy .eyebrow,
  .hero-copy h1 .word,
  .hero-sub,
  .hero-cta .btn,
  .tech-strip li,
  .browser-frame,
  .glow-orb,
  .feature-list li,
  .service-icon, .why-icon, .trust-icon,
  .step-num {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 32px; }
  .browser-frame { width: 280px; }
  .frame-2 { left: 60px; }
  .frame-3 { left: 100px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .process-line { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .product-row, .product-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .product-row.reverse .product-visual, .product-row.reverse .product-text { order: initial; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-tight { padding: 32px 0; }
  .hero { padding: 100px 0 56px; min-height: auto; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid, .partners-grid, .process-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .browser-frame { width: 240px; }
  .frame-1 { left: 0; }
  .frame-2 { left: 30px; top: 110px; }
  .frame-3 { left: 55px; top: 230px; }
  .hero-visual { height: 340px; }
}
