/* ===== FONTS ===== */
@font-face { font-family: 'NeutralFace'; src: url('../fonts/NeutralFace-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeutralFace'; src: url('../fonts/NeutralFace.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'GolosText'; src: url('../fonts/GolosText-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'GolosText'; src: url('../fonts/GolosText-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'FactorA'; src: url('../fonts/FactorA-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lack'; src: url('../fonts/Lack-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }

/* ===== VARIABLES ===== */
:root {
  --bg: #0D0D0D;
  --bg-elevated: #141414;
  --card: #1A1A1A;
  --card-border: rgba(255, 255, 255, 0.08);
  --orange: #F26A21;
  --orange-dim: rgba(242, 106, 33, 0.08);
  --orange-glow: rgba(242, 106, 33, 0.15);
  --text: #FFFFFF;
  --text-secondary: #8A8A8A;
  --text-dim: #777777;
  --text-on-orange: #0D0D0D;
  --border: rgba(255, 255, 255, 0.06);
  --border-orange: rgba(242, 106, 33, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'GolosText', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 10000; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto; padding: 12px 24px; background: var(--orange); color: var(--text-on-orange); font-weight: 700; font-size: 0.9rem; border-radius: var(--radius-sm); z-index: 10000; }
h1, h2, h3 { font-family: 'NeutralFace', system-ui, sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 48px; }
.section-title .accent { color: var(--orange); }
.accent { color: var(--orange); }

/* ===== GRID OVERLAY (hidden) ===== */
.grid-overlay { display: none; }

/* ===== SECTION LABEL — "/// Section" ===== */
.section-label {
  font-family: 'Lack', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.section-label::before {
  content: '/// ';
}

/* ===== BEAM EFFECT ===== */
.beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(242, 106, 33, 0.4) 20%,
    rgba(242, 106, 33, 0.6) 50%,
    rgba(242, 106, 33, 0.4) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: beamGlow 4s ease-in-out infinite;
}
.beam::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 100%;
  background: radial-gradient(
    ellipse 60px 50% at center,
    rgba(242, 106, 33, 0.06) 0%,
    transparent 100%
  );
}
.beam::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 4px;
  left: -1px;
  background-image:
    radial-gradient(circle 1.5px at center, rgba(242, 106, 33, 0.7) 0%, transparent 100%),
    radial-gradient(circle 1px at center, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(circle 1.5px at center, rgba(242, 106, 33, 0.5) 0%, transparent 100%);
  background-size: 4px 80px, 4px 120px, 4px 60px;
  background-position: center 0px, center 30px, center 55px;
  animation: beamDots 8s linear infinite;
}

@keyframes beamGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes beamDots {
  0% { background-position: center 0px, center 30px, center 55px; }
  100% { background-position: center -400px, center -370px, center -345px; }
}

/* ===== AMBIENT BLOBS — animated background ===== */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-blob--1 {
  width: 400px;
  height: 400px;
  background: rgba(242, 106, 33, 0.12);
  top: 15%;
  left: 35%;
  animation: blobFloat1 20s ease-in-out infinite;
}
.hero-blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(242, 106, 33, 0.08);
  top: 45%;
  right: 25%;
  animation: blobFloat2 25s ease-in-out infinite;
}
.hero-blob--3 {
  width: 200px;
  height: 200px;
  background: rgba(210, 74, 50, 0.06);
  bottom: 15%;
  left: 45%;
  animation: blobFloat3 18s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 20px) scale(0.9); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 20px) scale(1.15); }
  66% { transform: translate(30px, -40px) scale(0.85); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -20px); }
}

/* CTA section ambient */
.cta-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(242, 106, 33, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: ctaGlow 6s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 106, 33, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity 0.3s;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }
@media (hover: none) {
  .card-glow { display: none !important; }
}


/* ===== CARD GLOW — mouse follow ===== */
.service-row,
.split-card,
.proof-case,
.pricing-card,
.founder-track-item {
  position: relative;
  overflow: hidden;
}
.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 106, 33, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-row:hover .card-glow,
.split-card:hover .card-glow,
.proof-case:hover .card-glow,
.pricing-card:hover .card-glow,
.founder-track-item:hover .card-glow {
  opacity: 1;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Lack', monospace;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-logo .accent { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange) !important;
  color: var(--text-on-orange) !important;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(242, 106, 33, 0.25);
}
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hamburger span:first-child { transform: translateY(-6px); }
.hamburger span:last-child { transform: translateY(6px); }
.hamburger.active span:first-child { transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:last-child { transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lack', monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-badge::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--orange);
}
.hero-badge-ru {
  color: var(--text-dim);
  font-size: 0.78rem;
}
.hero-title {
  font-size: clamp(3.2rem, 7vw, 6rem);
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.hero-title .accent {
  color: var(--orange);
  display: inline-block;
}
.hero-tagline {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.55;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--orange);
  padding: 18px 44px;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-sm);
  font-family: 'NeutralFace', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-cta:hover {
  background: var(--orange);
  color: var(--text-on-orange);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(242, 106, 33, 0.2);
}
.hero-cta:active { transform: translateY(0); }
.hero-cta svg { width: 16px; height: 16px; transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

/* Hero visual (legacy — hidden, element will be removed from HTML) */
.hero-visual { display: none; }
.hero-orb, .hero-rings, .hero-ring { display: none; }

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

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee-item {
  font-family: 'Lack', monospace;
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
  opacity: 0.5;
}
.marquee-item .sep {
  display: inline-block;
  margin: 0 24px;
  opacity: 0.3;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SPLIT SECTION (Problem > Solution) ===== */
.split-section { background: var(--bg); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.split-left, .split-right {
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-left {
  background: var(--bg);
  border-right: 1px solid var(--border);
}
.split-right {
  background: var(--bg-elevated);
}
.split-label {
  font-family: 'Lack', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.split-label::before {
  content: '/// ';
  color: var(--text-dim);
}
.split-label.accent { color: var(--orange); }
.split-label.accent::before { color: var(--orange); }
.split-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.split-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.split-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.split-card {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: border-color 0.3s;
}
.split-card:hover { border-color: var(--border-orange); }
.split-card strong { color: var(--text); }
.split-card-num {
  font-family: 'NeutralFace', sans-serif;
  color: var(--orange);
  opacity: 0.3;
  margin-right: 8px;
  font-size: 0.8rem;
}

/* ===== BIG QUOTE ===== */
.quote-section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.big-quote {
  font-family: 'NeutralFace', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.big-quote .accent { color: var(--orange); }

/* ===== SERVICES — numbered cards in 2-col grid ===== */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  position: relative;
}
.service-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
  transition: background 0.3s;
}
.service-row:hover {
  border-color: rgba(242, 106, 33, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.service-row:hover::before {
  background: var(--orange);
}
.service-name {
  font-family: 'NeutralFace', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.service-badge {
  font-family: 'FactorA', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.service-row--new { border-color: rgba(242, 106, 33, 0.15); }
.service-row--new .service-name { color: var(--orange); }

/* Service row numbering via counter */
.services-list { counter-reset: service-counter; }
.service-row { counter-increment: service-counter; }
.service-row .service-name::before {
  content: counter(service-counter, decimal-leading-zero) ' ';
  font-family: 'NeutralFace', sans-serif;
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.85rem;
  margin-right: 4px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.process-step {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--card-border);
  position: relative;
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg-elevated); }
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.process-step:hover::before { opacity: 1; }
.process-step-num {
  font-family: 'NeutralFace', sans-serif;
  font-size: 0.8rem;
  color: var(--orange);
  opacity: 0.4;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.process-step-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.process-step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===== PROOF SECTION ===== */
.proof-section {
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.proof-metric {
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
  border-right: 1px solid var(--card-border);
}
.proof-metric:last-child { border-right: none; }
.proof-metric-value {
  font-family: 'NeutralFace', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.proof-metric-unit {
  font-family: 'NeutralFace', sans-serif;
  font-size: 0.85rem;
  color: var(--orange);
  opacity: 0.6;
  margin-bottom: 8px;
}
.proof-metric-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.proof-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 40px;
}
.proof-case {
  padding: clamp(20px, 2.5vw, 32px);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.proof-case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
}
.proof-case:hover { border-color: rgba(242, 106, 33, 0.3); }
.proof-case-value {
  font-family: 'NeutralFace', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.proof-case-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.proof-industries { margin-top: 40px; }
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  padding: 10px 24px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: default;
}
.tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}
.disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 16px;
  margin-bottom: 32px;
}

/* ===== TEAM ===== */
.founder-intro {
  display: flex;
  align-items: center;
  gap: 32px;
}
.founder-photo {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--card-border);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.85);
}
.founder-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(242, 106, 33, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.founder-photo:hover img {
  filter: grayscale(0.3) contrast(1.05) brightness(0.95);
  transition: filter 0.6s ease;
}
.founder-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.founder-track-item {
  padding: 14px 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: border-color 0.3s;
}
.founder-track-item:hover { border-color: var(--border-orange); }
.founder-track-item strong { color: var(--orange); }
.team-model-block {
  margin-bottom: 48px;
}
.team-model-statement {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text);
  line-height: 1.5;
  max-width: 700px;
}
.team-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.team-role {
  padding: 10px 24px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-family: 'NeutralFace', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: default;
}
.team-role:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}

/* ===== PRICING + CTA ===== */
.cta-section {
  text-align: center;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 64px;
  text-align: left;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.5s;
}
.pricing-card:hover {
  border-color: rgba(242, 106, 33, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.pricing-type {
  font-family: 'Lack', monospace;
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.pricing-card--featured {
  border-color: rgba(242, 106, 33, 0.2);
}
.pricing-card--featured::before { opacity: 1; }
.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'FactorA', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}

/* CTA block */
.cta-final { margin-top: 32px; position: relative; }
.cta-email {
  font-family: 'NeutralFace', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--orange);
  padding: 20px 52px;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-sm);
  font-family: 'NeutralFace', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}
.cta-btn:hover {
  background: var(--orange);
  color: var(--text-on-orange);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(242, 106, 33, 0.2);
}
.cta-btn:active { transform: translateY(0) !important; }
.cta-btn svg { transition: transform 0.3s; }
.cta-btn:hover svg { transform: translateX(4px); }

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-elevated);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--card-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--card-border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: 'NeutralFace', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: 'NeutralFace', sans-serif;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover { color: var(--orange); }
.faq-answer {
  padding: 0 0 24px;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--border);
}
.footer-legal {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 8px;
  opacity: 0.7;
}
.footer-links {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.75rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--orange); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--card-border);
  padding: 16px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: all 0.3s;
}
.cookie-accept:hover {
  background: var(--orange);
  color: var(--text-on-orange);
}
.cookie-reject {
  color: var(--text-dim);
  padding: 10px 16px;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: color 0.3s;
}
.cookie-reject:hover {
  color: var(--text-secondary);
}

/* ===== MAILTO TOAST ===== */
.mailto-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--orange);
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'GolosText', sans-serif;
  font-size: .875rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 9999;
}
.mailto-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-blob { animation: none; }
  .cursor-glow { display: none; }
  .aurora::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split-left { border-right: none; border-bottom: 1px solid var(--border); }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .proof-metric:nth-child(2) { border-right: none; }
  .proof-cases { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
  .services-list { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--card-border); }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.2rem;
    padding: 18px 0;
    text-transform: none;
    color: var(--text);
  }
  .nav-links .nav-cta {
    margin-top: 24px;
    background: transparent !important;
    color: var(--orange) !important;
    border: 1.5px solid var(--orange);
    border-radius: var(--radius-sm);
    padding: 14px 36px !important;
    font-size: 1rem !important;
  }
  .hamburger { display: flex; }
  .proof-metrics { grid-template-columns: 1fr 1fr; }
  .proof-cases, .pricing-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid var(--card-border); }
  .process-step:last-child { border-bottom: none; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 4rem); }
  .big-quote { font-size: clamp(1.4rem, 5vw, 2.2rem); }
  .founder-intro { flex-direction: column; text-align: center; gap: 20px; }
  .founder-photo { width: 120px; height: 120px; }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 12px;
    text-align: center;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-accept, .cookie-reject {
    width: 100%;
    padding: 12px;
  }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  .proof-metrics { grid-template-columns: 1fr 1fr; }
  .proof-metric { border-right: none; border-bottom: 1px solid var(--card-border); }
  .proof-metric:nth-child(odd) { border-right: 1px solid var(--card-border); }
  .proof-metric:nth-last-child(-n+2) { border-bottom: none; }
  .hero-cta { padding: 16px 32px; font-size: 0.88rem; }
  .cta-btn { padding: 18px 40px; font-size: 0.93rem; }
  .hero-content { align-items: flex-start; text-align: left; }
  .hero-tagline { text-align: left; }
}
