:root {
  --bg: #f5efe5;
  --text: #1f1b17;
  --muted: #5b5349;
  --copy: #4f473e;
  --line: rgba(31, 27, 23, 0.10);
  --panel: rgba(255, 251, 246, 0.66);
  --accent: #355847;
  --accent-soft: #d5c2aa;
  --shadow: 0 18px 48px rgba(52, 37, 20, 0.08);
  --shadow-strong: 0 22px 58px rgba(52, 37, 20, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(213, 194, 170, 0.18), transparent 26%),
    linear-gradient(180deg, #f8f3eb 0%, #f2eadf 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  pointer-events: none;
}

body.has-promo-banner .site-header {
  top: 42px;
}

@media (max-width: 720px) {
  body.has-promo-banner .site-header {
    top: 40px;
  }
}

.header-shell {
  padding: 16px 0;
  transition: padding 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border: 1px solid transparent;
  transition:
    width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header:not(.is-scrolled) .header-inner {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .header-shell {
  padding-top: 12px;
}

.site-header.is-scrolled .header-inner {
  width: min(920px, calc(100% - 32px));
  max-width: 920px;
  margin: 0 auto;
  padding: 12px 18px;
  border-radius: 18px;
  border-color: rgba(31, 27, 23, 0.08);
  background: rgba(255, 250, 244, 0.62);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 14px 34px rgba(52, 37, 20, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  color: var(--accent);
  flex-shrink: 0;
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  white-space: nowrap;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active::after {
  transition: none;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 138px 0 84px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.hero-light-1 {
  width: 520px;
  height: 520px;
  left: -160px;
  top: -110px;
  background: radial-gradient(circle, rgba(213, 194, 170, 0.62) 0%, rgba(213, 194, 170, 0) 72%);
  animation: driftOne 18s infinite alternate;
}

.hero-light-2 {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(53, 88, 71, 0.12) 0%, rgba(53, 88, 71, 0) 72%);
  animation: driftTwo 20s infinite alternate;
}

/* Additional depth orbs */
.hero-light-3 {
  width: 500px;
  height: 500px;
  right: 5%;
  top: -100px;
  background: radial-gradient(circle, rgba(110, 155, 205, 0.45) 0%, rgba(110, 155, 205, 0) 70%);
  animation: driftThree 24s infinite alternate;
}

.hero-light-4 {
  width: 420px;
  height: 420px;
  left: 28%;
  bottom: -80px;
  background: radial-gradient(circle, rgba(196, 160, 88, 0.40) 0%, rgba(196, 160, 88, 0) 70%);
  animation: driftFour 26s infinite alternate;
}

.hero-arcs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  filter: contrast(1.04);
}

.hero-arc {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  overflow: visible;
  transition:
    transform 2.2s ease-in-out,
    border-color 1.8s ease-in-out,
    box-shadow 1.8s ease-in-out,
    opacity 1.8s ease-in-out,
    filter 1.8s ease-in-out;
}

.hero-arc::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  filter: blur(1.2px);
  transition: opacity 1.8s ease-in-out 0.1s;
}

.hero-arc-1 {
  width: 1400px;
  height: 640px;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%) rotate(calc(-8deg + var(--ring-rotate, 0deg)));
  border: 1.5px solid rgba(31, 27, 23, 0.12);
  box-shadow:
    0 0 0 1px rgba(31, 27, 23, 0.01),
    0 0 8px rgba(31, 27, 23, 0.015),
    inset 0 0 0 1px rgba(255, 255, 255, 0.012);
}

.hero-arc-2 {
  width: 1080px;
  height: 500px;
  left: 54%;
  top: 51%;
  transform: translate(-50%, -50%) rotate(calc(-8deg + var(--ring-rotate, 0deg)));
  border: 1.5px solid rgba(183, 134, 83, 0.10);
  box-shadow:
    0 0 8px rgba(183, 134, 83, 0.015),
    inset 0 0 0 1px rgba(255, 255, 255, 0.01);
}

.hero-arc-3 {
  width: 800px;
  height: 360px;
  left: 57%;
  top: 54%;
  transform: translate(-50%, -50%) rotate(calc(-8deg + var(--ring-rotate, 0deg)));
  border: 1.5px solid rgba(53, 88, 71, 0.09);
  box-shadow:
    0 0 8px rgba(53, 88, 71, 0.012),
    inset 0 0 0 1px rgba(255, 255, 255, 0.008);
}

.hero-arc-1::before {
  border: 1.5px solid rgba(31, 27, 23, 0.28);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.05),
    0 0 42px rgba(213, 194, 170, 0.16),
    0 0 78px rgba(31, 27, 23, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-arc-1.is-active::before {
  opacity: 1;
}

.hero-arc-2::before {
  border: 1.5px solid rgba(183, 134, 83, 0.26);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.045),
    0 0 30px rgba(183, 134, 83, 0.13),
    0 0 56px rgba(183, 134, 83, 0.085),
    inset 0 0 0 1px rgba(255, 255, 255, 0.022);
}

.hero-arc-2.is-active::before {
  opacity: 1;
}

.hero-arc-3::before {
  border: 1.5px solid rgba(53, 88, 71, 0.23);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(53, 88, 71, 0.11),
    0 0 42px rgba(53, 88, 71, 0.072),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.hero-arc-3.is-active::before {
  opacity: 1;
}

.hero-arc-1.is-active {
  --ring-rotate: 0deg;
}

.hero-arc-2.is-active {
  --ring-rotate: 0deg;
}

.hero-arc-3.is-active {
  --ring-rotate: 0deg;
}


.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.7rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
}

/* Kinetic shimmer on a key title word — slow gradient sweep */
.hero-shimmer {
  background: linear-gradient(
    90deg,
    var(--text)   0%,
    var(--text)   28%,
    var(--accent) 50%,
    var(--text)   72%,
    var(--text)   100%
  );
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmerSweep 5s ease-in-out infinite;
}

.hero-typed-line {
  min-height: 34px;
  margin: 30px 0 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.typing-caret {
  display: inline-block;
  width: 1ch;
  animation: blinkCaret 0.9s steps(1) infinite;
}

.hero-copy {
  margin: 22px auto 0;
  max-width: 640px;
  color: var(--copy);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

/* =========================
   HERO REVEAL
========================= */

.hero-inner > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-inner > *:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-inner > *:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-inner > *:nth-child(3) {
  animation-delay: 0.28s;
}

.hero-inner > *:nth-child(4) {
  animation-delay: 0.38s;
}

/* =========================
   WORK SECTION
========================= */

.work-section {
  position: relative;
  padding: 92px 0 50px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.30), transparent 40%),
    linear-gradient(180deg, #f6efe5 0%, #ede5d8 100%);
}

.work-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(31, 27, 23, 0),
    rgba(31, 27, 23, 0.10),
    rgba(31, 27, 23, 0)
  );
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.section-copy {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.75;
}

/* 2×2 grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(31, 27, 23, 0.08);
  box-shadow: 0 8px 32px rgba(52, 37, 20, 0.08);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 64px rgba(52, 37, 20, 0.15),
    0 6px 20px rgba(52, 37, 20, 0.08);
}

.work-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e0d8cc;
  display: block;
}

.work-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d8cfc3;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-video {
  transform: scale(1.04);
}

/* Gradient overlay — always present for footer readability */
.work-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(14, 10, 5, 0.62) 75%,
    rgba(14, 10, 5, 0.82) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 26px;
  pointer-events: none;
}

/* Tags: slide up on hover */
.work-media-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-media-tags {
  opacity: 1;
  transform: translateY(0);
}

.work-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Footer: project name + arrow always visible */
.work-media-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.work-media-title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.work-media-arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.60);
  transition:
    color 0.22s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-media-arrow {
  color: #fff;
  transform: translate(3px, -3px);
}

.work-live-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(14, 10, 5, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.work-live-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.9);
  animation: live-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(74, 222, 128, 0.9); opacity: 1; }
  50%       { box-shadow: 0 0 12px rgba(74, 222, 128, 0.3); opacity: 0.55; }
}

.work-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.20);
  border-top-color: rgba(255, 255, 255, 0.90);
  animation: work-spin 0.72s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 4;
}

.work-card.is-loading .work-spinner {
  opacity: 1;
}

@keyframes work-spin {
  to { transform: rotate(360deg); }
}

/* =========================
   SOCIAL PROOF SECTION
========================= */

.social-proof-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.07), transparent 24%),
    radial-gradient(circle at bottom right, rgba(213, 194, 170, 0.10), transparent 28%),
    linear-gradient(180deg, #5a635a 0%, #464e47 100%);
}

.social-proof-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.12),
    rgba(255,255,255,0)
  );
}

.sp-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
}

.sp-glow-1 {
  width: 420px;
  height: 300px;
  top: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(213, 194, 170, 0.18), transparent 72%);
}

.sp-glow-2 {
  width: 360px;
  height: 260px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 243, 214, 0.12), transparent 72%);
}

.social-proof-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.sp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 52px;
  text-align: center;
}

.sp-num {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  color: #f7f2ea;
  line-height: 1;
  letter-spacing: -0.03em;
}

.sp-label {
  margin-top: 7px;
  color: rgba(247, 242, 234, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sp-divider {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

/* =========================
   PROCESS SECTION
========================= */

.process-section {
  position: relative;
  background: linear-gradient(180deg, #f3ebdf 0%, #f7f1e8 100%);
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(31, 27, 23, 0),
    rgba(31, 27, 23, 0.10),
    rgba(31, 27, 23, 0)
  );
}

.process-scroll-track {
  height: 260vh;
  position: relative;
}

.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Per-step atmospheric glow — entire section shifts mood as steps change */
.process-atmo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.process-atmo-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-atmo-layer.is-active {
  opacity: 1;
}

/* Step 0 – Discovery: cool slate aura top-center (swapped with step 2) */
.process-atmo-layer[data-step="0"] {
  background:
    radial-gradient(ellipse at 52% 0%, rgba(55, 78, 130, 0.16) 0%, transparent 56%),
    radial-gradient(ellipse at 80% 90%, rgba(55, 78, 130, 0.09) 0%, transparent 40%);
}

/* Step 1 – Design: warm amber aura bottom-left */
.process-atmo-layer[data-step="1"] {
  background:
    radial-gradient(ellipse at 12% 78%, rgba(196, 138, 52, 0.20) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 14%, rgba(196, 138, 52, 0.10) 0%, transparent 42%);
}

/* Step 2 – Development: deep forest green aura top-right (swapped with step 0) */
.process-atmo-layer[data-step="2"] {
  background:
    radial-gradient(ellipse at 88% 18%, rgba(53, 88, 71, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 14% 82%, rgba(53, 88, 71, 0.10) 0%, transparent 42%);
}

/* Step 3 – Launch: warm gold aura center */
.process-atmo-layer[data-step="3"] {
  background:
    radial-gradient(ellipse at 58% 48%, rgba(210, 168, 72, 0.20) 0%, transparent 54%),
    radial-gradient(ellipse at 10% 20%, rgba(210, 168, 72, 0.10) 0%, transparent 38%);
}

.process-container {
  width: 100%;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 28px;
  position: relative;
  z-index: 1;
}

/* All direct children except vtrack span the content column */
.process-header,
.process-nav,
.process-panels,
.process-launch-cta,
.process-scroll-hint {
  grid-column: 2;
}

/* Vertical step tracker — sits in the panels row so it aligns exactly with the card */
.process-vtrack {
  grid-column: 1;
  grid-row: 3;
  align-self: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0;
  height: 360px;
}

.process-vtrack-line {
  position: absolute;
  left: 50%;
  top: 19px;
  bottom: 19px;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(31, 27, 23, 0.10);
  border-radius: 2px;
  overflow: hidden;
}

.process-vtrack-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, rgba(100, 185, 235, 0.90), rgba(100, 185, 235, 0.50));
  border-radius: 2px;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-vtrack-dot {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(31, 27, 23, 0.12);
  background: rgb(255, 251, 246);
  color: rgba(31, 27, 23, 0.35);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
  transition:
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-vtrack-dot.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: rgba(255, 251, 246, 0.95);
  transform: scale(1.18);
  box-shadow:
    0 0 0 5px rgba(53, 88, 71, 0.12),
    0 4px 14px rgba(53, 88, 71, 0.22);
}

.process-vtrack-dot[data-step="0"].is-active {
  border-color: rgba(100, 185, 235, 0.90);
  background: rgba(100, 185, 235, 0.90);
  box-shadow: 0 0 0 5px rgba(100, 185, 235, 0.14), 0 4px 14px rgba(100, 185, 235, 0.28);
}
.process-vtrack-dot[data-step="1"].is-active {
  border-color: rgba(205, 70, 65, 0.90);
  background: rgba(205, 70, 65, 0.90);
  box-shadow: 0 0 0 5px rgba(205, 70, 65, 0.14), 0 4px 14px rgba(205, 70, 65, 0.28);
}
.process-vtrack-dot[data-step="2"].is-active {
  border-color: rgba(90, 185, 130, 0.90);
  background: rgba(90, 185, 130, 0.90);
  box-shadow: 0 0 0 5px rgba(90, 185, 130, 0.14), 0 4px 14px rgba(90, 185, 130, 0.28);
}
.process-vtrack-dot[data-step="3"].is-active {
  border-color: rgba(225, 195, 30, 0.90);
  background: rgba(225, 195, 30, 0.90);
  box-shadow: 0 0 0 5px rgba(225, 195, 30, 0.14), 0 4px 14px rgba(225, 195, 30, 0.28);
}

/* Floating orbs in process section */
.process-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.process-orb-1 {
  width: 480px;
  height: 480px;
  top: -80px;
  right: -120px;
  background: radial-gradient(circle, rgba(53, 88, 71, 0.07) 0%, transparent 70%);
  filter: blur(50px);
  animation: orbDrift1 14s ease-in-out infinite alternate;
}

.process-orb-2 {
  width: 360px;
  height: 360px;
  bottom: -60px;
  left: -80px;
  background: radial-gradient(circle, rgba(213, 194, 170, 0.18) 0%, transparent 70%);
  filter: blur(60px);
  animation: orbDrift2 18s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-50px, 40px) scale(1.12); }
}

@keyframes orbDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}

.process-header {
  text-align: center;
  margin-bottom: 18px;
}

.process-header .section-kicker {
  margin-bottom: 6px;
}

.process-header .section-title {
  margin: 0;
}

/* Nav */
.process-nav {
  margin-bottom: 14px;
}

.process-nav-bar {
  height: 2px;
  background: rgba(31, 27, 23, 0.10);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 18px;
}

.process-nav-fill {
  height: 100%;
  width: 25%;
  background: rgba(100, 185, 235, 0.85);
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-nav-steps {
  display: flex;
}

.process-nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: rgba(31, 27, 23, 0.32);
  transition: color 0.3s ease;
}

.process-nav-item.is-active {
  color: var(--text);
}

.process-nav-item[data-step="0"].is-active .process-nav-num { color: rgba(100, 185, 235, 0.90); }
.process-nav-item[data-step="1"].is-active .process-nav-num { color: rgba(205, 70,  65,  0.90); }
.process-nav-item[data-step="2"].is-active .process-nav-num { color: rgba(90,  185, 130, 0.90); }
.process-nav-item[data-step="3"].is-active .process-nav-num { color: rgba(225, 195, 30,  0.90); }

.process-nav-num {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  font-variant-numeric: tabular-nums;
}

.process-nav-label {
  font-size: 0.86rem;
  font-weight: 600;
}

/* Per-step accent colors — global so desktop and mobile both inherit */
.process-panel[data-step="0"] { --step-color: rgba(100, 185, 235, 0.90); }
.process-panel[data-step="1"] { --step-color: rgba(205, 70,  65,  0.90); }
.process-panel[data-step="2"] { --step-color: rgba(90,  185, 130, 0.90); }
.process-panel[data-step="3"] { --step-color: rgba(225, 195, 30,  0.90); }

/* Panels */
.process-panels {
  position: relative;
  min-height: 290px;
}

.process-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(48px) scale(0.95);
  filter: blur(5px);
  pointer-events: none;
  transition:
    opacity 0.54s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-panel.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.process-panel.is-exiting {
  position: absolute;
  opacity: 0;
  transform: translateX(-48px) scale(0.95);
  filter: blur(5px);
  pointer-events: none;
}

.process-panel-bg-num {
  position: absolute;
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Fraunces", serif;
  font-size: clamp(9rem, 20vw, 19rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(53, 88, 71, 0.11);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 40px rgba(53, 88, 71, 0.08);
  z-index: 0;
}

/* Bg-num sweeps in from below on each step activation */
@keyframes bgnumReveal {
  from {
    transform: translateY(calc(-50% + 60px));
    opacity: 0;
  }
  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}

.process-panel.is-active .process-panel-bg-num {
  animation: bgnumReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.process-panel-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  grid-template-rows: 1fr;
  gap: 0;
  min-height: 360px;
  background: rgba(255, 252, 247, 0.93);
  border: 1px solid rgba(31, 27, 23, 0.07);
  border-radius: 28px;
  box-shadow:
    0 32px 80px rgba(52, 37, 20, 0.14),
    0 8px 22px rgba(52, 37, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  max-width: 920px;
}

.process-panel-text {
  padding: 36px 38px 36px 36px;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 20px;
}

.process-panel-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(53, 88, 71, 0.09);
  border-radius: 13px;
  color: var(--step-color, var(--accent));
  align-self: start;
  margin-top: 4px;
  flex-shrink: 0;
}

.process-panel-text h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 10px;
  font-size: clamp(1.24rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  align-self: end;
}

.process-panel-text > p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--copy);
  font-size: 0.98rem;
  line-height: 1.78;
}

.process-panel-points {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-panel-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  background: rgba(53, 88, 71, 0.07);
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
}

.process-panel-points li::before {
  content: "✓";
  font-size: 0.76rem;
  font-weight: 800;
}

/* Image panel */
.process-panel-img {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(31, 27, 23, 0.07);
}

/* =============================================
   TUNNEL EFFECT
   Six rings centered on the viewport.
   JS drives scale + opacity each scroll frame
   to create a "flying through a tunnel" illusion.
   No CSS transitions — movement is per-frame.
============================================= */
.process-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.process-tunnel-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 2px solid var(--tunnel-color, rgba(53, 88, 71, 0.55));
  transition: border-color 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  /* JS sets: transform: translate(-50%,-50%) scale(X); opacity: Y */
  will-change: transform, opacity;
}

.process-dust {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: var(--tunnel-color, rgba(53, 88, 71, 0.55));
  transition: background 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  pointer-events: none;
}

.process-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-panel.is-active .process-panel-img img {
  transform: scale(1.04);
}

.process-panel:not(.is-active) .process-panel-img img {
  transform: scale(1.10);
}

/* Scroll hint */
.process-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(31, 27, 23, 0.32);
  animation: processHintPulse 2.4s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

.process-scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes processHintPulse {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50%       { opacity: 1;    transform: translateY(4px); }
}

/* Process icon animations */
@keyframes iconPop {
  0%   { transform: scale(0.72); opacity: 0.5; }
  60%  { transform: scale(1.18); }
  100% { transform: scale(1);    opacity: 1; }
}

@keyframes iconWaggle {
  0%   { transform: scale(0.8) rotate(-10deg); opacity: 0.5; }
  40%  { transform: scale(1.12) rotate(7deg); }
  70%  { transform: scale(1) rotate(-4deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes iconBounce {
  0%   { transform: scale(0.8) translateY(4px); opacity: 0.5; }
  55%  { transform: scale(1.14) translateY(-3px); }
  80%  { transform: scale(0.97) translateY(1px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes iconDraw {
  0%   { transform: scale(0.82); opacity: 0.4; }
  50%  { transform: scale(1.2); }
  75%  { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}

.process-panel[data-step="0"].is-active .process-panel-icon { animation: iconPop    0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both; }
.process-panel[data-step="1"].is-active .process-panel-icon { animation: iconWaggle 0.70s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both; }
.process-panel[data-step="2"].is-active .process-panel-icon { animation: iconBounce 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both; }
.process-panel[data-step="3"].is-active .process-panel-icon { animation: iconDraw   0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both; }

/* Process Launch CTA */
.process-launch-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-launch-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.process-launch-cta-text {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--copy);
}

/* =========================
   WORK CTA
========================= */

.work-section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.work-cta-text {
  color: var(--copy);
  font-size: 0.95rem;
}

.work-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.work-cta-link:hover {
  gap: 10px;
}

/* =========================
   NEEDS QUIZ SECTION
========================= */

.quiz-section {
  position: relative;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.30), transparent 36%),
    linear-gradient(180deg, #f7f1e8 0%, #f3ebdf 100%);
  overflow: hidden;
}

.quiz-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(31, 27, 23, 0),
    rgba(31, 27, 23, 0.10),
    rgba(31, 27, 23, 0)
  );
}

.quiz-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(53, 88, 71, 0.07) 0%,
    rgba(53, 88, 71, 0.025) 40%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

.quiz-inner {
  max-width: 1040px;
}

.quiz-header {
  text-align: center;
  margin-bottom: 40px;
}

.quiz-header .section-copy {
  max-width: 480px;
  margin: 14px auto 0;
}

/* Card */
.quiz-card {
  position: relative;
  background: rgba(255, 251, 246, 0.95);
  border: 1px solid rgba(31, 27, 23, 0.09);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(52, 37, 20, 0.10),
    0 6px 18px rgba(52, 37, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

/* Progress bar */
.quiz-progress-wrap {
  height: 3px;
  background: rgba(31, 27, 23, 0.07);
}

.quiz-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #5a9470);
  border-radius: 0 2px 2px 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Body */
.quiz-body {
  padding: 38px 42px 42px;
  min-height: 340px;
  position: relative;
}

/* Question */
.quiz-question {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition:
    opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz-question.is-entering {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.quiz-q-header {
  margin-bottom: 24px;
}

.quiz-step-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(53, 88, 71, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.quiz-q-text {
  margin: 0;
  font-size: clamp(1.18rem, 2.4vw, 1.52rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.22;
}

/* Options */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-option {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: start;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.60);
  border: 1px solid rgba(31, 27, 23, 0.09);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.20s ease,
    border-color 0.20s ease,
    box-shadow 0.20s ease,
    transform 0.20s ease;
}

.quiz-option:hover {
  background: rgba(53, 88, 71, 0.06);
  border-color: rgba(53, 88, 71, 0.28);
  box-shadow: 0 4px 16px rgba(52, 37, 20, 0.07);
  transform: translateY(-2px);
}

.quiz-option.is-selected {
  background: rgba(53, 88, 71, 0.10);
  border-color: rgba(53, 88, 71, 0.45);
  box-shadow: 0 0 0 3px rgba(53, 88, 71, 0.10);
  transform: scale(0.98);
}

.quiz-option-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(53, 88, 71, 0.08);
  border-radius: 9px;
  color: var(--accent);
  align-self: center;
  flex-shrink: 0;
  transition: background 0.20s ease;
}

.quiz-option:hover .quiz-option-icon,
.quiz-option.is-selected .quiz-option-icon {
  background: rgba(53, 88, 71, 0.15);
}

.quiz-option-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.quiz-option-sub {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.76rem;
  color: var(--copy);
  line-height: 1.4;
  opacity: 0.65;
}

/* Result */
.quiz-result {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
}

.quiz-result.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.quiz-result-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(53, 88, 71, 0.09);
  border-radius: 18px;
  color: var(--accent);
  margin: 0 auto 16px;
}

.quiz-result-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(53, 88, 71, 0.08);
  border: 1px solid rgba(53, 88, 71, 0.18);
  border-radius: 100px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.quiz-result-tier {
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.quiz-result-range {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}

.quiz-result-desc {
  max-width: 460px;
  margin: 0 auto 26px;
  color: var(--copy);
  font-size: 0.97rem;
  line-height: 1.78;
}

.quiz-result-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.quiz-restart {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.80rem;
  font-weight: 600;
  color: rgba(31, 27, 23, 0.32);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.quiz-restart:hover {
  color: rgba(31, 27, 23, 0.60);
}

/* Quiz layout — sidebar + card */
.quiz-inner {
  max-width: 1040px;
}

.quiz-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
  align-items: stretch;
}

/* Sidebar */
.quiz-sidebar {
  background: rgba(255, 251, 246, 0.97);
  border: 1px solid rgba(31, 27, 23, 0.09);
  border-radius: 24px;
  padding: 32px 30px 26px;
  position: sticky;
  top: 90px;
  box-shadow:
    0 16px 50px rgba(52, 37, 20, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.quiz-sidebar-card {
  display: none;
}

.quiz-sidebar-card.is-active {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  animation: sidebarFadeIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

/* Review top row: stars + platform badge */
.quiz-sidebar-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.quiz-sidebar-stars {
  color: #c9a14e;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.quiz-sidebar-platform {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(53, 88, 71, 0.08);
  padding: 3px 9px;
  border-radius: 999px;
}

/* Quote wrap: fills available space, clips overflow */
.quiz-sidebar-quote-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  margin-bottom: 6px;
}

.quiz-sidebar-quote {
  margin: 0 0 10px;
  font-style: italic;
  font-size: 1.0rem;
  line-height: 1.80;
  color: var(--text);
  border-left: 3px solid rgba(53, 88, 71, 0.20);
  padding-left: 16px;
  /* Clamp to 4 lines by default */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.quiz-sidebar-quote.is-expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.quiz-sidebar-readmore {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.quiz-sidebar-readmore:hover {
  opacity: 1;
}

/* Reviewer row: avatar + name + location */
.quiz-sidebar-reviewer {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(31, 27, 23, 0.07);
}

.quiz-sidebar-reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5a9470);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.quiz-sidebar-cite {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.quiz-sidebar-location {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--copy);
  opacity: 0.60;
  margin-top: 3px;
}

.quiz-sidebar-stat-label {
  margin: 0 0 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.72;
}

.quiz-sidebar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  flex: 1;
}

.quiz-sidebar-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quiz-sidebar-num {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}

.quiz-sidebar-stat-sub {
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--copy);
  opacity: 0.65;
}

.quiz-sidebar-stat-tagline {
  margin: 20px 0 0;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--copy);
  opacity: 0.70;
  line-height: 1.6;
  font-style: italic;
  border-top: 1px solid rgba(31, 27, 23, 0.07);
  padding-top: 16px;
}

.quiz-sidebar-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-sidebar-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}

.quiz-sidebar-trust li::before {
  content: "✓";
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.quiz-sidebar-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 27, 23, 0.07);
}

.quiz-sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(31, 27, 23, 0.16);
  cursor: pointer;
  padding: 0;
  transition: background 0.22s ease, transform 0.22s ease;
}

.quiz-sdot.is-active {
  background: var(--accent);
  transform: scale(1.4);
}

/* Back button */
.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--copy);
  opacity: 0.50;
  padding: 0;
  margin-bottom: 14px;
  transition: opacity 0.2s ease;
}

.quiz-back:hover {
  opacity: 0.85;
}

/* Calculating state */
.quiz-calculating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  gap: 20px;
}

.quiz-calc-rings {
  position: relative;
  width: 56px;
  height: 56px;
}

.quiz-calc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--accent);
  animation: calcSpin 0.9s linear infinite;
}

.quiz-calc-ring:nth-child(2) {
  inset: 8px;
  border-top-color: rgba(53, 88, 71, 0.35);
  animation-duration: 1.4s;
  animation-direction: reverse;
}

@keyframes calcSpin {
  to { transform: rotate(360deg); }
}

.quiz-calc-text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--copy);
  opacity: 0.65;
}

/* Result — feature list */
.quiz-result-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 22px;
  max-width: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 16px;
  text-align: left;
}

.quiz-result-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--copy);
}

.quiz-result-features li::before {
  content: "✓";
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

/* Result — why picked chips */
.quiz-result-why {
  margin-bottom: 22px;
  padding: 16px;
  background: rgba(53, 88, 71, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(53, 88, 71, 0.10);
}

.quiz-result-why-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

.quiz-result-why-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.quiz-result-why-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(31, 27, 23, 0.10);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.quiz-result-why-chip svg {
  width: 13px;
  height: 13px;
}

/* Result — tier comparison */
.quiz-tier-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.quiz-tier-cell {
  position: relative;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(31, 27, 23, 0.08);
  background: rgba(255, 255, 255, 0.50);
  text-align: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.quiz-tier-cell.is-match {
  opacity: 1;
  border-color: rgba(53, 88, 71, 0.30);
  background: rgba(53, 88, 71, 0.07);
  box-shadow: 0 0 0 2px rgba(53, 88, 71, 0.12);
}

.quiz-tier-cell-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
}

.quiz-tier-cell-range {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--copy);
  opacity: 0.7;
}

.quiz-tier-cell-tag {
  display: block;
  margin-top: 6px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =========================
   QUOTE BAND SECTION
========================= */

.quote-band-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(213, 194, 170, 0.12), transparent 28%),
    linear-gradient(180deg, #5a635a 0%, #464e47 100%);
}

.quote-band-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.14),
    rgba(255,255,255,0)
  );
}

.quote-band-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: "Fraunces", serif;
  font-size: clamp(6rem, 18vw, 16rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(255, 248, 240, 0.045);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

.quote-band-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.5;
}

.quote-band-glow-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -90px;
  background: radial-gradient(circle, rgba(213, 194, 170, 0.18) 0%, rgba(213, 194, 170, 0) 72%);
}

.quote-band-glow-2 {
  width: 360px;
  height: 360px;
  right: -100px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(255, 243, 214, 0.12) 0%, rgba(255, 243, 214, 0) 72%);
}

.quote-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.quote-band-copy {
  color: #f7f2ea;
}

.quote-band-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3e3b0;
}

.quote-band-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #fffdf7;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.16),
    0 8px 26px rgba(0, 0, 0, 0.10);
}

.quote-band-text {
  margin: 18px 0 0;
  max-width: 400px;
  color: rgba(255, 247, 236, 0.90);
  font-size: 1rem;
  line-height: 1.8;
}

.quote-band-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.quote-band-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quote-band-point-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #f6e7b8;
  box-shadow: 0 0 0 6px rgba(246, 231, 184, 0.10);
  flex-shrink: 0;
}

.quote-band-point p {
  margin: 0;
  color: rgba(255, 247, 236, 0.92);
  font-size: 0.98rem;
  line-height: 1.7;
}

.quote-form-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  z-index: 3;
}

.quote-form-card {
  position: relative;
  width: min(100%, 640px);
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 250, 244, 0.62);
  border: 1px solid rgba(31, 27, 23, 0.10);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.18),
    0 10px 24px rgba(52, 37, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(10px);
}

.quote-floating-badge {
  position: absolute;
  top: -16px;
  right: 26px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(53, 88, 71, 0.94);
  color: #fffaf3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255,255,255,0.08);
}

.quote-form-header {
  margin-bottom: 22px;
}

.quote-form-label {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.quote-form-header h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--text);
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 27, 23, 0.10);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.quote-field textarea {
  resize: vertical;
  min-height: 140px;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: rgba(53, 88, 71, 0.28);
  box-shadow: 0 0 0 4px rgba(53, 88, 71, 0.08);
  background: #ffffff;
}

.quote-submit-btn {
  margin-top: 20px;
  width: 100%;
}

.hidden-bot-field {
  display: none;
}

.quote-text-wall {
  position: absolute;
  top: -40px;
  right: 0;
  bottom: -40px;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;

  display: grid;
  grid-template-rows: repeat(7, 1fr);
  align-items: center;

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
}

.quote-text-row {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 260%;
  white-space: nowrap;

  font-family: "Fraunces", serif;
  font-size: clamp(4.4rem, 8vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: rgba(255, 248, 240, 0.025);
}

.quote-text-row span {
  flex: 0 0 auto;
}

.quote-text-row:nth-child(odd) {
  animation: quoteWallLeft 18s ease-in-out infinite alternate;
}

.quote-text-row:nth-child(even) {
  animation: quoteWallRight 22s ease-in-out infinite alternate;
}

.quote-band-copy {
  position: relative;
  color: #f7f2ea;
  z-index: 3;
  padding: 28px 26px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(38, 44, 39, 0.34),
    rgba(38, 44, 39, 0.18)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@keyframes quoteWallLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-6%);
  }
}

@keyframes quoteWallRight {
  0% {
    transform: translateX(-4%);
  }
  100% {
    transform: translateX(2%);
  }
}

/* =========================
   BUTTON
========================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 700;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  transform: skewX(-24deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 1;
  animation: btnShine 0.9s ease forwards;
}

.btn-primary {
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.btn-primary::before {
  background: linear-gradient(
    110deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,0,0,0.22) 50%,
    rgba(0,0,0,0.05) 70%,
    rgba(0,0,0,0) 100%
  );
}

.btn-primary:hover {
  background: #f7f7f7;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: rgba(255, 251, 246, 0.88);
  color: var(--text);
  border: 1px solid rgba(31, 27, 23, 0.16);
  box-shadow: 0 12px 30px rgba(52, 37, 20, 0.06);
}

.btn-secondary::before {
  background: linear-gradient(
    110deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.03) 30%,
    rgba(0,0,0,0.10) 50%,
    rgba(0,0,0,0.03) 70%,
    rgba(0,0,0,0) 100%
  );
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
  border-color: rgba(31, 27, 23, 0.22);
  box-shadow: 0 18px 40px rgba(52, 37, 20, 0.10);
}

/* =========================
   TEMP ANCHORS
========================= */

.anchor-section {
  height: 1px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  padding: 34px 0 38px;
  background:
    linear-gradient(180deg, #f2eadf 0%, #eee5d8 100%);
  border-top: 1px solid rgba(31, 27, 23, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(31, 27, 23, 0),
    rgba(31, 27, 23, 0.12),
    rgba(31, 27, 23, 0)
  );
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  min-width: 0;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-logo {
  width: 36px;
  height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-copy {
  margin: 12px 0 0;
  color: var(--copy);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 20px;
}

.footer-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.22s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 251, 246, 0.85);
  border: 1px solid rgba(31, 27, 23, 0.10);
  box-shadow: 0 10px 24px rgba(52, 37, 20, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(31, 27, 23, 0.16);
  box-shadow: 0 16px 30px rgba(52, 37, 20, 0.10);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

/* =========================
   FOOTER MOBILE
========================= */

@media (max-width: 720px) {
  .site-footer {
    padding: 28px 0 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
  }

  .footer-logo-wrap {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes btnShine {
  0% {
    left: -130%;
  }
  100% {
    left: 150%;
  }
}

@keyframes driftOne {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(70px, 30px, 0);
  }
}

@keyframes driftTwo {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50px, -24px, 0);
  }
}

@keyframes driftThree {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-60px, 40px, 0);
  }
}

@keyframes driftFour {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(44px, -32px, 0);
  }
}

@keyframes shimmerSweep {
  0%, 100% {
    background-position: 100% center;
  }
  50% {
    background-position: 0% center;
  }
}

@keyframes blinkCaret {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .brand {
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .site-header.is-scrolled .header-inner {
    width: calc(100% - 22px);
    padding: 12px 14px;
    border-radius: 16px;
  }

  .hero {
    padding-top: 156px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 9vw, 4rem);
  }

  .hero-typed-line,
  .hero-copy {
    font-size: 1rem;
  }

    .work-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-media {
    aspect-ratio: 16 / 9;
  }

  .work-section {
    padding: 60px 0 40px;
  }

  .work-card:hover {
    transform: translateY(-4px);
  }

  /* Always show tags on touch devices */
  .work-media-tags {
    opacity: 1;
    transform: none;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .social-proof-section {
    padding: 40px 0;
  }

  .social-proof-inner {
    gap: 0;
  }

  .sp-stat {
    padding: 16px 28px;
  }

  .sp-divider {
    width: 100%;
    height: 1px;
    margin: 0 24px;
  }

  /* Process section — mobile: full timeline layout with animated tunnel */
  .process-scroll-track {
    height: auto;
  }

  .process-sticky {
    position: static;
    height: auto;
    align-items: flex-start;
    padding: 60px 0 20px;
  }

  .process-header {
    margin-bottom: 28px;
  }

  .process-nav-bar {
    display: none;
  }

  .process-scenes {
    display: none;
  }

  /* Re-enable tunnel rings on mobile with a CSS-driven pulse — no scroll needed */
  .process-deco {
    display: block;
  }

  .process-tunnel-ring {
    animation: mobile-ring-pulse 6s ease-in-out infinite;
    border-width: 1.5px;
  }
  .process-tunnel-ring:nth-child(1) { animation-delay: 0s;    }
  .process-tunnel-ring:nth-child(2) { animation-delay: 1.2s;  }
  .process-tunnel-ring:nth-child(3) { animation-delay: 2.4s;  }
  .process-tunnel-ring:nth-child(4) { animation-delay: 3.6s;  }
  .process-tunnel-ring:nth-child(5) { animation-delay: 4.8s;  }

  @keyframes mobile-ring-pulse {
    0%   { transform: translate(-50%, -50%) scale(0.06); opacity: 0;    }
    10%  {                                               opacity: 0.50; }
    80%  {                                               opacity: 0.14; }
    100% { transform: translate(-50%, -50%) scale(5.5);  opacity: 0;    }
  }

  .process-vtrack {
    display: none;
  }

  .process-container {
    grid-template-columns: 1fr;
  }

  .process-header,
  .process-nav,
  .process-panels,
  .process-launch-cta,
  .process-scroll-hint {
    grid-column: 1;
  }

  /* Hide tap-to-switch nav — all steps shown as a stacked timeline */
  .process-nav {
    display: none;
  }

  /* Vertical timeline container */
  .process-panels {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 50px;
    position: relative;
  }

  /* Gradient connecting spine — sits below panels so dots are never obscured */
  .process-panels::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(
      to bottom,
      rgba(100, 185, 235, 0.6),
      rgba(196, 138, 52,  0.6) 33%,
      rgba(90,  185, 130, 0.6) 66%,
      rgba(210, 168, 72,  0.6)
    );
    border-radius: 2px;
    z-index: 0;
  }

  /* All panels visible simultaneously */
  .process-panel,
  .process-panel.is-active,
  .process-panel.is-exiting {
    display: block !important;
    opacity: 1 !important;
    position: relative !important;
    transform: none !important;
    filter: none !important;   /* reset the desktop blur-in transition */
    z-index: 1;                /* form a stacking context above the spine */
  }

  /* Numbered timeline dot */
  .process-panel::before {
    position: absolute;
    left: -50px;
    top: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--step-color, rgba(53, 88, 71, 0.6));
    background: rgba(248, 243, 236, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    z-index: 2;
    line-height: 1;
  }
  .process-panel[data-step="0"]::before { content: "01"; color: rgba(100, 185, 235, 0.95); }
  .process-panel[data-step="1"]::before { content: "02"; color: rgba(205, 70,  65,  0.95); }
  .process-panel[data-step="2"]::before { content: "03"; color: rgba(90,  185, 130, 0.95); }
  .process-panel[data-step="3"]::before { content: "04"; color: rgba(225, 195, 30,  0.95); }

  /* Card: colored left accent stripe + glass surface */
  .process-panel-content {
    grid-template-columns: 1fr;
    max-width: none;
    min-height: auto;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--step-color, rgba(53, 88, 71, 0.6));
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
  }

  /* Faint watermark step number in the card corner */
  .process-panel-bg-num {
    display: block;
    font-size: 6rem;
    right: 8px;
    top: auto;
    bottom: -18px;
    opacity: 0.045;
    transform: none;
    animation: none !important;
  }

  .process-panel-text {
    padding: 22px 20px 20px;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    position: relative;
    z-index: 2;
  }

  .process-panel-icon {
    width: 44px;
    height: 44px;
    color: var(--step-color, var(--accent));
    border-color: var(--step-color, var(--accent));
  }

  .process-panel-text h3 {
    font-size: 1.12rem;
  }

  .process-panel-text > p {
    max-width: 100%;
  }

  .process-panel-img {
    display: none;
  }

  .process-scroll-hint {
    display: none;
  }

  .process-launch-cta {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-top: 8px;
  }

  /* Quiz — mobile */
  .quiz-section {
    padding: 64px 0 76px;
  }

  .quiz-layout {
    grid-template-columns: 1fr;
  }

  .quiz-sidebar {
    display: none;
  }

  .quiz-body {
    padding: 28px 24px 32px;
  }

  .quiz-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quiz-result-features {
    grid-template-columns: 1fr;
  }

  .quiz-tier-compare {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .quiz-result-actions {
    flex-direction: column;
    align-items: center;
  }

  .work-section-cta {
    margin-top: 28px;
  }

  .quote-band-section {
    padding: 76px 0;
  }

  .quote-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quote-band-text {
    max-width: 100%;
  }

  .quote-form-wrap {
    justify-content: stretch;
  }

  .quote-form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .quote-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   HAMBURGER (mobile)
========================= */

.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  flex-shrink: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, transform 0.12s ease;
}

.nav-hamburger:hover {
  background: rgba(31, 27, 23, 0.06);
}

.nav-hamburger:active {
  transform: scale(0.86);
}

.hamburger-bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transform-origin: center;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.18s ease,
    width     0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.hamburger-bar:nth-child(1) { width: 22px; }
.hamburger-bar:nth-child(2) { width: 16px; }
.hamburger-bar:nth-child(3) { width: 22px; }

.nav-hamburger.is-open .hamburger-bar:nth-child(1) {
  width: 22px;
  transform: translateY(7px) rotate(45deg);
  transition:
    transform 0.46s cubic-bezier(0.34, 1.56, 0.64, 1),
    width     0.20s ease,
    opacity   0.18s ease;
}

.nav-hamburger.is-open .hamburger-bar:nth-child(2) {
  width: 0;
  opacity: 0;
  transform: translateX(10px);
  transition:
    width     0.18s ease,
    opacity   0.14s ease,
    transform 0.18s ease;
}

.nav-hamburger.is-open .hamburger-bar:nth-child(3) {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
  transition:
    transform 0.46s cubic-bezier(0.34, 1.56, 0.64, 1) 0.04s,
    width     0.20s ease,
    opacity   0.18s ease;
}

/* Mobile nav panel */

.mobile-nav {
  pointer-events: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    opacity    0.28s ease;
}

.mobile-nav.is-open {
  pointer-events: auto;
  max-height: 480px;
  opacity: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px 20px;
  background: rgba(248, 243, 235, 0.96);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid rgba(31, 27, 23, 0.06);
  box-shadow: 0 16px 32px rgba(52, 37, 20, 0.10);
}

.mobile-nav-link {
  display: block;
  padding: 13px 18px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  border-radius: 12px;
  letter-spacing: -0.01em;
  transition:
    color      0.2s ease,
    background 0.2s ease,
    transform  0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity    0.3s ease;
  opacity: 0;
  transform: translateX(-14px);
}

.mobile-nav-link:hover {
  color: var(--text);
  background: rgba(31, 27, 23, 0.05);
}

.mobile-nav-link.is-active {
  color: var(--accent);
  background: rgba(53, 88, 71, 0.07);
}

.mobile-nav.is-open .mobile-nav-link             { opacity: 1; transform: translateX(0); }
.mobile-nav.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.04s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.08s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.12s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.16s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(5) { transition-delay: 0.20s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(6) { transition-delay: 0.24s; }

/* =========================
   HOME AUDIT WIDGET
========================= */

.home-audit-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.home-audit-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(53, 88, 71, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(213, 194, 170, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.home-audit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Copy side */
.home-audit-copy .section-title {
  max-width: 400px;
}

.home-audit-copy .section-copy {
  max-width: 380px;
  margin-left: 0;
  margin-right: 0;
}

.home-audit-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.home-audit-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(53, 88, 71, 0.08);
  border: 1px solid rgba(53, 88, 71, 0.14);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.home-audit-trust-pill::before {
  content: "✓";
  font-size: 0.75rem;
}

/* Card side */
.home-audit-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.62);
  border: 1px solid rgba(31, 27, 23, 0.10);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.14),
    0 10px 24px rgba(52, 37, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-audit-card-floating-badge {
  position: absolute;
  top: -15px;
  right: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(53, 88, 71, 0.94);
  color: #fffaf3;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(255,255,255,0.08);
}

.home-audit-card-label {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-audit-card-title {
  margin: 0 0 22px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.home-audit-input-row {
  display: flex;
  gap: 10px;
}

.home-audit-input {
  flex: 1;
  min-width: 0;
  height: 52px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(31, 27, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.96rem;
  font-family: "Manrope", sans-serif;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-audit-input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.home-audit-input:focus {
  border-color: rgba(53, 88, 71, 0.34);
  box-shadow: 0 0 0 4px rgba(53, 88, 71, 0.08);
  background: #ffffff;
  border-radius: 999px;
}

.home-audit-btn {
  flex-shrink: 0;
  min-height: 52px;
  padding: 0 22px;
  position: relative;
  overflow: hidden;
}

.home-audit-btn-spinner {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: haSpinAnim 0.7s linear infinite;
}

.home-audit-btn.is-loading .home-audit-btn-label { opacity: 0; }
.home-audit-btn.is-loading .home-audit-btn-spinner { display: block; }

@keyframes haSpinAnim {
  to { transform: rotate(360deg); }
}

.home-audit-note {
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.8;
}

/* Results area */
.home-audit-results {
  margin-top: 24px;
}

.ha-divider {
  height: 1px;
  background: rgba(31, 27, 23, 0.08);
  margin-bottom: 20px;
}

.ha-grade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.ha-grade-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 8px 12px;
  border-radius: 16px;
  border: 1px solid transparent;
  text-align: center;
}

.ha-grade-letter {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

.ha-grade-score {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.7;
  letter-spacing: 0.03em;
}

.ha-grade-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}

.ha-grade-a { background: rgba(53, 88, 71, 0.10); border-color: rgba(53, 88, 71, 0.18); color: #2a5c3a; }
.ha-grade-b { background: rgba(37, 99, 135, 0.10); border-color: rgba(37, 99, 135, 0.18); color: #1d5f82; }
.ha-grade-c { background: rgba(161, 122, 30, 0.10); border-color: rgba(161, 122, 30, 0.18); color: #8a6418; }
.ha-grade-d { background: rgba(180, 90, 20, 0.10); border-color: rgba(180, 90, 20, 0.18); color: #9a4e10; }
.ha-grade-f { background: rgba(180, 40, 40, 0.10); border-color: rgba(180, 40, 40, 0.18); color: #a02020; }

.ha-issues {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.ha-full-report {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid rgba(53, 88, 71, 0.22);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.ha-full-report:hover {
  border-color: var(--accent);
  gap: 10px;
}

.ha-error {
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid rgba(180, 40, 40, 0.16);
  color: #9a2020;
  font-size: 0.86rem;
  font-weight: 600;
}

/* Audit section — issues strip in copy column */
.home-audit-issues-strip {
  margin-top: 28px;
}

.home-audit-issues-label {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

.home-audit-issues-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.home-audit-issues-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--copy);
}

.home-audit-issues-list svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.65;
}

/* Category preview chips */
.ha-cat-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.ha-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(53, 88, 71, 0.07);
  border: 1px solid rgba(53, 88, 71, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Social proof ticker */
.ha-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(53, 88, 71, 0.04);
  border-radius: 8px;
}

.ha-ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5a9470;
  flex-shrink: 0;
  animation: tickerPulse 2s ease-in-out infinite;
}

@keyframes tickerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.ha-ticker-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--copy);
  opacity: 0.75;
}

/* Scan animation */
.ha-scan {
  padding: 8px 0 4px;
}

.ha-scan-bar-wrap {
  height: 3px;
  background: rgba(31, 27, 23, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}

.ha-scan-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #5a9470);
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ha-scan-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ha-scan-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--copy);
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.ha-scan-step.is-scanning {
  opacity: 1;
}

.ha-scan-step.is-done {
  opacity: 0.7;
}

.ha-scan-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31, 27, 23, 0.18);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.ha-scan-step.is-scanning .ha-scan-step-dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(53, 88, 71, 0.18);
  animation: scanDotPulse 0.8s ease-in-out infinite;
}

.ha-scan-step.is-done .ha-scan-step-dot {
  background: #5a9470;
}

@keyframes scanDotPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.35); }
}

.ha-scan-step-label {
  flex: 1;
}

.ha-scan-step-status {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ha-scan-step.is-scanning .ha-scan-step-status,
.ha-scan-step.is-done .ha-scan-step-status {
  opacity: 1;
}

.ha-scan-step.is-done .ha-scan-step-status {
  color: #5a9470;
}

/* Grade reveal animation */
@keyframes gradeReveal {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ha-grade-pill {
  animation: gradeReveal 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ha-grade-pill:nth-child(1) { animation-delay: 0.05s; }
.ha-grade-pill:nth-child(2) { animation-delay: 0.18s; }
.ha-grade-pill:nth-child(3) { animation-delay: 0.31s; }
.ha-grade-pill:nth-child(4) { animation-delay: 0.44s; }

@media (max-width: 900px) {
  .home-audit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-audit-copy .section-title,
  .home-audit-copy .section-copy {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .home-audit-section { padding: 80px 0; }

  .home-audit-card { padding: 24px; border-radius: 22px; }

  .home-audit-input-row { flex-direction: column; gap: 12px; }

  .home-audit-input {
    height: 64px;
    min-height: 64px;
    font-size: 1.1rem;
    border-radius: 18px;
  }

  .home-audit-btn {
    width: 100%;
    height: 64px;
    min-height: 64px;
    font-size: 1.05rem;
    border-radius: 18px;
  }

  .ha-grade-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile header: logo left, hamburger right */
@media (max-width: 720px) {
  .main-nav   { display: none !important; }
  .nav-hamburger { display: flex; }
  .header-inner {
    flex-direction: row !important;
    align-items: center !important;
  }
  .brand { justify-content: flex-start !important; }
}