:root {
  --bg: #040404;
  --text: #f1f1ed;
  --muted: #a3a39d;
  --accent: #ff4d1f;
  --scroll-pct: 0;
}

* { box-sizing: border-box; }

:where(a, button, input, select, textarea, .case-toggle, .dot):focus-visible {
  outline: 2px solid rgba(255, 122, 87, 0.95);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 77, 31, 0.25);
  border-radius: 10px;
}

html, body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(980px 460px at 86% 4%, rgba(255, 77, 31, 0.34), transparent 58%),
    radial-gradient(860px 460px at 8% 96%, rgba(255, 77, 31, 0.28), transparent 60%),
    linear-gradient(180deg, #070707, #040404 55%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(680px 420px at 96% 2%, rgba(255, 90, 44, 0.4), transparent 72%),
    radial-gradient(720px 460px at 2% 100%, rgba(255, 90, 44, 0.34), transparent 74%);
}

.sun-cursor {
  position: fixed;
  width: 22px;
  height: 22px;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .2s ease;
}
.sun-cursor .mark {
  width: 100%;
  height: 100%;
  animation: spin 2.8s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255, 90, 44, 0.45));
}

.preloader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 999;
  display: grid;
  place-content: center;
  gap: 16px;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.preloader p {
  margin: 0;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.preloader.hidden { opacity: 0; visibility: hidden; }

.left-rail {
  position: fixed;
  left: 0;
  top: 0;
  width: 8px;
  height: 100svh;
  background: var(--accent);
  z-index: 80;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(56px);
  pointer-events: none;
  z-index: 1;
}
.ambient-1 {
  width: 460px;
  height: 460px;
  right: -110px;
  top: -30px;
  background: rgba(255, 77, 31, 0.24);
}
.ambient-2 {
  width: 380px;
  height: 380px;
  left: -90px;
  bottom: -120px;
  background: rgba(255, 77, 31, 0.2);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255,255,255,.3) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.brand-mark {
  position: fixed;
  right: 24px;
  top: 22px;
  z-index: 90;
  width: 28px;
  height: 28px;
}
.mark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--accent) 0 8deg, transparent 8deg 16deg);
  filter: drop-shadow(0 0 10px rgba(255, 77, 31, 0.32));
}
.spin { animation: spin 9s linear infinite; }
.brand-mark .mark { animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.top-cta {
  position: fixed;
  right: 68px;
  top: 16px;
  z-index: 90;
  color: var(--text);
  text-decoration: none;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 10px 16px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.45);
  transition: .22s ease;
}
.top-cta:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.scroll-progress {
  position: fixed;
  right: 10px;
  top: 0;
  width: 3px;
  height: 100svh;
  z-index: 88;
  background: rgba(255,255,255,.06);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent), #ff7a57);
  box-shadow: 0 0 10px rgba(255,77,31,.6);
}

.slide-nav {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: grid;
  gap: 8px;
}
.dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #303030;
  border: 1px solid #4d4d4d;
  transition: all .24s ease;
}
.dot:hover { border-color: var(--accent); background: rgba(255,77,31,.4); }
.dot.active {
  width: 18px;
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255,77,31,.6);
}
.dot span {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #b3b3ad;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.dot:hover span, .dot.active span { opacity: 1; }

.scroll-deck {
  position: relative;
  z-index: 2;
  height: 100svh;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: transparent;
}

.panel {
  min-height: 68svh;
  display: grid;
  align-items: center;
  background: transparent;
  position: relative;
}

.panel:not(.hero)::before {
  content: "";
  position: absolute;
  left: min(7vw, 90px);
  right: min(7vw, 90px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,77,31,.35), transparent);
  opacity: .55;
}

.hero.panel { min-height: 92svh; }

.content {
  width: min(1160px, 86vw);
  margin: 0 auto;
  padding: clamp(34px, 3.8vw, 72px) 0;
}

.hero-brand {
  margin: 0 0 18px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 14px;
  color: #ff7a57;
  letter-spacing: 1.3px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.05rem, 8.2vw, 7.1rem);
  line-height: .93;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.rotate-line {
  display: inline-block;
  min-width: 14ch;
}

.rotate-word {
  display: inline-block;
  color: var(--text);
  transition: opacity .25s ease, transform .25s ease;
}

.hero-dot {
  display: inline-block;
  margin-left: 0.04em;
}

.hero-fix {
  display: inline-block;
  margin-top: 0.24em;
  font-style: italic;
}

h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.15rem, 4.8vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h3 { margin: 0 0 8px; font-size: clamp(1.08rem, 1.75vw, 1.45rem); line-height: 1.24; }

.body-sm {
  margin: 0 0 6px;
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  color: #d7d7d2;
}

.lead {
  margin-top: 22px;
  max-width: 860px;
  color: #c1c1ba;
  font-size: clamp(1.18rem, 1.95vw, 1.5rem);
  line-height: 1.44;
}

.hero-cta-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s ease;
}

.hero-cta.primary {
  background: var(--accent);
  color: #111;
  border: 1px solid var(--accent);
}

.hero-cta.primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.hero-cta.secondary {
  border: 1px solid #333;
  color: var(--text);
  background: rgba(0,0,0,.35);
}

.hero-cta.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.stack-line {
  margin-top: 14px;
  margin-bottom: 0;
  color: #c8c8c2;
  font-size: .95rem;
}

.proof-chip-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-chip {
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(16,16,16,.9), rgba(9,9,9,.84));
  color: #d8d8d2;
  font-size: .93rem;
  line-height: 1.4;
}

.body {
  margin-top: 14px;
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.58;
}

.list {
  margin: 18px 0 0;
  padding-left: 20px;
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  line-height: 1.62;
}
.list.big { font-size: clamp(1.2rem, 2vw, 1.8rem); color: #d4d4cf; }
.list.compact { margin-top: 10px; line-height: 1.5; }
.compact-top { margin-top: 12px; }

.steps, .cards-3, .cards-2, .pricing-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.timeline-steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,77,31,.1), rgba(255,77,31,.45), rgba(255,77,31,.1));
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(20,20,20,.94), rgba(10,10,10,.88));
}

.timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.timeline-week {
  display: inline-flex;
  padding: 4px 8px;
  border: 1px solid rgba(255,77,31,.45);
  border-radius: 999px;
  color: #ffd0c3;
  font-size: .76rem;
  letter-spacing: .03em;
  font-weight: 700;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255,77,31,.55);
}

.timeline-step h3 {
  margin: 0 0 8px;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.focus-card {
  padding: 22px;
  border-color: rgba(255,77,31,.38);
  background: linear-gradient(180deg, rgba(25,14,10,.96), rgba(12,10,10,.9));
  box-shadow: 0 12px 28px rgba(255,77,31,.12);
}
.focus-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}
.focus-points {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.focus-points p {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #2f2a28;
  border-radius: 10px;
  background: rgba(8,8,8,.45);
  color: #d9d9d3;
  line-height: 1.5;
  font-size: 1rem;
}

.steps article, .card, .price-card {
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(20,20,20,.94), rgba(10,10,10,.88));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.card::after, .price-card::after {
  content: "";
  position: absolute;
  inset: -120% 55% auto auto;
  width: 90px;
  height: 200%;
  transform: rotate(16deg);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.12), transparent);
  opacity: 0;
  transition: opacity .3s ease, transform .65s ease;
}
.steps article:hover, .card:hover, .price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,77,31,.55);
  box-shadow: 0 10px 25px rgba(0,0,0,.45);
}
.steps article:hover::after,
.card:hover::after,
.price-card:hover::after {
  opacity: 1;
  transform: translateX(-140px) rotate(16deg);
}

.steps span {
  display: inline-block;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.card p, .steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.card-meta {
  margin-top: 10px !important;
  font-size: .92rem;
  color: #c6c6c0 !important;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: start;
}

.service-intro .body {
  max-width: 44ch;
}

.service-rows {
  display: grid;
  gap: 10px;
}

.service-row {
  border: 1px solid #2d2d2d;
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(16,16,16,.72), rgba(10,10,10,.58));
  transition: border-color .2s ease, transform .2s ease;
}

.service-row:hover {
  border-color: rgba(255,77,31,.55);
  transform: translateY(-2px);
}

.service-row h3 {
  margin: 0 0 6px;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.ongoing-note {
  margin-top: 14px;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(12,12,12,.75);
  color: #d7d7d2;
}

.faq-grid {
  margin-top: 18px;
}

.faq-list {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.faq-item {
  border-top: 1px solid #2c2c2c;
  padding: 14px 4px;
}

.faq-item:last-child {
  border-bottom: 1px solid #2c2c2c;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 1.03rem;
  color: #f0f0ea;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.pricing-stage h2 { max-width: 760px; }
.price-card { padding: 22px; }
.price-card h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
.price-sub { color: #d3d3cd; margin: 6px 0 10px; font-weight: 600; }
.price-line { color: var(--muted); font-size: 1.05rem; }
.price-line strong { color: #fff; font-size: 1.4rem; }
.price-mini { margin-top: 10px; color: var(--muted); }
.price-card.featured {
  border-color: rgba(255,77,31,.9);
  background: linear-gradient(180deg, rgba(35,16,10,.95), rgba(12,10,10,.88));
  box-shadow: 0 12px 30px rgba(255,77,31,.2);
  transform: scale(1.03);
}

.metric-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.metric-card {
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16,16,16,.9), rgba(10,10,10,.84));
  padding: 12px 14px;
}
.metric-card strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  color: #f2f2ed;
}
.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
}

.case-grid { margin-top: 18px; }

.contrast-panel .content {
  border: 1px solid rgba(255, 199, 172, 0.35);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 52px);
  background: linear-gradient(180deg, #f3ece3 0%, #eadfce 100%);
  color: #1f1712;
  box-shadow: 0 20px 40px rgba(0,0,0,.28);
}

.contrast-panel .kicker {
  color: #af4f2f;
}

.contrast-panel h2,
.contrast-panel h3,
.contrast-panel h4 {
  color: #1f1712;
}

.contrast-panel p,
.contrast-panel .card-meta,
.contrast-panel .why-card p {
  color: #3a2e25 !important;
}

.proof-layout {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.featured-proof {
  border: 1px solid rgba(255,77,31,.65);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(28,14,10,.92), rgba(12,10,10,.88));
  box-shadow: 0 10px 24px rgba(255,77,31,.12);
}

.contrast-panel .featured-proof {
  border-color: rgba(175,79,47,.45);
  background: linear-gradient(180deg, #fff9f2 0%, #f5ece0 100%);
  box-shadow: 0 12px 22px rgba(68, 38, 24, 0.12);
}

.contrast-panel .proof-note {
  border-color: rgba(122,88,66,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(248,239,228,.8));
}

.featured-label {
  margin: 0 0 8px;
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,77,31,.5);
  color: #ffd0c3;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}

.contrast-panel .featured-label {
  border-color: rgba(175,79,47,.4);
  color: #8f3d22;
  background: rgba(255,255,255,.6);
}

.featured-proof h3 {
  margin: 0 0 8px;
}

.featured-proof p {
  margin: 0 0 8px;
  color: #d8d8d2;
  line-height: 1.5;
}

.supporting-proof {
  display: grid;
  gap: 10px;
}

.proof-note {
  padding: 14px;
}

.proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-top: 1px dashed rgba(110, 73, 51, 0.28);
  padding-top: 8px;
  color: #3a2e25;
}

.proof-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.proof-list li span {
  color: #af4f2f;
  line-height: 1.2;
}

.key-outcomes {
  margin-top: 14px;
}

.key-outcomes-label {
  margin: 0 0 8px;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #7f5b45;
  font-weight: 700;
}

.key-outcomes .proof-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.key-outcomes .proof-list li {
  border-top: 0;
  padding: 10px 12px;
  border: 1px solid rgba(122,88,66,.24);
  border-radius: 12px;
  background: rgba(255,255,255,.55);
  color: #36271e;
}

.case-toggle {
  margin-top: 12px;
  border: 1px solid #3a3a3a;
  background: #101010;
  color: #ecece7;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all .2s ease;
}
.case-toggle:hover { border-color: rgba(255,77,31,.8); color: var(--accent); }
.case-more {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #2d2d2d;
}
.case-more p { margin: 0; color: var(--muted); line-height: 1.55; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.why-card {
  border: 1px solid #2e2e2e;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(14,14,14,.9), rgba(9,9,9,.85));
}

.contrast-panel .why-card {
  border-color: rgba(122,88,66,.24);
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(247,236,224,.8));
}

.contrast-panel .why-card h4 {
  color: #241811 !important;
}

.contrast-panel .why-card p {
  color: #3a2e25 !important;
}
.why-card h4 {
  margin: 0 0 8px;
  font-size: 1.03rem;
  color: #f0f0ea;
}
.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: .95rem;
}

.cta-break {
  position: relative;
}

.cta-break::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: radial-gradient(900px 320px at 20% 10%, rgba(255,77,31,.18), transparent 60%),
              radial-gradient(900px 320px at 80% 90%, rgba(255,77,31,.14), transparent 60%);
  pointer-events: none;
}

.contact-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  gap: 24px;
  align-items: start;
  border: 1px solid rgba(255,77,31,.28);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(20,12,10,.82), rgba(10,10,10,.86));
}

.contact-form {
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(18,18,18,.95), rgba(10,10,10,.88));
}
.contact-form label { display: grid; gap: 6px; color: var(--muted); font-size: .95rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: #0b0b0b;
  color: var(--text);
  border: 1px solid #333;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: rgba(255,77,31,.8);
  box-shadow: 0 0 0 2px rgba(255,77,31,.2);
}
.contact-form button {
  margin-top: 4px;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: var(--accent);
  transition: transform .2s ease, filter .2s ease;
}
.contact-form button:hover { transform: translateY(-1px); filter: brightness(1.05); }

.form-status {
  margin: 2px 0 0;
  min-height: 20px;
  font-size: 0.9rem;
  color: #c7c7c0;
}
.form-status.sending { color: #8f8f8a; }
.form-status.success { color: #4ade80; font-weight: 600; }
.form-status.error { color: #f87171; }

.form-fallback {
  margin: 2px 0 0;
  font-size: 0.88rem;
  color: #f0b3a2;
}

.form-fallback a {
  color: #ffd0c3;
}

.contact-form button.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.contact-form button.loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Honeypot - hidden from humans, catches bots */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.tiny { margin: 0; color: #8f8f8a; font-size: 12px; line-height: 1.5; }

.reveal {
  opacity: .01;
  transform: translateY(32px) scale(.99);
  transition: opacity .72s cubic-bezier(.2,.65,.2,1), transform .72s cubic-bezier(.2,.65,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1140px) {
  .slide-nav { display: none; }
  .scroll-progress { right: 0; }
}

@media (max-width: 980px) {
  .steps, .cards-3, .cards-2, .pricing-grid, .metric-strip, .why-grid, .proof-chip-row, .timeline-steps { grid-template-columns: 1fr; }
  .duo, .contact-wrap, .service-split, .proof-layout, .key-outcomes .proof-list { grid-template-columns: 1fr; }
  .timeline-steps::before { display: none; }
  .contrast-panel .content { padding: 22px; }
  .top-cta { right: 56px; top: 12px; padding: 8px 12px; font-size: 14px; }
  .brand-mark { right: 16px; top: 14px; width: 22px; height: 22px; }
  .content { width: min(94vw, 1180px); margin: 0 auto; }
  h1 { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  h2 { font-size: clamp(1.7rem, 8vw, 2.6rem); }
  .panel { min-height: auto; }
  .hero.panel { min-height: 82svh; }
  .price-card.featured { transform: none; }
  .dot { width: 20px; height: 20px; }
  .dot.active { width: 28px; }
}

@media (max-width: 400px) {
  .contact-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .contact-form input, .contact-form textarea {
    padding: 16px;
    font-size: 16px;
  }
}

@media (hover: none), (pointer: coarse) {
  html, body { cursor: auto !important; }
  .sun-cursor { display: none; }
}

@media (max-width: 768px) {
  .grain { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .sun-cursor,
  .preloader,
  .ambient,
  .grain {
    display: none !important;
  }

  .reveal,
  .reveal.in {
    opacity: 1 !important;
    transform: none !important;
  }
}
