/* ============================================================
   smmthinks.in — visual system
   Matte black + deep-navy wash, electric lime accent, glass.
   ============================================================ */

:root {
  --bg: #050608;
  --bg-2: #080a0f;
  --navy: #0a1530;
  --lime: #C5FF4A;            /* bright fill accent (buttons, chips, rings) */
  --lime-dim: #a8e02f;
  --accent-ink: #C5FF4A;      /* accent used as TEXT / dots / key numbers */
  /* themeable accent roles (light theme remaps these to a refined green family) */
  --accent-fill: #C5FF4A;     /* solid accent fills: buttons, badges, featured */
  --on-accent: #0a0c08;       /* text/icon sitting ON an accent fill */
  --accent-tint: rgba(197,255,74,0.08);
  --accent-tint-2: rgba(197,255,74,0.16);
  --accent-border: rgba(197,255,74,0.5);
  --accent-soft: rgba(197,255,74,0.08);
  --accent-glow: rgba(197,255,74,0.45);
  --ink: #f4f6f3;
  --ink-2: #b9c0bd;
  --ink-3: #7d847f;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-2: rgba(255, 255, 255, 0.05);
  --hair: rgba(255, 255, 255, 0.08);
  --hair-2: rgba(255, 255, 255, 0.12);
  --grid-line: rgba(255,255,255,0.022);
  --track: rgba(255,255,255,0.08);
  --nav-bg: rgba(5,6,8,0.72);
  --modal-bg: #0a0d13;
  --modal-scrim: rgba(3,4,6,0.7);

  --font-head: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Geist", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --font-serif: "Instrument Serif", Georgia, serif;

  --maxw: 1200px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Background washes + grid + grain, fixed behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(18, 38, 86, 0.55), transparent 60%),
    radial-gradient(900px 600px at 8% 12%, rgba(12, 26, 60, 0.40), transparent 62%),
    radial-gradient(700px 700px at 50% 108%, rgba(120, 170, 40, 0.06), transparent 60%),
    var(--bg);
  animation: bgDrift 26s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: -40px 30px, 50px -20px, 0 -30px, 0 0; }
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 35%, transparent 100%);
}

/* grain overlay element (mounted by app) */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--accent-fill); color: var(--on-accent); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-ink);
  box-shadow: 0 0 10px var(--accent-glow);
}
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.display {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  text-wrap: balance;
}
.lead { color: var(--ink-2); font-size: clamp(16px, 1.5vw, 19px); max-width: 60ch; }
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent-ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  min-height: 48px;
  transition: transform .18s ease, background .18s ease, box-shadow .25s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--accent-fill);
  color: var(--on-accent);
  font-weight: 600;
  box-shadow: 0 0 0 0 var(--accent-glow), 0 8px 30px var(--accent-soft);
}
.btn-primary:hover {
  box-shadow: 0 0 30px var(--accent-glow), 0 8px 34px var(--accent-soft);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--glass);
  color: var(--ink);
  border: 1px solid var(--hair-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--glass-2); border-color: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 16px; min-height: 56px; }
.btn-sm { padding: 9px 16px; font-size: 13px; min-height: 38px; }

/* ---------- glass surfaces ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--hair);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-ink); box-shadow: 0 0 8px var(--accent-glow); }

/* fade-up reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: linear-gradient(90deg, rgba(197,255,74,0.08), rgba(197,255,74,0.03));
  border-bottom: 1px solid var(--hair);
  font-size: 13px;
  position: relative;
  z-index: 60;
}
.announce-row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px 18px; padding: 9px 24px; text-align: center;
}
.announce .pill { color: var(--accent-ink); font-family: var(--font-mono); letter-spacing: .04em; }
.announce .sep { color: var(--ink-3); }
.announce a { color: var(--ink-2); transition: color .15s; }
.announce a:hover { color: var(--ink); }
.announce .links { display: flex; gap: 16px; align-items: center; }
.region-toggle {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  padding: 4px 11px; border-radius: 999px;
  border: 1px solid var(--hair-2); background: rgba(255,255,255,0.04);
  font-size: 12px; color: var(--ink-2); transition: all .15s;
}
.region-toggle:hover { border-color: var(--lime); color: var(--ink); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--hair);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.logo .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent-fill); color: var(--on-accent); display: grid; place-items: center;
  box-shadow: 0 0 18px var(--accent-glow);
}
.logo .mark svg { width: 20px; height: 20px; }
.logo b { font-weight: 700; }
.logo .tld { color: var(--accent-ink); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--ink-2); transition: color .15s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(60px, 8vw, 110px); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero h1 {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(40px, 6.2vw, 78px); line-height: 0.98; letter-spacing: -0.03em;
  margin-bottom: 22px; text-wrap: balance;
}
.hero h1 .serif-accent { font-size: 1.02em; }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-2); max-width: 52ch; margin-bottom: 26px; }
.price-chip {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px;
  padding: 9px 16px 9px 9px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--hair-2);
}
.price-chip .badge { background: var(--accent-fill); color:var(--on-accent); font-weight:700; font-size:12px; padding:5px 11px; border-radius:999px; font-family: var(--font-mono); }
.price-chip .was { color: var(--ink-3); text-decoration: line-through; font-size: 14px; }
.price-chip .now { font-weight: 700; font-size: 18px; }
.price-chip .now small { color: var(--ink-3); font-weight: 400; font-size: 12px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-chips { display: flex; gap: 10px 22px; flex-wrap: wrap; }
.trust-chips .t { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); }
.trust-chips .t svg { width: 16px; height: 16px; color: var(--accent-ink); }

/* hero visual */
.hero-visual { position: relative; min-height: 460px; display: grid; place-items: center; }
.halo {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(197,255,74,0.20), rgba(197,255,74,0.04) 45%, transparent 70%);
  filter: blur(8px); z-index: 0;
  animation: haloPulse 6s ease-in-out infinite;
}
@keyframes haloPulse { 0%,100%{ transform: scale(1); opacity:.85 } 50%{ transform: scale(1.08); opacity:1 } }

.laptop { position: relative; z-index: 2; width: min(100%, 480px); transform: perspective(1400px) rotateY(-9deg) rotateX(3deg); }
.laptop-screen {
  background: #0b0e14; border: 1px solid var(--hair-2); border-radius: 14px 14px 4px 4px;
  padding: 10px; box-shadow: 0 40px 90px rgba(0,0,0,0.6); position: relative; overflow: hidden;
}
.laptop-screen::after { /* sheen */
  content: ""; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: skewX(-18deg); animation: sheen 5.5s ease-in-out infinite;
}
@keyframes sheen { 0%,55%{ left:-60% } 80%,100%{ left:130% } }
.laptop-base { height: 12px; background: linear-gradient(#1a1f29,#0c0f15); border-radius: 0 0 14px 14px; border:1px solid var(--hair); border-top:none; position: relative; z-index:2; width: min(100%, 480px); margin: 0 auto;}
.laptop-notch { width: 80px; height: 6px; background:#05070b; border-radius:0 0 6px 6px; margin: 0 auto 8px; }

/* mini fake site inside laptop */
.mini { border-radius: 8px; overflow: hidden; background: #fbfbf7; color:#15171a; font-family: var(--font-body); }
.mini-top { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-bottom: 1px solid #ececec; }
.mini-logo { font-family: var(--font-head); font-weight:700; font-size: 12px; }
.mini-dot { width:7px;height:7px;border-radius:50%; background:#15171a; display:inline-block; margin-right:5px; }
.mini-nav { display:flex; gap:10px; font-size:8px; color:#888; }
.mini-hero { padding: 16px 12px 14px; }
.mini-hero h4 { font-family: var(--font-head); font-size: 17px; line-height:1.05; letter-spacing:-.02em; margin-bottom:6px; }
.mini-hero p { font-size: 8.5px; color:#777; margin-bottom: 9px; max-width: 80%; }
.mini-btn { display:inline-block; background:#15171a; color:#fff; font-size:8px; padding:5px 11px; border-radius:999px; }
.mini-imgs { display:grid; grid-template-columns: repeat(3,1fr); gap:6px; padding: 0 12px 14px; }
.mini-imgs i { display:block; height:34px; border-radius:5px; background: linear-gradient(135deg,#eee,#ddd); }
.mini-imgs i:nth-child(1){ background:linear-gradient(135deg,#1a2440,#33507f);} 
.mini-imgs i:nth-child(2){ background:linear-gradient(135deg,#c9d8a0,#9fbf5e);} 
.mini-imgs i:nth-child(3){ background:linear-gradient(135deg,#e8d6c2,#cbb097);} 

/* floating phone */
.phone {
  position: absolute; z-index: 3; right: -6px; bottom: 4px; width: 116px;
  border-radius: 18px; background:#0b0e14; border:1px solid var(--hair-2); padding:6px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.6);
  animation: floaty 5s ease-in-out infinite;
}
.phone-scr { border-radius: 13px; overflow:hidden; background:#101826; }
.phone-scr .ph-hero { height: 70px; background: linear-gradient(160deg,#16223e,#0e1830); position:relative; }
.phone-scr .ph-hero::after{ content:""; position:absolute; left:10px; bottom:10px; width:55%; height:7px; border-radius:3px; background: var(--lime);}
.phone-scr .ph-body { padding:8px; display:grid; gap:5px; }
.phone-scr .ph-body i { height:7px; border-radius:3px; background: rgba(255,255,255,.12); }
.phone-scr .ph-body i:nth-child(2){ width:70%; }

/* floating UI cards */
.float-card {
  position: absolute; z-index: 4; display:flex; align-items:center; gap:10px;
  padding: 11px 14px; border-radius: 14px; background: rgba(10,13,18,0.82);
  border: 1px solid var(--hair-2); backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}
.float-card .ring {
  width: 36px; height: 36px; border-radius: 50%; display:grid; place-items:center; flex: none;
  font-family: var(--font-mono); font-weight: 600; font-size: 12px; color: var(--lime);
  background: conic-gradient(var(--lime) calc(var(--p,98) * 1%), rgba(255,255,255,0.1) 0);
}
.float-card .ring span { width:28px;height:28px;border-radius:50%; background:#0a0d12; display:grid; place-items:center; }
.float-card .meta b { display:block; font-size:14px; font-weight:600; }
.float-card .meta small { color: var(--ink-3); font-size: 11px; font-family: var(--font-mono); }
.fc-speed { top: 24px; left: -8px; animation: floaty 6s ease-in-out infinite; }
.fc-launch { bottom: 70px; left: -20px; animation: floaty 5.5s ease-in-out .6s infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(var(--py, 0px)) } 50%{ transform: translateY(calc(var(--py, 0px) - 12px)) } }

/* ============================================================
   MARQUEE (trust + testimonials)
   ============================================================ */
.marquee { position: relative; overflow: hidden; width: 100%; }
.marquee::before, .marquee::after {
  content:""; position:absolute; top:0; bottom:0; width: 14%; z-index: 2; pointer-events:none;
}
.marquee::before { left:0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right:0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: flex; width: max-content; gap: 0; animation: scrollX 42s linear infinite; }
.marquee-track.rev { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.trust-strip { padding: 30px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.trust-strip .label { text-align:center; font-family: var(--font-mono); font-size:11px; letter-spacing:.2em; text-transform:uppercase; color: var(--ink-3); margin-bottom: 18px; }
.trust-item { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--ink-3); padding: 0 30px; white-space: nowrap; transition: color .2s; letter-spacing:-.01em;}
.trust-item:hover { color: var(--ink-2); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.step { position: relative; }
.step-card { padding: 26px 22px; height: 100%; transition: border-color .2s, transform .2s; }
.step-card:hover { border-color: var(--hair-2); transform: translateY(-3px); }
.step-num { font-family: var(--font-mono); font-size: 12px; color: var(--accent-ink); letter-spacing:.1em; margin-bottom: 16px; }
.step-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); border:1px solid var(--accent-tint-2); display:grid; place-items:center; margin-bottom: 16px; color: var(--accent-ink); }
.step-ico svg { width: 22px; height: 22px; }
.step h3 { font-family: var(--font-head); font-weight:600; font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-2); }
.step .arrow { position: absolute; top: 48px; right: -19px; color: var(--ink-3); z-index: 3; }
.step:last-child .arrow { display:none; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ind-card {
  position: relative; padding: 26px 24px; min-height: 150px; overflow: hidden;
  transition: border-color .2s, transform .2s; cursor: default;
}
.ind-card::before { /* cursor spotlight */
  content:""; position:absolute; inset:0; opacity:0; transition: opacity .3s;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), var(--accent-tint-2), transparent 60%);
}
.ind-card:hover::before { opacity:1; }
.ind-card:hover { border-color: var(--hair-2); transform: translateY(-3px); }
.ind-ico { width:46px;height:46px;border-radius:12px; background: var(--glass-2); border:1px solid var(--hair); display:grid;place-items:center; color: var(--accent-ink); margin-bottom:16px; position:relative; z-index:1;}
.ind-ico svg{ width:23px;height:23px;}
.ind-card h3 { font-family: var(--font-head); font-weight:600; font-size:18px; margin-bottom:6px; position:relative; z-index:1;}
.ind-card p { font-size: 13.5px; color: var(--ink-2); position:relative; z-index:1;}

/* ============================================================
   SHOWCASE CAROUSEL
   ============================================================ */
.showcase-scroller { display:flex; gap: 22px; overflow-x: auto; padding: 6px 24px 28px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.showcase-scroller::-webkit-scrollbar { height: 8px; }
.showcase-scroller::-webkit-scrollbar-thumb { background: var(--hair-2); border-radius: 999px; }
.showcase-scroller::-webkit-scrollbar-track { background: transparent; }
.show-card { scroll-snap-align: center; flex: 0 0 min(86vw, 560px); border-radius: var(--r-lg); overflow:hidden; border:1px solid var(--hair); background: var(--glass); }
.show-frame { aspect-ratio: 16/10.5; overflow: hidden; position: relative; }
.show-meta { display:flex; align-items:center; justify-content:space-between; padding: 16px 20px; }
.show-meta .nm { font-family: var(--font-head); font-weight:600; font-size:16px; }
.show-meta .tag { font-family: var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-3); padding:4px 10px; border:1px solid var(--hair); border-radius:999px;}
.show-hint { text-align:center; color: var(--ink-3); font-size:13px; font-family: var(--font-mono); margin-top: 6px; display:flex; align-items:center; justify-content:center; gap:8px;}

/* --- mini light-theme site templates (each distinct) --- */
.tpl { width:100%; height:100%; font-family: "Geist", sans-serif; overflow:hidden; display:flex; flex-direction:column; }
.tpl-top { display:flex; align-items:center; justify-content:space-between; padding: 12px 18px; font-size: 11px; }
.tpl-nav { display:flex; gap:14px; opacity:.7; font-size:10px; }
.tpl-logo { font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size:14px; letter-spacing:-.01em;}
.tpl-body { flex:1; padding: 8px 18px 18px; display:flex; flex-direction:column; justify-content:center; }
.tpl h5 { font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size: 28px; line-height:1.0; letter-spacing:-.02em; margin-bottom:10px; }
.tpl .ser { font-family:"Instrument Serif",serif; font-style:italic; font-weight:400; }
.tpl p { font-size: 11px; line-height:1.4; opacity:.72; max-width: 70%; margin-bottom: 14px; }
.tpl .cta { display:inline-block; font-size:10px; padding:7px 15px; border-radius:999px; width:fit-content; font-weight:600; }
.tpl .row { display:flex; gap:8px; margin-top: 14px; }
.tpl .row i { flex:1; height: 46px; border-radius:7px; display:block; }
/* restaurant: cream/burgundy */
.tpl-rest { background:#f6efe4; color:#3a1320; }
.tpl-rest .tpl-top{ border-bottom:1px solid #e4d5c2;}
.tpl-rest .cta{ background:#6e1326; color:#f6efe4;}
.tpl-rest .ser{ color:#a8324a;}
.tpl-rest .row i:nth-child(1){background:#6e1326;} .tpl-rest .row i:nth-child(2){background:#caa46a;} .tpl-rest .row i:nth-child(3){background:#9c2236;}
/* saas: white/indigo */
.tpl-saas { background:#ffffff; color:#11132b; }
.tpl-saas .tpl-top{ border-bottom:1px solid #ececf4;}
.tpl-saas .cta{ background:#4338ca; color:#fff;}
.tpl-saas .ser{ color:#6366f1;}
.tpl-saas .row i:nth-child(1){background:#eef0ff;} .tpl-saas .row i:nth-child(2){background:#4338ca;} .tpl-saas .row i:nth-child(3){background:#c7d2fe;}
/* photographer: paper editorial */
.tpl-photo { background:#efece6; color:#1c1b18; }
.tpl-photo .tpl-top{ border-bottom:1px solid #ddd8cf;}
.tpl-photo h5{ font-family:"Instrument Serif",serif; font-style:italic; font-weight:400; font-size:32px;}
.tpl-photo .cta{ background:#1c1b18; color:#efece6;}
.tpl-photo .row i:nth-child(1){background:#928a7a;} .tpl-photo .row i:nth-child(2){background:#c4bcae;} .tpl-photo .row i:nth-child(3){background:#6e665a;}
/* real estate: navy */
.tpl-estate { background:#0f2038; color:#eaf0fb; }
.tpl-estate .tpl-top{ border-bottom:1px solid rgba(255,255,255,.1);}
.tpl-estate .cta{ background:#c9a96a; color:#0f2038;}
.tpl-estate .ser{ color:#c9a96a;}
.tpl-estate p{ opacity:.6;}
.tpl-estate .row i:nth-child(1){background:#1c3556;} .tpl-estate .row i:nth-child(2){background:#c9a96a;} .tpl-estate .row i:nth-child(3){background:#27456b;}
/* studio: forest green */
.tpl-studio { background:#eef2ea; color:#16291c; }
.tpl-studio .tpl-top{ border-bottom:1px solid #d8e0d2;}
.tpl-studio .cta{ background:#1e4d2b; color:#eef2ea;}
.tpl-studio .ser{ color:#2f7d44;}
.tpl-studio .row i:nth-child(1){background:#1e4d2b;} .tpl-studio .row i:nth-child(2){background:#9cc4a3;} .tpl-studio .row i:nth-child(3){background:#346b3f;}

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 168px; gap: 16px; }
.cell { padding: 24px; border-radius: var(--r-lg); border: 1px solid var(--hair); background: var(--glass); position: relative; overflow: hidden; transition: border-color .2s; }
.cell:hover { border-color: var(--hair-2); }
.cell h3 { font-family: var(--font-head); font-weight:600; font-size: 17px; margin-bottom: 6px; }
.cell p { font-size: 13px; color: var(--ink-2); }
.cell .big { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 4vw, 52px); letter-spacing:-.03em; line-height:1; color: var(--accent-ink); }
.cell .big small { font-size: 18px; color: var(--ink-2); font-weight:500;}
.cell-2 { grid-column: span 2; }
.cell-r2 { grid-row: span 2; }
.cell .mono-label { font-family: var(--font-mono); font-size: 11px; letter-spacing:.12em; text-transform:uppercase; color: var(--ink-3); margin-bottom: 14px; }
/* seo bars */
.seo-bars { display:flex; align-items:flex-end; gap:7px; height: 60px; margin-top: 14px; }
.seo-bars i { flex:1; background: linear-gradient(to top, var(--accent-tint-2), var(--accent-ink)); border-radius: 4px 4px 0 0; animation: growBar 2.4s ease-in-out infinite; }
.seo-bars i:nth-child(2){ animation-delay:.2s } .seo-bars i:nth-child(3){ animation-delay:.4s } .seo-bars i:nth-child(4){ animation-delay:.6s } .seo-bars i:nth-child(5){ animation-delay:.8s }
@keyframes growBar { 0%,100%{ transform: scaleY(.55); } 50%{ transform: scaleY(1); } }
.seo-bars i { transform-origin: bottom; }
/* device row */
.dev-row { display:flex; align-items:flex-end; gap:12px; margin-top: 14px; }
.dev-row .d { border:1.5px solid var(--hair-2); border-radius:6px; position:relative; }
.dev-row .desktop { width:90px; height:56px; }
.dev-row .tablet { width:40px; height:54px; }
.dev-row .mob { width:26px; height:48px; }
.dev-row .d::after{ content:""; position:absolute; inset:4px; border-radius:3px; background: var(--accent-tint-2);}
/* speed meter */
.speed-meter { margin-top: 16px; }
.speed-meter .track { height: 8px; border-radius:999px; background: var(--track); overflow:hidden; }
.speed-meter .fill { height:100%; width: 96%; border-radius:999px; background: linear-gradient(90deg, var(--accent-ink), var(--accent-fill)); box-shadow: 0 0 14px var(--accent-glow); }
.speed-meter .legend { display:flex; justify-content:space-between; font-family: var(--font-mono); font-size:11px; color: var(--ink-3); margin-top:8px; }
/* timer cell */
.timer { font-family: var(--font-mono); font-size: clamp(28px,3.4vw,42px); font-weight: 500; letter-spacing:.02em; color: var(--ink); margin-top: 6px; }
.timer .u { color: var(--ink-3); font-size: .5em; }
/* globe cell */
.globe-regions { display:flex; flex-wrap:wrap; gap:6px; margin-top: 14px; }
.globe-regions span { font-size: 11px; padding: 4px 10px; border-radius:999px; border:1px solid var(--hair); color: var(--ink-2); }
.globe-regions span.lead { background: var(--accent-fill); color:var(--on-accent); border-color: var(--accent-fill); font-weight:600; }
.stack-row { display:flex; flex-wrap:wrap; gap:8px; margin-top: 14px; }
.stack-row span { font-family: var(--font-mono); font-size:11px; padding:5px 10px; border-radius:8px; background: var(--glass-2); border:1px solid var(--hair); color: var(--ink-2);}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: stretch; }
.plan { padding: 28px 24px; border-radius: var(--r-lg); border:1px solid var(--hair); background: var(--glass); display:flex; flex-direction:column; transition: transform .2s, border-color .2s, box-shadow .3s; position:relative; cursor:pointer; }
.plan:hover { transform: translateY(-4px); border-color: var(--hair-2); }
.plan.featured { border-color: var(--accent-border); background: linear-gradient(180deg, var(--accent-soft), var(--glass)); box-shadow: 0 0 40px var(--accent-soft); }
.plan.featured:hover{ box-shadow: 0 0 56px var(--accent-glow); }
.plan .pop { position:absolute; top:-11px; left:24px; background: var(--accent-fill); color:var(--on-accent); font-size:11px; font-weight:700; font-family:var(--font-mono); letter-spacing:.06em; padding:5px 12px; border-radius:999px; text-transform:uppercase; }
.plan .pname { font-family:var(--font-head); font-weight:600; font-size:19px; margin-bottom:4px; }
.plan .pdesc { font-size:13px; color:var(--ink-3); margin-bottom: 18px; min-height: 36px; }
.plan .pprice { display:flex; align-items:baseline; gap:10px; margin-bottom: 4px; }
.plan .pprice .now { font-family:var(--font-head); font-weight:700; font-size: 36px; letter-spacing:-.02em; }
.plan .pprice .was { color:var(--ink-3); text-decoration:line-through; font-size:16px; }
.plan .pmeta { font-family:var(--font-mono); font-size:11px; color:var(--ink-3); margin-bottom: 20px; }
.plan ul { list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom: 24px; flex:1; }
.plan li { display:flex; gap:10px; font-size:13.5px; color:var(--ink-2); align-items:flex-start; }
.plan li svg { width:16px; height:16px; color:var(--accent-ink); flex:none; margin-top:2px; }
.plan .btn { width:100%; }
.price-note { text-align:center; color: var(--ink-3); font-size: 13px; margin-top: 24px; }
.price-note b { color: var(--ink-2); font-weight:500; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-rows { display:flex; flex-direction:column; gap:16px; }
.testi-card { flex: 0 0 min(82vw, 380px); padding: 22px; border-radius: var(--r-md); border:1px solid var(--hair); background: var(--glass); margin: 0 8px; white-space: normal; }
.testi-card p { font-size: 14.5px; color: var(--ink); line-height:1.55; margin-bottom: 16px; }
.testi-card .who { display:flex; align-items:center; gap:11px; }
.testi-card .av { width:36px;height:36px;border-radius:50%; background: linear-gradient(135deg, var(--accent-tint-2), var(--accent-tint)); border:1px solid var(--hair-2); display:grid; place-items:center; font-family:var(--font-mono); font-size:13px; color:var(--accent-ink); font-weight:600; flex:none;}
.testi-card .who b { display:block; font-size:13px; font-weight:600; }
.testi-card .who small { color: var(--ink-3); font-size: 12px; }
.stars { display:flex; gap:2px; margin-bottom: 12px; color: var(--accent-ink); }
.stars svg{ width:13px;height:13px;}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display:flex; flex-direction:column; gap: 10px; }
.faq-item { border:1px solid var(--hair); border-radius: var(--r-md); background: var(--glass); overflow:hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--hair-2); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding: 19px 22px; text-align:left; font-family:var(--font-head); font-weight:500; font-size: 16px; }
.faq-q .ic { width:24px;height:24px; flex:none; border-radius:50%; border:1px solid var(--hair-2); display:grid; place-items:center; transition: transform .3s, background .2s, color .2s; color: var(--ink-2);}
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--accent-fill); color:var(--on-accent); border-color: var(--accent-fill);}
.faq-a { max-height: 0; overflow:hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--ink-2); font-size: 14.5px; line-height:1.6; }

/* ============================================================
   BIG CTA
   ============================================================ */
.cta-card { position: relative; text-align:center; padding: clamp(48px, 7vw, 84px) 24px; border-radius: var(--r-xl); border:1px solid var(--hair-2); overflow:hidden; background: var(--glass); }
.cta-card::before { content:""; position:absolute; left:50%; top:30%; transform:translate(-50%,-50%); width:680px; height:680px; border-radius:50%; background: radial-gradient(circle, var(--accent-glow), transparent 60%); }
.cta-card h2 { position:relative; font-family:var(--font-head); font-weight:600; font-size: clamp(30px, 4.6vw, 54px); line-height:1.02; letter-spacing:-.02em; margin-bottom:18px; text-wrap:balance;}
.cta-card p { position:relative; color: var(--ink-2); font-size:17px; margin-bottom: 30px; }
.cta-card .hero-ctas { position:relative; justify-content:center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top:1px solid var(--hair); padding: 64px 0 40px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .blurb { color: var(--ink-2); font-size: 14px; max-width: 38ch; margin: 16px 0 20px; }
.footer .managed { font-size: 13px; color: var(--ink-3); }
.footer .managed a { color: var(--accent-ink); }
.footer h4 { font-family:var(--font-mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color: var(--ink-3); margin-bottom: 16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-col a { font-size:14px; color:var(--ink-2); transition: color .15s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; padding-top: 28px; border-top:1px solid var(--hair); font-size:13px; color: var(--ink-3); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 56px; height:56px; border-radius:50%; background:#25D366; display:grid; place-items:center; box-shadow: 0 10px 30px rgba(37,211,102,.4); transition: transform .2s; }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height:30px; color:#fff; }
.wa-float::before { content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #25D366; animation: waPulse 2.2s ease-out infinite; }
@keyframes waPulse { 0%{ transform:scale(1); opacity:.7 } 100%{ transform:scale(1.7); opacity:0 } }

/* ============================================================
   ONBOARDING MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset:0; z-index: 100; background: var(--modal-scrim); backdrop-filter: blur(8px); display:grid; place-items:center; padding: 20px; animation: fadeIn .25s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal { width: 100%; max-width: 560px; max-height: 92vh; overflow-y:auto; background: var(--modal-bg); border:1px solid var(--hair-2); border-radius: var(--r-xl); animation: modalIn .3s cubic-bezier(.2,.8,.2,1); }
@keyframes modalIn { from{ opacity:0; transform: translateY(24px) scale(.98)} to{opacity:1; transform:none} }
.modal-head { display:flex; align-items:center; justify-content:space-between; padding: 22px 24px 0; }
.modal-step-label { font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; color: var(--accent-ink); text-transform:uppercase; }
.modal-close { width:34px;height:34px;border-radius:50%; border:1px solid var(--hair-2); display:grid; place-items:center; color:var(--ink-2); transition: all .15s; }
.modal-close:hover { background: var(--glass-2); color: var(--ink); }
.modal-progress { height:3px; background: var(--track); margin: 16px 24px 0; border-radius:999px; overflow:hidden;}
.modal-progress i { display:block; height:100%; background: var(--accent-fill); border-radius:999px; transition: width .4s ease; box-shadow: 0 0 12px var(--accent-glow);}
.modal-body { padding: 24px; }
.modal-body h3 { font-family:var(--font-head); font-weight:600; font-size: 24px; letter-spacing:-.01em; margin-bottom: 6px; }
.modal-body .sub { color: var(--ink-2); font-size:14px; margin-bottom: 22px; }
.opt-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.opt { padding: 16px 12px; border-radius: var(--r-md); border:1px solid var(--hair); background: var(--glass); text-align:center; transition: all .15s; min-height: 84px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;}
.opt:hover { border-color: var(--hair-2); }
.opt.sel { border-color: var(--accent-ink); background: var(--accent-tint); }
.opt:hover { border-color: var(--hair-2); }
.opt.sel svg, .opt svg { width: 22px; height:22px; color: var(--accent-ink); }
.opt span { font-size: 13px; font-weight:500; }
.pkg-list { display:flex; flex-direction:column; gap:10px; }
.pkg { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:16px 18px; border-radius: var(--r-md); border:1px solid var(--hair); background: var(--glass); transition: all .15s; text-align:left;}
.pkg:hover{ border-color: var(--hair-2);}
.pkg.sel { border-color: var(--accent-ink); background: var(--accent-tint); }
.pkg .pk-l b { font-family:var(--font-head); font-weight:600; font-size:16px; display:block;}
.pkg .pk-l small { color: var(--ink-3); font-size:12px;}
.pkg .pk-r { text-align:right; flex:none;}
.pkg .pk-r .n { font-weight:700; font-size:17px;}
.pkg .pk-r .w { color: var(--ink-3); text-decoration:line-through; font-size:12px;}
.field { margin-bottom: 16px; }
.field label { display:block; font-size:13px; color: var(--ink-2); margin-bottom: 7px; font-weight:500;}
.field input {
  width:100%; padding: 13px 15px; border-radius: var(--r-sm); min-height: 48px;
  background: var(--glass-2); border:1px solid var(--hair-2); color: var(--ink); font-family: var(--font-body); font-size: 15px;
  transition: border-color .15s;
}
.field input::placeholder { color: var(--ink-3); }
.field input:focus { outline:none; border-color: var(--accent-ink); }
.field input.err { border-color: #ff6b6b; }
.field .errmsg { color:#ff8585; font-size:12px; margin-top:6px; }
.modal-foot { display:flex; gap:12px; justify-content:space-between; margin-top: 8px; }
.modal-foot .btn { flex: 1; }
.modal-foot .btn-back { flex: 0 0 auto; }
.success-screen { text-align:center; padding: 30px 10px 12px; }
.success-screen .check { width: 72px;height:72px;border-radius:50%; background: var(--accent-tint); border:1px solid var(--accent-tint-2); display:grid; place-items:center; margin: 0 auto 22px; color: var(--accent-ink); }
.success-screen .check svg{ width:36px;height:36px;}
.success-screen h3 { font-size: 26px; }
.success-screen p { color: var(--ink-2); font-size:15px; max-width: 38ch; margin: 8px auto 26px; }
.consent-line { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; line-height: 1.5; }
.consent-line a { color: var(--accent-ink); text-underline-offset: 2px; }

/* ---------- accessibility: visible focus + skip link ---------- */
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--accent-fill); color: var(--on-accent); font-weight: 600;
  padding: 10px 18px; border-radius: 999px; font-size: 14px; transition: top .18s;
}
.skip-link:focus { top: 12px; }

/* ============================================================
   TIMED LEAD-CAPTURE POPUP (fires after 25s, once per visitor)
   ============================================================ */
.lead-pop-overlay {
  position: fixed; inset: 0; z-index: 120;
  background: var(--modal-scrim); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 20px;
  animation: fadeIn .3s ease;
}
.lead-pop {
  position: relative; width: 100%; max-width: 880px;
  display: grid; grid-template-columns: 1.05fr 1fr;
  background: var(--modal-bg); border: 1px solid var(--hair-2);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
  animation: popIn .42s cubic-bezier(.2,.85,.25,1);
}
@keyframes popIn { from { opacity:0; transform: translateY(28px) scale(.96); } to { opacity:1; transform:none; } }

/* left: offer panel (dark + lime — pops in both themes) */
.lead-pop-art {
  position: relative; padding: 40px 36px;
  background:
    radial-gradient(420px 320px at 12% 0%, rgba(197,255,74,0.16), transparent 62%),
    linear-gradient(160deg, #0c1019, #070a10);
  color: #f4f6f3; display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.lead-pop-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px; mask-image: radial-gradient(120% 90% at 0% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(120% 90% at 0% 0%, #000, transparent 70%);
}
.lead-pop-art .lp-badge {
  position: relative; z-index: 1; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: #0a0c08; font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 7px 13px; border-radius: 999px; margin-bottom: 22px;
}
.lead-pop-art h3 {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-weight: 600; font-size: 34px; line-height: 1.04;
  letter-spacing: -.02em; margin-bottom: 14px; text-wrap: balance;
}
.lead-pop-art h3 .ser { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--lime); }
.lead-pop-art p { position: relative; z-index: 1; color: #b9c0bd; font-size: 15px; margin-bottom: 22px; }
.lead-pop-art ul { position: relative; z-index: 1; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.lead-pop-art li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: #e6eae3; }
.lead-pop-art li svg { width: 17px; height: 17px; color: var(--lime); flex: none; }

/* right: form panel */
.lead-pop-form { padding: 38px 34px; display: flex; flex-direction: column; justify-content: center; }
.lead-pop-form h4 { font-family: var(--font-head); font-weight: 600; font-size: 21px; letter-spacing: -.01em; margin-bottom: 4px; }
.lead-pop-form .lp-sub { color: var(--ink-2); font-size: 13.5px; margin-bottom: 20px; }
.lead-pop-close {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--hair-2); background: rgba(10,13,18,0.5); color: #f4f6f3;
  display: grid; place-items: center; transition: all .18s; backdrop-filter: blur(6px);
}
.lead-pop-close:hover { background: rgba(10,13,18,0.85); transform: rotate(90deg); }
.lead-pop-success { text-align: center; padding: 16px 6px; }
.lead-pop-success .check { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-tint); border: 1px solid var(--accent-tint-2); display: grid; place-items: center; margin: 0 auto 16px; color: var(--accent-ink); }
.lead-pop-success .check svg { width: 30px; height: 30px; }
.lead-pop-success h4 { font-size: 22px; }
.lp-trust { margin-top: 14px; font-size: 12px; color: var(--ink-3); display: flex; align-items: center; gap: 7px; }
.lp-trust svg { width: 14px; height: 14px; color: var(--accent-ink); }

@media (max-width: 760px) {
  .lead-pop { grid-template-columns: 1fr; max-width: 460px; max-height: 92vh; overflow-y: auto; }
  .lead-pop-art { padding: 30px 28px; }
  .lead-pop-art h3 { font-size: 27px; }
  .lead-pop-art ul { display: none; }
  .lead-pop-art p { margin-bottom: 0; }
  .lead-pop-form { padding: 28px 26px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 380px; margin-bottom: 10px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step .arrow { display: none; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-cta .btn span.long { display:none; }
  .announce-row { font-size: 12px; gap: 6px 12px; }
  .ind-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .cell { min-height: 150px; }
  .cell-2, .cell-r2 { grid-column: auto; grid-row: auto; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .opt-grid { grid-template-columns: repeat(2, 1fr); }
  .modal { max-width: 100%; border-radius: var(--r-xl) var(--r-xl) 0 0; position: fixed; bottom: 0; left: 0; max-height: 94vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .hero h1 { font-size: clamp(36px, 11vw, 52px); }
  .phone { width: 92px; }
  .float-card { transform: scale(.85); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 90;
  background: linear-gradient(90deg, var(--accent-ink), var(--accent-fill));
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width .08s linear;
}

/* ============================================================
   ROTATING WORD (hero chip)
   ============================================================ */
.rotator { display:inline-grid; vertical-align: bottom; }
.rotator > span {
  grid-area: 1 / 1; color: var(--accent-ink); font-weight: 600;
  opacity: 0; transform: translateY(60%) rotateX(-60deg); transform-origin: bottom;
  animation: rotWord 12s infinite; white-space: nowrap;
}
.rotator > span:nth-child(1) { animation-delay: 0s; }
.rotator > span:nth-child(2) { animation-delay: 2s; }
.rotator > span:nth-child(3) { animation-delay: 4s; }
.rotator > span:nth-child(4) { animation-delay: 6s; }
.rotator > span:nth-child(5) { animation-delay: 8s; }
.rotator > span:nth-child(6) { animation-delay: 10s; }
@keyframes rotWord {
  0%   { opacity:0; transform: translateY(60%) rotateX(-60deg); }
  3%   { opacity:1; transform: translateY(0) rotateX(0); }
  14%  { opacity:1; transform: translateY(0) rotateX(0); }
  17%  { opacity:0; transform: translateY(-60%) rotateX(60deg); }
  100% { opacity:0; transform: translateY(-60%) rotateX(60deg); }
}

/* ============================================================
   REGION SEGMENTED TOGGLE (announce bar)
   ============================================================ */
.region-seg {
  display: inline-flex; align-items: center; gap: 2px; padding: 3px;
  border-radius: 999px; border: 1px solid var(--hair-2); background: var(--glass-2);
}
.region-seg a, .region-seg button {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 500;
  color: var(--ink-2); transition: all .18s; line-height: 1;
}
.region-seg .active { background: var(--accent-fill); color: var(--on-accent); font-weight: 600; box-shadow: 0 0 14px var(--accent-glow); }
.region-seg a:not(.active):hover { color: var(--ink); background: var(--glass); }

/* ============================================================
   THEME TOGGLE (nav)
   ============================================================ */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 999px; flex: none;
  border: 1px solid var(--hair-2); background: var(--glass);
  display: grid; place-items: center; color: var(--ink-2); transition: all .18s;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--hair-2); background: var(--glass-2); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }

/* parallax hooks */
.parallax { will-change: transform; }

/* ============================================================
   LIGHT THEME — warm paper, inverse of the matte-black site.
   Devices/floating cards intentionally stay dark for contrast.
   ============================================================ */
body.light {
  --bg: #f5f4ee;
  --bg-2: #ecebe3;
  --navy: #dfe4ee;
  --accent-ink: #3c7a08;
  --accent-fill: #335c0c;
  --on-accent: #f5f7f0;
  --accent-tint: rgba(51,92,12,0.07);
  --accent-tint-2: rgba(51,92,12,0.15);
  --accent-border: rgba(51,92,12,0.42);
  --accent-soft: rgba(51,92,12,0.07);
  --accent-glow: rgba(51,92,12,0.18);
  --ink: #14160f;
  --ink-2: #4c5147;
  --ink-3: #888d80;
  --glass: rgba(16, 22, 8, 0.028);
  --glass-2: rgba(16, 22, 8, 0.05);
  --hair: rgba(12, 18, 4, 0.10);
  --hair-2: rgba(12, 18, 4, 0.16);
  --grid-line: rgba(20, 26, 10, 0.040);
  --track: rgba(12, 18, 4, 0.10);
  --nav-bg: rgba(245, 244, 238, 0.80);
  --modal-bg: #ffffff;
  --modal-scrim: rgba(28, 30, 22, 0.42);
}
body.light::before {
  background:
    radial-gradient(1100px 760px at 80% -10%, rgba(150, 200, 70, 0.18), transparent 60%),
    radial-gradient(900px 620px at 6% 10%, rgba(110, 150, 210, 0.16), transparent 62%),
    radial-gradient(760px 760px at 50% 112%, rgba(150, 200, 70, 0.10), transparent 60%),
    var(--bg);
}
body.light .grain { opacity: .03; mix-blend-mode: multiply; }
body.light .halo { background: radial-gradient(circle, rgba(120,180,40,0.16), rgba(120,180,40,0.04) 45%, transparent 70%); }
body.light .announce .pill { color: #2f6a12; }

/* keep devices + floating cards dark in light theme */
body.light .float-card { background: rgba(10,13,18,0.92); border-color: rgba(255,255,255,.14); }
body.light .float-card .meta b { color: #f4f6f3; }
body.light .float-card .meta small { color: #8c9282; }
body.light .float-card .ring span { background: #0a0d12; }

/* announce gradient reads on light */
body.light .announce { background: linear-gradient(90deg, rgba(150,200,70,0.14), rgba(150,200,70,0.05)); }

/* nav cta + featured plan glows are fine; soften card shadows for light */
body.light .laptop-screen { box-shadow: 0 40px 90px rgba(40,50,30,0.22); }
body.light .phone, body.light .float-card { box-shadow: 0 22px 55px rgba(40,50,30,0.18); }
body.light .cta-card, body.light .glass, body.light .cell, body.light .plan,
body.light .faq-item, body.light .testi-card, body.light .show-card { box-shadow: 0 1px 3px rgba(20,26,10,0.04); }
body.light .plan.featured { box-shadow: 0 0 40px rgba(120,180,40,0.18), 0 1px 3px rgba(20,26,10,0.05); }

/* ============================================================
   CITIES / LOCAL-SEO STRIP
   ============================================================ */
.cities { padding: 0 0 8px; }
.cities .label { text-align:center; font-family: var(--font-mono); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color: var(--ink-3); margin-bottom: 18px; }
.cities-row { display:flex; flex-wrap:wrap; justify-content:center; gap: 10px; max-width: 880px; margin: 0 auto; }
.cities-row span { font-size: 13px; padding: 7px 15px; border-radius: 999px; border:1px solid var(--hair); background: var(--glass); color: var(--ink-2); transition: all .18s; }
.cities-row span:hover { border-color: var(--accent-ink); color: var(--ink); }
