/* ============================================================
   WEI — styles.css  v3  full cinematic
   ============================================================ */

:root {
  --bg: #080808;
  --surface: #111111;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.13);
  --cream: #e8e0d0;
  --cream-lo: rgba(232, 224, 208, 0.08);
  --white: #ffffff;
  --g1: #ebebeb;
  --g2: #aaaaaa;
  --g3: #666666;
  --g4: #333333;
  --green: #22c55e;
  --fd: "Barlow Condensed", sans-serif;
  --fb: "Barlow", sans-serif;
  --fm: "JetBrains Mono", monospace;
  --max: 1200px;
  --narrow: 780px;
  --r: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

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

/* ---- CURSOR ---- */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s var(--ease),
    height 0.2s var(--ease),
    border-color 0.2s,
    opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor.hovering {
  width: 40px;
  height: 40px;
  border-color: var(--white);
}
.cursor.clicking {
  width: 14px;
  height: 14px;
}
@media (hover: none) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ---- UTILS ---- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.container-narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 0 48px;
}

.label {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
  margin-bottom: 20px;
}

.section {
  padding: 140px 0;
}
.section-header {
  margin-bottom: 72px;
}
.section-h2 {
  font-family: var(--fd);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* ---- BUTTONS ---- */
/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: none;
  transition: all 0.25s var(--ease);
  cursor: none;
}
.btn-primary {
  background: var(--cream);
  color: #000;
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(232, 224, 208, 0.22);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn-ghost:hover {
  background: rgba(232, 224, 208, 0.08);
  color: var(--cream);
  border-color: var(--cream);
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 17px;
}
/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.97);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--cream);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--g2);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  background: var(--cream) !important;
  color: #000 !important;
  padding: 9px 20px;
  border-radius: 7px;
  font-family: var(--fd) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}
.nav-cta:hover {
  background: var(--white) !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 20px 48px 28px;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.97);
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--g1);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover {
  color: var(--cream);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 48px 80px;
  position: relative;
}

.hero-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.hero-grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 20%,
    black 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

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

.hero-label-anim {
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}

.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordIn 0.6s var(--ease) calc(0.3s + var(--i) * 0.1s) forwards;
}
.hero-word--accent {
  color: var(--cream);
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: 19px;
  color: var(--g2);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-sub-anim {
  animation: fadeUp 0.7s var(--ease) 0.65s both;
}
.hero-actions-anim {
  animation: fadeUp 0.7s var(--ease) 0.75s both;
}
.hero-proof-anim {
  animation: fadeUp 0.7s var(--ease) 0.85s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--g3);
}

.proof-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.05);
  }
}

/* ---- DUAL PHONES ---- */
.phones-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 480px;
  perspective: 1200px;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.phone-back {
  position: absolute;
  left: 0;
  top: 40px;
  width: 200px;
  background: linear-gradient(155deg, #1e1e1e 0%, #0f0f0f 100%);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(-1deg) translateZ(-30px);
  transform-style: preserve-3d;
  opacity: 0.7;
  transition:
    transform 0.45s var(--ease),
    opacity 0.45s;
}

.phone-front {
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  background: linear-gradient(145deg, #252525 0%, #111 50%, #1a1a1a 100%);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.9),
    0 30px 60px rgba(0, 0, 0, 0.6),
    -12px 8px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transform: rotateY(-18deg) rotateX(5deg) rotateZ(1.5deg) translateZ(20px);
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease);
}

.phone-reflect {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 45%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 20;
}
.phone-side-r {
  position: absolute;
  right: -3px;
  top: 110px;
  width: 3px;
  height: 70px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.06)
  );
  border-radius: 0 2px 2px 0;
}
.phone-side-l {
  position: absolute;
  left: -3px;
  top: 90px;
  width: 3px;
  height: 44px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 2px 0 0 2px;
}
.phone-side-l2 {
  position: absolute;
  left: -3px;
  top: 148px;
  width: 3px;
  height: 44px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 2px 0 0 2px;
}

.phone-screen {
  margin: 10px;
  border-radius: 28px;
  background: #000;
  overflow: hidden;
  height: 390px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.phones-ground {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55) 0%, transparent 70%);
  pointer-events: none;
}
.phones-glow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 320px;
  background: radial-gradient(
    ellipse,
    rgba(232, 224, 208, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* phone screen mini components */
.ps-status {
  display: flex;
  justify-content: space-between;
  padding: 9px 12px 2px;
  font-size: 9.5px;
  font-weight: 600;
  color: #fff;
}
.ps-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px 8px;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}
.ps-icon {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
}
.ps-logo {
  font-size: 12px;
  font-weight: 900;
  color: #e8e0d0;
  letter-spacing: 2px;
}
.ps-ttl {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.ps-search {
  margin: 6px 8px 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.28);
}
.ps-sltr {
  padding: 5px 10px 2px;
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}
.ps-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
}
.ps-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}
.ps-name {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}
.ps-meta {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1px;
}
.ps-chev {
  color: rgba(255, 255, 255, 0.15);
  font-size: 10px;
  margin-left: auto;
}
.ps-tabs {
  display: flex;
  background: rgba(10, 10, 10, 0.8);
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  padding: 6px 0 9px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.ps-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 7.5px;
  color: rgba(255, 255, 255, 0.25);
}
.ps-tab-on {
  color: #60a5fa;
}
.ps-dname {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 9px 11px 3px;
  letter-spacing: -0.01em;
}
.ps-dmeta {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.32);
  padding: 0 11px 6px;
  display: flex;
  gap: 6px;
}
.ps-dur {
  color: #22c55e;
  font-weight: 600;
}
.ps-tog {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 2px 9px 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  padding: 7px 9px;
}
.ps-tog-ico {
  font-size: 12px;
  flex-shrink: 0;
}
.ps-tog-txt {
  flex: 1;
}
.ps-tog-lbl {
  font-size: 9.5px;
  font-weight: 600;
  color: #fff;
}
.ps-tog-sub {
  font-size: 7.5px;
  color: rgba(255, 255, 255, 0.32);
}
.ps-pill {
  width: 30px;
  height: 17px;
  background: #ef4444;
  border-radius: 9px;
  position: relative;
  flex-shrink: 0;
}
.ps-knob {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1.5px;
  right: 1.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.ps-card {
  margin: 3px 9px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  padding: 7px 9px;
}
.ps-card-lbl {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}
.ps-edit {
  color: #60a5fa;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.ps-card-body {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}
.ps-kp {
  display: flex;
  gap: 4px;
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin-bottom: 3px;
}
.ps-kp:last-child {
  margin-bottom: 0;
}
.ps-dot {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ---- STRIP ---- */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
}
.strip-item {
  padding: 40px 0;
}
.strip-divider {
  width: 1px;
  background: var(--border);
  margin: 24px 48px;
}
.strip-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
  margin-bottom: 10px;
}
.strip-text {
  font-size: 15px;
  color: var(--g2);
  line-height: 1.5;
  max-width: 300px;
}

/* ---- GAP ---- */
.gap-section {
  background: var(--bg);
}
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.gap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.gap-card:hover {
  border-color: var(--border2);
}
.gap-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--cream);
  transition: width 0.5s var(--ease);
}
.gap-card:hover .gap-card-line {
  width: 100%;
}

.gap-num {
  font-family: var(--fm);
  font-size: 44px;
  font-weight: 500;
  color: var(--g4);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1;
}
.gap-card h3 {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.gap-card p {
  font-size: 15px;
  color: var(--g2);
  line-height: 1.7;
}

.gap-close {
  border: 1px solid rgba(232, 224, 208, 0.18);
  background: rgba(232, 224, 208, 0.03);
  border-radius: var(--r);
  padding: 52px;
  text-align: center;
}
.gap-close p {
  font-family: var(--fd);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--g2);
  line-height: 1.3;
  margin-bottom: 20px;
}
.gap-close-cta {
  font-family: var(--fd);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
}

/* ---- HOW ---- */
.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-wrap {
  position: relative;
  display: flex;
  gap: 0;
}
.how-line-track {
  position: relative;
  width: 2px;
  flex-shrink: 0;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  margin-right: 56px;
}
.how-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: var(--cream);
  border-radius: 2px;
  transition: height 0.1s linear;
}
.how-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.how-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.how-step:last-child {
  border-bottom: none;
}

.step-node {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  flex-shrink: 0;
}
.step-node-core {
  position: absolute;
  inset: 4px;
  background: var(--g4);
  border-radius: 50%;
  transition: background 0.4s;
}
.step-node-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--border2);
  border-radius: 50%;
  transition: border-color 0.4s;
}
.how-step.active .step-node-core {
  background: var(--cream);
}
.how-step.active .step-node-ring {
  border-color: var(--cream);
  box-shadow: 0 0 12px rgba(232, 224, 208, 0.3);
}

.step-tag {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
  margin-bottom: 12px;
}
.step-content h3 {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.step-content p {
  font-size: 15px;
  color: var(--g2);
  line-height: 1.7;
  max-width: 580px;
}

/* ---- FLOW ---- */
.flow-section {
  background: var(--bg);
}
.flow-diagram {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow-x: auto;
}
.flow-node {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    box-shadow 0.35s;
}
.flow-node.active {
  border-color: var(--cream);
  box-shadow: 0 0 30px rgba(232, 224, 208, 0.12);
}
.flow-icon {
  color: var(--g3);
  margin-bottom: 14px;
  transition: color 0.35s;
}
.flow-node.active .flow-icon {
  color: var(--cream);
}
.flow-label {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 8px;
  transition: color 0.35s;
}
.flow-node.active .flow-label {
  color: var(--cream);
}
.flow-sub {
  font-size: 12px;
  color: var(--g3);
  line-height: 1.5;
  transition: color 0.35s;
}
.flow-node.active .flow-sub {
  color: var(--g2);
}
.flow-pulse-ring {
  position: absolute;
  inset: -1px;
  border-radius: var(--r);
  border: 1px solid var(--cream);
  opacity: 0;
}
.flow-node.active .flow-pulse-ring {
  animation: flowPulse 1.5s ease-out infinite;
}
@keyframes flowPulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

.flow-connector {
  flex: 1;
  height: 2px;
  min-width: 32px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.flow-conn-fill {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--cream);
  transition: left 0.4s var(--ease);
}
.flow-connector.lit .flow-conn-fill {
  left: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  transition: border-color 0.3s;
}
.feature-card:hover {
  border-color: var(--cream);
}
.feat-icon {
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--g2);
  line-height: 1.7;
}

/* ---- WHY ---- */
.why-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.why-content {
  text-align: center;
}
.why-h2 {
  font-family: var(--fd);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}
.why-body {
  font-size: 18px;
  color: var(--g2);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 20px;
}
.why-body--bold {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
}

/* ---- PROOF ---- */
.proof-section {
  background: var(--bg);
}
.proof-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
}
.proof-stars {
  color: var(--cream);
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.proof-card blockquote {
  font-size: 18px;
  color: var(--g1);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}
.proof-attr {
  font-size: 13px;
  color: var(--g3);
  font-weight: 500;
}
.proof-placeholder {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--g4);
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px dashed var(--g4);
  border-radius: 6px;
}
.proof-card--stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.proof-stat-num {
  font-family: var(--fd);
  font-size: 72px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.proof-stat-label {
  font-size: 14px;
  color: var(--g2);
  line-height: 1.5;
}
.proof-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--g3);
  justify-content: center;
}

/* ---- CTA ---- */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.cta-box {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 64px;
}
.cta-h2 {
  font-family: var(--fd);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px;
  color: var(--g2);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 520px;
}
.demo-form {
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g3);
}
.optional {
  color: var(--g4);
  font-size: 10px;
}
.form-field input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--white);
  transition: all 0.2s;
  outline: none;
  cursor: none;
}
.form-field input::placeholder {
  color: var(--g4);
}
.form-field input:focus {
  border-color: var(--cream);
  box-shadow: 0 0 0 3px rgba(232, 224, 208, 0.08);
}
.cta-alt {
  text-align: center;
  font-size: 14px;
  color: var(--g3);
  margin-bottom: 28px;
}
.cta-alt a {
  color: var(--cream);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-compliance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--g4);
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 56px 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.footer-logo {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--g3);
}
.footer-nav {
  display: flex;
  gap: 32px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--g3);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--cream);
}
.footer-legal {
  text-align: right;
  font-size: 12px;
  color: var(--g4);
  line-height: 1.8;
}

/* ---- TILT CARDS ---- */
.tilt-card {
  transform-style: preserve-3d;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  will-change: transform;
}

/* ---- SCROLL REVEAL ---- */
[data-reveal] {
  opacity: 0;
  translate: 0 28px;
  transition:
    opacity 0.7s var(--ease),
    translate 0.7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  translate: 0 0;
}
[data-delay="100"] {
  transition-delay: 0.1s;
}
[data-delay="150"] {
  transition-delay: 0.15s;
}
[data-delay="200"] {
  transition-delay: 0.2s;
}
[data-delay="300"] {
  transition-delay: 0.3s;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .container,
  .container-narrow {
    padding: 0 32px;
  }
  .nav-inner {
    padding: 0 32px;
  }
  .footer-inner {
    padding: 0 32px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 32px 80px;
    gap: 64px;
    min-height: auto;
  }
  .phones-stage {
    height: 420px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-grid .proof-card:first-child {
    grid-column: 1 / -1;
  }
  .strip-inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
  }
  .strip-divider {
    display: none;
  }
  .strip-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }
  .strip-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .nav-inner {
    padding: 0 24px;
  }
  .section {
    padding: 80px 0;
  }
  .container,
  .container-narrow {
    padding: 0 24px;
  }
  .hero {
    padding: 100px 24px 60px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .gap-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 36px 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .footer-legal {
    text-align: left;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  .how-wrap {
    flex-direction: column;
  }
  .how-line-track {
    display: none;
  }
  .flow-diagram {
    padding: 28px 20px;
  }
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-h2 {
    font-size: 38px;
  }
  .hero-h1 {
    font-size: 52px;
  }
  .nav-mobile {
    padding: 20px 24px 28px;
  }
  .phones-stage {
    height: 360px;
  }
  .phone-back {
    width: 160px;
  }
  .phone-front {
    width: 180px;
  }
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success-icon {
  font-size: 48px;
  color: var(--green);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--fd);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--white);
}
.form-success p {
  font-size: 16px;
  color: var(--g2);
}
