/* ============================================================
   MR-ONEPAGE — Premium Design System v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg: #FFFFFF;
  --text: #0B0F14;
  --muted: #5B6472;
  --border: rgba(11, 15, 20, 0.10);
  --orange: #FF6A00;
  --orange-end: #FF8C2A;
  --glow: rgba(255, 106, 0, 0.22);
  --glow-sm: rgba(255, 106, 0, 0.12);
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-fast: cubic-bezier(0.4, 0, 0.2, 1);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  letter-spacing: -0.015em;
}

.text-white,
.text-white h2,
.text-white h3 {
  color: #fff;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 500;
}

.kicker-white {
  color: rgba(255, 255, 255, 0.7);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: min(1200px, 94%);
  margin: 0 auto;
}

section {
  padding: 120px 0;
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════════
   LOCKSCREEN
   ═══════════════════════════════════════════════════════ */
#lockscreen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.75s cubic-bezier(0.6, 0, 0.2, 1), opacity 0.5s ease;
}

#lockscreen.unlocking {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.lock-bg-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.12) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.lock-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  width: min(480px, 96%);
}

.lock-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 28px;
  box-shadow: 0 12px 48px rgba(255, 106, 0, 0.3);
}

.lock-logo svg {
  width: 100%;
  height: 100%;
}

.lock-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 20px;
}

.lock-kicker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: dot-pulse 2s ease-in-out infinite;
}

.lock-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.lock-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.lock-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lock-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.lock-input-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
}

.lock-input-wrap.error {
  border-color: #FF4444;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.18);
  animation: shake 0.4s var(--ease);
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px);
  }

  40% {
    transform: translateX(8px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(5px);
  }
}

.lock-icon-svg {
  width: 16px;
  height: 16px;
  margin-left: 16px;
  flex-shrink: 0;
  stroke: rgba(255, 255, 255, 0.35);
}

#lock-password {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 16px 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

#lock-password::placeholder {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0;
}

.lock-toggle-pw {
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.lock-toggle-pw:hover {
  color: rgba(255, 255, 255, 0.7);
}

.lock-toggle-pw svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lock-error {
  color: #FF6666;
  font-size: 0.8rem;
  text-align: left;
  padding-left: 4px;
  display: none;
}

.lock-error.show {
  display: block;
}

.lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-end));
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 17px 32px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 28px rgba(255, 106, 0, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.3s;
  width: 100%;
}

.lock-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 106, 0, 0.5);
}

.lock-btn:active {
  transform: scale(0.97);
}

/* ── Cursor Halo ────────────────────────────────────────── */
#cursor-halo {
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  opacity: 0;
}

#cursor-halo.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ── Progress Dots ──────────────────────────────────────── */
#progress-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid rgba(11, 15, 20, 0.18);
  transition: background 0.35s var(--ease), height 0.35s var(--ease);
  cursor: pointer;
}

.p-dot.active {
  background: var(--orange);
  height: 18px;
  border-radius: var(--r-pill);
  border-color: var(--orange);
}

/* ── Sticky Nav ─────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#main-nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 94%);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--text);
  color: var(--bg) !important;
  padding: 9px 22px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--orange) !important;
  box-shadow: 0 0 20px var(--glow) !important;
  transform: scale(1.02) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--bg);
  z-index: 850;
  padding: 80px 36px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#mobile-drawer.open {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 20, 0.3);
  z-index: 840;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(4px);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer-link {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.drawer-link:hover {
  color: var(--orange);
}

.drawer-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}

.drawer-close:hover {
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 160px;
  position: relative;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orb-pulse 6s ease-in-out infinite;
}

@keyframes orb-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
  }
}

/* ── Premium Ambient Glass Glow Background ──────────────── */
.hero-ambient-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  background: var(--bg);
  /* Energetic pop-in opener animation */
  animation: ambient-pop-in 1.4s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

@keyframes ambient-pop-in {
  0% { opacity: 0; transform: scale(1.15) translateY(30px); filter: brightness(0.5); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: brightness(1); }
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
}

.ambient-orb-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.45) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  animation: ambient-float 12s ease-in-out infinite alternate;
}

.ambient-orb-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 140, 42, 0.35) 0%, transparent 65%);
  bottom: -200px;
  left: -200px;
  animation: ambient-float-rev 15s ease-in-out infinite alternate;
}

/* Mouse follower orb */
.orb-mouse {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.6) 0%, transparent 60%);
  top: -300px;
  left: -300px;
  pointer-events: none;
  z-index: 2; /* Still below glass overlay */
  will-change: transform;
}

@keyframes ambient-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 40px) scale(1.1); }
}

@keyframes ambient-float-rev {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -60px) scale(1.15); }
}

.hero-glass-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(70px) saturate(140%);
  -webkit-backdrop-filter: blur(70px) saturate(140%);
  background: rgba(255, 255, 255, 0.25);
  z-index: 3;
}

.hero-glass-grid {
  position: absolute;
  inset: 0;
  z-index: 4;
  background-image: 
    linear-gradient(rgba(11, 15, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 15, 20, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  pointer-events: none;
}

.hero-logo-wrap {
  position: relative;
  margin-bottom: 44px;
  display: inline-block;
}

.hero-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow: 0 12px 48px rgba(255, 106, 0, 0.25), 0 2px 8px rgba(11, 15, 20, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  overflow: hidden;
}

.hero-logo:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 20px 64px rgba(255, 106, 0, 0.35);
}

.hero-logo svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-kicker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-h1 {
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero-h1 .orange-word {
  color: var(--orange);
}

.hero-subline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.hero-subline strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-end));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 24px var(--glow);
  transition: transform 0.2s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-end), #FF5500);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 36px rgba(255, 106, 0, 0.45);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary span,
.btn-primary .btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-primary .btn-arrow {
  transition: transform 0.25s var(--ease);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 50%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: none;
}

.btn-primary.ripple::after {
  animation: ripple-anim 0.45s var(--ease) forwards;
}

@keyframes ripple-anim {
  to {
    inset: -20%;
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
}

.hero-hint {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 22px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 1;
  }
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--orange), transparent);
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  writing-mode: vertical-lr;
}

/* ═══════════════════════════════════════════════════════════
   TRANSITION 1: CURTAIN
   ═══════════════════════════════════════════════════════ */
.transition-curtain {
  position: relative;
  height: 0;
  overflow: visible;
  z-index: 10;
  pointer-events: none;
}

.curtain-panel {
  position: absolute;
  top: -60px;
  height: 120px;
  width: 50%;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

.curtain-left {
  left: 0;
  transform-origin: left center;
}

.curtain-right {
  right: 0;
  transform-origin: right center;
}

.curtain-label {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s 0.3s;
}

.transition-curtain.active .curtain-left {
  transform: scaleX(1);
}

.transition-curtain.active .curtain-right {
  transform: scaleX(1);
}

.transition-curtain.active .curtain-label {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS — ORANGE
   ═══════════════════════════════════════════════════════ */
.process-fade-in {
  height: 120px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FF6A00 100%);
  pointer-events: none;
}

.process-fade-out {
  height: 120px;
  background: linear-gradient(180deg, #FF6A00 0%, #FFFFFF 100%);
  pointer-events: none;
}

#process.process-orange {
  background: linear-gradient(160deg, #FF6A00 0%, #E85E00 50%, #FF7A1A 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

#process.process-orange .process-header h2 {
  color: #fff;
}

#process.process-orange .process-subline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

#process.process-orange .process-header {
  text-align: center;
  margin-bottom: 72px;
}

/* Background decoration */
.process-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.process-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.process-bg-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.process-bg-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -80px;
}

/* Process Cards Grid */
.process-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  width: 48px;
}

.process-connector svg {
  width: 40px;
  height: 24px;
  flex-shrink: 0;
}

.process-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  cursor: pointer;
  position: relative;
  transition: background 0.35s, border-color 0.35s, transform 0.3s var(--ease), box-shadow 0.35s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.process-card:hover,
.process-card.active {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.process-card:hover::before,
.process-card.active::before {
  opacity: 1;
}

.pcard-step-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.pcard-icon-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.pcard-icon-wrap svg {
  width: 64px;
  height: 64px;
}

.pcard-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pcard-micro {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pcard-expand-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s;
  padding-top: 12px;
}

.pcard-expand-hint svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s var(--ease);
}

.process-card.active .pcard-expand-hint {
  color: rgba(255, 255, 255, 0.9);
}

.process-card.active .pcard-expand-hint svg {
  transform: rotate(-90deg);
}

.pcard-detail {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0;
  padding-top: 0;
}

.process-card.active .pcard-detail {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
  padding-top: 16px;
}

/* Progress bar */
.process-progress-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.process-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.process-progress-fill {
  height: 100%;
  width: 25%;
  background: #fff;
  border-radius: 3px;
  transition: width 0.5s var(--ease);
}

.process-steps-indicator {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   TRANSITION 2: SCATTER CANVAS
   ═══════════════════════════════════════════════════════ */
.transition-scatter {
  height: 80px;
  position: relative;
  pointer-events: none;
  overflow: hidden;
}

#scatter-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   INCLUDED
   ═══════════════════════════════════════════════════════ */
#included {
  background: var(--bg);
}

.included-header {
  text-align: center;
  margin-bottom: 72px;
}

.included-header h2 {
  margin-top: 12px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.included-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.included-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.included-card:hover {
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px var(--glow-sm);
}

.included-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-end));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.included-card:hover .card-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 4px 16px var(--glow);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   TRANSITION 3: WIPE LINE
   ═══════════════════════════════════════════════════════ */
.transition-wipe {
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}

.wipe-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange), rgba(255, 106, 0, 0.3), transparent);
  transform: translateY(-50%);
  transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.transition-wipe.active .wipe-line {
  width: 100%;
}

.wipe-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s 0.5s;
}

.transition-wipe.active .wipe-text {
  opacity: 1;
}

/* ── Thin Divider ───────────────────────────────────────── */
.thin-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
#pricing {
  background: #FAFAFA;
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-header h2 {
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s, transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 16px 56px rgba(11, 15, 20, 0.07);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--orange);
  background: var(--text);
  color: #fff;
}

.pricing-card.featured:hover {
  box-shadow: 0 16px 56px rgba(255, 106, 0, 0.2);
}

.pricing-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-tag {
  background: rgba(255, 106, 0, 0.18);
  border-color: rgba(255, 106, 0, 0.4);
}

.pricing-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-name {
  color: #fff;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
}

.pricing-card.featured .price-amount {
  color: #fff;
}

.price-period {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card.featured .price-period {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-note {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  padding-top: 4px;
}

.pricing-card.featured .pricing-note {
  color: rgba(255, 255, 255, 0.45);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-divider {
  background: rgba(255, 255, 255, 0.12);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.pricing-card.featured .pricing-feature {
  color: rgba(255, 255, 255, 0.85);
}

.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card.featured .feature-check {
  background: rgba(255, 106, 0, 0.22);
  border-color: rgba(255, 106, 0, 0.5);
}

.feature-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s;
}

.pricing-btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
}

.pricing-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: scale(1.02);
}

.pricing-btn-filled {
  background: linear-gradient(135deg, var(--orange), var(--orange-end));
  color: #fff;
  box-shadow: 0 4px 20px var(--glow);
}

.pricing-btn-filled:hover {
  box-shadow: 0 8px 32px rgba(255, 106, 0, 0.4);
  transform: scale(1.02);
}

.pricing-btn-filled:active {
  transform: scale(0.98);
}

.pricing-caveat {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pricing-caveat strong {
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════════════════ */
#trust {
  background: var(--bg);
  padding: 80px 0;
}

.trust-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 14px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.trust-pill:hover {
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: 0 4px 20px var(--glow-sm);
  transform: translateY(-2px);
}

.trust-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
#faq {
  background: var(--bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 72px;
}

.faq-header h2 {
  margin-top: 12px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  gap: 16px;
  text-align: left;
  background: none;
  cursor: pointer;
}

.faq-question:hover .faq-q-text {
  color: var(--orange);
}

.faq-q-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.25s;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s, transform 0.35s var(--ease);
}

.faq-item.open .faq-icon {
  border-color: var(--orange);
  background: rgba(255, 106, 0, 0.08);
}

.faq-item.open .faq-icon svg {
  stroke: var(--orange);
  transform: rotate(45deg);
}

.faq-item.open .faq-q-text {
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-answer-inner {
  padding: 0 4px 22px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s var(--ease) 0.1s, transform 0.35s var(--ease) 0.1s;
}

.faq-item.open .faq-answer-inner {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════ */
#contact {
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  margin-top: 12px;
  margin-bottom: 0;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--orange);
}

.contact-right {
  background: #FAFAFA;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-optional {
  font-weight: 400;
  color: var(--muted);
}

.form-input {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  resize: none;
}

.form-input::placeholder {
  color: var(--muted);
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.form-input.error {
  border-color: #FF4444;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.10);
}

.form-textarea {
  min-height: 100px;
}

.form-addons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.addon-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  background: #fff;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: border-color 0.25s;
}

.addon-label:hover {
  border-color: var(--orange);
}

.addon-label input[type="checkbox"] {
  accent-color: var(--orange);
  width: 18px;
  height: 18px;
}

.form-error {
  font-size: 0.78rem;
  color: #FF4444;
  display: none;
}

.form-error.show {
  display: block;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-end));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 17px 32px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 28px var(--glow);
  transition: transform 0.2s var(--ease), box-shadow 0.3s;
  width: 100%;
  cursor: pointer;
}

.form-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 106, 0, 0.4);
}

.form-submit:active {
  transform: scale(0.97);
}

.form-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-submit .btn-arrow {
  transition: transform 0.25s var(--ease);
}

.form-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.form-success {
  display: none;
  align-items: center;
  gap: 16px;
  background: rgba(255, 106, 0, 0.06);
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
#final-cta {
  position: relative;
  overflow: hidden;
  padding: 160px 20px;
  text-align: center;
  background: var(--bg);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF6A00, #FF8C2A, #FF5500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s var(--ease);
}

#final-cta.revealed .cta-bg {
  transform: scaleX(1);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-mustache {
  margin: 0 auto 32px;
  opacity: 0.18;
  width: 40px;
}

.cta-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 18px;
  transition: color 0.4s 0.2s;
}

#final-cta.revealed .cta-heading {
  color: #fff;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.4s 0.25s;
}

#final-cta.revealed .cta-sub {
  color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 32px rgba(11, 15, 20, 0.18);
  transition: transform 0.25s, box-shadow 0.3s;
}

.cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(11, 15, 20, 0.25);
}

.cta-btn:active {
  transform: scale(0.97);
}

#final-cta:not(.revealed) .cta-btn {
  background: var(--text);
  color: #fff;
}

#final-cta.revealed .cta-btn {
  background: #fff;
  color: var(--orange);
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   prefers-reduced-motion
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .process-cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .process-connector {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-right {
    padding: 36px 28px;
  }
}

@media (max-width: 900px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 80px 0;
  }

  #hero {
    padding: 120px 20px 80px;
  }

  .hero-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

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

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #progress-dots {
    display: none;
  }

  .trust-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

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

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

  .contact-right {
    padding: 28px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PROCESS — SCROLL-PINNED STICKY SECTION
   ═══════════════════════════════════════════════════════ */

/* Tall container that scrolls while inner section sticks */
#process-pin-container {
  height: 450vh;
  position: relative;
}

/* Sticky wrapper to prevent transform issues */
.process-sticky-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Inner section — scales up and loses border-radius on scroll */
#process.process-orange {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  transform: scale(0.92);
  border-radius: 60px;
  will-change: transform, border-radius;
  transform-origin: center center;
}

#process.process-orange .container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 80px;
  /* nav clearance */
}



/* Scroll-driven elements — start invisible (JS drives them) */
#process .process-header {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  margin-bottom: 56px;
}

#process .process-card {
  opacity: 0;
  transform: translateY(36px);
  will-change: opacity, transform;
}

#process .process-connector {
  opacity: 0;
  will-change: opacity;
}

#process .process-progress-wrap {
  opacity: 0;
  will-change: opacity;
  margin-top: 40px;
}

/* Completion element shown after all 4 steps */
.process-complete {
  display: none;
  align-items: center;
  gap: 16px;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  will-change: opacity;
  z-index: 15;
}

.process-complete.active {
  display: flex;
}

.process-complete-check {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.process-complete-check svg {
  width: 40px;
  height: 40px;
}

/* SVG stroke-draw animations */
@keyframes draw-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

.process-complete.animating #complete-circle {
  animation: draw-circle 0.55s var(--ease) forwards;
}

.process-complete.animating #complete-check {
  animation: draw-check 0.4s var(--ease) 0.45s forwards;
}

.process-complete-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
}

/* Tighter process section layout for 100vh */
#process .process-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-top: 10px;
}

#process .process-subline {
  font-size: 0.95rem;
  margin-top: 10px;
}

#process .process-cards {
  margin-bottom: 0;
}

#process .pcard-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}

#process .pcard-icon-wrap svg {
  width: 52px;
  height: 52px;
}

#process .process-card {
  padding: 24px 18px;
}

#process .pcard-title {
  font-size: 1rem;
}

#process .pcard-micro {
  font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL MINI-GAME
   ═══════════════════════════════════════════════════════ */
#scroll-minigame {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  z-index: 9990;
  width: min(460px, 94vw);
  background: var(--text);
  border-radius: 24px 24px 0 0;
  padding: 32px 32px 40px;
  box-shadow: 0 -12px 60px rgba(11, 15, 20, 0.5);
  transition: transform 0.55s cubic-bezier(0.3, 0, 0, 1);
  overflow: hidden;
}

#scroll-minigame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 106, 0, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

#scroll-minigame.visible {
  transform: translateX(-50%) translateY(0);
}

.minigame-inner {
  position: relative;
  z-index: 1;
}

.minigame-header {
  text-align: center;
  margin-bottom: 28px;
}

.minigame-mustache {
  width: 32px;
  height: auto;
  margin: 0 auto 12px;
  opacity: 0.9;
}

.minigame-kicker {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 8px;
}

.minigame-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.minigame-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Game state */
.minigame-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.minigame-timer-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}

.minigame-timer-svg {
  width: 80px;
  height: 80px;
}

.minigame-timer-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.minigame-score-display {
  text-align: center;
}

.minigame-score-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: transform 0.08s ease;
}

.minigame-score-num.bump {
  transform: scale(1.15);
}

.minigame-score-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.minigame-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* Result state */
.minigame-result {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 8px 0;
}

.minigame-result-icon {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.minigame-result-score {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}

.minigame-result-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.minigame-result-grade {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.minigame-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.minigame-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

@media (max-width: 640px) {
  #scroll-minigame {
    padding: 24px 20px 32px;
  }

  #process-pin-container {
    height: 360vh;
  }

  #process.process-orange {
    align-items: flex-start;
    padding-top: 0;
  }

  /* Make process cards smaller and fit 2x2 to fix mobile visibility */
  .process-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  #process .process-card {
    padding: 16px 12px;
  }

  #process .pcard-icon-wrap {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  #process .pcard-icon-wrap svg {
    width: 36px;
    height: 36px;
  }

  #process .pcard-title {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  #process .pcard-micro {
    font-size: 0.65rem;
  }
}