/* ================================================
   PEAK LOCAL SERVICES — Linear Aesthetic
   ================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0A0A0A;
  --surface:   #141414;
  --border:    #1E1E1E;
  --border-2:  #272727;

  --text:      #EDEDED;
  --text-2:    rgba(237,237,237,0.5);
  --text-3:    rgba(237,237,237,0.26);

  --red:       #C0392B;
  --red-dark:  #A93226;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:  60px;
  --max:    1200px;
  --gutter: clamp(24px, 5vw, 60px);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.18s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.nav--inner {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.nav__logo-peak {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}
.nav__logo-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__link {
  font-size: 13.5px;
  font-weight: 400;
  padding: 7px 14px;
  color: var(--text-2);
  transition: color var(--t) var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__cta {
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  margin-left: 6px;
  transition: background var(--t) var(--ease);
}
.nav__cta:hover { background: var(--red-dark); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 0 16px;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  transition: color var(--t);
}
.nav__mobile a:hover { color: var(--text); }
.nav__mobile-cta {
  margin: 10px 20px 0;
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff !important;
  padding: 13px;
  border-radius: 6px;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.btn-lg { padding: 12px 24px; font-size: 15px; }

/* Light: cream bg, dark text — hero primary */
.btn-light {
  background: var(--text);
  color: #0A0A0A;
  border-color: var(--text);
}
.btn-light:hover { background: #fff; border-color: #fff; }

/* Ghost: transparent, faint border — hero secondary / cta secondary */
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-2);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: #333;
  color: var(--text);
}

/* Red: used max 3 times on index — about CTA + cta-band primary */
.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn:disabled, .btn.loading { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(237,237,237,0.038) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero__content {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  max-width: 680px;
}
.hero__location {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}
.hero__headline {
  font-family: var(--font);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 24px;
}
/* ── Word Flip Carousel ──────────────────────────── */
.fc {
  display: inline-flex;
  align-items: center;
  position: relative;
  vertical-align: middle;
  overflow: hidden;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  margin-left: 0.16em;
  perspective: 320px;
  box-shadow:
    0 0 0 1px rgba(192,57,43,0.08),
    0 0 22px rgba(192,57,43,0.13),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.fc__sizer {
  padding: 0.06em 0.42em;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: inherit;
}

.fc__word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 0.42em;
  white-space: nowrap;
  transform-origin: center center;
}

.fc__word--out {
  animation: fc-out 0.44s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.fc__word--in {
  animation: fc-in 0.52s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}

@keyframes fc-in {
  0%   { transform: translateY(110%) rotateX(-72deg); opacity: 0; }
  55%  { opacity: 1; }
  100% { transform: translateY(0)    rotateX(0deg);   opacity: 1; }
}

@keyframes fc-out {
  0%   { transform: translateY(0)     rotateX(0deg);  opacity: 1; }
  45%  { opacity: 1; }
  100% { transform: translateY(-110%) rotateX(72deg); opacity: 0; }
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 44px;
}
.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Services ---------- */
.services {
  padding: 96px 0;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(237,237,237,0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--border);
}
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.services__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text);
}
.services__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 44ch;
}
.services__desc-cta {
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t) var(--ease);
}
.services__desc-cta:hover { color: var(--text); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
  cursor: default;
}
.svc-card:hover {
  background: #181818;
  border-color: var(--border-2);
}
.svc-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-card__desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.svc-card__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  transition: color var(--t) var(--ease);
}
.svc-card__link::after { content: '\2192'; }
.svc-card:hover .svc-card__link { color: var(--text-2); }

/* ---------- Workflow Graphic ---------- */
.wf {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-x: auto;
  border-top: 1px solid var(--border);
  padding-top: 52px;
}

/* Top row */
.wf__top {
  display: flex;
  align-items: flex-start;
  min-width: 680px;
}

/* Stacked form cards */
.wf__forms {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}
.wf__card {
  position: absolute;
  top: 0; left: 0;
  width: 172px;
  background: #161616;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 14px 15px;
  z-index: 1;
}
.wf__card--fg {
  top: 44px;
  left: 44px;
  z-index: 2;
}
.wf__card-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 11px;
  letter-spacing: 0.01em;
}
.wf__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.wf__bar {
  display: block;
  height: 7px;
  background: #232323;
  border-radius: 3px;
}
.wf__bar--w { grid-column: 1 / -1; }
.wf__bar--tall { height: 22px; }
.wf__btn {
  display: block;
  height: 9px;
  width: 54px;
  background: #232323;
  border-radius: 3px;
  margin-left: auto;
}
.wf__btn--red { background: var(--red); }

/* Curve arrow top */
.wf__arrow {
  width: 180px;
  height: 65px;
  flex-shrink: 0;
  margin-top: 72px;
  margin-left: -12px;
  margin-right: -12px;
}

/* Notification bubble + label column */
.wf__notif-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 270px;
  margin-top: 16px;
}
.wf__notif {
  background: #161616;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 15px 18px;
}
.wf__notif-hd {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}
.wf__notif-ln {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.9;
}

/* Section label */
.wf__lbl {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-left: 2px;
}
.wf__lbl--sm { font-size: 10px; }

/* Bottom row */
.wf__bot {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-width: 680px;
}

/* macOS email window */
.wf__mail {
  flex-shrink: 0;
  width: 216px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.55);
}
.wf__mac-bar {
  background: #c2c2c2;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.wf__dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wf__dot--r { background: #FF5F57; }
.wf__dot--y { background: #FEBC2E; }
.wf__dot--g { background: #28C840; }
.wf__mail-body {
  background: #EEECE9;
  padding: 18px 20px;
  font-size: 13.5px;
  color: #1a1a1a;
  line-height: 1.65;
  font-family: var(--font);
}
.wf__mail-body p + p { margin-top: 12px; }

/* Schedule column (label + card) */
.wf__sched-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Schedule / follow-up card */
.wf__sched {
  width: 150px;
  background: #161616;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wf__sched-row {
  display: flex;
  gap: 14px;
  align-items: center;
}
.wf__tick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.wf__tick svg { width: 28px; height: 28px; }
.wf__tick span {
  font-size: 9.5px;
  color: var(--text-3);
  font-family: var(--font);
  letter-spacing: 0.01em;
}
.wf__env { width: 28px; height: 21px; display: block; }

/* Label + arrow column */
.wf__sheets-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 6px;
  gap: 2px;
}
.wf__arrow2 { width: 80px; height: 88px; }

/* Spreadsheet grid */
.wf__grid {
  flex: 1;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  overflow: hidden;
  align-self: stretch;
  min-width: 120px;
  -webkit-mask-image: linear-gradient(to right, black 35%, transparent 90%);
  mask-image: linear-gradient(to right, black 35%, transparent 90%);
}
.wf__grow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.wf__grow:last-child { border-bottom: none; }
.wf__grow span {
  display: flex;
  align-items: center;
  height: 32px;
  border-right: 1px solid var(--border);
}
.wf__grow span:last-child { border-right: none; }

.wf__grow--hd span {
  padding: 0 10px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #111111;
}
.wf__grow--data span {
  padding: 0 10px;
  font-size: 11px;
  color: var(--text-2);
  font-weight: 400;
}

/* Workflow footer — caption + services CTA */
.wf__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.wf__footer-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.6;
}

/* Animated shimmer button */
.btn-animated {
  position: relative;
  overflow: hidden;
}

.btn-animated::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(237,237,237,0.07), transparent);
  animation: btn-shimmer 2.6s ease-in-out infinite 0.8s;
}

.btn-animated svg {
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}

.btn-animated:hover svg {
  transform: translateX(4px);
}

@keyframes btn-shimmer {
  0%   { left: -80%; }
  45%  { left: 130%; }
  100% { left: 130%; }
}
.btn-red.btn-animated::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

/* ---------- About ---------- */
.about {
  padding: 96px 0;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(237,237,237,0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--border);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}
.about__body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.78;
  max-width: 50ch;
}
.about__body + .about__body { margin-top: 14px; }
.about__stats {
  display: flex;
  gap: 0;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.about__stat { flex: 1; }
.about__stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.about__stat-lbl {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
  margin-top: 5px;
  letter-spacing: 0.01em;
}
.about__cta { margin-top: 40px; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-band__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text);
}
.cta-band__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 36px;
}
.cta-band__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.footer__masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}
.footer__wordmark {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.footer__wordmark-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  margin-left: 8px;
}
.footer__masthead-right {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.footer__rule {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}
.footer__columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 44px 0 52px;
}
.footer__tagline {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.8;
  max-width: 260px;
}
.footer__col-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-2);
  transition: color var(--t) var(--ease);
}
.footer__links a:hover { color: var(--text); }
.footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 0;
  gap: 10px;
}
.footer__base span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
}
.footer__base a {
  color: var(--text-2);
  transition: color var(--t) var(--ease);
}
.footer__base a:hover { color: var(--text); }

/* ---------- Page Header (inner pages) ---------- */
.page-hdr {
  background: var(--bg);
  padding: calc(var(--nav-h) + 72px) 0 72px;
  border-bottom: 1px solid var(--border);
}
.page-hdr__eye {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.page-hdr__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-hdr__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-2);
  max-width: 440px;
  line-height: 1.68;
}

/* ---------- Forms ---------- */
.form-wrap {
  padding: 72px 0 100px;
  background: var(--bg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 44px;
}
.form-card__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4px;
}
.form-card__sub {
  font-size: 13.5px;
  color: var(--text-3);
  margin-bottom: 32px;
  line-height: 1.5;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg       { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg:last-of-type { margin-bottom: 0; }
.fg label { font-size: 12.5px; font-weight: 500; color: var(--text-2); letter-spacing: 0.01em; }
.fg label em { color: var(--red); font-style: normal; }
.fi, .fs, .ft {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--text);
  background: #0F0F0F;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.fi::placeholder, .ft::placeholder { color: var(--text-3); }
.fi:focus, .fs:focus, .ft:focus {
  border-color: #333333;
  background: #131313;
}
.fi.err, .fs.err, .ft.err { border-color: #922; }
.ferr { font-size: 12px; color: #c55; display: none; margin-top: 3px; }
.ferr.show { display: block; }
.fs-wrap { position: relative; }
.fs-wrap::after {
  content: '';
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-3);
  pointer-events: none;
}
.fs { cursor: pointer; padding-right: 36px; }
.ft { resize: vertical; min-height: 108px; }
.form-submit { margin-top: 24px; width: 100%; padding: 14px; font-size: 15px; }
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success.show { display: block; }
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #22C55E;
}
.form-success__title { font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-success__text  { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.form-side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 12px;
}
.form-side-card__title { font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.fsi { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-2); margin-bottom: 10px; line-height: 1.5; }
.fsi:last-child { margin-bottom: 0; }
.fsi-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-2); flex-shrink: 0; margin-top: 6px; }
.form-guarantee { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.form-guarantee__title { font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-guarantee__text  { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ================================================
   SERVICES PAGE — sv-* namespace
   ================================================ */

/* ---------- Hero ---------- */
.sv-hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(192,57,43,0.04) 0%, transparent 70%), var(--bg);
  border-bottom: 1px solid var(--border);
}
.sv-hero__content {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 72px;
  max-width: 640px;
}
.sv-hero__eye {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
}
.sv-hero__title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 22px;
}
.sv-hero__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 40px;
}

/* ---------- Shared section patterns ---------- */
.sv-eye {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.sv-section-head { margin-bottom: 48px; }
.sv-section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text);
}

/* ---------- Systems Section ---------- */
.sv-systems {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

/* ── sf- = Systems Feature (Linear-style full-bleed rows) ── */
.sf-stack {
  border-top: 1px solid var(--border);
  margin-top: 72px;
}

.sf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  min-height: 460px;
}

.sf-row--flip > .sf-text { grid-column: 2; grid-row: 1; }
.sf-row--flip > .sf-vis  { grid-column: 1; grid-row: 1; }

/* Text panel */
.sf-text {
  display: flex;
  align-items: center;
  padding: 60px 52px 60px max(var(--gutter), calc((100vw - var(--max)) / 2 + 40px));
}

.sf-row--flip .sf-text {
  padding: 60px max(var(--gutter), calc((100vw - var(--max)) / 2 + 40px)) 60px 52px;
}

.sf-text__inner {
  width: 100%;
  max-width: 500px;
}

.sf-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sf-name {
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.sf-name--sm { font-size: 22px; letter-spacing: -0.02em; }

.sf-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.sf-list li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

.sf-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 1px;
  background: var(--border-2);
}

.sf-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.sf-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-3);
  margin-left: 2px;
}

/* Tier pricing */
.sf-tiers { display: flex; flex-direction: column; }

.sf-tier {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.sf-tier:first-child { border-top: none; padding-top: 0; }

.sf-tier__price {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.sf-tier__price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  margin-left: 4px;
}

.sf-tiers .sf-list { margin-bottom: 0; }

.sf-tier-or {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 0;
}

/* Visual panel */
.sf-vis {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 52px;
  border-left: 1px solid var(--border);
  background-color: #080808;
  background-image: radial-gradient(rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 24px 24px;
  overflow: hidden;
}

.sf-row--flip .sf-vis {
  border-left: none;
  border-right: 1px solid var(--border);
}

/* Ambient radial glow */
.sf-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.022) 0%, transparent 65%);
}

.sf-glow--red {
  background: radial-gradient(ellipse at 50% 50%, rgba(192,57,43,0.10) 0%, transparent 60%);
}

.sf-glow--sm {
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.018) 0%, transparent 55%);
}

/* ── System 1: Form → Notification → Follow-up ── */
.sf-s1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
}

.sf-card {
  background: #161616;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 18px 20px;
  width: 100%;
}

.sf-card__lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.sf-card__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 14px;
}

.sf-card__fields span {
  display: block;
  height: 8px;
  background: #252525;
  border-radius: 3px;
}

.sf-card__fields span.w { grid-column: 1 / -1; }

.sf-card__btn {
  display: block;
  height: 10px;
  width: 72px;
  background: var(--red);
  border-radius: 3px;
  margin-left: auto;
}

.sf-vline {
  display: block;
  margin: 4px auto;
}

.sf-notif {
  background: #161616;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  padding: 18px 20px;
  width: 100%;
}

.sf-notif__hd {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.sf-notif__ln {
  font-size: 13px;
  color: var(--text-2);
  line-height: 2;
}

.sf-seq {
  background: #161616;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  padding: 16px 20px;
  width: 100%;
}

.sf-seq__lbl {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 14px;
}

.sf-seq__steps {
  display: flex;
  justify-content: space-around;
}

.sf-seq__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sf-seq__step span {
  font-size: 10px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── System 2: Email window + Google branding ── */
.sf-s2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 300px;
}

.sf-mail {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.65);
  width: 100%;
}

.sf-mail__chrome {
  background: #c2c2c2;
  padding: 9px 12px;
  display: flex;
  gap: 7px;
  align-items: center;
}

.sf-mail__chrome span {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.sf-mail__chrome span.r { background: #FF5F57; }
.sf-mail__chrome span.y { background: #FEBC2E; }
.sf-mail__chrome span.g { background: #28C840; }

.sf-mail__body {
  background: #EEECE9;
  padding: 14px 16px;
}

.sf-mail__p {
  font-size: 12px;
  color: #1a1a1a;
  line-height: 1.65;
  font-family: var(--font);
  margin-bottom: 9px;
}

.sf-mail__p:last-of-type { margin-bottom: 12px; }

.sf-mail__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: #1a73e8;
  font-weight: 500;
  font-family: var(--font);
}

.sf-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 2px 4px;
}

/* ── System 2: Three-column dark email client ── */
.sf-email-client {
  display: flex;
  width: 600px;
  border: 1px solid #2A2A2A;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
}

/* Sidebar */
.sf-ec-sb {
  width: 108px;
  flex-shrink: 0;
  background: #111111;
  border-right: 1px solid #2A2A2A;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
}
.sf-ec-sb__logo {
  font-size: 11px;
  font-weight: 700;
  color: rgba(237,237,237,0.28);
  letter-spacing: 0.07em;
  padding: 0 14px 14px;
  border-bottom: 1px solid #1E1E1E;
  margin-bottom: 12px;
}
.sf-ec-sb__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 9px;
}
.sf-ec-sb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  color: rgba(237,237,237,0.3);
  cursor: default;
}
.sf-ec-sb__item--on {
  background: rgba(237,237,237,0.07);
  color: #EDEDED;
}
.sf-ec-sb__item svg { flex-shrink: 0; }
.sf-ec-sb__lbl {
  flex: 1;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}
.sf-ec-sb__item--on .sf-ec-sb__lbl { font-weight: 500; }
.sf-ec-sb__badge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(237,237,237,0.35);
}

/* Email list column */
.sf-ec-list {
  width: 196px;
  flex-shrink: 0;
  background: #161616;
  border-right: 1px solid #2A2A2A;
  overflow: hidden;
}
.sf-ec-list__hd {
  font-size: 14px;
  font-weight: 600;
  color: #EDEDED;
  padding: 14px 14px 12px;
  border-bottom: 1px solid #2A2A2A;
}
.sf-ec-list__item {
  padding: 13px 14px;
  border-bottom: 1px solid #1E1E1E;
  cursor: default;
}
.sf-ec-list__item--on {
  background: #1C1C1C;
  border-left: 2px solid #C0392B;
  padding-left: 12px;
}
.sf-ec-list__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.sf-ec-list__from {
  font-size: 13px;
  font-weight: 600;
  color: #EDEDED;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}
.sf-ec-list__item:not(.sf-ec-list__item--on) .sf-ec-list__from {
  color: rgba(237,237,237,0.38);
  font-weight: 400;
}
.sf-ec-list__time {
  font-size: 10.5px;
  color: rgba(237,237,237,0.28);
  flex-shrink: 0;
}
.sf-ec-list__subj {
  font-size: 12px;
  color: rgba(237,237,237,0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.sf-ec-list__item:not(.sf-ec-list__item--on) .sf-ec-list__subj {
  color: rgba(237,237,237,0.28);
}
.sf-ec-list__prev {
  font-size: 11px;
  color: rgba(237,237,237,0.22);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Reading pane */
.sf-ec-pane {
  flex: 1;
  min-width: 0;
  background: #161616;
  overflow: hidden;
}
.sf-ec-pane__top {
  padding: 16px 18px;
  border-bottom: 1px solid #2A2A2A;
}
.sf-ec-pane__meta {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
}
.sf-ec-pane__av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #C0392B;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sf-ec-pane__name {
  font-size: 14px;
  font-weight: 600;
  color: #EDEDED;
  line-height: 1.3;
}
.sf-ec-pane__addr {
  font-size: 11px;
  color: rgba(237,237,237,0.32);
}
.sf-ec-pane__subj {
  font-size: 13px;
  font-weight: 500;
  color: rgba(237,237,237,0.55);
}
.sf-ec-pane__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sf-ec-p {
  font-size: 13px;
  color: rgba(237,237,237,0.6);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font);
}
.sf-ec-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6B9FD4;
  font-weight: 500;
  font-family: var(--font);
}

/* Bottom fade — dissolves the card into the panel background */
.sf-ec-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, rgba(8,8,8,0.6) 45%, #080808 80%);
  pointer-events: none;
}

/* ── Systems 3 & 4 pair ── */
.sf-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.sf-pair__item {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border-top: 1px solid var(--border);
}

.sf-pair__item--right { border-left: 1px solid var(--border); }

.sf-pair__text { padding: 52px 52px 36px; }

.sf-pair__vis {
  flex: 1;
  background-color: #080808;
  background-image: radial-gradient(rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
  overflow: hidden;
}

/* Monthly report card */
.sf-report {
  background: #161616;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 20px 22px;
  width: 100%;
  max-width: 320px;
}

.sf-report__hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #242424;
}

.sf-report__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
}

.sf-report__month {
  font-size: 10px;
  color: var(--text-3);
}

.sf-report__stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sf-stat__val {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.sf-stat__lbl {
  display: block;
  font-size: 10px;
  color: var(--text-3);
}

.sf-report__chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 60px 14px;
  column-gap: 5px;
  row-gap: 5px;
  align-items: end;
  margin-top: 2px;
}

.sf-bar {
  background: #2A2A2A;
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  width: 100%;
  align-self: end;
}

.sf-bar--hi { background: #C0392B; }

.sf-bar-lbl {
  font-size: 9px;
  color: rgba(237,237,237,0.28);
  text-align: center;
  letter-spacing: 0.02em;
}

/* SMS cards (System 4 + 5) */
.sf-sms-card {
  background: #161616;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 16px 18px;
  width: 100%;
  max-width: 290px;
}

.sf-sms-card--dim { opacity: 0.55; }

.sf-sms-card__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  padding-bottom: 10px;
  border-bottom: 1px solid #222;
}

.sf-sms-card__bar span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.sf-sms-card__msg {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── System 4: SMS conversation thread ── */
.sf-thread {
  background: #161616;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  width: 290px;
  overflow: hidden;
}
.sf-thread__hd {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid #2A2A2A;
}
.sf-thread__av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(237,237,237,0.45);
  flex-shrink: 0;
}
.sf-thread__name {
  font-size: 13px;
  font-weight: 600;
  color: #EDEDED;
  line-height: 1.2;
}
.sf-thread__status {
  font-size: 10px;
  color: rgba(237,237,237,0.3);
  margin-top: 2px;
}
.sf-thread__msgs {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sf-thread__msg {
  display: flex;
}
.sf-thread__msg--sent { justify-content: flex-end; }
.sf-thread__msg--recv { justify-content: flex-start; }
.sf-thread__bubble {
  max-width: 83%;
  font-size: 12.5px;
  line-height: 1.6;
  padding: 10px 13px;
  font-family: var(--font);
}
.sf-thread__bubble--sent {
  background: rgba(192,57,43,0.22);
  color: #EDEDED;
  border-radius: 16px 16px 4px 16px;
}
.sf-thread__bubble--recv {
  background: #252525;
  color: rgba(237,237,237,0.78);
  border-radius: 16px 16px 16px 4px;
}

/* System 5 visual */
.sf-s5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 290px;
}

/* ── System 01 Graphic Animations ───────────────── */

/* 1. Travelling dots — solid line (faster) */
@keyframes s1-dot-solid {
  0%   { cy: 0;  opacity: 0;    }
  12%  {         opacity: 0.85; }
  88%  {         opacity: 0.85; }
  100% { cy: 32; opacity: 0;    }
}

/* 1. Travelling dot — dashed line (slower, dwells at end for spaced look) */
@keyframes s1-dot-dashed {
  0%   { cy: 0;  opacity: 0;   }
  8%   {         opacity: 0.5; }
  60%  {         opacity: 0.5; }
  70%  { cy: 32; opacity: 0;   }
  100% { cy: 32; opacity: 0;   }
}

.s1-dot {
  animation: s1-dot-solid 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.s1-dot--dashed {
  animation: s1-dot-dashed 3.8s cubic-bezier(0.4, 0, 0.6, 1) infinite 1.1s;
}

/* 2. New Lead card — soft red glow breathing */
@keyframes s1-notif-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(192,57,43,0.00),
      0 0 16px rgba(192,57,43,0.00);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(192,57,43,0.22),
      0 0 28px rgba(192,57,43,0.14),
      inset 0 0 14px rgba(192,57,43,0.04);
  }
}

.sf-s1 .sf-notif {
  animation: s1-notif-pulse 3.4s ease-in-out infinite;
}

/* 3. Sequential step light-up — clock + envelope flash in sync */
@keyframes s1-step-on {
  0%   { opacity: 0.45; filter: none; }
  10%  { opacity: 1;    filter: drop-shadow(0 0 5px rgba(237,237,237,0.20)); }
  30%  { opacity: 1;    filter: drop-shadow(0 0 5px rgba(237,237,237,0.20)); }
  48%  { opacity: 0.45; filter: none; }
  100% { opacity: 0.45; filter: none; }
}

/* 6s cycle; each step offset by 2s so they fire one after another */
.sf-s1 .sf-seq__step:nth-child(1) { animation: s1-step-on 6s ease-in-out infinite 0s; }
.sf-s1 .sf-seq__step:nth-child(2) { animation: s1-step-on 6s ease-in-out infinite 2s; }
.sf-s1 .sf-seq__step:nth-child(3) { animation: s1-step-on 6s ease-in-out infinite 4s; }

/* ---------- Social Section ---------- */
.sv-social {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sv-social__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.sv-social__logos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.sv-logo-row {
  display: flex;
  gap: 14px;
  align-items: center;
}
.sv-logo-item svg { display: block; }
.sv-logo-item--lg svg { width: 52px; height: 52px; }
.sv-post-card {
  background: #161616;
  border: 1px solid #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.sv-post-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sv-post-card__img {
  height: 88px;
  background: #1a1a1a;
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
}
.sv-post-card__img:first-child {
  border-right: 1px solid #2A2A2A;
}
.sv-post-card__label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.sv-post-card__caption {
  padding: 11px 14px;
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.55;
  border-top: 1px solid #2A2A2A;
}
.ig-mock {
  width: 320px;
  background: #161616;
  border: 1px solid #262626;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 22px 50px -8px rgba(192,57,43,0.18);
}
.ig-mock__header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
}
.ig-mock__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #252525;
  flex-shrink: 0;
  border: 1.5px solid #333;
}
.ig-mock__username {
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
  flex: 1;
  letter-spacing: -0.01em;
}
.ig-mock__follow {
  background: #C0392B;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  cursor: default;
  letter-spacing: 0.02em;
  font-family: inherit;
}
.ig-mock__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-mock__actions {
  display: flex;
  gap: 14px;
  padding: 10px 12px 5px;
  align-items: center;
}
.ig-mock__likes {
  padding: 0 12px 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
}
.ig-mock__caption {
  padding: 0 12px 8px;
  font-size: 12px;
  color: #EDEDED;
  line-height: 1.55;
}
.ig-mock__cap-user {
  font-weight: 700;
  color: #ffffff;
  margin-right: 5px;
}
.ig-mock__comments {
  padding: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ig-mock__comments p {
  font-size: 11px;
  color: #555555;
  line-height: 1.4;
  margin: 0;
}
.sv-social__content { display: flex; flex-direction: column; }
.sv-social__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.sv-social__list li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}
.sv-social__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-2);
}
.sv-social__pricing {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  font-style: italic;
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
}

/* ---------- Bundles Section ---------- */
.sv-bundles {
  padding: 120px 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(192,57,43,0.04) 0%, transparent 70%), var(--bg);
  border-top: 1px solid var(--border);
}
.sv-standalone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 32px 40px;
  margin-bottom: 12px;
}
.sv-standalone__content { flex: 1; }
.sv-standalone__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.sv-standalone__desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 60ch;
}
.sv-standalone__right { flex-shrink: 0; text-align: right; }
.sv-standalone__price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.sv-standalone__note { font-size: 12px; color: var(--text-3); margin-top: 3px; }
/* ── Pricing Cards (Bundles rebuild) ─────────── */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
  align-items: stretch;
}

.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.pcard--featured {
  border-color: rgba(192,57,43,0.40);
  background: linear-gradient(160deg, rgba(192,57,43,0.06) 0%, var(--surface) 52%);
  box-shadow:
    0 0 0 1px rgba(192,57,43,0.12),
    0 0 48px rgba(192,57,43,0.09),
    0 0 80px rgba(192,57,43,0.04);
}

.pcard__badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,57,43,0.10);
  border: 1px solid rgba(192,57,43,0.24);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.pcard__head { margin-bottom: 0; }

.pcard__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.pcard__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.65;
}

.pcard__pricing {
  padding: 20px 0;
  margin: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pcard__setup {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 7px;
}

.pcard__pm {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0.01em;
}

.pcard__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.pcard__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.5;
}

.pcard__chk {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.pcard__cta {
  width: 100%;
  justify-content: center;
}

/* ---------- Orbital Systems Section ---------- */
.orb-section {
  padding: 80px 0;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(237,237,237,0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.orb-layout {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 80px;
  align-items: center;
}

.orb-eye {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}

.orb-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}

.orb-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 40ch;
}

.orb-outer {
  display: flex;
  justify-content: center;
}

/* The orbital canvas */
.orb {
  position: relative;
  width: 540px;
  height: 540px;
  flex-shrink: 0;
}

/* Faint orbit ring */
.orb__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(237,237,237,0.07);
  pointer-events: none;
  z-index: 1;
}

/* Center hub */
.orb__center {
  position: absolute;
  width: 76px;
  height: 76px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #111111;
  border: 1px solid rgba(192,57,43,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow:
    0 0 0 7px rgba(192,57,43,0.04),
    0 0 30px rgba(192,57,43,0.10);
  transition: opacity 0.3s var(--ease);
}

.orb__initial {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Nodes — positioned by JS */
.orb__node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transform: translate(-50%, -22px); /* center the 44px circle at the calculated point */
  transition: opacity 0.22s var(--ease);
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}

.orb__node-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(237,237,237,0.45);
  transition:
    border-color 0.22s var(--ease),
    box-shadow   0.22s var(--ease),
    background   0.22s var(--ease),
    color        0.22s var(--ease);
}

.orb__node-circle svg {
  width: 17px;
  height: 17px;
  display: block;
}

.orb__node-label {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-3);
  text-align: center;
  white-space: normal;
  max-width: 76px;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: color 0.22s var(--ease);
}

/* Hover on idle nodes */
.orb__node:not(.orb__node--dim) .orb__node-circle:hover {
  border-color: rgba(237,237,237,0.22);
  background: #1c1c1c;
}

/* Active node */
.orb__node--active .orb__node-circle {
  background: #1f1515;
  border-color: rgba(192,57,43,0.50);
  box-shadow: 0 0 0 1px rgba(192,57,43,0.12), 0 0 18px rgba(192,57,43,0.18);
  color: var(--red);
}

.orb__node--active .orb__node-label {
  color: var(--text-2);
}

/* Dimmed nodes when another is active */
.orb__node--dim {
  opacity: 0.28;
  pointer-events: none;
}

/* Info card */
.orb__card {
  position: absolute;
  width: 196px;
  background: rgba(13,13,13,0.97);
  border: 1px solid #2A2A2A;
  border-radius: 10px;
  padding: 15px 17px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 20;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 36px rgba(0,0,0,0.55), 0 0 0 1px rgba(192,57,43,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.orb__card.orb-visible {
  opacity: 1;
  pointer-events: auto;
}

.orb__card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.orb__card-desc {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 13px;
}

.orb__card-link {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: opacity 0.15s ease;
}

.orb__card-link:hover { opacity: 0.72; }

/* Mobile list */
.orb-list {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.orb-list__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.orb-list__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(237,237,237,0.45);
}

.orb-list__icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.orb-list__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.orb-list__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.62;
  margin-bottom: 9px;
}

.orb-list__link {
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

@media (max-width: 620px) {
  .orb { display: none; }
  .orb-list { display: flex; }
}

/* ================================================
   ABOUT PAGE
   ================================================ */

/* Hero serif modifier (also fixes services.html headline) */
.sv-hero__title--serif {
  font-family: var(--font);
}

/* ── Bio section ── */
.ab-bio {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.ab-bio__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.ab-bio__left {
  display: flex;
  justify-content: flex-start;
  padding-top: 6px;
}
.ab-initial {
  width: 210px;
  height: 260px;
  background: #161616;
  border: 1px solid #2A2A2A;
  border-left: 2px solid var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.ab-initial::after {
  content: '';
  position: absolute;
  top: 22px;
  right: 22px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
}
.ab-initial__letter {
  font-family: var(--font);
  font-size: 148px;
  font-weight: 700;
  color: rgba(237,237,237,0.055);
  line-height: 1;
  user-select: none;
  letter-spacing: -0.04em;
}
.ab-bio__name {
  font-family: var(--font);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 32px;
}
.ab-bio__p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 20px;
}
.ab-bio__p:last-child { margin-bottom: 0; }

/* ── Stats + CTA section ── */
.ab-stats {
  padding: 100px 0;
  background: var(--bg);
}
.ab-stats__row {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 72px;
}
.ab-stat {
  flex: 1;
  padding: 52px 48px;
  border-right: 1px solid var(--border);
}
.ab-stat:first-child { padding-left: 0; }
.ab-stat:last-child  { border-right: none; padding-right: 0; }
.ab-stat__num {
  font-family: var(--font);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}
.ab-stat__lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.ab-stats__cta {
  text-align: center;
}

/* ── About responsive ── */
@media (max-width: 768px) {
  .ab-bio__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ab-bio__left {
    justify-content: flex-start;
  }
  .ab-stat {
    padding: 40px 32px;
  }
  .ab-stat:first-child { padding-left: 24px; }
}
@media (max-width: 480px) {
  .ab-bio { padding: 72px 0; }
  .ab-stats { padding: 72px 0; }
  .ab-stats__row {
    flex-direction: column;
    border-bottom: none;
  }
  .ab-stat {
    padding: 28px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .ab-stat:last-child { border-bottom: none; }
  .ab-initial {
    width: 160px;
    height: 200px;
  }
  .ab-initial__letter { font-size: 110px; }
}

/* ---------- Scroll Animations ---------- */
[data-a] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
[data-a].in { opacity: 1; transform: translateY(0); }
[data-a][data-d="1"] { transition-delay: 0.06s; }
[data-a][data-d="2"] { transition-delay: 0.12s; }
[data-a][data-d="3"] { transition-delay: 0.18s; }
[data-a][data-d="4"] { transition-delay: 0.24s; }
[data-a][data-d="5"] { transition-delay: 0.30s; }
[data-a][data-d="6"] { transition-delay: 0.36s; }

/* ── Typewriter cursor ── */
.tw-cursor {
  display: inline-block;
  width: 0;
  border-right: 2px solid currentColor;
  height: 0.82em;
  vertical-align: middle;
  position: relative;
  top: -0.06em;
  margin-left: 4px;
  animation: tw-blink 0.85s step-end infinite;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-a] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ================================================
   UI LAYER ENHANCEMENTS — 2026 sweep
   All prefixed ui- to avoid specificity conflicts
   ================================================ */

/* ── New surface tokens ── */
:root {
  --surface-1:     #0F0F0F;
  --surface-2:     #131313;
  --surface-3:     #171717;
  --border-subtle: rgba(255,255,255,0.04);
}

/* ── Scroll Progress Indicator ── */
#ui-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  background: var(--red);
  width: 0%;
  z-index: 9999;
  opacity: 0.6;
  pointer-events: none;
  transform: translateZ(0);
}

/* ── Nav link underline slide (left→in on hover, right→out on leave) ── */
.nav__link { position: relative; }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px; right: 14px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}
.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Button micro-interactions ── */
.btn:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.btn-red {
  transition:
    background   var(--t) var(--ease),
    color        var(--t) var(--ease),
    border-color var(--t) var(--ease),
    box-shadow   var(--t) var(--ease);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 0 0 1px rgba(192,57,43,0.4);
}

/* ── Footer link hover underline ── */
.footer__links li a {
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color var(--t) var(--ease), border-bottom-color 0.15s ease;
}
.footer__links li a:hover { border-bottom-color: var(--border); }

/* ── Form focus: red border + subtle tint ── */
.fi:focus, .fs:focus, .ft:focus {
  border-color: var(--red) !important;
  background: rgba(192,57,43,0.02) !important;
}
/* Label brightens on focus */
.fg:focus-within label {
  color: var(--text-2);
  transition: color 0.15s ease;
}

/* ── Hero headline blur entrance ── */
@media (prefers-reduced-motion: no-preference) {
  .hero__headline[data-a] {
    filter: blur(4px);
    transition:
      opacity  0.6s var(--ease),
      transform 0.6s var(--ease),
      filter   0.6s var(--ease);
  }
  .hero__headline[data-a].in { filter: blur(0); }
}

/* ── Gradient section dividers (replaces flat border-top) ── */
.ui-divider-top {
  position: relative !important;
  border-top: none !important;
}
.ui-divider-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--border) 18%,
    var(--border) 82%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Pricing featured card entrance pulse ── */
@keyframes ui-pcard-glow {
  0%   { box-shadow: 0 0 0 1px rgba(192,57,43,0.12), 0 0  0px 0px rgba(192,57,43,0); }
  55%  { box-shadow: 0 0 0 1px rgba(192,57,43,0.35), 0 0 36px 6px rgba(192,57,43,0.20); }
  100% { box-shadow: 0 0 0 1px rgba(192,57,43,0.12), 0 0 48px     rgba(192,57,43,0.09), 0 0 80px rgba(192,57,43,0.04); }
}
.ui-pcard-pulse { animation: ui-pcard-glow 0.65s ease-out forwards; }

/* ── Surface depth: alternating section backgrounds ── */
.orb-section  { background-color: var(--surface-1); }
.about        { background-color: var(--surface-1); }
.bia-section  { background-color: var(--surface-1); }

/* ── Reduced motion: disable all ui- layer animations ── */
@media (prefers-reduced-motion: reduce) {
  #ui-scroll-progress            { display: none; }
  .nav__link::after              { transition: none; }
  .hero__headline[data-a]        { filter: none !important; transition: none !important; }
  .ui-divider-top::before        { display: none; }
  .ui-pcard-pulse                { animation: none; }
}

/* ---------- Responsive 1024px ---------- */
@media (max-width: 1024px) {
  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .footer__columns { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-grid       { grid-template-columns: 1fr; gap: 36px; }
  .cta-band__grid  { grid-template-columns: 1fr; gap: 40px; }
  .about__grid     { gap: 60px; }
  .sv-social__grid { grid-template-columns: 1fr; gap: 48px; align-items: start; }
  .sv-standalone   { flex-direction: column; align-items: flex-start; }
  .sv-standalone__right { text-align: left; }
  .sv-bundles__grid { grid-template-columns: 1fr 1fr; }
  .pcard-grid { grid-template-columns: 1fr 1fr; }
  .orb-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Responsive 768px ---------- */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .nav__links  { display: none; }
  .nav__burger { display: flex; }

  .hero__content   { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 80px; }
  .hero__actions   { flex-direction: column; max-width: 260px; }
  .hero__actions .btn { justify-content: center; }

  .services { padding: 72px 0; }
  .services__head  { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .services__grid  { grid-template-columns: 1fr; }

  .about { padding: 72px 0; }
  .about__grid     { grid-template-columns: 1fr; gap: 40px; }
  .about__stats    { gap: 32px; }

  .cta-band { padding: 64px 0; }
  .orb-section { padding: 64px 0; }

  .footer__columns { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__base    { flex-direction: column; align-items: flex-start; }
  .footer__masthead { flex-direction: column; align-items: flex-start; }

  .form-card { padding: 28px 20px; }
  .form-row  { grid-template-columns: 1fr; gap: 0; }

  .sv-hero__content { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 72px; }
  .sv-systems { padding: 64px 0 0; }
  .sv-social, .sv-bundles { padding: 80px 0; }
  /* sf- system rows → single column on mobile */
  .sf-row { grid-template-columns: 1fr; min-height: auto; }
  .sf-row--flip > .sf-text { grid-column: 1; grid-row: 2; }
  .sf-row--flip > .sf-vis  { grid-column: 1; grid-row: 1; }
  .sf-text { padding: 52px var(--gutter); }
  .sf-row--flip .sf-text { padding: 52px var(--gutter); }
  .sf-text__inner { max-width: 100%; }
  .sf-vis { border-left: none; border-right: none; border-top: 1px solid var(--border); min-height: 280px; padding: 44px 36px; }
  .sf-row--flip .sf-vis { border-right: none; }
  .sf-pair { grid-template-columns: 1fr; }
  .sf-pair__item--right { border-left: none; border-top: 1px solid var(--border); }
  .sf-pair__text { padding: 40px var(--gutter) 28px; }
  .sf-pair__vis { min-height: 220px; }
  .sv-bundles__grid { grid-template-columns: 1fr; }
  .pcard-grid { grid-template-columns: 1fr; }
  .sv-standalone { padding: 24px; }

  /* Email inbox mockup — System 02 only */
  .sf-email-client {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .sf-ec-sb {
    display: none;
  }
  .sf-ec-list {
    width: 150px;
  }
}

/* ---------- Responsive 480px ---------- */
@media (max-width: 480px) {
  .footer__columns { grid-template-columns: 1fr; }
  .about__stats    { flex-direction: column; gap: 24px; }
}

/* ================================================
   BUSINESS INTELLIGENCE APP — bia- namespace
   ================================================ */

.bia-section {
  padding: 120px 0;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(237,237,237,0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--border);
}

/* ── Part 1: Header ── */
.bia-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.bia-eye {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.bia-headline {
  font-family: var(--font);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 20px;
}
.bia-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 54ch;
  margin: 0 auto;
}

/* ── Part 2: Browser Mockup ── */
.bia-mockup-wrap {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: 0 28px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
}
.bia-browser__chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: #111111;
  border-bottom: 1px solid var(--border);
}
.bia-browser__dots { display: flex; gap: 6px; flex-shrink: 0; }
.bia-dot { display: block; width: 11px; height: 11px; border-radius: 50%; }
.bia-dot--r { background: #FF5F57; }
.bia-dot--y { background: #FEBC2E; }
.bia-dot--g { background: #28C840; }
.bia-browser__url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 12px;
  max-width: 300px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

.bia-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 46px;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
}
.bia-app-name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.bia-powered-pill {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}

.bia-tab-row {
  display: flex;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.bia-tab-row::-webkit-scrollbar { display: none; }
.bia-tab {
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s ease, border-color 0.15s ease;
  font-family: var(--font);
}
.bia-tab:hover { color: var(--text-2); }
.bia-tab.active { color: var(--text); border-bottom-color: var(--red); }

.bia-content {
  background: #0A0A0A;
  min-height: 300px;
  padding: 18px;
}
.bia-panel { display: none; }
.bia-panel.active {
  display: block;
  animation: bia-fade 0.15s ease forwards;
}
@keyframes bia-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Dashboard */
.bia-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.bia-metric-card {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.bia-metric-card.bia-visible { opacity: 1; transform: translateY(0); }
.bia-metric-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.bia-metric-val {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.bia-lost-banner {
  background: rgba(192,57,43,0.055);
  border: 1px solid rgba(192,57,43,0.18);
  border-radius: 9px;
  padding: 12px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.bia-lost-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(192,57,43,0.75);
  flex-shrink: 0;
}
.bia-lost-items { display: flex; gap: 20px; flex-wrap: wrap; }
.bia-lost-item { display: flex; flex-direction: column; gap: 2px; }
.bia-lost-name { font-size: 9px; color: var(--text-3); }
.bia-lost-val { font-size: 14px; font-weight: 600; color: var(--text); }
.bia-lost-val--big {
  font-family: var(--font);
  font-size: 18px;
  color: var(--red);
}

.bia-savings {
  background: rgba(22,101,52,0.12);
  border: 1px solid rgba(74,222,128,0.13);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 8px;
}
.bia-savings strong { color: #4ade80; font-weight: 600; }

.bia-pipeline {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 16px;
}
.bia-pipeline-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.bia-pipeline-row {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.bia-pipeline-row::-webkit-scrollbar { display: none; }
.bia-pipe-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  min-width: 52px;
}
.bia-pipe-num {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.bia-pipe-name {
  font-size: 8px;
  color: var(--text-3);
  text-align: center;
  line-height: 1.3;
}
.bia-pipe-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 4px;
  flex-shrink: 0;
}
.bia-pipe-pct {
  font-size: 8px;
  font-weight: 600;
  color: var(--red);
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 20px;
  padding: 1px 4px;
}

/* Job Board */
.bia-jb-search {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #161616;
  border: 1px solid var(--border-2);
  border-radius: 7px;
  padding: 7px 11px;
  margin-bottom: 9px;
  font-size: 11px;
  color: var(--text-3);
  max-width: 260px;
}
.bia-jb-list { display: flex; flex-direction: column; gap: 7px; }
.bia-jb-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #161616;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 9px;
  padding: 11px 13px;
}
.bia-jb-card--complete { border-left-color: rgba(74,222,128,0.55); }
.bia-jb-card--pending  { border-left-color: rgba(251,191,36,0.55); }
.bia-jb-card--lost     { border-left-color: rgba(160,160,160,0.25); }
.bia-jb-left { flex: 1; min-width: 0; }
.bia-jb-name { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.bia-jb-meta { font-size: 10px; color: var(--text-2); }
.bia-jb-age  { font-size: 10px; color: var(--text-3); margin-top: 2px; }
.bia-jb-age.urgent { color: var(--red); }
.bia-jb-right { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.bia-jb-price { font-size: 12px; font-weight: 600; color: var(--text); }

.bia-badge {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
}
.bia-badge--complete { color: #4ade80; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.22); }
.bia-badge--pending  { color: rgba(251,191,36,0.92); background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.24); }
.bia-badge--lost     { color: rgba(160,160,160,0.65); background: rgba(160,160,160,0.08); border: 1px solid rgba(160,160,160,0.18); }
.bia-badge--drafted  { color: rgba(99,179,237,0.9); background: rgba(99,179,237,0.1); border: 1px solid rgba(99,179,237,0.22); }
.bia-badge--new      { color: var(--red); background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.24); }

.bia-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  font-family: var(--font);
}
.bia-action-btn:hover { color: var(--text-2); border-color: #333; }
.bia-action-btn.bia-sent { color: #4ade80; border-color: rgba(74,222,128,0.3); }

/* Add Lead */
.bia-form-mock { max-width: 400px; }
.bia-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 7px; }
.bia-form-field { display: flex; flex-direction: column; gap: 3px; }
.bia-form-field label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.bia-form-input {
  background: #161616;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 11px;
  color: var(--text-2);
  font-family: var(--font);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.bia-form-input:focus {
  border-color: rgba(192,57,43,0.45);
  box-shadow: 0 0 0 2px rgba(192,57,43,0.08);
}
select.bia-form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(237,237,237,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
select.bia-form-input option { background: #1a1a1a; color: var(--text-2); }
.bia-form-actions { margin-top: 10px; }
.bia-add-lead-btn {
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-family: var(--font);
}
.bia-add-lead-btn:hover { background: var(--red-dark); }
.bia-add-lead-btn.bia-sent { background: rgba(74,222,128,0.2); color: #4ade80; }

.bia-notif-toast {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #161616;
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 11px;
  color: var(--text-2);
  margin-top: 10px;
  max-width: 280px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.bia-notif-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.bia-toast-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74,222,128,0.5);
}

/* Agents */
.bia-agents-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 8px 0;
}
.bia-orbital-mini {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
.bia-orb-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 160px; height: 160px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(237,237,237,0.07);
  pointer-events: none;
}
.bia-orb-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(192,57,43,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
  box-shadow: 0 0 20px rgba(192,57,43,0.1);
  z-index: 2;
}
.bia-orb-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.bia-orb-node span {
  font-size: 7.5px;
  color: var(--text-3);
  text-align: center;
  max-width: 46px;
  line-height: 1.25;
}
.bia-orb-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid var(--border-2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bia-orb-dot--active {
  border-color: rgba(192,57,43,0.5);
  box-shadow: 0 0 0 1px rgba(192,57,43,0.12), 0 0 12px rgba(192,57,43,0.2);
}
@keyframes bia-orb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(192,57,43,0.6), 0 0 0 1px rgba(192,57,43,0.12); border-color: var(--red); }
  100% { box-shadow: 0 0 0 20px rgba(192,57,43,0), 0 0 0 1px rgba(192,57,43,0.12); border-color: rgba(192,57,43,0.4); }
}
.bia-orb-dot--pulse { animation: bia-orb-pulse 0.75s ease-out forwards; }

.bia-agent-info { flex: 1; }
.bia-agent-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.bia-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74,222,128,0.5);
}
.bia-agent-name-txt { font-size: 14px; font-weight: 600; color: var(--text); }
.bia-agent-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 4px;
  padding: 2px 7px;
}
.bia-agent-last { font-size: 12px; color: var(--text-3); margin-bottom: 14px; }
.bia-trigger-btn {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  font-family: var(--font);
}
.bia-trigger-btn:hover { color: var(--text); border-color: #333; background: rgba(255,255,255,0.03); }

/* Reviews */
.bia-reviews-list { display: flex; flex-direction: column; gap: 10px; }
.bia-review-card {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
}
.bia-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 9px;
}
.bia-reviewer-name { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.bia-review-stars  { font-size: 12px; color: #F59E0B; letter-spacing: 1px; margin-bottom: 2px; }
.bia-review-text   { font-size: 10px; color: var(--text-3); font-style: italic; }
.bia-response-area {
  width: 100%;
  background: #0F0F0F;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--text-2);
  resize: none;
  outline: none;
  line-height: 1.6;
  margin-bottom: 8px;
  font-family: var(--font);
}
.bia-response-placeholder {
  min-height: 36px;
  background: #0F0F0F;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--text-2);
  margin-bottom: 8px;
  line-height: 1.6;
}
.bia-approve-btn {
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--font);
}
.bia-approve-btn:hover { background: var(--red-dark); }
.bia-approve-btn.bia-sent { background: rgba(74,222,128,0.2); color: #4ade80; }
.bia-generate-btn {
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  font-family: var(--font);
}
.bia-generate-btn:hover { color: var(--text); border-color: #333; }
.bia-generate-btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
@keyframes bia-dot-blink {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}
.bia-typing-dot { animation: bia-dot-blink 1s ease-in-out infinite; }
.bia-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.bia-typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* AI Assistant */
.bia-chat-wrap { display: flex; flex-direction: column; gap: 10px; }
.bia-chat-messages { display: flex; flex-direction: column; gap: 7px; }
.bia-chat-msg { display: flex; }
.bia-chat-msg--ai   { justify-content: flex-start; }
.bia-chat-msg--user { justify-content: flex-end; }
.bia-chat-bubble {
  max-width: 78%;
  font-size: 11.5px;
  line-height: 1.65;
  padding: 9px 12px;
  font-family: var(--font);
}
.bia-chat-msg--ai .bia-chat-bubble {
  background: #1a1a1a;
  border: 1px solid var(--border-2);
  border-radius: 12px 12px 12px 4px;
  color: var(--text-2);
}
.bia-chat-msg--user .bia-chat-bubble {
  background: rgba(192,57,43,0.13);
  border: 1px solid rgba(192,57,43,0.18);
  border-radius: 12px 12px 4px 12px;
  color: var(--text);
}
.bia-chat-input-row {
  display: flex;
  align-items: center;
  background: #161616;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 9px 13px;
  gap: 6px;
}
.bia-chat-placeholder {
  font-size: 11.5px;
  color: var(--text-3);
  flex: 1;
}
.bia-chat-typed {
  font-size: 11.5px;
  color: var(--text);
  flex: 1;
}
.bia-chat-cursor {
  display: inline-block;
  width: 1.5px;
  height: 13px;
  background: var(--text-2);
  flex-shrink: 0;
  animation: bia-blink 0.85s step-end infinite;
  vertical-align: middle;
}
@keyframes bia-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Part 3: Bento Grid ── */
.bia-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.bia-bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-height: 160px;
}
.bia-bento-card:hover { border-color: var(--border-2); background: #181818; }
.bia-bento-vis {
  flex: 1;
  display: flex;
  align-items: center;
}
.bia-bento-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.55;
}

/* Bento 1 — mini job card */
.bia-mini-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #161616;
  border: 1px solid var(--border);
  border-left: 3px solid rgba(251,191,36,0.55);
  border-radius: 8px;
  padding: 9px 11px;
  width: 100%;
  transition: border-left-color 0.5s ease;
}
.bia-bento-card:hover .bia-mini-job { border-left-color: rgba(74,222,128,0.55); }
.bia-mini-job-name { font-size: 10.5px; color: var(--text-2); }
.bia-mini-badge {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 6px;
  transition: color 0.5s ease, background 0.5s ease, border-color 0.5s ease;
  border: 1px solid transparent;
}
.bia-mini-badge--pending {
  color: rgba(251,191,36,0.92);
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.24);
}
.bia-bento-card:hover .bia-mini-badge--pending {
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.22);
}

/* Bento 2 — mini form */
.bia-mini-form { display: flex; flex-direction: column; gap: 5px; width: 100%; }
.bia-mini-field {
  background: #0F0F0F;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 10px;
  color: var(--text-3);
}
.bia-mini-field--filled { color: var(--text-2); border-color: var(--border-2); }
.bia-mini-addlead-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 500;
  font-family: var(--font);
  align-self: flex-start;
  margin-top: 2px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.bia-bento-card:hover .bia-mini-addlead-btn { box-shadow: 0 0 14px rgba(192,57,43,0.4); }

/* Bento 3 — mini orbital */
.bia-mini-orb {
  position: relative;
  width: 96px;
  height: 96px;
}
.bia-mini-orb-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 76px; height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(237,237,237,0.07);
  pointer-events: none;
}
.bia-mini-orb-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(192,57,43,0.3);
  z-index: 2;
}
.bia-mini-node {
  position: absolute;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid var(--border-2);
  transform: translate(-50%, -50%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}
.bia-mini-node--lead {
  border-color: rgba(192,57,43,0.5);
  box-shadow: 0 0 8px rgba(192,57,43,0.18);
}
.bia-bento-card:hover .bia-mini-node--lead { animation: bia-mini-pulse 0.65s ease-out; }
@keyframes bia-mini-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(192,57,43,0.6); }
  100% { box-shadow: 0 0 0 12px rgba(192,57,43,0); }
}

/* Bento 4 — stars */
.bia-mini-stars { display: flex; gap: 3px; margin-bottom: 7px; }
.bia-mini-star {
  font-size: 17px;
  color: #F59E0B;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.bia-bento-card:hover .bia-mini-star {
  transform: scale(1.15);
  filter: brightness(1.25) drop-shadow(0 0 3px rgba(245,158,11,0.45));
}
.bia-bento-card:hover .bia-mini-star:nth-child(1) { transition-delay: 0s; }
.bia-bento-card:hover .bia-mini-star:nth-child(2) { transition-delay: 0.06s; }
.bia-bento-card:hover .bia-mini-star:nth-child(3) { transition-delay: 0.12s; }
.bia-bento-card:hover .bia-mini-star:nth-child(4) { transition-delay: 0.18s; }
.bia-bento-card:hover .bia-mini-star:nth-child(5) { transition-delay: 0.24s; }
.bia-mini-review-q {
  font-size: 10px;
  color: var(--text-3);
  font-style: italic;
  opacity: 1;
  transition: color 0.3s ease;
}
.bia-bento-card:hover .bia-mini-review-q { color: var(--text-2); }

/* Bento interactive label */
.bia-bento-try {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

/* Bento 2 — notification toast */
.bia-bento-notif {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 9px;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transform: translateX(12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2,0,0.4,1), opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
}
.bia-bento-notif.show { transform: translateX(0); opacity: 1; }
.bia-bento-notif-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(74,222,128,0.5);
}

/* Bento 1 — status badge variants */
.bia-mini-badge--complete {
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.22);
}
.bia-mini-badge--lost {
  color: rgba(237,237,237,0.35);
  background: rgba(237,237,237,0.05);
  border-color: rgba(237,237,237,0.1);
}

/* Bento 4 — approve button */
.bia-bento-approve-btn {
  margin-top: 5px;
  padding: 4px 10px;
  font-size: 9.5px;
  font-weight: 500;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: var(--font);
}
.bia-bento-approve-btn:hover { background: var(--red-dark); }
.bia-bento-approve-btn.bia-sent { background: rgba(74,222,128,0.15); color: #4ade80; }

/* Bento 2 — add lead success state */
.bia-mini-addlead-btn.bia-bento-addlead-success {
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  box-shadow: none;
}

/* Bento 5 — mini chat */
.bia-mini-chat { display: flex; flex-direction: column; gap: 5px; width: 100%; }
.bia-mini-bubble {
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 9.5px;
  line-height: 1.5;
}
.bia-mini-bubble--user {
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.16);
  color: var(--text-2);
  align-self: flex-end;
  max-width: 90%;
  min-height: 14px;
}
.bia-mini-bubble--ai {
  background: #1a1a1a;
  border: 1px solid var(--border-2);
  color: var(--text-3);
  max-width: 90%;
  transition: opacity 0.35s ease;
}

/* Bento 6 — revenue counter */
.bia-mini-rev-num {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 5px;
}
.bia-mini-rev-lbl {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── Pricing Card ── */
.bia-pricing-wrap { margin-top: 0; }
.bia-pcard {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
  background: linear-gradient(135deg, rgba(192,57,43,0.07) 0%, var(--surface) 52%);
  border: 1px solid rgba(192,57,43,0.35);
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 0 0 1px rgba(192,57,43,0.09), 0 0 60px rgba(192,57,43,0.06);
}
.bia-pcard-left { flex: 1; }
.bia-pcard-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.24);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 16px;
}
.bia-pcard-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 10px;
}
.bia-pcard-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 44ch;
  margin-bottom: 24px;
}
.bia-pcard-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
}
.bia-pcard-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
}
.bia-pcard-features li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(192,57,43,0.5);
  flex-shrink: 0;
}
.bia-pcard-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  min-width: 200px;
}
.bia-pcard-price {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.bia-pcard-pm { font-size: 13px; color: var(--text-3); margin-bottom: 16px; }
.bia-pcard-cta { width: 100%; justify-content: center; padding: 12px 28px; font-size: 14px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .bia-metrics { grid-template-columns: repeat(2, 1fr); }
  .bia-bento   { grid-template-columns: repeat(2, 1fr); }
  .bia-pcard   { flex-direction: column; gap: 32px; }
  .bia-pcard-right { align-items: flex-start; }
  .bia-agents-wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 640px) {
  .bia-section { padding: 80px 0; }
  .bia-header  { margin-bottom: 48px; }
  .bia-bento   { grid-template-columns: 1fr; }
  .bia-metrics { grid-template-columns: repeat(2, 1fr); }
  .bia-tab     { padding: 9px 10px; font-size: 11px; }
  .bia-powered-pill { display: none; }
  .bia-pcard   { padding: 28px 24px; }
  .bia-pcard-price { font-size: 40px; }
  .bia-pcard-right { min-width: 0; width: 100%; }
  .bia-pcard-cta { width: auto; }
}
