/*
Theme Name: Zeptonic
Theme URI: https://zeptonic.com
Description: Faithful WordPress port of the Zeptonic "Chaos → System" single-file design. Dark-first, custom cursor, preloader, 3D morph canvas, pinned scroll, full animations.
Author: Zeptonic
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zeptonic
*/

/* === All original CSS from the standalone HTML follows === */
/* ════════════════════════════════════════════════════════
   ZEPTONIC — CHAOS → SYSTEM
   3D particle morph · preloader · pinned scroll · cursor
   ════════════════════════════════════════════════════════ */

:root {
  --ink:    #05080f;
  --ink-2:  #0a0f1e;
  --navy:   #1E2A4A;
  --orange: #F4511E;
  --ember:  #FF7A50;
  --green:  #2ecc71;
  --bone:   #EDEDE6;
  --mist:   #8A93AA;
  --line:   rgba(237,237,230,.08);

  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Inter', sans-serif;
  --fm: 'JetBrains Mono', monospace;

  --bg:    var(--ink);
  --panel: var(--ink-2);
  --text:  var(--bone);
  --muted: var(--mist);
}
[data-theme="light"] {
  --bg:    #f2f1ec;
  --panel: #ffffff;
  --text:  #0a0f1e;
  --muted: #4d566e;
  --line:  rgba(10,15,30,.1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s, color .4s;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* grain */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── CUSTOM CURSOR ─── */
@media (pointer: fine) {
  .cur-dot, .cur-ring {
    position: fixed; top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9995;
    transform: translate(-50%,-50%);
  }
  .cur-dot { width: 6px; height: 6px; background: var(--orange); }
  .cur-ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(244,81,30,.5);
    transition: width .25s, height .25s, border-color .25s, background .25s;
  }
  .cur-ring.hov {
    width: 62px; height: 62px;
    border-color: rgba(244,81,30,.9);
    background: rgba(244,81,30,.06);
  }
}
@media (pointer: coarse) { .cur-dot, .cur-ring { display: none; } }

/* ─── PRELOADER ─── */
.loader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transition: transform .9s cubic-bezier(.77,0,.18,1);
}
.loader.done { transform: translateY(-100%); }
.loader-logo {
  font-family: var(--fd);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bone);
  overflow: hidden;
}
.loader-logo span { display: inline-block; transform: translateY(110%); animation: loadup .7s cubic-bezier(.22,1,.36,1) forwards; }
.loader-logo em { font-style: normal; color: var(--orange); }
@keyframes loadup { to { transform: translateY(0); } }
.loader-track { width: min(280px, 60vw); height: 1px; background: rgba(237,237,230,.12); overflow: hidden; }
.loader-fill { height: 100%; width: 0%; background: var(--orange); }
.loader-pct {
  font-family: var(--fm);
  font-size: .68rem; letter-spacing: .3em;
  color: var(--mist);
}

/* progress bar */
.progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--ember));
  z-index: 9980;
}

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }

/* ─── TYPE ─── */
.mono { font-family: var(--fm); font-size: .64rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.mono b { color: var(--orange); font-weight: 500; }
.giant {
  font-family: var(--fd);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3.6rem, 13vw, 12rem);
  line-height: .88;
  letter-spacing: -.01em;
}
.big {
  font-family: var(--fd);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6.5vw, 5.6rem);
  line-height: .92;
}
.outline { color: transparent; -webkit-text-stroke: 1.5px rgba(237,237,230,.3); }
[data-theme="light"] .outline { -webkit-text-stroke-color: rgba(10,15,30,.28); }

/* Premium gradient treatment — reserved for the hero's accent line.
   Solid, warm, shimmering — reads strong even at giant hero sizes. */
.grad-text {
  background: linear-gradient(100deg, var(--orange) 0%, var(--ember) 42%, #ffcda8 58%, var(--orange) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.acc { color: var(--orange); }

/* Hero line 2 — a plain whole-line reveal (not char-split), so the
   gradient-clip renders correctly against real text instead of nested
   per-letter spans. Timed to land where the char-split lines settle. */
.hero-line2 {
  display: inline-block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60%);
  transition: opacity .9s cubic-bezier(.22,1,.36,1) .38s, transform .9s cubic-bezier(.22,1,.36,1) .38s;
}
body.ready .hero-line2 { opacity: 1; transform: translateY(0); }

/* char split */
.chars .ch { display: inline-block; transform: translateY(115%); }
.chars .w { display: inline-block; overflow: hidden; vertical-align: top; }
.chars.play .ch { animation: chup .8s cubic-bezier(.22,1,.36,1) forwards; animation-delay: calc(var(--i) * .022s + var(--d, 0s)); }
@keyframes chup { to { transform: translateY(0); } }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--fd);
  text-transform: uppercase; letter-spacing: .1em;
  font-size: .92rem; font-weight: 700;
  padding: 18px 38px;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: color .3s, border-color .3s;
}
.btn span, .btn svg { position: relative; z-index: 1; }
.btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.btn:hover svg { transform: translateX(5px); }
.btn-fill { background: var(--orange); color: #fff; }
.btn-fill::before {
  content: ''; position: absolute; inset: 0;
  background: var(--text);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s cubic-bezier(.77,0,.18,1);
}
.btn-fill:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-fill:hover { color: var(--bg); }
.btn-line { background: transparent; color: var(--text); border-color: rgba(237,237,230,.22); }
[data-theme="light"] .btn-line { border-color: rgba(10,15,30,.25); }
.btn-line:hover { border-color: var(--orange); color: var(--orange); }

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, transform .4s;
}
header.scrolled {
  background: rgba(5,8,15,.8);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
[data-theme="light"] header.scrolled { background: rgba(242,241,236,.88); }
.hd {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(24px, 5vw, 80px);
  max-width: 1440px; margin: 0 auto;
}
.logo { font-family: var(--fd); font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.logo em { font-style: normal; color: var(--orange); }

/* Remove hover effects from logo (it was picking up button styles) */
.logo:hover,
.logo:hover .logo-img {
  color: inherit;
  border-color: transparent;
  background: none;
  filter: none;
  transform: none;
}
nav { justify-self: center; }
nav ul { display: flex; gap: 34px; list-style: none; }
nav a {
  font-family: var(--fm);
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .25s;
}
nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s cubic-bezier(.77,0,.18,1);
}
nav a:hover { color: var(--text); }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.hd-right { display: flex; align-items: center; gap: 12px; justify-self: end; }

/* icon buttons (toggle, login, chat) share a base */
.hicon {
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .25s, color .25s, background .25s;
  flex-shrink: 0;
}
.hicon:hover { border-color: var(--orange); color: var(--orange); }
.hicon svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
/* Clean icon toggle rules - only sun on dark, only moon on light */
.icon-sun { display: block; }
.icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* login = icon + text on desktop */
.hlogin { width: auto; border-radius: 999px; padding: 0 16px; gap: 8px; }
.hlogin span {
  font-family: var(--fd); text-transform: uppercase; font-size: .8rem;
  font-weight: 700; letter-spacing: .08em;
}

/* phone in header */
.hphone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: .7rem; letter-spacing: .08em;
  color: var(--muted);
  white-space: nowrap;
  transition: color .25s;
  padding: 0 4px;
}
.hphone:hover { color: var(--orange); }
.hphone svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* chat trigger — subtle green live dot */
.hchat { position: relative; }
.hchat::after {
  content: ''; position: absolute; top: 7px; right: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--bg);
  animation: blink 2.2s ease-in-out infinite;
}

/* hamburger — hidden on desktop */
.burger {
  width: 38px; height: 38px;
  border: 1px solid var(--line); border-radius: 50%;
  background: transparent; color: var(--text);
  display: none; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: border-color .25s;
}
.burger:hover { border-color: var(--orange); }
.burger svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 950;
  background: var(--ink);
  transform: translateY(-100%);
  transition: transform .6s cubic-bezier(.77,0,.18,1);
  display: flex; flex-direction: column;
  padding: 90px clamp(28px,7vw,48px) 40px;
  overflow-y: auto;
}
[data-theme="light"] .mobile-menu { background: var(--bg); }
.mobile-menu.open { transform: translateY(0); }
.mm-close {
  position: absolute; top: 22px; right: clamp(20px,5vw,40px);
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--text);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.mm-close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.mm-nav { list-style: none; margin-bottom: auto; }
.mm-nav li { overflow: hidden; }
.mm-nav a {
  display: block;
  font-family: var(--fd); text-transform: uppercase; font-weight: 800;
  font-size: clamp(2.2rem, 9vw, 3.4rem); line-height: 1.3;
  color: var(--text);
  transition: color .25s, padding-left .25s;
}
.mm-nav a:hover, .mm-nav a:focus { color: var(--orange); padding-left: 10px; }
.mm-nav .idx {
  font-family: var(--fm); font-size: .6rem; letter-spacing: .2em;
  color: var(--orange); vertical-align: super; margin-right: 10px;
}
.mm-actions {
  display: flex; align-items: center; gap: 14px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.mm-actions .hicon { width: 46px; height: 46px; }
.mm-actions .hicon svg { width: 17px; height: 17px; }
.mm-phone-full {
  margin-left: auto;
  font-family: var(--fm); font-size: .78rem; letter-spacing: .06em;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.mm-phone-full svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* responsive header switching */
@media (max-width: 1040px) {
  nav, .hd-right .hlogin span, .hd-right .hphone, .hd-right .hchat { display: none; }
  .hd-right .hlogin { width: 38px; border-radius: 50%; padding: 0; }
  .burger { display: flex; }
}
@media (min-width: 1041px) {
  .mobile-menu { display: none; }
}

/* ─── HERO ─── */
.hero {
  height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: clamp(88px, 12vh, 120px);
  box-sizing: border-box;
}
#morph { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-in { position: relative; z-index: 2; }
.hero-tag { display: flex; align-items: center; gap: 18px; margin-bottom: clamp(24px, 4vh, 42px); opacity: 0; transition: opacity .8s ease .1s; }
body.ready .hero-tag { opacity: 1; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--fm); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 16px;
}
.pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }
.hero h1 { margin-bottom: clamp(28px, 4.5vh, 50px); }
.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s ease .9s, transform .9s cubic-bezier(.22,1,.36,1) .9s;
}
body.ready .hero-foot { opacity: 1; transform: translateY(0); }
.hero-sub { color: var(--muted); font-size: 1.02rem; line-height: 1.75; max-width: 380px; }
.hero-sub b { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── MARQUEE ─── */
.marq { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; overflow: hidden; }
.marq-t { display: flex; gap: 70px; width: max-content; animation: marq 40s linear infinite; }
.marq-i {
  font-family: var(--fd); text-transform: uppercase; font-weight: 700;
  font-size: .95rem; letter-spacing: .24em; color: var(--muted);
  display: flex; align-items: center; gap: 70px; white-space: nowrap;
}
.marq-i::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ─── PINNED HORIZONTAL — TWO PATHS ─── */
.hpin { height: 320vh; position: relative; }
.hpin-sticky {
  position: sticky; top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 64px 0;
}
.hpin-track {
  display: flex;
  gap: clamp(30px, 5vw, 80px);
  padding: 0 clamp(24px, 6vw, 90px);
  will-change: transform;
}
.hcard {
  flex-shrink: 0;
  width: min(76vw, 880px);
  min-height: min(68svh, 620px);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(36px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
}
.hcard-intro {
  flex-shrink: 0;
  width: min(60vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hcard-intro .big { margin-top: 18px; }
.hcard-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(244,81,30,.35);
  background: rgba(244,81,30,.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.hcard-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hnum {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(4rem, 8vw, 7.5rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(244,81,30,.5);
  margin-bottom: 24px;
}
.hcard h3 {
  font-family: var(--fd); text-transform: uppercase; font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem); line-height: .95;
  margin-bottom: 20px;
}
.hcard > p { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 520px; margin-bottom: 30px; }
.htags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.htag {
  font-family: var(--fm); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid var(--line); color: var(--muted);
}

/* ── ROUTING CARD SYSTEM PREVIEW ── */
.hpreview {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 18px 20px;
  margin-bottom: 30px;
  max-width: 520px;
}
.hpreview-label {
  display: block;
  font-family: var(--fm); font-size: .56rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.hpreview-bars { display: flex; flex-direction: column; gap: 9px; }
.hpv { display: grid; grid-template-columns: 84px 1fr; gap: 12px; align-items: center; }
.hpv span { font-family: var(--fm); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.hpv-t { height: 4px; background: var(--line); overflow: hidden; }
.hpv-f { height: 100%; background: linear-gradient(90deg, var(--orange), var(--ember)); }
.hpreview-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.hchip {
  font-family: var(--fm); font-size: .6rem; letter-spacing: .05em;
  padding: 6px 12px;
  border: 1px solid rgba(244,81,30,.3);
  color: var(--orange);
  background: rgba(244,81,30,.05);
}

.hcard .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 760px) {
  .hpin { height: auto; }
  .hpin-sticky { position: static; height: auto; overflow: visible; }
  .hpin-track { flex-direction: column; transform: none !important; padding: clamp(60px, 10vh, 90px) 24px; }
  .hcard, .hcard-intro { width: 100%; min-height: auto; }
  .hero-ctas { width: 100%; }
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 84px;
    padding-bottom: 40px;
  }
  .hero-foot { align-items: flex-start; }
}

/* ─── SECTIONS ─── */
.sec { padding: clamp(100px, 15vh, 190px) 0; position: relative; }

/* reveals */
.rv { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1); }
.rv.in { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .14s; }

/* directional slide reveals — used on images throughout to show scroll-driven motion */
.rv.rv-l { transform: translateX(-70px); }
.rv.rv-r { transform: translateX(70px); }
.rv.rv-l.in, .rv.rv-r.in { transform: translateX(0); }

/* parallax */
[data-speed] { will-change: transform; }

/* ─── SECTION HEAD (generic, reused by How We Help / Why Zeptonic) ─── */
.sechead { max-width: 640px; }
.sechead .big { margin-top: 4px; }
.sechead-sub { color: var(--muted); font-size: .98rem; line-height: 1.8; margin-top: 20px; max-width: 620px; }

/* ─── REAL PROBLEM ─── */
.probgrid {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}
.probgrid-copy .mono { display: block; margin-bottom: 16px; }
.problem-intro { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin: 22px 0 16px; }
.problem-intro b { color: var(--text); font-weight: 600; }
.problem-note { color: var(--muted); font-size: .92rem; }

/* ── LEAK MAP ── */
.leakmap {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 40px);
}
.leakmap-label {
  display: block;
  font-family: var(--fm); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 22px;
}
.leak-step {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.leak-step:first-of-type { border-top: 1px solid var(--line); }
.leak-in {
  font-size: .9rem; color: var(--text); font-weight: 500;
}
.leak-out {
  font-size: .9rem; color: var(--muted);
}
.leak-arrow { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; justify-self: center; }
.problem-highlight {
  border-left: 3px solid var(--orange);
  padding: 6px 0 6px 26px;
  margin-top: 26px;
}
.problem-highlight p {
  font-family: var(--fd);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
}
.problem-highlight .hl-final { color: var(--orange); margin-bottom: 0; }
@media (max-width: 860px) { .probgrid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .leak-step { grid-template-columns: 1fr; gap: 4px; text-align: left; }
  .leak-arrow { transform: rotate(90deg); margin: 2px 0; }
}

/* ─── HOW WE HELP ─── */
.howgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 32px);
}
.howtrack {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(30px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}
.howtrack-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.howtrack-head svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.howtrack-head span {
  font-family: var(--fd); text-transform: uppercase; font-weight: 700;
  font-size: 1.05rem; letter-spacing: .02em; color: var(--text);
}
.howsteps { display: flex; flex-direction: column; flex: 1; margin-bottom: 26px; }
.howstep { padding: 18px 0; border-bottom: 1px solid var(--line); }
.howstep:first-child { padding-top: 0; }
.howstep:last-child { border-bottom: none; padding-bottom: 0; }
.hs-num {
  display: inline-block;
  font-family: var(--fm); font-size: .6rem; letter-spacing: .1em;
  color: var(--muted); margin-right: 10px;
}
.hs-tag {
  display: inline-block;
  font-family: var(--fm); text-transform: uppercase; font-size: .6rem;
  letter-spacing: .16em; color: var(--orange); margin-bottom: 8px;
}
.howstep h4 {
  font-family: var(--fd); text-transform: uppercase; font-weight: 700;
  font-size: 1.15rem; margin-bottom: 8px; color: var(--text);
}
.howstep p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── GHL-STYLE PIPELINE PREVIEW — recolored to Zeptonic palette ── */
.ghl-pipeline {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 16px 16px 18px;
  margin-bottom: 20px;
}
.ghl-pipeline-label {
  display: block;
  font-family: var(--fm); font-size: .56rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.ghl-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ghl-col { display: flex; flex-direction: column; gap: 6px; }
.ghl-col-head {
  font-family: var(--fm); font-size: .52rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); padding-bottom: 6px; border-bottom: 2px solid var(--line);
  margin-bottom: 2px;
}
.ghl-col-won { color: var(--orange); border-bottom-color: var(--orange); }
.ghl-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 2px solid var(--muted);
  padding: 8px 9px;
  font-size: .68rem;
  color: var(--text);
  line-height: 1.4;
}
.ghl-card-won { border-left-color: var(--orange); }
@media (max-width: 640px) { .ghl-cols { grid-template-columns: 1fr 1fr; } }

.howtrack-note {
  font-family: var(--fm); font-size: .72rem; letter-spacing: .04em;
  color: var(--muted); line-height: 1.7;
  border: 1px solid var(--line);
  padding: 12px 14px;
  margin-bottom: 20px;
}
.howtrack-cta { width: 100%; }
@media (max-width: 860px) { .howgrid { grid-template-columns: 1fr; } }

/* ─── WHY ZEPTONIC ─── */
.whygrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 44px;
  margin-bottom: 36px;
}
.whycard {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 40px);
}
.whycard h4 {
  font-family: var(--fd); text-transform: uppercase; font-weight: 700;
  font-size: 1.05rem; margin-bottom: 10px; color: var(--text);
}
.whycard p { font-size: .92rem; color: var(--muted); line-height: 1.75; }
@media (max-width: 640px) { .whygrid { grid-template-columns: 1fr; } }

/* ─── CUSTOM SECTION ─── */
.custombox {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.custombox-copy .mono { display: block; margin-bottom: 16px; }
.custombox-copy .big { margin-bottom: 22px; }
.custombox-copy p { color: var(--muted); line-height: 1.85; max-width: 460px; margin-bottom: 18px; }
.custombox-cards { display: flex; flex-direction: column; gap: 14px; }
.cc-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cc-num {
  font-family: var(--fd); font-weight: 800;
  font-size: 1.5rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.2px rgba(244,81,30,.55);
  flex-shrink: 0;
  padding-top: 2px;
}
.cc-body { display: block; }
.cc-label {
  display: block;
  font-family: var(--fm); text-transform: uppercase; font-size: .64rem;
  letter-spacing: .14em; color: var(--orange); margin-bottom: 8px;
}
.cc-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
@media (max-width: 860px) { .custombox { grid-template-columns: 1fr; } }

/* ─── HUMAN TRUST BANDS ─── */
.people {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.people.flip .people-img { order: -1; }
.people-copy .mono { display: block; margin-bottom: 16px; }
.people-copy .big { margin-bottom: 24px; }
.people-copy p { color: var(--muted); line-height: 1.85; max-width: 460px; margin-bottom: 20px; }
.people-copy p b { color: var(--text); font-weight: 600; }
.people-stats { display: flex; gap: 40px; margin-top: 34px; }
.people-stat .n { font-family: var(--fd); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--orange); }
.people-stat .l { font-family: var(--fm); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* image frame with depth */
.img-frame {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--panel);
  box-shadow: 0 50px 110px rgba(0,0,0,.5);
}
[data-theme="light"] .img-frame { box-shadow: 0 50px 110px rgba(10,15,30,.14); }
.img-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); z-index: 3;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-frame .tag {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  font-family: var(--fm); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bone);
  background: rgba(5,8,15,.7);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border: 1px solid rgba(237,237,230,.15);
}
/* placeholder look when no image yet */
.img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 30px;
  background:
    linear-gradient(135deg, rgba(244,81,30,.08), transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(237,237,230,.02) 12px, rgba(237,237,230,.02) 24px);
}
.img-placeholder svg { width: 40px; height: 40px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: .7; }
.img-placeholder .ph-title { font-family: var(--fd); text-transform: uppercase; font-weight: 700; font-size: 1rem; letter-spacing: .04em; color: var(--muted); }
.img-placeholder .ph-sub { font-family: var(--fm); font-size: .58rem; letter-spacing: .12em; color: var(--muted); max-width: 240px; line-height: 1.7; }
@media (max-width: 860px) {
  .people { grid-template-columns: 1fr; }
  .people.flip .people-img { order: 0; }
}

/* ─── MINI TRUST STRIP — quick photo burst before the final CTA ─── */
.triostrip-head { max-width: 560px; margin-bottom: 36px; }
.triostrip-head .big { margin-top: 12px; }
.triostrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trio-cell {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.trio-cell .img-placeholder { padding: 18px; gap: 8px; }
.trio-cell .img-placeholder svg { width: 26px; height: 26px; }
.trio-cell .ph-title { font-size: .82rem; }
.trio-cell .ph-sub { font-size: .52rem; }
.trio-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) {
  .triostrip { grid-template-columns: 1fr; }
}

/* ─── FINALE ─── */
.finale { text-align: center; padding: clamp(120px, 18vh, 220px) 0; position: relative; overflow: hidden; }
.finale::before {
  content: ''; position: absolute; bottom: -45%; left: 50%;
  transform: translateX(-50%);
  width: 95vw; height: 75vh;
  background: radial-gradient(ellipse, rgba(244,81,30,.16), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.finale .wrap { position: relative; z-index: 2; }
.finale .giant { margin: 26px 0 34px; }
.finale p { color: var(--muted); max-width: 480px; margin: 0 auto 44px; line-height: 1.8; }
.fin-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--line); padding: clamp(52px, 8vh, 84px) 0 34px; }
.fgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.fbrand p { color: var(--muted); font-size: .87rem; line-height: 1.75; max-width: 250px; margin-top: 14px; }
.fcol h5 { font-family: var(--fm); text-transform: uppercase; font-size: .58rem; font-weight: 500; letter-spacing: .26em; color: var(--text); margin-bottom: 20px; }
.fcol a { display: block; font-size: .87rem; color: var(--muted); margin-bottom: 11px; transition: color .2s; }
.fcol a:hover { color: var(--orange); }
.fbot {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--fm); font-size: .6rem; letter-spacing: .12em; color: var(--muted);
}
@media (max-width: 860px) { .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fgrid { grid-template-columns: 1fr; } }

/* scroll top */
.stp {
  position: fixed; bottom: 26px; right: 26px;
  width: 44px; height: 44px;
  background: var(--orange); border: none; color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 800;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .25s;
  pointer-events: none;
}
.stp.show { opacity: 1; transform: none; pointer-events: auto; }
.stp:hover { background: var(--ember); }
.stp svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .chars .ch { transform: none; }
  .hero-tag, .hero-foot, .hero-line2 { opacity: 1; transform: none; }
  .rv { opacity: 1; transform: none; }
  .loader { display: none; }
  #morph { display: none; }
  body.locked { overflow: auto; }
  .cur-dot, .cur-ring { display: none; }
}

/* === Logo image support (to prevent huge images breaking the fixed header) === */
.logo img,
.logo .custom-logo,
.logo .custom-logo-link {
  max-height: 56px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
}

/* Keep header from growing too much with logo */
header .hd {
  min-height: 60px;
}

/* Additional logo image rules for the direct <img class="logo-img"> output */
.logo .logo-img {
  max-height: 56px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
}

/* === Dark / Light logo switching === */
.logo .logo-dark,
.logo .logo-default {
  display: block;
}
.logo .logo-light {
  display: none;
}

[data-theme="light"] .logo .logo-dark,
[data-theme="light"] .logo .logo-default {
  display: none;
}
[data-theme="light"] .logo .logo-light {
  display: block;
}

/* Make sure logo images are sized properly */
.logo .logo-img {
  max-height: 56px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}

/* === Fix: Logo dark/light switching - force with higher specificity and !important === */
.logo .logo-light {
  display: none !important;
}
.logo .logo-dark,
.logo .logo-default {
  display: inline-block !important;
}

[data-theme="light"] .logo .logo-dark,
[data-theme="light"] .logo .logo-default {
  display: none !important;
}
[data-theme="light"] .logo .logo-light {
  display: inline-block !important;
}

/* === Fix: Theme toggle icons - ensure only one shows === */
.icon-sun {
  display: block;
}
.icon-moon {
  display: none;
}
[data-theme="light"] .icon-sun {
  display: none;
}
[data-theme="light"] .icon-moon {
  display: block;
}

/* === Strong fix for theme toggle icons (sun/moon) ===
   On dark: only sun visible
   On light: only moon visible
   Force hide the other one */
#themeToggle .icon-sun,
.icon-sun {
  display: block !important;
}
#themeToggle .icon-moon,
.icon-moon {
  display: none !important;
}

[data-theme="light"] #themeToggle .icon-sun,
[data-theme="light"] .icon-sun {
  display: none !important;
}
[data-theme="light"] #themeToggle .icon-moon,
[data-theme="light"] .icon-moon {
  display: block !important;
}

/* Ensure the svgs inside the toggle button don't stack visually */
#themeToggle svg {
  position: relative;
}

/* wp-theme-sync-test */
