/* ============================================================
   PRUNUS CONSULTING — design system
   Aesthetic: precision-tech blueprint (light) ↔ dramatic dark
   ============================================================ */

:root {
  /* surfaces */
  --bg-light:   #F4F7FE;
  --bg-light-2: #FFFFFF;
  --bg-dark:    #080E20;
  --bg-dark-2:  #0E1834;

  /* ink */
  --ink:       #0C1430;
  --ink-soft:  #4A5572;
  --ink-faint: #8A93AB;
  --on-dark:        #EAF0FF;
  --on-dark-soft:   #9FB0D8;
  --on-dark-faint:  #5E6E96;

  /* lines */
  --line:      rgba(12, 20, 48, 0.10);
  --line-soft: rgba(12, 20, 48, 0.06);
  --line-dark: rgba(150, 180, 255, 0.14);
  --line-dark-soft: rgba(150, 180, 255, 0.07);

  /* tech accents */
  --blue:       #2563EB;
  --blue-bright:#4C82FF;
  --cyan:       #06B6D4;
  --cyan-glow:  #38E1FF;

  /* prunus signature (from the peach gradient) */
  --prunus-1: #FFB020;
  --prunus:   #FF7A1A;
  --prunus-2: #FF4326;
  --leaf:     #1FA82C;
  --grad-prunus: linear-gradient(135deg, var(--prunus-1) 0%, var(--prunus-2) 100%);
  --grad-tech:   linear-gradient(120deg, var(--cyan-glow), var(--blue-bright));

  /* type */
  --font-display: "Clash Display", "Satoshi", system-ui, sans-serif;
  --font-body:    "Satoshi", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* layout */
  --container: 1180px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--prunus); color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--prunus-1), var(--prunus-2), var(--blue-bright));
  z-index: 200; will-change: transform;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--on-dark-soft);
}
.eyebrow--dark { color: var(--ink-soft); }
.node {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-prunus);
  box-shadow: 0 0 0 4px rgba(255,122,26,.16), 0 0 14px rgba(255,90,30,.7);
  flex: none; display: inline-block;
}

.section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  line-height: 1.04; letter-spacing: -0.02em;
  margin-top: 1.1rem;
}
.section-lead {
  margin-top: 1.25rem; max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
}
.section-lead--light { color: var(--on-dark-soft); }
.section-head { max-width: 760px; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-lead { margin-inline: auto; }

/* section rhythm */
section[class*="section--"] { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--light { background: var(--bg-light); color: var(--ink); }
.section--dark  { background: var(--bg-dark);  color: var(--on-dark); }

/* blueprint grid texture on light sections */
.section--light::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 70% at 50% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(120% 70% at 50% 0%, #000 30%, transparent 80%);
}
.section--light > .container { position: relative; z-index: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-weight: 600; font-size: .98rem;
  padding: .95rem 1.6rem; border-radius: 100px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn--sm { padding: .6rem 1.15rem; font-size: .9rem; }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn--primary {
  color: #fff; background: var(--grad-prunus);
  box-shadow: 0 8px 24px -8px rgba(255,90,30,.7), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(255,90,30,.85), inset 0 1px 0 rgba(255,255,255,.35); }
.btn--ghost {
  color: var(--on-dark); border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.03); backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: rgba(150,180,255,.4); background: rgba(255,255,255,.07); }

.link-strong { font-weight: 600; color: var(--blue); }

/* ============================================================
   NAV — floating glass pill (Solvant-style)
   ============================================================ */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100; display: flex; align-items: center; gap: .5rem;
  height: 58px; width: max-content; max-width: calc(100vw - 28px);
  padding: 7px 8px 7px 18px; border-radius: 100px;
  background: rgba(8,14,32,.34);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 8px 32px rgba(0,0,0,.34), inset 0 0 0 .5px rgba(255,255,255,.05);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  color: #E9ECF4;
  transition: background .35s var(--ease), border-color .35s, box-shadow .35s, color .35s;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.74);
  border-color: rgba(12,20,48,.08);
  box-shadow: 0 10px 40px rgba(12,20,48,.12), 0 0 50px rgba(37,99,235,.05), inset 0 0 0 .5px rgba(255,255,255,.6);
  color: var(--ink);
}

.brand { display: inline-flex; align-items: center; gap: .5rem; flex: none; }
.brand__mark { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(255,90,30,.4)); }
.nav .brand__mark { width: 30px; height: 30px; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -.01em; line-height: 1; display: flex; flex-direction: column; color: inherit; transition: color .35s var(--ease); }
.nav .brand__name { font-size: 1.08rem; color: #fff; }
.nav.is-scrolled .brand__name { color: var(--ink); }
.brand__sub { font-family: var(--font-mono); font-weight: 400; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: .5rem; }
.nav-divider { width: 1px; height: 18px; background: rgba(255,255,255,.13); flex: none; transition: background .35s; }
.nav.is-scrolled .nav-divider { background: rgba(12,20,48,.12); }

.nav__links { display: flex; align-items: center; gap: .1rem; }
.nav-link {
  font-weight: 500; font-size: .9rem; padding: .5rem .8rem; border-radius: 100px;
  color: rgba(233,236,244,.64); transition: color .25s, background .25s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav.is-scrolled .nav-link { color: rgba(12,20,48,.62); }
.nav.is-scrolled .nav-link:hover { color: var(--ink); background: rgba(12,20,48,.05); }

.lang-toggle { display: inline-flex; align-items: center; gap: .1rem; border: 1px solid rgba(255,255,255,.15); border-radius: 100px; padding: 3px; }
.nav.is-scrolled .lang-toggle { border-color: rgba(12,20,48,.12); }
.lang-toggle button { font-family: var(--font-mono); font-size: .72rem; font-weight: 500; letter-spacing: .04em; color: inherit; opacity: .6; padding: .28rem .55rem; border-radius: 100px; transition: .25s; }
.lang-toggle button:hover { opacity: .92; }
.lang-toggle button.is-active { opacity: 1; background: rgba(255,255,255,.18); }
.nav.is-scrolled .lang-toggle button.is-active { background: var(--ink); color: #fff; }

.nav-cta {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .9rem; color: #fff; white-space: nowrap;
  padding: .6rem 1.25rem; border-radius: 100px; background: var(--grad-prunus);
  box-shadow: 0 0 20px rgba(255,122,26,.32), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .3s var(--ease-out), box-shadow .3s; will-change: transform;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255,122,26,.5), inset 0 1px 0 rgba(255,255,255,.35); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; color: inherit; }
.nav__burger span { width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: .3s var(--ease); }

/* nav → collapse pill into dropdown on tablet/mobile */
@media (max-width: 860px) {
  .nav { padding-right: 6px; }
  .nav__burger { display: flex; }
  .nav__menu {
    position: absolute; top: calc(100% + 12px); left: 50%; right: auto;
    flex-direction: column; align-items: stretch; gap: .9rem;
    min-width: 248px; padding: 1.3rem; border-radius: 24px;
    background: rgba(8,14,32,.94);
    backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 56px rgba(0,0,0,.45);
    opacity: 0; transform: translateX(-50%) translateY(-10px) scale(.97); pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav.is-scrolled .nav__menu { background: rgba(255,255,255,.96); border-color: rgba(12,20,48,.1); box-shadow: 0 24px 56px rgba(12,20,48,.18); }
  .nav__menu.is-open { opacity: 1; transform: translateX(-50%); pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav-link { font-size: 1rem; padding: .7rem .9rem; }
  .nav-divider { display: none; }
  .lang-toggle { align-self: flex-start; }
  .nav-cta { width: 100%; padding: .8rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px; overflow: hidden;
  background:
    radial-gradient(80% 60% at 78% 8%, rgba(56,225,255,.10), transparent 60%),
    radial-gradient(70% 60% at 12% 90%, rgba(37,99,235,.16), transparent 65%),
    var(--bg-dark);
}
.hero__net { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__glow {
  position: absolute; z-index: 0; width: 720px; height: 720px; border-radius: 50%;
  top: -180px; right: -160px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,90,30,.32), rgba(255,90,30,0) 62%);
  filter: blur(30px);
}
.hero__grid-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line-dark-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark-soft) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(100% 100% at 30% 40%, #000, transparent 75%);
          mask-image: radial-gradient(100% 100% at 30% 40%, #000, transparent 75%);
}
.hero__inner {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 1.5rem; width: 100%;
}
.hero__visual { overflow: visible; }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5.1rem); line-height: 1.0; letter-spacing: -0.03em;
  margin: 1.4rem 0 1.5rem;
}
.hero__title .line { display: block; }
.hero__title .line:last-child {
  background: linear-gradient(100deg, var(--prunus-1), var(--prunus-2) 50%, var(--cyan-glow), var(--prunus-1));
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
/* word-mask reveal for hero title */
.hero__title .word-mask { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; }
.hero__title .word { display: inline-block; will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  .hero__title .line:last-child, .stat__num { animation: gradShift 9s linear infinite alternate; }
}
@keyframes gradShift { to { background-position: 200% 0; } }
.hero__sub { max-width: 46ch; font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--on-dark-soft); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero__trust { margin-top: 3rem; display: flex; flex-direction: column; gap: .9rem; }
.hero__trust-label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-faint); }
.hero__trust-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.hero__trust-list li {
  font-size: .9rem; font-weight: 500; color: var(--on-dark);
  padding: .45rem 1rem; border-radius: 100px;
  border: 1px solid var(--line-dark); background: rgba(255,255,255,.03);
}

/* hero peach visual */
.hero__visual { position: relative; display: grid; place-items: center; }
.peach { position: relative; width: min(44vw, 640px); aspect-ratio: 1; display: grid; place-items: center; will-change: transform; }
.peach__img {
  width: 90%; position: relative; z-index: 3; will-change: transform;
  filter: drop-shadow(0 26px 44px rgba(255,70,30,.42));
  animation: peachLive 8s ease-in-out infinite;
}
.peach__ring {
  position: absolute; inset: 3%; border-radius: 50%;
  border: 1px solid rgba(150,180,255,.15);
  box-shadow: inset 0 0 70px rgba(56,225,255,.1);
}
.peach__ring--2 { inset: -2%; border-color: rgba(255,122,26,.16); border-style: dashed; animation: spin 38s linear infinite; }
.peach::after {
  content: ""; position: absolute; inset: 12%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,30,.3), transparent 64%); filter: blur(24px); z-index: 1;
  animation: glowPulse 4.5s ease-in-out infinite;
}
/* orbiting nodes — small, hugging the mark */
.peach__orbit { position: absolute; inset: -1%; border-radius: 50%; z-index: 2; animation: spin 22s linear infinite; }
.peach__orbit--2 { inset: 7%; animation: spin 30s linear infinite reverse; }
.peach__orbit i { position: absolute; top: -5px; left: 50%; width: 9px; height: 9px; margin-left: -4.5px; border-radius: 50%; background: var(--grad-prunus); box-shadow: 0 0 11px rgba(255,90,30,.8); }
.peach__orbit--2 i { width: 6px; height: 6px; background: var(--cyan-glow); box-shadow: 0 0 9px rgba(56,225,255,.8); }
@keyframes peachLive {
  0%   { transform: translateY(-12px) rotate(-2.5deg); }
  50%  { transform: translateY(14px) rotate(2.5deg); }
  100% { transform: translateY(-12px) rotate(-2.5deg); }
}
@keyframes glowPulse { 0%,100%{ opacity: .65; } 50%{ opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 24px; height: 38px; border: 1px solid var(--line-dark); border-radius: 100px; }
.hero__scroll span { position: absolute; top: 7px; left: 50%; width: 4px; height: 7px; margin-left: -2px; border-radius: 4px; background: var(--prunus); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{ opacity: 0; transform: translateY(0);} 30%{opacity:1;} 70%{opacity:1;} 100%{ opacity: 0; transform: translateY(12px);} }

/* ============================================================
   MISSION / PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.6rem); }
.pillar {
  position: relative; padding: 2rem 1.8rem 2.1rem; border-radius: var(--radius);
  background: var(--bg-light-2); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(12,20,48,.4); border-color: rgba(37,99,235,.3); }
.pillar__idx { font-family: var(--font-mono); font-size: .8rem; color: var(--prunus); letter-spacing: .1em; }
.pillar h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin: .7rem 0 .55rem; letter-spacing: -.01em; }
.pillar p { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.5rem); }
.card { position: relative; border-radius: var(--radius); overflow: hidden; }
.service {
  padding: 2.1rem 1.9rem 2.2rem; background: var(--bg-light-2); border: 1px solid var(--line);
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.service::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--grad-tech); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s var(--ease-out);
}
.service:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(12,20,48,.45); border-color: rgba(37,99,235,.28); }
.service:hover::after { transform: scaleX(1); }
.card__tick { position: absolute; top: 14px; right: 14px; width: 9px; height: 9px; border-top: 1.5px solid var(--ink-faint); border-right: 1.5px solid var(--ink-faint); opacity: .5; }
.service__icon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(37,99,235,.12), rgba(6,182,212,.12));
  border: 1px solid var(--line); color: var(--blue); margin-bottom: 1.3rem;
}
.service__icon svg { width: 26px; height: 26px; }
.service__num { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; color: var(--ink-faint); }
.service h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; margin: .5rem 0 .65rem; letter-spacing: -.01em; }
.service p { color: var(--ink-soft); font-size: .97rem; }

.service--cta {
  background: linear-gradient(155deg, #0E1834, #080E20); color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: center; border-color: transparent;
}
.service--cta h3 { color: #fff; }
.service--cta p { color: var(--on-dark-soft); margin-bottom: 1rem; }
.service--cta .link-strong { color: var(--prunus-1); }
.service__arrow { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-prunus); color: #fff; margin-bottom: 1.2rem; transition: transform .4s var(--ease-out); }
.service--cta:hover .service__arrow { transform: translateX(6px) rotate(-8deg); }

/* ============================================================
   INDUSTRIES (dark)
   ============================================================ */
.industries { overflow: hidden; }
.industries .container { position: relative; z-index: 2; }
.ind__net { position: absolute; inset: 0; z-index: 0; opacity: .6; }
.ind__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem,1.6vw,1.3rem); }
.ind-card {
  position: relative; padding: 1.8rem 1.6rem 2rem; border-radius: var(--radius); min-height: 260px;
  display: flex; flex-direction: column;
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid var(--line-dark); overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s, background .5s;
}
.ind-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  background: radial-gradient(120% 80% at 50% 120%, rgba(255,90,30,.28), transparent 65%);
}
.ind-card:hover { transform: translateY(-8px); border-color: rgba(255,122,26,.45); }
.ind-card:hover::before { opacity: 1; }
.ind-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: auto; position: relative; z-index: 1; }
.ind-card__id { font-family: var(--font-mono); font-size: .76rem; color: var(--on-dark-faint); letter-spacing: .1em; }
.ind-card__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--line-dark); color: var(--cyan-glow); background: rgba(56,225,255,.06); transition: .5s; }
.ind-card:hover .ind-card__icon { color: var(--prunus-1); border-color: rgba(255,122,26,.4); background: rgba(255,122,26,.08); }
.ind-card__icon svg { width: 24px; height: 24px; }
.ind-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin: 1.4rem 0 .55rem; position: relative; z-index: 1; }
.ind-card p { color: var(--on-dark-soft); font-size: .94rem; position: relative; z-index: 1; }

/* ============================================================
   APPROACH / STEPS
   ============================================================ */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.steps__line { position: absolute; top: 9px; left: 6%; right: 6%; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.steps__fill { position: absolute; inset: 0; width: 100%; transform: scaleX(0); transform-origin: 0 50%; will-change: transform; background: linear-gradient(90deg, var(--prunus-1), var(--prunus-2), var(--blue-bright)); border-radius: 2px; }
.step { position: relative; padding-top: 2.6rem; }
.step__dot { position: absolute; top: 0; left: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-light); border: 2px solid var(--line); display: grid; place-items: center; transition: .4s var(--ease); }
.step__dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-faint); transition: .4s; }
.step.is-active .step__dot { border-color: var(--prunus); box-shadow: 0 0 0 5px rgba(255,122,26,.14); }
.step.is-active .step__dot i { background: var(--grad-prunus); }
.step__num { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--prunus); text-transform: uppercase; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; margin: .55rem 0 .5rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ============================================================
   TECH (dark)
   ============================================================ */
.tech { overflow: hidden; }
.tech__glow { top: auto; bottom: -260px; left: -160px; right: auto; background: radial-gradient(circle, rgba(37,99,235,.3), transparent 62%); }
.tech .container { position: relative; z-index: 2; }
.tech__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem,1.6vw,1.3rem); }
.tech-card {
  position: relative; padding: 1.9rem 1.7rem; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid var(--line-dark);
  transition: transform .45s var(--ease-out), border-color .45s, background .45s;
}
.tech-card:hover { transform: translateY(-6px); border-color: rgba(56,225,255,.4); background: rgba(56,225,255,.05); }
.tech-card__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; color: var(--cyan-glow); background: rgba(56,225,255,.07); border: 1px solid var(--line-dark); margin-bottom: 1.2rem; transition: .4s; }
.tech-card:hover .tech-card__icon { color: #fff; background: var(--grad-tech); }
.tech-card__icon svg { width: 25px; height: 25px; }
.tech-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: .5rem; }
.tech-card p { color: var(--on-dark-soft); font-size: .93rem; }

/* ============================================================
   RESULTS
   ============================================================ */
.results__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.results__quote blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.18; letter-spacing: -.015em;
  margin-top: 1.3rem; text-wrap: balance;
}
.results__quote blockquote::first-letter { color: var(--prunus); }
.results__stats { display: grid; gap: 1rem; }
.stat { display: flex; align-items: baseline; gap: 1.2rem; padding: 1.4rem 1.6rem; border-radius: var(--radius); background: var(--bg-light-2); border: 1px solid var(--line); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,5vw,3.4rem); line-height: 1; background: linear-gradient(135deg, var(--prunus-1), var(--prunus-2), var(--prunus-1)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; flex: none; min-width: 2.6ch; }
.stat__num--full { min-width: auto; }
.stat__label { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   CONTACT (dark)
   ============================================================ */
.contact { overflow: hidden; }
.contact__net { position: absolute; inset: 0; z-index: 0; opacity: .5; }
.contact__glow { top: -200px; left: 50%; right: auto; transform: translateX(-50%); background: radial-gradient(circle, rgba(255,90,30,.26), transparent 60%); }
.contact .container { position: relative; z-index: 2; }
.contact__card {
  max-width: 760px; margin-inline: auto; text-align: center;
  padding: clamp(2.4rem,5vw,4rem); border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid var(--line-dark); backdrop-filter: blur(10px);
}
.contact__card .eyebrow { justify-content: center; }
.contact__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem,4.6vw,3.2rem); line-height: 1.05; letter-spacing: -.02em; margin: 1.1rem 0 1rem; text-wrap: balance; }
.contact__lead { color: var(--on-dark-soft); max-width: 48ch; margin: 0 auto 2rem; font-size: 1.08rem; }
.contact__actions { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.contact__mail { font-family: var(--font-mono); font-size: .95rem; color: var(--on-dark-soft); border-bottom: 1px solid var(--line-dark); padding-bottom: 2px; transition: .25s; }
.contact__mail:hover { color: var(--cyan-glow); border-color: var(--cyan-glow); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding-block: clamp(3rem,5vw,4.5rem) 2rem; border-top: 1px solid var(--line-dark); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.brand--footer .brand__sub { color: var(--on-dark-faint); }
.footer__tag { color: var(--on-dark-soft); font-size: .95rem; max-width: 34ch; margin-top: 1.1rem; }
.footer__col-title { display: block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 1.1rem; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav a, .footer__contact a { color: var(--on-dark-soft); font-size: .96rem; transition: color .25s; width: fit-content; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--on-dark); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.6rem; gap: 1rem; flex-wrap: wrap; }
.footer__bottom span { font-size: .85rem; color: var(--on-dark-faint); }
.footer__made { display: inline-flex; align-items: center; gap: .55rem; }

/* ============================================================
   REVEAL (JS adds .reveal-ready / GSAP handles, fallback below)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); }
.no-motion [data-reveal] { opacity: 1; transform: none; }

/* ============================================================
   CARD ICON MICRO-INTERACTIONS + MARQUEE
   ============================================================ */
.service__icon, .tech-card__icon, .ind-card__icon { transition: transform .45s var(--ease-out), background .45s, color .45s, border-color .45s; }
.service:hover .service__icon { transform: translateY(-3px) scale(1.09) rotate(-4deg); color: var(--blue-bright); }
.tech-card:hover .tech-card__icon { transform: translateY(-3px) scale(1.09); }
.ind-card:hover .ind-card__icon { transform: scale(1.1); }

.marquee {
  margin-top: clamp(2.6rem, 5vw, 4.2rem); overflow: hidden; position: relative; z-index: 1;
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  padding-block: 1.4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: inline-flex; align-items: center; }
.marquee__group > span { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.05rem, 2vw, 1.5rem); color: var(--on-dark-soft); padding: 0 1.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__visual { order: -1; }
  .peach { width: min(380px, 78%); }
  .services__grid, .tech__grid { grid-template-columns: repeat(2, 1fr); }
  .ind__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
  .steps__line { display: none; }
  .results__grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .pillars, .services__grid, .tech__grid, .ind__grid, .steps { grid-template-columns: 1fr; }
  .hero { padding-top: 104px; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .btn { width: 100%; }
  .hero__ctas { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat { flex-direction: column; gap: .4rem; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .peach__img, .peach__ring--2, .peach__orbit, .peach__orbit--2, .peach::after,
  .hero__scroll span, .marquee__track,
  .hero__title .line:last-child, .stat__num { animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__title .word { transform: none !important; }
  * { scroll-behavior: auto !important; }
}
