/* ============================================================
   Clear Solar — SOLAR BRIGHT
   ============================================================ */

:root {
  /* solar palette */
  --sun-1: #F7941D;
  --sun-2: #FBB034;
  --sun-3: #FFD24C;
  --sky: #1C76C9;
  --navy: #0E2A47;
  --navy-soft: #3a567a;
  --white: #FFFFFF;
  --cream: #FFF8EE;
  --cream-2: #FFF2DD;
  --line: #eadfce;

  --grad-sun: linear-gradient(135deg, var(--sun-1) 0%, var(--sun-2) 50%, var(--sun-3) 100%);
  --grad-sun-soft: linear-gradient(135deg, #FFE9C2 0%, #FFF2DD 100%);

  --shadow-sm: 0 2px 8px rgba(14, 42, 71, 0.06);
  --shadow-md: 0 14px 40px rgba(14, 42, 71, 0.10);
  --shadow-lg: 0 28px 70px rgba(14, 42, 71, 0.14);
  --shadow-sun: 0 18px 44px rgba(247, 148, 29, 0.30);

  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --maxw: 1140px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --ff-head: "Poppins", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--ff-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.12; color: var(--navy); letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.grad-text {
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: var(--radius-pill);
  cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.btn-primary { background: var(--grad-sun); color: #fff; box-shadow: var(--shadow-sun); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 52px rgba(247, 148, 29, .42); }

.btn-ghost { background: rgba(255,255,255,.7); color: var(--navy); border-color: var(--line); backdrop-filter: blur(6px); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--sun-2); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: #122f50; }

.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--sky); outline-offset: 3px;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(234, 223, 206, .7);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.brand-logo { height: 38px; width: auto; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  font-family: var(--ff-head); font-weight: 500; font-size: .95rem; color: var(--navy);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad-sun); transition: width .25s var(--ease);
}
.nav a:hover { color: var(--sun-1); }
.nav a:hover::after { width: 100%; }
.header-cta { margin-left: 8px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  background: none; border: 1px solid var(--line); border-radius: 12px;
  align-items: center; justify-content: center; margin-left: auto; cursor: pointer;
}
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
.mobile-menu nav { display: flex; flex-direction: column; padding: 16px 24px 24px; gap: 4px; }
.mobile-menu a {
  font-family: var(--ff-head); font-weight: 500; padding: 13px 8px; border-radius: 10px; transition: background .2s;
}
.mobile-menu a:hover { background: var(--cream); }
.mobile-cta { margin-top: 10px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FFF8EE 0%, #FFFFFF 100%);
  padding: 96px 0 120px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-horizon {
  position: absolute; left: -10%; right: -10%; bottom: 0; height: 220px;
  background: radial-gradient(120% 100% at 50% 100%, rgba(255, 210, 76, .35), rgba(255, 210, 76, 0) 70%);
}
.sun {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 520px; height: 520px;
}
.sun-core {
  position: absolute; inset: 30%;
  border-radius: 50%; background: var(--grad-sun);
  box-shadow: 0 0 80px 24px rgba(251, 176, 52, .55);
  animation: pulse 6s ease-in-out infinite;
}
.sun-glow {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 76, .55) 0%, rgba(255, 210, 76, 0) 62%);
}
.sun-rays { position: absolute; inset: 0; animation: spin 60s linear infinite; }
.sun-rays::before, .sun-rays::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg,
      rgba(251, 176, 52, .26) 0deg 4deg,
      transparent 4deg 18deg);
  -webkit-mask: radial-gradient(circle, transparent 30%, #000 31%, #000 64%, transparent 65%);
          mask: radial-gradient(circle, transparent 30%, #000 31%, #000 64%, transparent 65%);
}
.sun-rays::after { transform: rotate(9deg); opacity: .5; }

@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 860px; }
.eyebrow {
  display: inline-block; font-family: var(--ff-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sun-1);
  background: rgba(255, 210, 76, .18); padding: 8px 18px; border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 800; margin-bottom: 22px; }
.hero-sub { font-size: clamp(1.05rem, 2.3vw, 1.3rem); color: var(--navy-soft); max-width: 640px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.hero-meta { font-size: .9rem; color: var(--navy-soft); letter-spacing: .02em; }

/* ---------------- Industries ---------------- */
.industries { background: var(--cream); padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.industries-label {
  text-align: center; font-family: var(--ff-head); font-weight: 600; font-size: .76rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--navy-soft); margin-bottom: 18px;
}
.pill-row { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  font-family: var(--ff-head); font-weight: 500; font-size: .95rem;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  padding: 10px 20px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.pill:hover { transform: translateY(-3px); border-color: var(--sun-2); box-shadow: var(--shadow-md); }
.pill-sm { font-size: .82rem; padding: 7px 15px; box-shadow: none; }

/* ---------------- Sections ---------------- */
.section { padding: 100px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.kicker {
  display: inline-block; font-family: var(--ff-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sun-1); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; margin-bottom: 18px; }
.section-lead { font-size: 1.12rem; color: var(--navy-soft); }
.section-lead.center { max-width: 640px; margin: 0 auto; }

/* ---------------- Problem stats ---------------- */
.problem { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--grad-sun);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; margin-bottom: 16px; }
.stat-num .count { background: var(--grad-sun); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--navy-soft); font-size: 1.02rem; }

/* ---------------- Solution / How it works ---------------- */
.howit { margin-bottom: 64px; }
.howit-steps {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  counter-reset: step;
}
.howit-step {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.howit-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.howit-art {
  background: linear-gradient(160deg, #fff, var(--cream-2));
  border-radius: var(--radius-sm); padding: 14px; margin-bottom: 20px; border: 1px solid var(--line);
}
.panel-svg { width: 100%; height: auto; display: block; }
.panel-base { fill: var(--navy); }
.panel-glass { fill: #cfe2f4; stroke: var(--sky); stroke-width: 1.4; }
.panel-glass.film { fill: #d6ecff; }
.panel-glass.clean { fill: #e4f3ff; }
.dust { fill: #b08a5a; }
.dust.lift { animation: lift 2.2s ease-in-out infinite; }
.dust.eject { fill: #c79a63; animation: eject 2.4s ease-in-out infinite; }
.wave-line { fill: none; stroke: var(--sun-1); stroke-width: 1.6; opacity: .85; animation: waveflash 1.8s ease-in-out infinite; }
.wave-line-2 { stroke: var(--sun-3); animation-delay: .3s; }
.eject-arrow { fill: none; stroke: var(--sun-2); stroke-width: 1.8; stroke-dasharray: 4 3; stroke-linecap: round; animation: dash 1.5s linear infinite; }

@keyframes lift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); opacity: .6; } }
@keyframes eject { 0% { transform: translate(-18px, 14px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translate(6px, -4px); opacity: 0; } }
@keyframes waveflash { 0%,100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes dash { to { stroke-dashoffset: -14; } }

.howit-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.howit-step p { color: var(--navy-soft); font-size: .96rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-ic {
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem;
  width: 54px; height: 54px; border-radius: 16px; background: var(--grad-sun-soft); margin-bottom: 16px;
}
.benefit h3 { font-size: 1.12rem; margin-bottom: 8px; }
.benefit p { color: var(--navy-soft); font-size: .95rem; }

/* ---------------- Technology ---------------- */
.technology { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.tech-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.tech-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 18px; }
.tech-list { list-style: none; margin: 24px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.tech-list li {
  position: relative; padding-left: 34px; color: var(--navy-soft); font-size: 1.05rem;
}
.tech-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad-sun); box-shadow: 0 0 0 4px rgba(255, 210, 76, .22);
}
.tech-list strong { color: var(--navy); }

.tech-visual { display: flex; justify-content: center; }
.moon-scene {
  position: relative; width: 100%; max-width: 420px; aspect-ratio: 1 / 0.86;
  background: radial-gradient(120% 100% at 50% 0%, #0E2A47 0%, #061a30 70%);
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.moon-sun {
  position: absolute; top: 14%; right: 14%; width: 90px; height: 90px; border-radius: 50%;
  background: var(--grad-sun); box-shadow: 0 0 60px 16px rgba(251, 176, 52, .55); animation: pulse 6s ease-in-out infinite;
}
.moon-surface {
  position: absolute; left: -5%; right: -5%; bottom: -30%; height: 70%; border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #1b3a5c, #0a2138);
}
.eds-wave {
  position: absolute; left: 8%; right: 8%; bottom: 30%; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--sun-3), transparent);
  box-shadow: 0 0 14px var(--sun-2); animation: edsmove 2.6s ease-in-out infinite;
}
@keyframes edsmove { 0%,100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(-12px); opacity: 1; } }
.dust-spark { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--sun-3); box-shadow: 0 0 8px var(--sun-2); }
.dust-spark.d1 { bottom: 34%; left: 30%; animation: rise 3s ease-in-out infinite; }
.dust-spark.d2 { bottom: 32%; left: 52%; animation: rise 3.4s ease-in-out infinite .4s; }
.dust-spark.d3 { bottom: 36%; left: 68%; animation: rise 2.8s ease-in-out infinite .8s; }
@keyframes rise { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(-70px) translateX(20px); opacity: 0; } }

/* ---------------- Numbers band ---------------- */
.numbers { background: var(--grad-sun); padding: 72px 0; }
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.num-item { text-align: center; color: #fff; }
.num-val { display: block; font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1; }
.num-cap { display: block; margin-top: 10px; font-weight: 500; font-size: .98rem; color: rgba(255,255,255,.92); }

/* ---------------- ClearAdvantage spec strip ---------------- */
.spec-strip {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin: 0 0 56px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); background: #fff;
}
.spec { padding: 26px 24px; border-right: 1px solid var(--line); }
.spec:last-child { border-right: none; }
.spec-k {
  display: block; font-family: var(--ff-head); font-weight: 600; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--sun-1); margin-bottom: 10px;
}
.spec-v { display: block; color: var(--navy-soft); font-size: .96rem; line-height: 1.55; }
.spec-v strong { color: var(--navy); }

/* ---------------- Team ---------------- */
.team { background: #fff; }
.team-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.member {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 92px; height: 92px; border-radius: 50%; margin-bottom: 20px;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.9rem; color: #fff;
  letter-spacing: .02em; box-shadow: var(--shadow-sun);
}
.avatar-1 { background: linear-gradient(135deg, var(--sun-1), var(--sun-3)); }
.avatar-2 { background: linear-gradient(135deg, var(--sky), #4aa3e8); box-shadow: 0 18px 44px rgba(28,118,201,.30); }
.avatar-3 { background: linear-gradient(135deg, var(--navy), #2f5680); box-shadow: 0 18px 44px rgba(14,42,71,.28); }
.member h3 { font-size: 1.22rem; margin-bottom: 4px; }
.member .role {
  font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--sun-1);
  margin-bottom: 14px;
}
.member .bio { color: var(--navy-soft); font-size: .95rem; margin-bottom: 18px; }
.linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--sky);
  padding: 8px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: #fff; transition: transform .2s var(--ease), border-color .2s, color .2s, box-shadow .2s;
}
.linkedin:hover { transform: translateY(-2px); border-color: var(--sky); box-shadow: var(--shadow-sm); }
.linkedin svg { color: var(--sky); }

/* ---------------- Partners / Backed by ---------------- */
.partners { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.logo-wall {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.logo-chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 24px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-chip:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.logo-chip img { height: 34px; width: auto; color: var(--navy); opacity: .9; }
.logo-cap {
  font-family: var(--ff-head); font-weight: 600; font-size: .82rem; color: var(--navy-soft);
  letter-spacing: .01em;
}

/* ---------------- Careers ---------------- */
.careers { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.careers-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.careers-copy h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.careers-copy strong { color: var(--navy); }
.role-card {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 38px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.role-card::after {
  content: ""; position: absolute; top: -50px; right: -50px; width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,176,52,.45), transparent 70%);
}
.role-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 12px; }
.role-card p { color: rgba(255,255,255,.82); margin-bottom: 24px; position: relative; }
.role-tag {
  display: inline-block; font-family: var(--ff-head); font-weight: 600; font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; background: var(--grad-sun); color: #fff; padding: 6px 14px;
  border-radius: var(--radius-pill); margin-bottom: 16px;
}

/* ---------------- CTA band ---------------- */
.cta-band { background: var(--navy); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, rgba(251,176,52,.28), transparent 60%);
}
.cta-inner { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 1.15rem; margin-bottom: 32px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-tag { font-family: var(--ff-head); font-weight: 600; color: var(--sun-1); margin-bottom: 10px; }
.footer-addr { color: var(--navy-soft); font-size: .92rem; }
.footer-col h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy-soft); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: var(--navy); font-size: .96rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--sun-1); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.copyright { color: var(--navy-soft); font-size: .88rem; }

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .tech-inner, .careers-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .num-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .spec-strip { grid-template-columns: repeat(2, 1fr); }
  .spec:nth-child(2) { border-right: none; }
  .spec:nth-child(1), .spec:nth-child(2) { border-bottom: 1px solid var(--line); }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .stat-grid, .howit-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 64px 0 90px; }
  .sun { width: 360px; height: 360px; top: -90px; }
  .spec-strip { grid-template-columns: 1fr; }
  .spec { border-right: none; border-bottom: 1px solid var(--line); }
  .spec:last-child { border-bottom: none; }
}
@media (max-width: 460px) {
  .benefit-grid, .num-grid, .logo-wall { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* ---------------- Reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
