/* ============================================
   NULLCOD LANDING PAGE — Ultra Modern B&W
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d1d1d6;
  --gray-400: #a1a1aa;
  --gray-600: #52525b;
  --gray-800: #27272a;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }

p { color: var(--gray-600); font-size: 1.0625rem; line-height: 1.7; }

.text-outline {
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease-out-expo),
              background 0.15s var(--ease-in-out),
              box-shadow 0.15s var(--ease-in-out);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

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

/* Primary */
.btn:not(.btn-ghost):not(.btn-outline) {
  background: var(--black);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
}

.btn:not(.btn-ghost):not(.btn-outline):hover {
  background: var(--gray-800);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--black);
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--black);
  transform: translateY(-1px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: 1.5px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--black);
  background: var(--gray-50);
}

/* Sizes */
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; border-radius: 100px; }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: background 0.3s var(--ease-in-out),
              backdrop-filter 0.3s var(--ease-in-out),
              border-bottom 0.3s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: block;
  overflow: hidden;
  height: 52px;
  width: 260px;
  position: relative;
}

.nav-logo img {
  position: absolute;
  height: 260px;
  width: auto;
  top: calc(50% + 4px);
  left: -10px;
  transform: translateY(-50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero-sub {
  font-size: 1.125rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num { font-size: 1.125rem; font-weight: 800; color: var(--black); letter-spacing: -0.03em; }
.stat-label { font-size: 0.75rem; color: var(--gray-400); font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: var(--gray-200); }

/* ============================================
   PHONE MOCKUP
   ============================================ */

.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--black);
  border-radius: 44px;
  padding: 14px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 40px 80px rgba(0,0,0,0.25),
    0 80px 120px rgba(0,0,0,0.15);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.phone-screen--shots {
  background: #fff;
  display: block;
}

.phone-carousel-track {
  display: flex;
  width: 400%;
  height: 100%;
  animation: phone-carousel-slide 16.2s cubic-bezier(0.22, 0.61, 0.36, 1)
    infinite;
}

.phone-shot {
  width: 25%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes phone-carousel-slide {
  0%, 30.86% { transform: translateX(0%); }
  33.02%, 63.88% { transform: translateX(-25%); }
  66.04%, 96.9% { transform: translateX(-50%); }
  99.06%, 100% { transform: translateX(-75%); }
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: var(--black);
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px 8px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  padding-top: 44px;
}

.phone-icons { display: flex; gap: 6px; align-items: center; }

.phone-editor {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.editor-sidebar {
  width: 42px;
  background: #161616;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
  border-right: 1px solid #222;
}

.sidebar-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.15s;
}

.sidebar-icon.active {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}

.editor-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.editor-tabs {
  display: flex;
  background: #161616;
  border-bottom: 1px solid #222;
}

.editor-tab {
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  border-right: 1px solid #222;
  cursor: pointer;
}

.editor-tab.active {
  color: rgba(255,255,255,0.9);
  background: #0d0d0d;
  border-bottom: 1.5px solid white;
}

.editor-code {
  flex: 1;
  padding: 12px 4px;
  overflow: hidden;
}

.code-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.5px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.8;
  border-radius: 3px;
}

.active-line { background: rgba(255,255,255,0.05); }
.ln { color: rgba(255,255,255,0.2); min-width: 12px; text-align: right; font-size: 9px; }
.kw { color: #c792ea; }
.str { color: #c3e88d; }
.var { color: #82aaff; }
.fn { color: #82aaff; }
.op { color: rgba(255,255,255,0.6); }
.cmt { color: rgba(255,255,255,0.25); }

.phone-shortcutbar {
  display: flex;
  gap: 4px;
  padding: 6px 10px 12px;
  background: #161616;
  border-top: 1px solid #222;
}

.sc {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  background: #222;
  border-radius: 5px;
  padding: 5px 2px;
  cursor: pointer;
  transition: all 0.15s;
}

.active-sc {
  background: white;
  color: black;
  font-weight: 700;
}

/* ============================================
   PHONE FLOATING BUBBLES
   ============================================ */

.phone-wrapper {
  position: relative;
  width: 280px;
  height: 560px;
}

.phone-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 0.45rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
  z-index: 2;
}

.phone-bubble svg { flex-shrink: 0; color: var(--black); }

.bubble-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Positions */
.phone-bubble--tl {
  top: 12%;
  left: -10px;
  transform: translateX(-100%);
  animation: float-bubble-tl 5s ease-in-out infinite;
}
.phone-bubble--tr {
  top: 22%;
  right: -10px;
  transform: translateX(100%);
  animation: float-bubble-tr 6s ease-in-out infinite 0.8s;
}
.phone-bubble--mr {
  top: 50%;
  right: -10px;
  transform: translate(100%, -50%);
  animation: float-bubble-mr 5.5s ease-in-out infinite 0.4s;
}
.phone-bubble--bl {
  bottom: 20%;
  left: -10px;
  transform: translateX(-100%);
  animation: float-bubble-bl 6.5s ease-in-out infinite 1.2s;
}
.phone-bubble--br {
  bottom: 10%;
  right: -10px;
  transform: translateX(100%);
  animation: float-bubble-br 5s ease-in-out infinite 0.6s;
}

@keyframes float-bubble-tl {
  0%, 100% { transform: translateX(-100%) translateY(0); }
  50% { transform: translateX(-100%) translateY(-10px); }
}
@keyframes float-bubble-tr {
  0%, 100% { transform: translateX(100%) translateY(0); }
  50% { transform: translateX(100%) translateY(-8px); }
}
@keyframes float-bubble-mr {
  0%, 100% { transform: translate(100%, -50%) translateY(0px); }
  50% { transform: translate(100%, calc(-50% - 8px)); }
}
@keyframes float-bubble-bl {
  0%, 100% { transform: translateX(-100%) translateY(0); }
  50% { transform: translateX(-100%) translateY(8px); }
}
@keyframes float-bubble-br {
  0%, 100% { transform: translateX(100%) translateY(0); }
  50% { transform: translateX(100%) translateY(10px); }
}

.phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
  filter: blur(20px);
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
  background: var(--gray-50);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 20s linear infinite;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.01em;
}

.sep { color: var(--gray-300); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.0625rem; }

/* ============================================
   FEATURES
   ============================================ */

.features {
  padding: 7rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.25s var(--ease-out-expo),
              border-color 0.25s,
              box-shadow 0.25s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, transparent 60%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.feature-card--large {
  grid-column: span 2;
}

.feature-card--highlight {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.feature-card--highlight p { color: rgba(255,255,255,0.6); }
.feature-card--highlight h3 { color: var(--white); }
.feature-card--highlight .feature-icon { color: var(--white); }
.feature-card--highlight .feature-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card--highlight .feature-icon {
  background: rgba(255,255,255,0.1);
}

.feature-card h3 { margin-bottom: 0.625rem; }
.feature-card p { font-size: 0.9375rem; line-height: 1.65; }

.feature-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how {
  padding: 7rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 0 2.5rem;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--gray-300);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.step h3 { margin-bottom: 0.625rem; }
.step p { font-size: 0.9375rem; }

.step-line {
  width: 1px;
  height: 80px;
  background: var(--gray-200);
  margin-top: 1.5rem;
  flex-shrink: 0;
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
  padding: 7rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  border: 1.5px solid var(--gray-200);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  background: var(--white);
  transition: transform 0.25s var(--ease-out-expo),
              box-shadow 0.25s var(--ease-out-expo);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.pricing-card--featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.pricing-card--featured .pricing-tier { color: rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-desc { color: rgba(255,255,255,0.5); }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-card--featured .check { color: var(--white); }

.pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.price-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-per {
  font-size: 0.9375rem;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.check {
  font-size: 0.875rem;
  color: var(--black);
  font-weight: 700;
}

/* ============================================
   WAITLIST
   ============================================ */

.waitlist {
  padding: 7rem 0;
  border-top: 1px solid var(--gray-200);
}

.waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  overflow: hidden;
  margin: 0 auto 2rem;
}

.waitlist-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.waitlist-inner h2 { margin-bottom: 1rem; }
.waitlist-inner > p { margin-bottom: 2rem; }

.waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto 1rem;
}

.waitlist-form input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 0 1.25rem;
  outline: none;
  transition: border-color 0.15s;
}

.waitlist-form input::placeholder { color: var(--gray-400); }
.waitlist-form input:focus { border-color: var(--black); }

.waitlist-note {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
}

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

.footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 120px;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--black); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.footer-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  transition: background 0.18s var(--ease-in-out),
              color 0.18s var(--ease-in-out);
}

.lang-btn.active {
  background: var(--black);
  color: var(--white);
}

.lang-btn:not(.active):hover {
  color: var(--black);
}

/* ============================================
   ANIMATIONS — SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

.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; }

/* ============================================
   CURSOR EFFECT
   ============================================ */

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s var(--ease-out-expo);
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0,0,0,0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.3s var(--ease-out-expo),
              width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo);
}

body:hover .cursor { opacity: 1; }

/* ============================================
   COOKIE POPUP
   ============================================ */

.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.14);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-in-out);
  z-index: 250;
}

.cookie-popup {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  width: min(420px, calc(100vw - 2rem));
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  color: var(--black);
  border: 1px solid rgba(10, 10, 10, 0.11);
  border-radius: 18px;
  padding: 1rem 1rem 0.95rem;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.16),
    0 6px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
  z-index: 260;
}

.cookie-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-popup.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cookie-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.cookie-popup-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.62rem;
  border: 1px solid var(--gray-300);
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-600);
}

.cookie-popup-close {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background 0.2s var(--ease-in-out), transform 0.2s var(--ease-in-out);
}

.cookie-popup-close span {
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--gray-600);
  border-radius: 999px;
}

.cookie-popup-close span:first-child { transform: rotate(45deg); }
.cookie-popup-close span:last-child { transform: rotate(-45deg); }

.cookie-popup-close:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.cookie-popup-title {
  font-size: 1.02rem;
  line-height: 1.3;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.cookie-popup-text {
  color: var(--gray-600);
  font-size: 0.845rem;
  line-height: 1.52;
  margin-bottom: 0.85rem;
}

.cookie-popup-text a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: rgba(10, 10, 10, 0.28);
  text-underline-offset: 2px;
}

.cookie-popup-text a:hover {
  text-decoration-color: rgba(10, 10, 10, 0.75);
}

.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.95rem;
}

.cookie-pref-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  padding: 0.56rem 0.64rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.cookie-pref-item-locked {
  background: var(--gray-50);
}

.cookie-pref-copy strong {
  display: block;
  color: var(--black);
  font-size: 0.83rem;
  margin-bottom: 0.04rem;
}

.cookie-pref-copy small {
  display: block;
  color: var(--gray-400);
  font-size: 0.72rem;
  line-height: 1.4;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch-track {
  width: 38px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  background: var(--gray-100);
  display: inline-block;
  position: relative;
  transition: background 0.2s var(--ease-in-out), border-color 0.2s var(--ease-in-out);
}

.cookie-switch-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.2s var(--ease-out-expo), background 0.2s var(--ease-in-out);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
}

.cookie-switch input:checked + .cookie-switch-track {
  background: var(--black);
  border-color: var(--black);
}

.cookie-switch input:checked + .cookie-switch-track::after {
  transform: translateX(16px);
  background: var(--white);
}

.cookie-switch input:disabled + .cookie-switch-track {
  opacity: 0.8;
}

.cookie-popup-actions {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr 1fr 1.1fr;
}

.cookie-popup-btn {
  border-radius: 10px;
  border: 1px solid var(--gray-300);
  padding: 0.62rem 0.82rem;
  font-size: 0.79rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition:
    transform 0.16s var(--ease-out-expo),
    background 0.2s var(--ease-in-out),
    border-color 0.2s var(--ease-in-out);
}

.cookie-popup-btn:hover {
  transform: translateY(-0.5px);
}

.cookie-popup-btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cookie-popup-btn-primary:hover {
  background: var(--gray-800);
}

.cookie-popup-btn-ghost {
  background: var(--white);
  color: var(--gray-600);
  border-color: var(--gray-300);
}

.cookie-popup-btn-ghost:hover {
  background: var(--gray-100);
}

.cookie-popup-btn-soft {
  background: var(--gray-100);
  color: var(--black);
  border-color: var(--gray-200);
}

.cookie-popup-btn-soft:hover {
  background: var(--gray-200);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 7rem; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-phone { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .nav-links { gap: 1.2rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .steps { flex-direction: column; }
  .step { padding: 0; }
  .step-line { width: 80px; height: 1px; margin: 0; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { height: 52px; }
  .footer-inner { flex-direction: column; gap: 2.5rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cursor, .cursor-ring { display: none; }
  .cookie-popup {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    width: auto;
    border-radius: 16px;
    padding: 0.95rem 0.88rem 0.88rem;
  }
  .cookie-popup-title {
    font-size: 0.95rem;
  }
  .cookie-popup-actions {
    grid-template-columns: 1fr;
  }
}
