/* ============================================================
   MacSweep – tequila.ink-inspired template
   Black bg · Warm beige text · Orange accent · Oswald + Inter
   Zero border-radius · Editorial / brutalist feel
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ── Accessibility ── */
.skip { position: absolute; left: -9999px; top: 0; background: #FF6E00; color: #000; padding: .6rem 1rem; z-index: 1000; font-weight: 700; font-size: .9rem; }
.skip:focus { left: 0; }

/* ── Tokens ── */
:root {
  --black:    #000000;
  --black-2:  #0D0D0D;
  --black-3:  #111111;
  --black-4:  #1A1A1A;
  --line:     #2A2A2A;
  --line-lt:  #333333;
  --orange:   #FF6E00;
  --beige:    #E8E4D6;
  --beige-dk: #DED8C4;
  --muted:    #666666;
  --muted-lt: #444444;
  --font-h:   'Oswald', sans-serif;
  --font-b:   'Inter', sans-serif;
}

body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--beige);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (min-width: 600px) { body { font-size: 16px; } }

img, svg { display: block; max-width: 100%; }
a { color: var(--beige); text-decoration: none; }
ul { list-style: none; }
details { display: block; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ── Section spacing ── */
.section { padding-block: 80px; }
@media (min-width: 768px) { .section { padding-block: 120px; } }

/* ── Section header ── */
.section__header { text-align: center; margin-bottom: 60px; }

.section__label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
@media (min-width: 600px) { .section__label { font-size: 12px; } }

.section__title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--beige);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── Buttons (tequila.ink fill animation) ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  padding: 14px 28px;
  transition: background-position 0.4s ease, color 0.3s ease;
  white-space: nowrap;
  border-radius: 0;
  text-transform: uppercase;
}
@media (min-width: 600px) { .btn { font-size: 14px; } }

/* Fill button: beige text → black-on-beige fill from bottom */
.btn--fill {
  color: var(--beige-dk);
  background: linear-gradient(to top, transparent 50%, var(--beige-dk) 50%);
  background-size: 100% 200%;
  background-position: bottom;
  border: 1px solid var(--line-lt);
}
.btn--fill:hover {
  background-position: top;
  color: var(--black);
  border-color: var(--beige-dk);
}

/* Orange fill button */
.btn--orange {
  color: var(--black);
  background: linear-gradient(to top, var(--orange) 50%, var(--beige-dk) 50%);
  background-size: 100% 200%;
  background-position: bottom;
  border: 1px solid var(--orange);
}
.btn--orange:hover { background-position: top; }

/* Outline button */
.btn--outline {
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line-lt);
}
.btn--outline:hover { color: var(--beige); border-color: var(--beige-dk); }

.btn--lg { padding: 18px 40px; font-size: 13px; }
@media (min-width: 600px) { .btn--lg { font-size: 16px; padding: 20px 48px; } }


/* ════════════════════════════
   LOADER
════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.loader.hide { opacity: 0; pointer-events: none; }
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader__inner span {
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.loader__spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }


/* ════════════════════════════
   HEADER
════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s;
}
.header__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo span {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.header__nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  transition: color 0.25s;
}
.header__nav-link:hover { color: var(--beige); }

.header__right { margin-left: 20px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--beige);
  transition: 0.25s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 57px; left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  padding: 24px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.mobile-nav a:hover { color: var(--beige); }


/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 120px 20px 0;
  max-width: 1400px;
  margin-inline: auto;
  overflow: visible;
  gap: 40px;
}

/* Vertical grid lines (tequila vibe) */
.hero__lines {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
  z-index: 0;
}
.hero__line {
  width: 1px;
  height: 100%;
  background: var(--line);
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 620px;
  padding-bottom: 80px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.hero__eyebrow span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 600px) { .hero__eyebrow span { font-size: 12px; } }

.hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--beige);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
@media (min-width: 600px) { .hero__sub { font-size: 17px; } }
.hero__br { display: none; }
@media (min-width: 768px) { .hero__br { display: block; } }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__proof-item strong {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: 0.02em;
}
@media (min-width: 600px) { .hero__proof-item strong { font-size: 28px; } }
.hero__proof-item span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__proof-sep {
  width: 1px;
  height: 36px;
  background: var(--line-lt);
}

/* Mascot */
.hero__mascot {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: clamp(300px, 34vw, 480px);
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  margin-bottom: -10px;
}
.scrubby {
  width: 100%;
  overflow: visible;
  animation: float 5s ease-in-out infinite;
}
.scrubby__label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-lt);
  margin-top: 12px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--line-lt);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--orange);
  animation: slide 2s linear infinite;
}
.hero__scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ════════════════════════════
   WHAT WE CLEAN — Swiper
════════════════════════════ */
/* ════════════════════════════
   WHAT WE CLEAN — full grid
════════════════════════════ */
.clean {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding-block: 80px;
}
@media (min-width: 768px) { .clean { padding-block: 120px; } }

/* Section header row */
.clean__header {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.clean__intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .clean__header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .clean__intro { max-width: 100%; }
}

/* The 3-column grid */
.clean__grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line); /* gap color = border */
}
@media (max-width: 900px) {
  .clean__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .clean__grid { grid-template-columns: 1fr; }
}

/* Individual card */
.clean-card {
  background: var(--black);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
  transition: background 0.25s;
  overflow: hidden;
}
.clean-card::before {
  /* Animated orange top border on hover */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.clean-card:hover { background: var(--black-3); }
.clean-card:hover::before { transform: scaleX(1); }
.clean-card:hover .clean-card__icon { color: var(--orange); }
.clean-card:hover .clean-card__num { color: var(--beige-dk); }

/* Card top row: number + icon */
.clean-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.clean-card__num {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted-lt);
  transition: color 0.25s;
  line-height: 1;
  padding-top: 4px;
}

.clean-card__icon {
  width: 44px;
  height: 44px;
  color: var(--beige-dk);
  flex-shrink: 0;
  transition: color 0.25s;
}
.clean-card__icon svg { width: 44px; height: 44px; }

.clean-card__title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.1;
}

.clean-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}
@media (min-width: 600px) { .clean-card__desc { font-size: 14px; } }

.clean-card__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: auto;
}
.clean-card__stat strong {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  line-height: 1;
}
.clean-card__stat span {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Swiper pagination override */
.swiper-pagination-bullet {
  min-width: 28px !important;
  height: 3px !important;
  border-radius: 0 !important;
  background: var(--beige) !important;
  opacity: 0.2 !important;
}
.swiper-pagination-bullet-active {
  min-width: 66px !important;
  background: var(--orange) !important;
  opacity: 1 !important;
}


/* ════════════════════════════
   FOR WHO
════════════════════════════ */
.forwho {
  background: var(--black-2);
  border-top: 1px solid var(--line);
}

.forwho__grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.forwho__col {
  flex: 1;
  padding: 48px 40px;
}
.forwho__col:first-child { border-right: 1px solid var(--line); }

.forwho__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 4px 12px;
  margin-bottom: 28px;
}
.forwho__tag--alt {
  color: var(--beige-dk);
  border-color: var(--line-lt);
}

.forwho__heading {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--beige);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.forwho__list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.forwho__list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.forwho__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 1px;
  background: var(--orange);
}

.forwho__divider { display: none; }


/* ════════════════════════════
   GUARANTEES
════════════════════════════ */
.guarantees {
  background: var(--black);
  border-top: 1px solid var(--line);
}

.guarantees__grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .guarantees__grid { grid-template-columns: repeat(4, 1fr); }
}

.guarantee-block {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guarantee-block:last-child { border-right: none; }
@media (max-width: 767px) {
  .guarantee-block:nth-child(2n) { border-right: none; }
  .guarantee-block:nth-child(3), .guarantee-block:nth-child(4) { border-bottom: none; }
}
@media (min-width: 768px) {
  .guarantee-block { border-bottom: none; }
  .guarantee-block:last-child { border-right: none; }
}

.guarantee-block__icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
}
.guarantee-block__icon svg { width: 36px; height: 36px; }

.guarantee-block h3 {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
@media (min-width: 600px) { .guarantee-block h3 { font-size: 18px; } }

.guarantee-block p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
@media (min-width: 600px) { .guarantee-block p { font-size: 13px; } }


/* ════════════════════════════
   CALCULATOR
════════════════════════════ */
.calc {
  background: var(--black-2);
  border-top: 1px solid var(--line);
}

.calc__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.calc__left { flex: 1; }
.calc__right { flex: 1; }

.calc__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 20px;
  margin-bottom: 36px;
  max-width: 400px;
}

.calc__field { margin-bottom: 24px; }

.calc__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
@media (min-width: 600px) { .calc__label { font-size: 11px; } }

.calc__select {
  width: 100%;
  background: var(--black-3);
  border: 1px solid var(--line-lt);
  color: var(--beige-dk);
  font-family: var(--font-b);
  font-size: 13px;
  padding: 14px 18px;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.25s;
}
.calc__select:focus { outline: none; border-color: var(--orange); }
.calc__select option { background: var(--black-3); }

.calc__btn { margin-top: 8px; }

/* Result box */
.calc__result-box {
  background: var(--black-3);
  border: 1px solid var(--line);
  padding: 40px 36px;
}
.calc__result-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.calc__result-num {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  transition: 0.3s;
}
.calc__result-unit {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.calc__result-breakdown {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc__breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.calc__breakdown-item span:last-child {
  color: var(--beige-dk);
  font-weight: 700;
}
.calc__result-note {
  font-size: 10px;
  color: var(--muted-lt);
  letter-spacing: 0.05em;
}

/* Mini CHIP in calculator */
.calc__chip-mini {
  display: none; /* shown by JS after calculate */
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  animation: chipMiniIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.calc__chip-mini.visible { display: flex; }
.calc__chip-mini svg {
  width: 120px;
  animation: victoryBounceSmall 1s ease-in-out infinite;
}
@keyframes victoryBounceSmall {
  0%,100% { transform: translateY(0) rotate(0deg); }
  35%     { transform: translateY(-10px) rotate(-2deg) scale(1.04); }
  65%     { transform: translateY(-4px) rotate(2deg); }
}
@keyframes chipMiniIn {
  from { opacity: 0; transform: scale(0.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.calc__chip-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}


/* ════════════════════════════
   TEAM — Swiper
════════════════════════════ */
.team {
  background: var(--black);
  border-top: 1px solid var(--line);
}

.teamSwiper {
  padding: 0 20px 60px !important;
  max-width: 1400px;
  margin-inline: auto;
}
.teamSwiper .swiper-slide { width: 280px; }

.team-card {
  background: var(--black-3);
  border: 1px solid var(--line);
  padding: 28px;
  transition: border-color 0.25s;
}
.team-card:hover { border-color: var(--line-lt); }

.team-card__avatar {
  width: 80px; height: 80px;
  margin-bottom: 20px;
  overflow: hidden;
}

.team-card h3 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
@media (min-width: 600px) { .team-card__bio { font-size: 13px; } }


/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq {
  background: var(--black-2);
  border-top: 1px solid var(--line);
}
.faq__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: 20px;
}
.faq__head {
  text-align: left !important;
}

.faq__list { display: flex; flex-direction: column; }

.faq__item {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.faq__item[open] { background: var(--black-3); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 500;
  color: var(--beige);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 16px;
  padding-inline: 0;
}
.faq__item[open] .faq__q { padding-inline: 0; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-family: var(--font-b);
  font-size: 20px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq__item[open] .faq__q::after {
  content: '—';
  font-size: 16px;
}

.faq__a {
  padding: 0 0 28px;
  animation: fadeDown 0.2s ease;
}
.faq__a p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
@media (min-width: 600px) { .faq__a p { font-size: 15px; } }


/* ════════════════════════════
   DOWNLOAD
════════════════════════════ */
.download {
  background: var(--black);
  border-top: 1px solid var(--line);
}
.download__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.download__left { flex: 1; }

.download__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--beige);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 16px 0 20px;
}

.download__sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
@media (min-width: 600px) { .download__sub { font-size: 16px; } }

.download__actions { margin-bottom: 20px; }

.download__compat {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-lt);
}

.download__scrubby {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}
.download__scrubby svg {
  overflow: visible;
  animation: downloadChipBounce 1.1s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(255,110,0,0.25));
}
@keyframes downloadChipBounce {
  0%,100% { transform: translateY(0) rotate(0deg); }
  30%     { transform: translateY(-16px) rotate(-2deg) scale(1.03); }
  60%     { transform: translateY(-6px) rotate(2deg); }
}
.download__scrubby-label {
  font-family: var(--font-h);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-lt);
  margin-top: 14px;
}


/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
}
.footer__top {
  max-width: 1200px;
  margin-inline: auto;
  padding: 60px 20px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.footer__brand { max-width: 220px; }
.footer__tagline {
  font-size: 11px;
  color: var(--muted-lt);
  margin-top: 12px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  gap: 48px;
  margin-left: auto;
  flex-wrap: wrap;
}
.footer__col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--beige); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
.footer__bottom p {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted-lt);
}


/* ════════════════════════════
   ANIMATIONS
════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes blink {
  0%, 80%, 100% { opacity: 1; }
  90% { opacity: 0.2; }
}
@keyframes slide {
  from { left: -100%; }
  to { left: 100%; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes eyeBlink {
  0%, 85%, 100% { transform: scaleY(1); }
  92% { transform: scaleY(0.05); }
}
@keyframes antennaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes screenProgress {
  0% { width: 0; }
  60% { width: 45px; }
  75% { width: 38px; }
  100% { width: 45px; }
}
@keyframes sprayPop {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.7; }
  50% { transform: translate(5px, -4px) scale(1.3); opacity: 1; }
}
@keyframes dustFloat {
  0% { transform: translate(0,0); opacity: 0.6; }
  50% { transform: translate(var(--dx), var(--dy)); opacity: 1; }
  100% { transform: translate(0,0); opacity: 0.6; }
}

/* Mascot animation classes */
.eye-blink { animation: eyeBlink 4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.antenna-blink { animation: antennaPulse 1.8s ease-in-out infinite; }
.screen-progress { animation: screenProgress 3s ease-in-out infinite; }
.mop-arm { animation: float 2.5s ease-in-out infinite; transform-origin: 22px 170px; }

.spray.s1 { animation: sprayPop 1.5s ease-in-out infinite; }
.spray.s2 { animation: sprayPop 1.5s ease-in-out 0.2s infinite; }
.spray.s3 { animation: sprayPop 1.5s ease-in-out 0.4s infinite; }
.spray.s4 { animation: sprayPop 1.5s ease-in-out 0.1s infinite; }
.spray.s5 { animation: sprayPop 1.5s ease-in-out 0.3s infinite; }

.dust { animation: dustFloat 3s ease-in-out infinite; }
.d1 { --dx: -5px; --dy: -8px; animation-duration: 2.8s; }
.d2 { --dx: 6px; --dy: -6px; animation-duration: 3.3s; animation-delay: 0.4s; }
.d3 { --dx: 5px; --dy: -9px; animation-duration: 3s; animation-delay: 0.2s; }
.d4 { --dx: -4px; --dy: -5px; animation-duration: 2.5s; animation-delay: 0.7s; }
.d5 { --dx: 4px; --dy: 6px; animation-duration: 3.5s; animation-delay: 0.1s; }
.d6 { --dx: -5px; --dy: 5px; animation-duration: 2.7s; animation-delay: 0.5s; }


/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 900px) {
  .hero { flex-direction: column-reverse; padding-top: 100px; text-align: center; min-height: auto; }
  .hero__content { max-width: 100%; }
  .hero__eyebrow, .hero__proof { justify-content: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__mascot { width: 260px; align-self: center; margin-bottom: 0; }
  .hero__scroll { display: none; }

  .calc__inner { flex-direction: column; gap: 48px; }
  .calc__right { width: 100%; }

  .download__inner { flex-direction: column; gap: 48px; }
  .download__scrubby { display: none; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__right { display: none; }
  .header__burger { display: flex; }

  .forwho__grid { flex-direction: column; }
  .forwho__col { border-right: none !important; border-bottom: 1px solid var(--line); }
  .forwho__col:last-child { border-bottom: none; }

  .footer__top { flex-direction: column; gap: 40px; }
  .footer__brand { max-width: 100%; }
  .footer__nav { margin-left: 0; gap: 32px; }

  .guarantees__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .download__title { font-size: 2rem; }
  .guarantees__grid { grid-template-columns: 1fr; }
  .guarantee-block { border-right: none !important; }
}


/* ════════════════════════════
   ARTICLE — Deep Sweep long-form
════════════════════════════ */
.article {
  background: var(--black);
  border-top: 1px solid var(--line);
}
.article__inner {
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 20px;
}
.article__head { text-align: left !important; margin-bottom: 48px; }
.article__head .section__title { line-height: 1; }

.article__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-left: 1px solid var(--orange);
  padding-left: 28px;
}
@media (max-width: 600px) {
  .article__body { padding-left: 18px; }
}

.article__lede {
  font-size: 15px;
  line-height: 1.75;
  color: var(--beige-dk);
}
@media (min-width: 600px) { .article__lede { font-size: 17px; } }

.article__h2 {
  font-family: var(--font-h);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-top: 18px;
  padding-top: 8px;
  position: relative;
}
.article__h2::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: var(--orange);
}
@media (max-width: 600px) {
  .article__h2::before { left: -19px; width: 10px; }
}

.article__body p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
}
@media (min-width: 600px) {
  .article__body p { font-size: 15px; }
}

.article__close {
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--beige-dk) !important;
  font-style: italic;
}


/* ════════════════════════════
   COMPARE — competitor table
════════════════════════════ */
.compare {
  background: var(--black-2);
  border-top: 1px solid var(--line);
}
.compare__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
.compare__head { text-align: left !important; margin-bottom: 40px; }
.compare__intro {
  margin-top: 18px;
  max-width: 620px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
@media (min-width: 600px) { .compare__intro { font-size: 15px; } }

.compare__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--black);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 12px;
  color: var(--beige-dk);
}
@media (min-width: 600px) { .compare__table { font-size: 13px; } }

.compare__table th,
.compare__table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: middle;
}
.compare__table th:last-child,
.compare__table td:last-child { border-right: none; }
.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td { border-bottom: none; }

.compare__table thead th {
  background: var(--black-3);
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beige);
  font-size: 12px;
  padding: 18px 14px;
}
.compare__table thead th span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.compare__table thead .compare__th-us {
  background: var(--orange);
  color: var(--black);
}
.compare__table thead .compare__th-us span { color: rgba(0,0,0,0.7); }
.compare__th-feature { text-align: left !important; }

.compare__table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--beige-dk);
  background: var(--black);
  font-family: var(--font-b);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12.5px;
}
@media (min-width: 600px) { .compare__table tbody th { font-size: 13.5px; } }

.compare__table td.compare__us {
  background: rgba(255, 110, 0, 0.08);
  font-weight: 700;
  color: var(--beige);
}
.compare__table tr.compare__row-price td,
.compare__table tr.compare__row-price th {
  background: var(--black-3);
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.compare__table tr.compare__row-price td.compare__us {
  background: var(--orange);
  color: var(--black);
}

/* Check markers */
.check {
  display: inline-block;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid var(--line-lt);
  text-transform: uppercase;
}
.check.yes {
  color: var(--orange);
  border-color: var(--orange);
}
.check.partial {
  color: var(--beige-dk);
  border-color: var(--line-lt);
}
.check.no {
  color: var(--muted-lt);
  border-color: var(--line);
}

/* Compare notes */
.compare__notes {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 768px) {
  .compare__notes { grid-template-columns: 1fr; }
}
.compare__note {
  background: var(--black);
  padding: 24px 22px;
}
.compare__note--honest { background: var(--black-3); }
.compare__note-label {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.compare__note--honest .compare__note-label { color: var(--beige-dk); }
.compare__note p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}


/* ════════════════════════════
   STORY — sticky character scroll
════════════════════════════ */

/*
  Architecture:
  .story          — tall container (500vh), creates the scroll space
  .story__sticky  — position: sticky, stays in viewport while .story scrolls
  .story__scene   — absolutely positioned text panels per scene
  .story__char    — the character SVG, centered
*/

.story {
  position: relative;
  /* 5 scenes × 100vh = 500vh of scroll travel */
  height: 500vh;
  background: var(--black);
  border-top: 1px solid var(--line);
}

/* Sticky viewport container */
.story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Character wrapper — centered, large, on top of everything */
.story__char {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, 88vw);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 20px 28px rgba(255, 110, 0, 0.10));
}

.chip-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.4s ease;
}

/* SVG part — individual transitions (springy) */
#chipHead {
  transform-origin: 250px 150px;
  transition: transform 0.6s cubic-bezier(0.34, 1.5, 0.64, 1);
}
#chipArmL {
  transform-origin: 58px 267px;
  transition: transform 0.5s cubic-bezier(0.34, 1.7, 0.64, 1);
}
#chipArmR {
  transform-origin: 442px 267px;
  transition: transform 0.5s cubic-bezier(0.34, 1.7, 0.64, 1);
}

/* Scene text panels */
.story__scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 4vw;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
}
.story__scene--active {
  opacity: 1;
  pointer-events: auto;
}

/* Text alignment variants */
.story__text--left {
  max-width: 340px;
  margin-right: auto;
}
.story__text--right {
  max-width: 340px;
  margin-left: auto;
}
.story__text--center {
  max-width: 440px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story__heading {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--beige);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 12px 0 20px;
}

.story__body {
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 320px;
}
.story__text--center .story__body { text-align: center; max-width: 360px; }

/* ══════════════════════════════════════════
   CHIP POSE CLASSES  (applied by JS on scroll)
   Arms rotate around shoulder joints defined
   by transform-origin above.
   Left arm: pointing left → rotate(+N)=UP
   Right arm: pointing right → rotate(-N)=UP
══════════════════════════════════════════ */

/* Scene 1: SCANNING — arm raised high, head looking down */
.chip-svg.pose-1 { animation: pose1Idle 3s ease-in-out infinite; }
@keyframes pose1Idle {
  0%,100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-8px); }
}
.chip-svg.pose-1 #chipArmL { animation: pose1ArmScan 3s ease-in-out infinite; }
@keyframes pose1ArmScan {
  0%,100% { transform: rotate(72deg); }
  33%     { transform: rotate(66deg); }
  66%     { transform: rotate(78deg); }
}
.chip-svg.pose-1 #chipArmR { transform: rotate(-12deg); }
.chip-svg.pose-1 #chipHead { transform: rotate(6deg); }

/* Scene 2: SPRAY CLEANING — leans hard left, right arm blasting */
.chip-svg.pose-2 { animation: pose2Idle 0.9s ease-in-out infinite; }
@keyframes pose2Idle {
  0%,100% { transform: rotate(-8deg) translateX(-26px) translateY(0); }
  50%     { transform: rotate(-7deg) translateX(-24px) translateY(-6px); }
}
.chip-svg.pose-2 #chipArmR { animation: pose2SprayArm 0.9s ease-in-out infinite; }
@keyframes pose2SprayArm {
  0%,100% { transform: rotate(-38deg); }
  50%     { transform: rotate(-34deg); }
}
.chip-svg.pose-2 #chipArmL { transform: rotate(-16deg); }
.chip-svg.pose-2 #chipHead { transform: rotate(8deg); }

/* Scene 3: SHIELD — tall stance, left arm raised full, chin up */
.chip-svg.pose-3 { animation: pose3Idle 2s ease-in-out infinite; }
@keyframes pose3Idle {
  0%,100% { transform: scale(1.06) rotate(-2deg) translateY(-6px); }
  50%     { transform: scale(1.08) rotate(-2deg) translateY(-12px); }
}
.chip-svg.pose-3 #chipArmL { transform: rotate(86deg); }
.chip-svg.pose-3 #chipArmR { transform: rotate(22deg); }
.chip-svg.pose-3 #chipHead { transform: rotate(-7deg); }

/* Scene 4: VICTORY — jump pose, both arms raised in big V */
.chip-svg.pose-4 { animation: pose4Victory 0.85s ease-in-out infinite; }
@keyframes pose4Victory {
  0%,100% { transform: rotate(5deg) translateX(18px) translateY(-10px); }
  35%     { transform: rotate(4deg) translateX(18px) translateY(-30px) scale(1.04); }
  65%     { transform: rotate(6deg) translateX(18px) translateY(-4px); }
}
.chip-svg.pose-4 #chipArmL { animation: pose4ArmL 0.85s ease-in-out infinite; }
@keyframes pose4ArmL {
  0%,100% { transform: rotate(110deg); }
  35%     { transform: rotate(114deg); }
  65%     { transform: rotate(107deg); }
}
.chip-svg.pose-4 #chipArmR { animation: pose4ArmR 0.85s ease-in-out infinite; }
@keyframes pose4ArmR {
  0%,100% { transform: rotate(-95deg); }
  35%     { transform: rotate(-99deg); }
  65%     { transform: rotate(-92deg); }
}
.chip-svg.pose-4 #chipHead { transform: rotate(-6deg); }

/* Scene 5: POINTING — lean forward, right arm fully extended */
.chip-svg.pose-5 { animation: pose5Idle 1.4s ease-in-out infinite; }
@keyframes pose5Idle {
  0%,100% { transform: rotate(-4deg) scale(1.07) translateX(-10px); }
  50%     { transform: rotate(-3deg) scale(1.08) translateX(-6px); }
}
.chip-svg.pose-5 #chipArmR { animation: pose5Point 1.4s ease-in-out infinite; }
@keyframes pose5Point {
  0%,100% { transform: rotate(-20deg) translateX(0); }
  50%     { transform: rotate(-20deg) translateX(8px); }
}
.chip-svg.pose-5 #chipArmL { transform: rotate(-14deg); }
.chip-svg.pose-5 #chipHead { transform: rotate(3deg); }

/* Entrance animation for text panels */
.story__scene--active .story__heading {
  animation: storyTextIn 0.6s ease both;
}
.story__scene--active .story__body {
  animation: storyTextIn 0.6s 0.1s ease both;
}
.story__scene--active .section__label {
  animation: storyTextIn 0.5s ease both;
}

@keyframes storyTextIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive: hide story on very small screens */
@media (max-width: 600px) {
  .story { height: auto; }
  .story__sticky {
    position: relative;
    height: auto;
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }
  .story__char {
    position: relative;
    left: auto; top: auto;
    transform: none;
    width: 260px;
    margin-inline: auto;
  }
  .story__scene {
    position: relative;
    opacity: 1 !important;
    pointer-events: auto;
    padding: 0;
  }
  .story__scene--active { opacity: 1; }
  .story__text--left,
  .story__text--right { margin: 0 auto; text-align: center; }
  .story__body { max-width: 100%; }
  .chip-svg[class*="pose-"] { animation: none !important; transform: none !important; }
  #chipHead, #chipArmL, #chipArmR { animation: none !important; transform: none !important; }
  .calc__chip-mini { display: none !important; }
}


/* ════════════════════════════════════════════════════════
   ARTICLE — restructured visual blocks (orange/black)
════════════════════════════════════════════════════════ */

/* Scroll reveal — shared with rest of site */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Make article body container friendlier to richer blocks */
.article__body { gap: 56px; }
.article__body > .art-stats,
.article__body > .art-grid,
.article__body > .art-flow,
.article__body > .art-split,
.article__body > .art-ai,
.article__body > .art-quote,
.article__body > .art-honest {
  margin-left: -28px;
}
@media (max-width: 600px) {
  .article__body > .art-stats,
  .article__body > .art-grid,
  .article__body > .art-flow,
  .article__body > .art-split,
  .article__body > .art-ai,
  .article__body > .art-quote,
  .article__body > .art-honest {
    margin-left: -18px;
  }
}

/* ── BLOCK 1 — Big-number stats bar ── */
.art-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-left: 2px solid var(--orange);
}
@media (min-width: 768px) {
  .art-stats { grid-template-columns: repeat(4, 1fr); }
}
.art-stats__item {
  background: var(--black-2);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s ease;
}
.art-stats__item:hover { background: var(--black-3); }
.art-stats__num {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  letter-spacing: 0.01em;
}
.art-stats__lbl {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── BLOCK 2 — Cache-source grid ── */
.art-grid--caches {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .art-grid--caches { grid-template-columns: 1fr 1fr; }
}
.art-cache {
  background: var(--black-2);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease;
  position: relative;
}
.art-cache:hover { background: var(--black-3); }
.art-cache__tag {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.art-cache__h {
  margin-top: 0 !important;
  padding-top: 0 !important;
  font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
}
.art-cache__h::before { display: none !important; }
.art-cache__bar {
  height: 4px;
  background: var(--black-4);
  overflow: hidden;
  position: relative;
}
.art-cache__bar span {
  display: block;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in .art-cache__bar span,
.is-in .art-cache__bar span {
  transform: scaleX(1);
}
.art-cache.reveal.is-in .art-cache__bar span {
  transform: scaleX(1);
}
.art-cache p {
  font-size: 13.5px !important;
  margin: 0;
}
@media (min-width: 600px) {
  .art-cache p { font-size: 14.5px !important; }
}

/* ── BLOCK 3 — Process flow ── */
.art-flow {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--orange);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.art-flow__kicker {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}
.art-flow__h {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.art-flow__h::before { display: none !important; }
.art-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 640px) {
  .art-flow__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .art-flow__steps { grid-template-columns: repeat(4, 1fr); }
}
.art-flow__step {
  background: var(--black);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s ease;
}
.art-flow__step:hover { background: var(--black-3); }
.art-flow__n {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.art-flow__t {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--beige);
  letter-spacing: 0.02em;
}
.art-flow p {
  font-size: 13.5px !important;
  margin: 0;
}
@media (min-width: 600px) {
  .art-flow p { font-size: 15px !important; }
}

/* ── BLOCK 4 — Two-col split ── */
.art-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .art-split { grid-template-columns: 1fr 1fr; }
}
.art-split__col {
  background: var(--black-2);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.art-split__col--b { background: var(--black-3); }
.art-split__tag {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--line-lt);
  color: var(--muted);
  align-self: flex-start;
}
.art-split__tag--find {
  color: var(--orange);
  border-color: var(--orange);
}
.art-split__h {
  margin-top: 0 !important;
  padding-top: 0 !important;
  font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
}
.art-split__h::before { display: none !important; }
.art-split p {
  font-size: 13.5px !important;
  margin: 0;
}
@media (min-width: 600px) {
  .art-split p { font-size: 14.5px !important; }
}

/* ── BLOCK 5 — AI assistant card ── */
.art-ai {
  background: var(--black-2);
  border: 1px solid var(--orange);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 110, 0, 0.15);
}
.art-ai__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}
.art-ai__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-lt);
}
.art-ai__dot:nth-child(3) { background: var(--orange); }
.art-ai__title {
  margin-left: 8px;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.art-ai__h {
  margin: 22px 22px 4px !important;
  padding-top: 0 !important;
}
.art-ai__h::before { display: none !important; }
.art-ai p {
  margin: 0 22px;
  font-size: 13.5px !important;
}
@media (min-width: 600px) {
  .art-ai p { font-size: 15px !important; }
}
.art-ai__msg {
  margin: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.art-ai__msg--bot { align-items: flex-end; }
.art-ai__who {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.art-ai__msg--bot .art-ai__who { color: var(--orange); }
.art-ai__bubble {
  display: inline-block;
  padding: 12px 16px;
  background: var(--black-3);
  border: 1px solid var(--line);
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--beige);
  max-width: 90%;
  line-height: 1.5;
}
.art-ai__msg--bot .art-ai__bubble {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
  font-weight: 600;
}
.art-ai > *:last-child { margin-bottom: 24px; }

/* ── BLOCK 6 — Pull-quote ── */
.art-quote {
  margin: 0;
  padding: 36px 28px;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.art-quote__mark {
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: var(--font-h);
  font-size: 6rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 700;
  pointer-events: none;
}
.art-quote__h {
  margin-top: 0 !important;
  padding-top: 0 !important;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem) !important;
  color: var(--orange) !important;
}
.art-quote__h::before { display: none !important; }
.art-quote__body { margin: 0; padding: 0; }
.art-quote__body p {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem) !important;
  line-height: 1.35;
  color: var(--beige) !important;
  letter-spacing: 0.005em;
  margin: 0;
}

/* ── BLOCK 7 — Honest tradeoff ── */
.art-honest {
  border: 1px solid var(--orange);
  background: rgba(255, 110, 0, 0.05);
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0 !important;
}
.art-honest__tag {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.art-honest .article__close {
  border-top: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  font-style: italic;
  color: var(--beige-dk) !important;
}

/* Staggered children inside reveal containers */
.art-flow__steps .art-flow__step.reveal { transition-delay: 0s; }
.art-flow__steps .art-flow__step.reveal.is-in:nth-child(1) { transition-delay: 0s; }
.art-flow__steps .art-flow__step.reveal.is-in:nth-child(2) { transition-delay: 0.08s; }
.art-flow__steps .art-flow__step.reveal.is-in:nth-child(3) { transition-delay: 0.16s; }
.art-flow__steps .art-flow__step.reveal.is-in:nth-child(4) { transition-delay: 0.24s; }

/* ── ART BLOCK MOBILE TIGHTENING (≤480px) ── */
@media (max-width: 480px) {
  .art-stats__item { padding: 20px 16px; }
  .art-stats__num { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .art-stats__lbl { font-size: 10px; letter-spacing: .14em; }
  .art-cache { padding: 22px 18px; gap: 12px; }
  .art-flow { padding: 24px 18px; gap: 18px; }
  .art-flow__step { padding: 18px 14px; }
  .art-split__col { padding: 22px 18px; }
  .art-ai__chrome { padding: 10px 14px; }
  .art-ai__h { margin: 18px 16px 4px !important; }
  .art-ai p { margin: 0 16px; }
  .art-ai__msg { margin: 12px 16px; }
  .art-ai__bubble { max-width: 100%; font-size: 13px; padding: 10px 13px; }
  .art-quote { padding: 28px 20px 24px; gap: 14px; }
  .art-quote__mark { font-size: 3.6rem; top: -4px; left: 12px; }
  .art-honest { padding: 20px 18px 22px; }
}
@media (max-width: 360px) {
  .art-stats { grid-template-columns: 1fr; }
  .art-stats__item { padding: 18px 16px; }
}


/* ══════════════════════════════════════════════════════════════
   ▼▼  DEEP-SWEEP REDISTRIBUTED SECTIONS (7 sibling sections) ▼▼
   Each section gets its own bg, layout and rhythm so the lower
   half of the page reads as a sequence of distinct sections —
   matching the variety of the top half (hero, what-we-clean,
   for-who, calculator, team).
══════════════════════════════════════════════════════════════ */

/* ─── SEC 1 · INTRO LEDE ─────────────────────────────────────
   Black bg, centered oversized Oswald display, orange accent bar */
.sec-intro-sw {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding-block: 96px;
  text-align: center;
}
@media (min-width: 768px) { .sec-intro-sw { padding-block: 140px; } }
.sec-intro-sw__inner {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 24px;
}
.sec-intro-sw__label {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 28px;
}
.sec-intro-sw__title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
  color: var(--beige);
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin: 0;
}
.sec-intro-sw__bar {
  display: block;
  width: 88px;
  height: 4px;
  background: var(--orange);
  margin: 36px auto 32px;
}
.sec-intro-sw__lede {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.75;
  color: var(--beige-dk);
  max-width: 720px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .sec-intro-sw { padding-block: 72px; }
  .sec-intro-sw__bar { width: 64px; height: 3px; margin: 28px auto 24px; }
  .sec-intro-sw__lede { font-size: 14.5px; }
}
@media (max-width: 480px) {
  .sec-intro-sw { padding-block: 56px; }
  .sec-intro-sw__title { font-size: clamp(1.9rem, 9vw, 2.8rem); line-height: 1.02; }
  .sec-intro-sw__label { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 20px; }
  .sec-intro-sw__lede { font-size: 13.5px; line-height: 1.7; }
}


/* ─── SEC 2 · CACHE PANEL ─────────────────────────────────────
   black-2 bg, sticky 2-col: left = list of cache sources +
   right = cards each with an orange-fill bar */
.sec-cache-sw {
  background: var(--black-2);
  border-top: 1px solid var(--line);
  padding-block: 80px;
}
@media (min-width: 768px) { .sec-cache-sw { padding-block: 120px; } }
.sec-cache-sw__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 960px) {
  .sec-cache-sw__inner { grid-template-columns: 320px 1fr; gap: 56px; }
}
.sec-cache-sw__rail {
  align-self: start;
}
@media (min-width: 960px) {
  .sec-cache-sw__rail { position: sticky; top: 96px; }
}
.sec-cache-sw__kicker {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
}
.sec-cache-sw__h {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 0.98;
  color: var(--beige);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.sec-cache-sw__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.sec-cache-sw__list-item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.sec-cache-sw__dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  display: block;
  margin-left: 3px;
}
.sec-cache-sw__list-t {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--beige);
  letter-spacing: 0.02em;
}
.sec-cache-sw__list-v {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
}
.sec-cache-sw__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sec-cache-sw__card {
  background: var(--black);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sec-cache-sw__card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sec-cache-sw__tag {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}
.sec-cache-sw__card-h {
  font-family: var(--font-h);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--beige);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.sec-cache-sw__bar {
  height: 4px;
  background: var(--black-4);
  overflow: hidden;
  position: relative;
}
.sec-cache-sw__bar span {
  display: block;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.sec-cache-sw__card.reveal.is-in .sec-cache-sw__bar span { transform: scaleX(1); }
.sec-cache-sw__card p {
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 768px) {
  .sec-cache-sw { padding-block: 64px; }
  .sec-cache-sw__h { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 22px; }
  .sec-cache-sw__card { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .sec-cache-sw { padding-block: 52px; }
  .sec-cache-sw__inner { gap: 36px; }
  .sec-cache-sw__card { padding: 22px 18px; gap: 12px; }
  .sec-cache-sw__card p { font-size: 13.5px; line-height: 1.7; }
  .sec-cache-sw__list-t { font-size: 12.5px; }
  .sec-cache-sw__list-item { padding: 12px 0; }
}


/* ─── SEC 3 · PIPELINE ────────────────────────────────────────
   Orange-tinted bg, horizontal 4-step rail with connectors */
.sec-pipeline-sw {
  background: linear-gradient(180deg, var(--black) 0%, rgba(255,110,0,0.04) 50%, var(--black) 100%);
  border-top: 1px solid var(--line);
  padding-block: 80px;
}
@media (min-width: 768px) { .sec-pipeline-sw { padding-block: 120px; } }
.sec-pipeline-sw__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
.sec-pipeline-sw__head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-pipeline-sw__kicker {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
}
.sec-pipeline-sw__title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--beige);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.sec-pipeline-sw__rail {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.sec-pipeline-sw__step {
  position: relative;
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.sec-pipeline-sw__step:hover {
  background: var(--black-3);
  border-color: var(--orange);
}
.sec-pipeline-sw__step + .sec-pipeline-sw__step { border-left: 0; }
.sec-pipeline-sw__num {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.02em;
}
.sec-pipeline-sw__step-t {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 500;
  color: var(--beige);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.sec-pipeline-sw__connector {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 1px;
  background: var(--orange);
  transform: translateY(-50%);
  z-index: 2;
}
.sec-pipeline-sw__connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  transform: rotate(45deg);
}
.sec-pipeline-sw__body {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sec-pipeline-sw__body p {
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px) {
  .sec-pipeline-sw__rail { grid-template-columns: repeat(2, 1fr); }
  .sec-pipeline-sw__step:nth-child(2) .sec-pipeline-sw__connector { display: none; }
}
@media (max-width: 768px) {
  .sec-pipeline-sw { padding-block: 64px; }
  .sec-pipeline-sw__head { margin-bottom: 36px; }
  .sec-pipeline-sw__rail { margin-bottom: 40px; }
  .sec-pipeline-sw__body p { font-size: 14px; }
}
@media (max-width: 480px) {
  .sec-pipeline-sw { padding-block: 52px; }
  .sec-pipeline-sw__rail { grid-template-columns: 1fr; }
  .sec-pipeline-sw__step { padding: 22px 18px; }
  .sec-pipeline-sw__connector { display: none; }
  .sec-pipeline-sw__num { font-size: 2rem; }
  .sec-pipeline-sw__body p { font-size: 13.5px; line-height: 1.7; }
}


/* ─── SEC 4 · SPLIT 2-COL (startup vs memory) ─────────────────
   Black bg, two heavy contrast panels side by side */
.sec-split-sw {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 0;
}
.sec-split-sw__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}
@media (min-width: 880px) {
  .sec-split-sw__inner { grid-template-columns: 1fr 1fr; }
}
.sec-split-sw__panel {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sec-split-sw__panel--miss { background: var(--black-2); }
.sec-split-sw__panel--find {
  background: var(--black-3);
  border-top: 3px solid var(--orange);
}
@media (min-width: 880px) {
  .sec-split-sw__panel--find { border-top: 0; border-left: 3px solid var(--orange); }
}
.sec-split-sw__tag {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line-lt);
  color: var(--muted);
  align-self: flex-start;
}
.sec-split-sw__tag--accent {
  color: var(--orange);
  border-color: var(--orange);
}
.sec-split-sw__h {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--beige);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 6px 0 4px;
}
.sec-split-sw__panel p {
  font-family: var(--font-b);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 768px) {
  .sec-split-sw__panel { padding: 48px 28px; }
  .sec-split-sw__panel p { font-size: 14px; }
}
@media (max-width: 480px) {
  .sec-split-sw__panel { padding: 40px 22px; gap: 14px; }
  .sec-split-sw__panel p { font-size: 13.5px; line-height: 1.7; }
}


/* ─── SEC 5 · AI ADVISOR DEMO ─────────────────────────────────
   black-2 bg, centered card with traffic lights, mono prompt
   and chat bubbles (orange bot, dark user) */
.sec-aiadvisor-sw {
  background: var(--black-2);
  border-top: 1px solid var(--line);
  padding-block: 80px;
}
@media (min-width: 768px) { .sec-aiadvisor-sw { padding-block: 120px; } }
.sec-aiadvisor-sw__inner {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 20px;
}
.sec-aiadvisor-sw__head {
  text-align: center;
  margin-bottom: 48px;
}
.sec-aiadvisor-sw__kicker {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
}
.sec-aiadvisor-sw__title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--beige);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.sec-aiadvisor-sw__card {
  background: var(--black);
  border: 1px solid var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 110, 0, 0.12);
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.sec-aiadvisor-sw__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--black-3);
}
.sec-aiadvisor-sw__light {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.sec-aiadvisor-sw__light--r { background: #FF5F56; }
.sec-aiadvisor-sw__light--y { background: #FFBD2E; }
.sec-aiadvisor-sw__light--g { background: #27C93F; }
.sec-aiadvisor-sw__chrome-title {
  margin-left: 12px;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-aiadvisor-sw__prompt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--black-2);
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
}
.sec-aiadvisor-sw__caret {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.sec-aiadvisor-sw__prompt-t {
  color: var(--beige-dk);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.sec-aiadvisor-sw__chat {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sec-aiadvisor-sw__msg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sec-aiadvisor-sw__msg--bot { align-items: flex-end; }
.sec-aiadvisor-sw__who {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-aiadvisor-sw__msg--bot .sec-aiadvisor-sw__who { color: var(--orange); }
.sec-aiadvisor-sw__bubble {
  display: inline-block;
  padding: 12px 16px;
  background: var(--black-3);
  border: 1px solid var(--line);
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--beige);
  max-width: 90%;
  line-height: 1.5;
}
.sec-aiadvisor-sw__msg--bot .sec-aiadvisor-sw__bubble {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
  font-weight: 600;
}
.sec-aiadvisor-sw__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sec-aiadvisor-sw__body p {
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 768px) {
  .sec-aiadvisor-sw { padding-block: 64px; }
  .sec-aiadvisor-sw__head { margin-bottom: 32px; }
  .sec-aiadvisor-sw__body p { font-size: 14px; }
}
@media (max-width: 480px) {
  .sec-aiadvisor-sw { padding-block: 52px; }
  .sec-aiadvisor-sw__chrome { padding: 10px 14px; }
  .sec-aiadvisor-sw__chrome-title { font-size: 10px; letter-spacing: 0.14em; }
  .sec-aiadvisor-sw__prompt { padding: 12px 14px; }
  .sec-aiadvisor-sw__prompt-t { font-size: 11px; word-break: break-all; }
  .sec-aiadvisor-sw__chat { padding: 18px 16px; gap: 14px; }
  .sec-aiadvisor-sw__bubble { font-size: 13px; padding: 10px 13px; max-width: 100%; }
  .sec-aiadvisor-sw__body p { font-size: 13.5px; line-height: 1.7; }
}


/* ─── SEC 6 · PULL-QUOTE (full-bleed black) ───────────────────
   Pure black bg, centered oversized Oswald sentence,
   giant orange opening quote mark */
.sec-quote-sw {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .sec-quote-sw { padding-block: 140px; } }
.sec-quote-sw::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,110,0,0.03) 22px 23px);
  pointer-events: none;
}
.sec-quote-sw__inner {
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
  position: relative;
}
.sec-quote-sw__mark {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(7rem, 16vw, 12rem);
  line-height: 0.7;
  color: var(--orange);
  font-weight: 700;
  margin: 0 0 12px;
  user-select: none;
}
.sec-quote-sw__kicker {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 28px;
}
.sec-quote-sw__body {
  margin: 0;
  padding: 0;
}
.sec-quote-sw__body p {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--beige);
  letter-spacing: 0.005em;
  margin: 0;
}
.sec-quote-sw__sig {
  display: block;
  margin-top: 32px;
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 768px) {
  .sec-quote-sw { padding-block: 72px; }
}
@media (max-width: 480px) {
  .sec-quote-sw { padding-block: 56px; }
  .sec-quote-sw__mark { font-size: clamp(4.5rem, 22vw, 7rem); margin-bottom: 6px; }
  .sec-quote-sw__kicker { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 20px; }
  .sec-quote-sw__body p { font-size: clamp(1.1rem, 5.5vw, 1.5rem); line-height: 1.35; }
  .sec-quote-sw__sig { margin-top: 22px; font-size: 11px; letter-spacing: 0.14em; }
}


/* ─── SEC 7 · HONEST CALLOUT ──────────────────────────────────
   Beige-tinted dim bordered callout, narrow, centered, italic */
.sec-honest-sw {
  background: var(--black-2);
  border-top: 1px solid var(--line);
  padding-block: 72px;
}
@media (min-width: 768px) { .sec-honest-sw { padding-block: 96px; } }
.sec-honest-sw__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 20px;
}
.sec-honest-sw__callout {
  background: rgba(232, 228, 214, 0.04);
  border: 1px dashed var(--beige-dk);
  border-left: 3px solid var(--beige-dk);
  padding: 32px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sec-honest-sw__tag {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--beige-dk);
  align-self: flex-start;
}
.sec-honest-sw__text {
  font-family: var(--font-b);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--beige-dk);
  font-style: italic;
  margin: 0;
}
@media (max-width: 768px) {
  .sec-honest-sw { padding-block: 56px; }
  .sec-honest-sw__callout { padding: 28px 24px 30px; }
  .sec-honest-sw__text { font-size: 14px; line-height: 1.75; }
}
@media (max-width: 480px) {
  .sec-honest-sw { padding-block: 48px; }
  .sec-honest-sw__callout { padding: 24px 20px 26px; gap: 12px; }
  .sec-honest-sw__text { font-size: 13.5px; line-height: 1.7; }
  .sec-honest-sw__tag { font-size: 9px; letter-spacing: 0.2em; }
}

/* Staggered children inside the pipeline rail */
.sec-pipeline-sw__rail .sec-pipeline-sw__step.reveal { transition-delay: 0s; }
.sec-pipeline-sw__rail .sec-pipeline-sw__step.reveal.is-in:nth-child(1) { transition-delay: 0s; }
.sec-pipeline-sw__rail .sec-pipeline-sw__step.reveal.is-in:nth-child(2) { transition-delay: 0.08s; }
.sec-pipeline-sw__rail .sec-pipeline-sw__step.reveal.is-in:nth-child(3) { transition-delay: 0.16s; }
.sec-pipeline-sw__rail .sec-pipeline-sw__step.reveal.is-in:nth-child(4) { transition-delay: 0.24s; }
/* Staggered list items in cache rail */
.sec-cache-sw__list .sec-cache-sw__list-item.reveal { transition-delay: 0s; }
.sec-cache-sw__list .sec-cache-sw__list-item.reveal.is-in:nth-child(1) { transition-delay: 0s; }
.sec-cache-sw__list .sec-cache-sw__list-item.reveal.is-in:nth-child(2) { transition-delay: 0.06s; }
.sec-cache-sw__list .sec-cache-sw__list-item.reveal.is-in:nth-child(3) { transition-delay: 0.12s; }
.sec-cache-sw__list .sec-cache-sw__list-item.reveal.is-in:nth-child(4) { transition-delay: 0.18s; }
