/* ============================================================
   LifeTap — DFW Web Design Studio
   Dark-green futuristic system · v2
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  /* Brand green ramp */
  --green:        #2AB44C;   /* brand primary */
  --green-bright: #45E07A;   /* accent text / glow on dark */
  --green-soft:   #8BF0AC;   /* high-contrast accent text */
  --green-deep:   #1D8935;   /* pressed */
  --green-12:     rgba(69, 224, 122, 0.12);
  --green-20:     rgba(69, 224, 122, 0.20);
  --green-glow:   rgba(63, 214, 110, 0.45);

  /* Dark-green background stack */
  --bg:        #04120A;
  --bg-2:      #06170D;
  --surface:   #0A2012;
  --surface-2: #0E2918;
  --surface-3: #123420;

  /* Text */
  --ink:       #EAF2EA;
  --ink-soft:  rgba(234, 242, 234, 0.66);
  --slate:     rgba(234, 242, 234, 0.42);
  --white:     #FFFFFF;

  /* Lines (green-tinted = futuristic) */
  --line:      rgba(123, 232, 155, 0.14);
  --line-soft: rgba(123, 232, 155, 0.07);
  --grid:      rgba(123, 232, 155, 0.045);

  /* Type */
  --f-display: 'Raleway', system-ui, sans-serif;
  --f-body:    'Source Serif 4', Georgia, serif;
  --f-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Layout */
  --max:    1240px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius:    12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  /* Motion */
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --dur:       .5s;

  /* Shadow / glow */
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.55);
  --ring-glow: 0 0 0 1px var(--green-20), 0 0 32px -8px var(--green-glow);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Ambient page glow + faint tech grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(42, 180, 76, 0.16), transparent 60%),
    radial-gradient(900px 600px at 6% 8%, rgba(42, 180, 76, 0.10), transparent 55%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; color: inherit; }

::selection { background: var(--green); color: #04120A; }

:focus-visible {
  outline: 2.5px solid var(--green-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: -80px; transform: translateX(-50%);
  z-index: 200;
  background: var(--green); color: #04120A; font-family: var(--f-display);
  font-weight: 700; padding: 12px 20px; border-radius: var(--radius);
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 14px; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 144px); position: relative; }
em { font-style: normal; }

/* Mono eyebrow / technical label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-soft);
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: var(--green); opacity: .8;
}
.eyebrow--center { justify-content: center; }

/* Section head */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-top: 22px;
  color: var(--ink);
}
.section-title em {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  color: var(--green-soft);
}
.section-lede {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 60ch;
}

/* ---- Buttons ---- */
.btn {
  --bx: 26px;
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.95rem;
  padding: 13px var(--bx);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), box-shadow .3s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--green);
  color: #04120A;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 10px 30px -10px var(--green-glow);
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px var(--green-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.02);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--green-20);
  background: var(--green-12);
  transform: translateY(-2px);
}
.btn-lg { font-size: 1rem; padding: 16px 30px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ============================================================
   NAV — floating glass pill
   ============================================================ */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: min(1180px, calc(100% - 28px));
  display: flex; align-items: center; gap: 20px;
  padding: 9px 9px 9px 20px;
  border-radius: var(--radius-pill);
  background: rgba(8, 22, 13, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: background .3s var(--ease), border-color .3s var(--ease),
              box-shadow .3s var(--ease), top .3s var(--ease);
}
.nav.is-stuck {
  top: 12px;
  background: rgba(6, 18, 11, 0.82);
  border-color: var(--green-20);
  box-shadow: 0 16px 40px -18px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(123,232,155,0.04);
}
.nav__brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--f-display); }
.nav__brand img { width: 30px; height: 30px; border-radius: 7px; }
.nav__word { font-weight: 800; font-size: 1.12rem; letter-spacing: -0.01em; }
.nav__links {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--f-display); font-weight: 500; font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 8px 14px; border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.nav__cta { margin-left: 6px; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav__toggle span { width: 17px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav[data-open="true"] .nav__toggle span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav[data-open="true"] .nav__toggle span:nth-child(2) { opacity: 0; }
.nav[data-open="true"] .nav__toggle span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* Mobile sheet */
.nav__sheet {
  position: absolute; top: calc(100% + 12px); left: 0; right: 0;
  background: rgba(8, 22, 13, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px;
  display: none; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-lg);
}
.nav[data-open="true"] .nav__sheet { display: flex; }
.nav__sheet a {
  font-family: var(--f-display); font-weight: 500; font-size: 1.05rem;
  padding: 13px 16px; border-radius: var(--radius); color: var(--ink-soft);
}
.nav__sheet a:hover { background: var(--green-12); color: var(--ink); }
.nav__sheet .btn { margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 56px;
  overflow: hidden;
  isolation: isolate;            /* contains the rig's screen-blend */
  background: var(--bg);          /* defined backdrop for the blend */
}


/* Left scrim guarantees text legibility over the rig */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(100deg, var(--bg) 0%, rgba(4,18,10,0.92) 34%, rgba(4,18,10,0.35) 60%, transparent 82%),
    linear-gradient(to top, var(--bg) 2%, transparent 26%);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vw, 72px);
  width: 100%;
}
.hero__copy { max-width: 720px; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 1.1rem + 5.6vw, 4.9rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 22px 0 26px;
}
.hero__title em {
  font-family: var(--f-body);
  font-style: italic; font-weight: 400;
  color: var(--green-soft);
  text-shadow: 0 0 38px rgba(69, 224, 122, 0.35);
}
.hero__lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 56ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Hero stat strip */
.hero__stats {
  display: flex; flex-wrap: wrap; align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(8, 22, 13, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
}
.hero__stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 30px;
  border-right: 1px solid var(--line-soft);
}
.hero__stat:last-child { border-right: 0; }
.hero__stat-num {
  font-family: var(--f-display); font-weight: 800; font-size: 1.7rem;
  letter-spacing: -0.02em; color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 7px;
}
.hero__stat-num .star { color: var(--green-bright); font-size: 1.2rem; }
.hero__stat-label {
  font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--slate);
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 2;
  font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--slate);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(var(--green-bright), transparent); animation: scrollcue 2s var(--ease) infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   SERVICES — bento cards
   ============================================================ */
.services { position: relative; }
.services__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 45% at 50% 42%, rgba(42,180,76,0.12), transparent 68%);
}
.services .wrap { position: relative; z-index: 1; }

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.scard {
  position: relative;
  display: flex; flex-direction: column;
  padding: 34px 34px 30px;
  min-height: 270px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.scard::before { /* corner glow on hover */
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(70% 60% at 20% 0%, rgba(69,224,122,0.16), transparent 60%);
  transition: opacity .45s var(--ease);
}
.scard:hover {
  transform: translateY(-6px);
  border-color: var(--green-20);
  box-shadow: var(--shadow-md), var(--ring-glow);
}
.scard:hover::before { opacity: 1; }
.scard__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 26px; }
.scard__icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--green-12); border: 1px solid var(--line);
  color: var(--green-bright);
}
.scard__icon svg { width: 24px; height: 24px; }
.scard__index {
  font-family: var(--f-mono); font-size: 2.1rem; font-weight: 300;
  color: var(--green-bright); opacity: 0.5; line-height: 1;
  transition: opacity .45s var(--ease);
}
.scard:hover .scard__index { opacity: 0.95; }
.scard h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.01em; margin-bottom: 10px; }
.scard p { color: var(--ink-soft); font-size: 1rem; flex: 1; }
.scard__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.scard__tags li {
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 5px 11px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: rgba(255,255,255,0.015);
}

/* ============================================================
   PRICING — service tiers
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.tier {
  position: relative;
  display: flex; flex-direction: column;
  padding: 38px 32px 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.tier:hover {
  transform: translateY(-6px);
  border-color: var(--green-20);
  box-shadow: var(--shadow-md), var(--ring-glow);
}
.tier--featured {
  border-color: var(--green-20);
  box-shadow: var(--shadow-md), var(--ring-glow);
  transform: scale(1.035);
}
.tier--featured:hover {
  transform: scale(1.035) translateY(-6px);
}
.tier__badge {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bg);
  background: var(--green-bright);
  padding: 6px 16px; border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px var(--green-glow);
}
.tier__head { margin-bottom: 16px; }
.tier__name {
  font-family: var(--f-display); font-weight: 700; font-size: 1.7rem;
  letter-spacing: -0.01em; line-height: 1.1;
}
.tier__type {
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-bright);
  margin-top: 8px;
}
.tier__pitch {
  font-style: italic; font-size: 1.05rem; line-height: 1.5;
  color: var(--green-soft);
  margin-bottom: 14px;
}
.tier__desc {
  color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6;
  margin-bottom: 26px;
}
.tier .btn-block { margin-top: auto; }
.tier__incl-label {
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--slate);
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.tier__list { display: flex; flex-direction: column; gap: 2px; margin-top: 16px; }
.tier__list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding-block: 7px;
  color: var(--ink-soft); font-size: 0.96rem; line-height: 1.45;
}
.tier__list svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px;
  color: var(--green-bright);
}

/* ============================================================
   PROCESS — stacking cards
   ============================================================ */
.process-stack { display: flex; flex-direction: column; gap: 26px; }
.pcard {
  position: sticky;
  top: calc(96px + var(--i) * 26px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform-origin: top center;
  transform: scale(calc(1 - (var(--buried, 0) * 0.025)));
  transition: transform .35s var(--ease);
}
.pcard__visual {
  position: relative;
  min-height: 320px;
  display: grid; place-items: center;
  background:
    radial-gradient(70% 70% at 50% 45%, rgba(42,180,76,0.16), transparent 70%),
    linear-gradient(180deg, #071a0f, #04120a);
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.pcard__visual::after { /* faint grid inside visual */
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 75%);
          mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 75%);
}
.pcard__art { width: min(78%, 280px); height: auto; color: var(--green-bright); position: relative; z-index: 1; }
.pcard__art [data-float] { animation: floaty 6s ease-in-out infinite; transform-origin: center; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.pcard__body { padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.pcard__step { font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: 0.16em; color: var(--green-bright); margin-bottom: 16px; }
.pcard__step b { color: var(--ink); font-weight: 500; }
.pcard__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: 14px; }
.pcard__desc { color: var(--ink-soft); max-width: 46ch; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; }
.pcard__tags li { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; }
.pcard__tags li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 8px var(--green-glow); }

/* ============================================================
   WORK — list
   ============================================================ */
.work-list { border-top: 1px solid var(--line); }
.work-row { border-bottom: 1px solid var(--line); position: relative; }
.work-row a {
  display: grid;
  grid-template-columns: 56px 1fr auto 28px;
  align-items: center; gap: 24px;
  padding: clamp(22px, 3vw, 34px) 8px;
  position: relative; z-index: 1;
  transition: padding .4s var(--ease);
}
.work-row::before { /* sliding highlight */
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, var(--green-12), transparent 70%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.work-row:hover::before { transform: scaleX(1); }
.work-row:hover a { padding-left: 22px; }
.work__index { font-family: var(--f-mono); font-size: 0.8rem; color: var(--green-bright); opacity: 0.7; }
.work__name { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.4rem, 1rem + 1.8vw, 2.4rem); letter-spacing: -0.02em; transition: color .3s var(--ease); }
.work-row:hover .work__name { color: var(--green-soft); }
.work__meta { display: flex; align-items: center; gap: 22px; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }
.work__city { color: var(--ink-soft); }
.work__arrow { color: var(--green-bright); display: grid; place-items: center; transition: transform .4s var(--ease); }
.work__arrow svg { width: 22px; height: 22px; }
.work-row:hover .work__arrow { transform: translate(4px, -4px); }

/* ============================================================
   RESULTS
   ============================================================ */
.results__grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.results-row { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; }
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: clamp(26px, 3.5vw, 42px);
  position: relative; overflow: hidden;
}
.panel--stats { display: flex; flex-wrap: wrap; gap: 14px 48px; align-items: center; }
.bigstat { display: flex; flex-direction: column; gap: 6px; }
.bigstat__num { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.2rem, 1.4rem + 3vw, 3.6rem); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.bigstat__num em { font-family: var(--f-body); font-style: italic; font-weight: 400; color: var(--green-soft); }
.bigstat__label { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }

.optimized__list { margin-top: 22px; }
.optimized__list li { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.optimized__list li:last-child { border-bottom: 0; }
.optimized__k { font-family: var(--f-display); font-weight: 600; }
.optimized__v { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-soft); display: inline-flex; align-items: center; gap: 8px; }
.optimized__v svg { width: 15px; height: 15px; }

/* line chart */
.chart-panel { display: flex; flex-direction: column; }
.chart-panel h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.01em; }
.chart-panel h3 em { font-family: var(--f-body); font-style: italic; font-weight: 400; color: var(--green-soft); }
.chart-panel p { color: var(--ink-soft); margin-top: 8px; font-size: 0.98rem; }
.chart-wrap { margin-top: auto; padding-top: 26px; }
.chart-svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart-line { fill: none; stroke: var(--green-bright); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 4px 14px var(--green-glow)); }
.chart-dot { fill: var(--green-soft); filter: drop-shadow(0 0 8px var(--green-glow)); }

/* gauges */
.gauges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gauge { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.gauge__ring { width: 96px; height: 96px; position: relative; display: grid; place-items: center; }
.gauge__ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.gauge__track { fill: none; stroke: var(--line); stroke-width: 7; }
.gauge__bar { fill: none; stroke: var(--green-bright); stroke-width: 7; stroke-linecap: round; filter: drop-shadow(0 0 6px var(--green-glow)); }
.gauge__val { position: absolute; font-family: var(--f-display); font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.gauge__label { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }

/* ============================================================
   ABOUT + REGION
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; align-items: stretch; }
.about-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); min-height: 380px;
  background:
    radial-gradient(80% 70% at 50% 30%, rgba(42,180,76,0.28), transparent 66%),
    linear-gradient(180deg, #0a2413, #04120a);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
}
.about-visual::before { /* neon bar like reference lighting */
  content: ''; position: absolute; top: 8%; left: 12%; width: 4px; height: 64%;
  background: linear-gradient(var(--green-bright), rgba(69,224,122,0.05));
  box-shadow: 0 0 40px 6px var(--green-glow); border-radius: 4px; opacity: 0.9;
}
.about-visual::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent 78%);
          mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent 78%);
}
.about-visual__mark { position: relative; z-index: 1; }
.about-visual__mark img { width: 64px; height: 64px; border-radius: 14px; }
.about-visual__cap { position: relative; z-index: 1; margin-top: 16px; font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

.about-copy { display: flex; flex-direction: column; }
.about-copy .section-title { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); }
.about-copy p { color: var(--ink-soft); margin-top: 18px; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: auto; padding-top: 30px; }
.about-stat {
  border: 1px solid var(--line); background: var(--surface);
  padding: 22px 24px; display: flex; flex-direction: column; gap: 4px;
}
.about-stat:nth-child(1) { border-radius: var(--radius) 0 0 0; }
.about-stat:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.about-stat:nth-child(3) { border-radius: 0 0 0 var(--radius); }
.about-stat:nth-child(4) { border-radius: 0 0 var(--radius) 0; }
.about-stat__num { font-family: var(--f-display); font-weight: 800; font-size: 2rem; letter-spacing: -0.02em; color: var(--ink); }
.about-stat__label { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }

/* Region */
.region { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: clamp(26px, 3.5vw, 42px); }
.region__label { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-soft); }
.region__cities { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 22px; }
.region__cities li { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; color: var(--ink-soft); padding: 9px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.region__cities li:hover { color: var(--ink); border-color: var(--green-20); background: var(--green-12); }
.region__note { margin-top: 20px; font-style: italic; color: var(--slate); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; }
.quote {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.quote:hover { transform: translateY(-5px); border-color: var(--green-20); }
.quote::before { content: '“'; font-family: var(--f-body); font-size: 3.4rem; line-height: 0.5; color: var(--green-bright); opacity: 0.8; }
.quote p { font-family: var(--f-body); font-size: 1.1rem; line-height: 1.55; color: var(--ink); flex: 1; }
.quote--feature p { font-size: 1.32rem; }
.quote footer { display: flex; flex-direction: column; gap: 2px; }
.quote-name { font-family: var(--f-display); font-weight: 700; }
.quote-role { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: grid; grid-template-columns: 48px 1fr 28px; align-items: center; gap: 16px;
  padding: clamp(20px, 2.6vw, 28px) 6px;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq__qi { font-family: var(--f-mono); font-size: 0.78rem; color: var(--green-bright); opacity: 0.7; }
.faq__q { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.4rem); transition: color .25s var(--ease); }
.faq-item:hover .faq__q { color: var(--green-soft); }
.faq__icon { position: relative; width: 22px; height: 22px; justify-self: end; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: var(--green-bright); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__a { overflow: hidden; }
.faq__a p { padding: 0 6px clamp(22px, 2.6vw, 30px) 64px; color: var(--ink-soft); max-width: 70ch; }
.faq__a ul { list-style: none; padding: 12px 6px 12px 64px; margin: 0; color: var(--ink-soft); }
.faq__a li { margin-bottom: 6px; }
.faq__a li:last-child { margin-bottom: 0; }
/* expand animation */
.faq-item[open] .faq__a { animation: faqOpen .4s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(26px, 4vw, 56px); align-items: start; }
.contact-copy .section-title { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); }
.contact-lede { color: var(--ink-soft); margin-top: 18px; max-width: 44ch; }
.contact-details { margin-top: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.contact-details > div { padding: 18px 20px; background: var(--surface); }
.contact-details dt { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; }
.contact-details dd { font-family: var(--f-display); font-weight: 600; }
.contact-details a:hover { color: var(--green-soft); }

.contact-form {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow-md);
}
.form-eyebrow { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-soft); }
.contact-form h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; margin: 8px 0 26px; }
.contact-form h3 em { font-family: var(--f-body); font-style: italic; font-weight: 400; color: var(--green-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.field .req { color: var(--green-bright); }
.field .opt { color: var(--slate); text-transform: none; letter-spacing: 0; }
.field input, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: rgba(4,18,10,0.6); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green-20); box-shadow: 0 0 0 3px var(--green-12); background: rgba(4,18,10,0.85); }
.field textarea { resize: vertical; min-height: 110px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 22px; font-size: 0.9rem; color: var(--ink-soft); cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--green); width: 17px; height: 17px; }
.form-note { margin-top: 16px; font-size: 0.86rem; color: var(--slate); text-align: center; }
.form-note a { color: var(--green-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding-top: clamp(54px, 7vw, 84px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 2.6fr; gap: clamp(30px, 5vw, 60px); padding-bottom: 56px; }
.footer-brand img { width: 52px; height: 52px; border-radius: 13px; }
.footer-tagline { font-family: var(--f-display); font-weight: 700; font-size: 1.7rem; line-height: 1.18; margin-top: 22px; letter-spacing: -0.01em; }
.footer-tagline em { font-family: var(--f-body); font-style: italic; font-weight: 400; color: var(--green-soft); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 16px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col li { font-family: var(--f-display); font-size: 0.95rem; color: var(--ink-soft); }
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--green-soft); }
.footer-social a { display: inline-flex; align-items: center; gap: 9px; }
.footer-social svg { width: 16px; height: 16px; color: var(--green-bright); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 26px 0 36px; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--slate); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--green-soft); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; margin-left: auto; }
  .results-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .pcard { grid-template-columns: 1fr; }
  .pcard__visual { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .tiers { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; gap: 24px; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-6px); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .bento { grid-template-columns: 1fr; }
  .gauges { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
  .panel--stats { gap: 22px 36px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .work-row a { grid-template-columns: 36px 1fr 24px; gap: 14px; }
  .work__meta { display: none; }
  .hero__stat { padding: 14px 20px; flex: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .hero__scrim {
    background:
      linear-gradient(to top, var(--bg) 30%, rgba(4,18,10,0.55) 62%, transparent 92%),
      radial-gradient(70% 40% at 50% 22%, transparent 40%, var(--bg) 88%);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
.pcard { position: static; transform: none; }
  .hero__scroll span { animation: none; }
}
