/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #0A0A0B; }
body {
  font-family: 'Onest', system-ui, sans-serif;
  background: #0A0A0B;
  color: #F4EFE6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

:root {
  --bg: #0A0A0B;
  --cream: #F4EFE6;
  --terracotta: #8B5CF6;
  --blue: #06B6D4;
  --green: #00D26A;
  --gold: #C9A961;
  --gray: #131316;
  --gray-2: #2A2A2D;
  --muted: #888;
  --serif: 'Instrument Serif', serif;
  --sans: 'Onest', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

button, a, input[type="range"] { cursor: pointer; }
input[type="range"] { cursor: ew-resize; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,42,45,0.5);
}
.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  letter-spacing: -.02em;
  color: var(--cream);
}
.nav-logo span { color: var(--terracotta); font-style: normal; font-family: var(--sans); font-weight: 600; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--cream);
  opacity: .8;
  transition: opacity .3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width .4s cubic-bezier(.7,0,.3,1);
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; gap: 16px; align-items: center; }
.nav-lang {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
  padding: 8px 12px;
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  transition: all .3s;
}
.nav-lang:hover { color: var(--cream); border-color: var(--cream); }
.nav-cta {
  padding: 12px 22px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: transform .3s, opacity .3s;
}
.nav-cta:hover { transform: translateY(-2px); opacity: .9; }

@media (max-width: 768px) {
  .nav { padding: 14px 18px; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 16px; font-size: 12px; }
}

/* ============ TYPOGRAPHY ============ */
.display { font-family: var(--sans); font-weight: 600; letter-spacing: -.04em; line-height: .92; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted);
}
em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--terracotta); }
.blue-em { color: var(--blue); font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-line { display: block; overflow: hidden; }
.reveal-line .inner {
  display: block;
  transform: translateY(110%);
  transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-line.in .inner { transform: translateY(0); }
.reveal-line:nth-child(1) .inner { transition-delay: .1s; }
.reveal-line:nth-child(2) .inner { transition-delay: .2s; }
.reveal-line:nth-child(3) .inner { transition-delay: .3s; }
.reveal-line:nth-child(4) .inner { transition-delay: .4s; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,.15), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,.12), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-title { font-size: clamp(48px, 6.5vw, 100px); }
.hero-title em { color: var(--terracotta); }
.hero-title .blue-em { color: var(--blue); }
.hero-sub { margin-top: 32px; font-size: 18px; line-height: 1.55; color: #C8C8C8; max-width: 540px; }
.hero-meta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 14px;
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #B8B8B8;
}
.hero-actions { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO CHAT */
.hero-right { position: relative; }
.hero-chat {
  background: linear-gradient(180deg, #1a1a1d 0%, #131316 100%);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(6,182,212,.05);
  min-height: 480px;
}
.hero-chat-header {
  padding: 14px 20px;
  background: rgba(0,0,0,.4);
  border-bottom: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-chat-dot { width: 10px; height: 10px; border-radius: 50%; background: #444; }
.hero-chat-dot:nth-child(1) { background: #ED6B5D; }
.hero-chat-dot:nth-child(2) { background: #F4BF4F; }
.hero-chat-dot:nth-child(3) { background: #61C454; }
.hero-chat-title {
  margin-left: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cream);
}
.hero-chat-status {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
}
.hero-chat-body {
  padding: 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  animation: chatPop .5s cubic-bezier(.16,1,.3,1) forwards;
}
.chat-msg-user {
  align-self: flex-end;
  background: var(--blue);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}
.chat-msg-bot {
  align-self: flex-start;
  background: var(--gray-2);
  color: var(--cream);
  border-bottom-left-radius: 4px;
}
.chat-msg-typing {
  align-self: flex-start;
  background: var(--gray-2);
  border-bottom-left-radius: 4px;
  padding: 16px 20px;
  display: flex;
  gap: 4px;
}
.chat-msg-typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
  opacity: .6;
  animation: typing 1.2s infinite;
}
.chat-msg-typing span:nth-child(2) { animation-delay: .15s; }
.chat-msg-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-6px); opacity: 1; }
}
@keyframes chatPop {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 110px 20px 60px; }
  .hero-chat { min-height: 400px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s, color .3s;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--cream); color: var(--bg); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { border: 1px solid rgba(244,239,230,.4); color: var(--cream); }
.btn-secondary:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); }
.btn-terracotta { background: var(--terracotta); color: var(--cream); }
.btn-terracotta:hover { transform: translateY(-2px); background: #7C3AED; }
.btn-blue { background: var(--blue); color: var(--cream); }
.btn-blue:hover { transform: translateY(-2px); background: #0891B2; }
.btn-full { display: flex; justify-content: center; width: 100%; }
.btn .arrow { display: inline-block; transition: transform .4s; }
.btn:hover .arrow { transform: translateX(6px); }

/* ============ MARQUEE ============ */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 50px;
  animation: scroll 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 72px);
  color: var(--cream);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 50px; }
.marquee-track .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--terracotta); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ PROOF / NUMBERS ============ */
.proof {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: var(--bg);
  max-width: 1500px;
  margin: 0 auto;
}
.proof-item { padding: 32px 20px; border-left: 1px solid var(--gray-2); }
.proof-item:first-child { border-left: none; }
.proof-num {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}
.proof-num em { color: var(--terracotta); }
.proof-label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .proof { grid-template-columns: repeat(2, 1fr); padding: 40px 16px; }
  .proof-item { padding: 20px 16px; border-left: none; border-top: 1px solid var(--gray-2); }
  .proof-item:nth-child(1), .proof-item:nth-child(2) { border-top: none; }
}

/* ============ SECTIONS ============ */
.section { padding: 120px 40px; position: relative; }
.section-cream { background: var(--cream); color: var(--bg); }
.section-cream .eyebrow { color: #777; }
.section-cream .section-title em { color: var(--terracotta); }
.container { max-width: 1400px; margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
.section-title {
  font-size: clamp(38px, 5vw, 80px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .98;
}
.section-title em { color: var(--terracotta); }
.section-title .blue-em { color: var(--blue); }
@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}

/* ============ PAIN CARDS ============ */
.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.pain-card {
  padding: 36px;
  background: var(--gray);
  border-radius: 8px;
  transition: background .4s, transform .4s;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.pain-card:hover { background: var(--gray-2); transform: translateY(-4px); }
.pain-icon { font-size: 32px; margin-bottom: 16px; }
.pain-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--terracotta);
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.pain-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 14px;
}
.pain-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #B8B8B8;
  flex: 1;
}
.pain-quote {
  display: block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cream);
}
@media (max-width: 1000px) { .pains-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pains-grid { grid-template-columns: 1fr; } }

/* ============ SOLUTION ============ */
.solution-sub {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(10,10,11,.7);
  max-width: 800px;
  margin-bottom: 60px;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.solution-card {
  padding: 48px;
  background: rgba(10,10,11,.04);
  border-radius: 12px;
  transition: background .4s, transform .4s;
}
.solution-card:hover { background: rgba(10,10,11,.07); transform: translateY(-4px); }
.solution-icon { font-size: 40px; margin-bottom: 20px; }
.solution-card h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.solution-card p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(10,10,11,.7);
  margin-bottom: 20px;
}
.solution-example {
  display: block;
  padding: 16px 20px;
  background: var(--bg);
  color: var(--cream);
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.5;
  font-family: var(--serif);
  font-style: italic;
}
@media (max-width: 800px) { .solution-grid { grid-template-columns: 1fr; } }

/* ============ DEMO ============ */
.demo-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #B8B8B8;
  max-width: 720px;
  margin-bottom: 40px;
}
.demo-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.demo-chat {
  background: var(--gray);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.demo-chat-header {
  padding: 18px 24px;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.demo-chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.demo-chat-name { font-size: 15px; font-weight: 600; }
.demo-chat-status {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
}
.demo-chat-body {
  padding: 32px 24px;
  min-height: 400px;
  max-height: 540px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.demo-chat-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-2);
  display: flex;
  justify-content: center;
}
.demo-btn {
  padding: 10px 20px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity .3s;
}
.demo-btn:hover { opacity: .9; }
.demo-side h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}
.demo-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-steps li {
  padding: 14px 18px;
  background: var(--gray);
  border-left: 3px solid var(--gray-2);
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
  color: #B8B8B8;
  transition: all .4s;
}
.demo-steps li.active {
  background: rgba(139,92,246,.15);
  border-left-color: var(--terracotta);
  color: var(--cream);
  transform: translateX(8px);
}
.demo-steps li.done {
  border-left-color: var(--green);
  color: var(--cream);
}
.demo-steps li.done::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
}
@media (max-width: 1000px) {
  .demo-wrap { grid-template-columns: 1fr; }
}

/* ============ ROI CALCULATOR ============ */
.roi-sub {
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 40px;
}
.roi-card {
  background: var(--bg);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  padding: 48px;
}
.roi-inputs {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}
.roi-input label {
  display: block;
  font-size: 14px;
  color: #B8B8B8;
  margin-bottom: 12px;
  font-weight: 500;
}
.roi-slider-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
input[type="range"] {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-2);
  border-radius: 2px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--terracotta);
  border-radius: 50%;
  cursor: ew-resize;
  transition: transform .2s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--terracotta);
  border-radius: 50%;
  cursor: ew-resize;
  border: none;
}
.roi-value {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--cream);
  min-width: 200px;
  text-align: right;
}
.roi-value span {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 18px;
}

.roi-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 32px;
}
.roi-col {
  padding: 32px;
  background: rgba(255,255,255,.03);
  border-radius: 12px;
}
.roi-col-bright {
  background: rgba(6,182,212,.08);
  border: 1px solid rgba(6,182,212,.2);
}
.roi-col-title {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 24px;
}
.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-2);
  font-size: 14px;
  color: #C8C8C8;
}
.roi-row:last-of-type { border-bottom: none; }
.roi-num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--cream);
}
.roi-loss { color: #FF6B6B; }
.roi-gain { color: var(--green); }
.roi-total { padding-top: 18px; margin-top: 8px; border-top: 2px solid var(--gray-2); font-weight: 600; color: var(--cream); font-size: 15px; }

.roi-final {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(139,92,246,.12), rgba(6,182,212,.12));
  border-radius: 16px;
  border: 1px solid rgba(139,92,246,.3);
}
.roi-final-label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 16px;
}
.roi-final-num {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--terracotta), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.roi-disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  max-width: 720px;
}
@media (max-width: 800px) {
  .roi-card { padding: 24px; }
  .roi-result { grid-template-columns: 1fr; }
  .roi-slider-wrap { flex-direction: column; align-items: stretch; gap: 12px; }
  .roi-value { text-align: left; min-width: 0; }
}

/* ============ INTEGRATIONS ============ */
.integrations-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #B8B8B8;
  max-width: 720px;
  margin-bottom: 60px;
}
.integrations-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.int-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 28px 32px;
  background: var(--gray);
  border-radius: 8px;
  align-items: center;
  transition: background .3s;
}
.int-row:hover { background: var(--gray-2); }
.int-label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--terracotta);
}
.int-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.int-pill {
  padding: 8px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--cream);
  transition: all .3s;
}
.int-pill:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }

.int-cta {
  margin-top: 60px;
  padding: 40px;
  background: var(--gray);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.int-cta h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.int-cta p { color: #B8B8B8; font-size: 15px; }
@media (max-width: 800px) {
  .int-row { grid-template-columns: 1fr; gap: 16px; }
  .int-cta { grid-template-columns: 1fr; }
}

/* ============ PILOT ============ */
.pilot-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #B8B8B8;
  max-width: 800px;
  margin-bottom: 50px;
}
.pilot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pilot-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
}
.pilot-card:hover { transform: translateY(-6px); border-color: var(--terracotta); }
.pilot-card-featured {
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, rgba(6,182,212,.08), var(--bg));
}
.pilot-card-featured:hover { border-color: var(--blue); transform: translateY(-10px); }
.pilot-stamp {
  position: absolute;
  top: 16px;
  right: -36px;
  background: var(--terracotta);
  color: var(--cream);
  padding: 6px 40px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  transform: rotate(35deg);
}
.pilot-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-family: var(--mono);
  font-weight: 600;
}
.pilot-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  margin-top: 40px;
}
.pilot-price { margin-bottom: 24px; }
.pilot-price-old {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.pilot-price-new {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 14px;
}
.pilot-card p {
  font-size: 14px;
  color: #B8B8B8;
  line-height: 1.5;
}

.pilot-deal {
  margin-top: 60px;
  padding: 48px;
  background: var(--bg);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.pilot-deal-col h5 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.pilot-deal-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pilot-deal-col li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #C8C8C8;
}
.pilot-deal-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
@media (max-width: 1000px) {
  .pilot-cards { grid-template-columns: 1fr; }
  .pilot-deal { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
}

/* ============ ABOUT HONEST ============ */
.about-honest {
  max-width: 900px;
  font-size: 18px;
  line-height: 1.6;
  color: #C8C8C8;
}
.about-honest p { margin-bottom: 20px; }
.about-honest strong { color: var(--cream); font-weight: 600; }
.about-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  padding-left: 24px;
  position: relative;
  font-size: 16px;
}
.about-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.tech-stack { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tech-pill {
  padding: 10px 18px;
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--cream);
  transition: all .3s;
}
.tech-pill:hover { border-color: var(--terracotta); background: var(--terracotta); }

.guarantees {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.guarantee-card {
  padding: 28px;
  background: var(--gray);
  border-radius: 12px;
  display: flex;
  gap: 16px;
}
.g-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-card h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cream);
}
.guarantee-card p {
  font-size: 13.5px;
  color: #B8B8B8;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 800px) {
  .guarantees { grid-template-columns: 1fr; }
}

/* ============ AI STOP ============ */
.stop-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #B8B8B8;
  max-width: 720px;
  margin-bottom: 50px;
}
.stop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.stop-card {
  padding: 36px;
  background: var(--gray);
  border-radius: 12px;
  border-left: 3px solid var(--terracotta);
}
.stop-x {
  font-size: 32px;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 300;
}
.stop-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.stop-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #B8B8B8;
}

.stop-handoff {
  padding: 40px;
  background: var(--gray);
  border-radius: 16px;
}
.stop-handoff h5 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  margin-bottom: 24px;
}
.stop-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.stop-step {
  padding: 20px;
  background: var(--bg);
  border-radius: 8px;
  border-top: 2px solid var(--blue);
}
.stop-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 8px;
}
.stop-step p {
  font-size: 14px;
  color: #C8C8C8;
  line-height: 1.5;
}
.stop-handoff-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-2);
}
@media (max-width: 800px) {
  .stop-grid { grid-template-columns: 1fr; }
  .stop-flow { grid-template-columns: 1fr; }
}

/* ============ PRICING ============ */
.pricing-sub {
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 50px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.price-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: transform .4s, border-color .4s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--terracotta); }
.price-featured {
  border: 2px solid var(--terracotta);
  background: linear-gradient(180deg, rgba(139,92,246,.06), var(--bg));
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--cream);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 600;
  white-space: nowrap;
}
.price-header { margin-bottom: 24px; }
.price-header h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.price-header p {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.price-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.price-num:nth-of-type(2) { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-2); }
.price-setup, .price-monthly {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
}
.price-setup-label, .price-monthly-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 14px;
  color: #C8C8C8;
  line-height: 1.45;
  border-bottom: 1px solid rgba(42,42,45,.5);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.price-features strong { color: var(--cream); font-weight: 600; }
.enterprise-row {
  padding: 32px 40px;
  background: var(--bg);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.enterprise-row h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.enterprise-row p {
  font-size: 14px;
  color: #B8B8B8;
  line-height: 1.55;
}

.pricing-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 40px;
  background: var(--bg);
  border-radius: 16px;
  margin-bottom: 32px;
}
.pricing-info-col h5 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  color: var(--green);
}
.pricing-info-col:nth-child(2) h5 { color: var(--terracotta); }
.pricing-info-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-info-col li {
  font-size: 14px;
  color: #C8C8C8;
  line-height: 1.5;
}

.pricing-guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pg-card {
  padding: 24px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: start;
}
.pg-emoji { font-size: 28px; }
.pg-card strong { display: block; font-size: 16px; margin-bottom: 4px; color: var(--cream); }
.pg-card p { font-size: 13.5px; color: #B8B8B8; }

@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-info { grid-template-columns: 1fr; padding: 28px; }
  .pricing-guarantees { grid-template-columns: 1fr; }
  .enterprise-row { grid-template-columns: 1fr; padding: 24px; }
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--gray);
  border-radius: 8px;
  overflow: hidden;
  transition: background .3s;
}
.faq-item.open { background: var(--gray-2); }
.faq-q {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: color .3s;
}
.faq-q:hover { color: var(--terracotta); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.7,0,.3,1);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p {
  padding: 0 32px 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #C8C8C8;
}
@media (max-width: 600px) {
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-a p { padding: 0 20px 20px; font-size: 14px; }
}

/* ============ CTA BIG ============ */
.cta-big {
  padding: 140px 40px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139,92,246,.18), transparent 50%);
  pointer-events: none;
}
.cta-big h2 {
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .95;
  position: relative;
  z-index: 1;
}
.cta-big h2 em { color: var(--terracotta); }
.cta-sub {
  margin: 32px auto 0;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.55;
  color: #B8B8B8;
  position: relative;
  z-index: 1;
}
.cta-form {
  margin: 60px auto 0;
  max-width: 560px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.form-row { margin-bottom: 14px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--gray);
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition: border-color .3s, background .3s;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--muted); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--terracotta);
  background: rgba(139,92,246,.04);
}
.form-row textarea { resize: vertical; min-height: 80px; }

/* Style native dropdown options (was unreadable — light text on light system bg) */
.form-row select option {
  background: #1a1a1d;
  color: var(--cream);
  padding: 12px;
  font-size: 15px;
}
.form-row select option:checked,
.form-row select option:hover {
  background: var(--terracotta);
  color: var(--cream);
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238B5CF6' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 8px;
  padding-right: 48px;
  cursor: pointer;
}
.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  font-family: var(--mono);
}
.form-status.success { color: var(--green); }
.form-status.error { color: #FF6B6B; }

.cta-alt {
  margin: 48px auto 0;
  max-width: 600px;
  position: relative;
  z-index: 1;
}
.cta-alt p { color: #B8B8B8; font-size: 15px; margin-bottom: 16px; }
.cta-alt-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-alt-links a {
  font-size: 15px;
  color: var(--cream);
  padding: 10px 18px;
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  transition: all .3s;
}
.cta-alt-links a:hover { border-color: var(--terracotta); color: var(--terracotta); }
.cta-note { font-size: 12px !important; color: var(--muted) !important; }
@media (max-width: 600px) {
  .form-row-split { grid-template-columns: 1fr; }
  .cta-big { padding: 80px 20px; }
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 40px 32px;
  background: var(--cream);
  color: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 4vw, 64px);
  line-height: .95;
  letter-spacing: -.02em;
}
.footer-brand .accent {
  color: var(--terracotta);
  font-style: normal;
  font-family: var(--sans);
  font-weight: 600;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
  color: #555;
}
.footer-col a {
  display: block;
  font-size: 15px;
  padding: 6px 0;
  transition: color .3s;
  color: var(--bg);
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer { padding: 40px 20px 24px; }
}

/* ============ COVERFLOW WORKFLOW GALLERY ============ */
.projects-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #B8B8B8;
  max-width: 720px;
  margin-bottom: 50px;
}
.coverflow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0 24px;
  margin-bottom: 60px;
}
.cf-stage {
  position: relative;
  flex: 1;
  height: 580px;
  perspective: 1800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cf-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.cf-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(320px, 38vw, 540px);
  height: 540px;
  background: linear-gradient(180deg, #1a1a1d 0%, #131316 100%);
  border: 1px solid var(--gray-2);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transition: transform .7s cubic-bezier(.16,1,.3,1),
              opacity .6s ease,
              box-shadow .5s,
              border-color .5s,
              filter .5s;
  cursor: pointer;
  transform-origin: center center;
  will-change: transform;
}
/* state: active */
.cf-card.cf-active {
  transform: translate(-50%, -50%) translateZ(0) scale(1);
  z-index: 10;
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px var(--terracotta);
  border-color: var(--terracotta);
}
/* states: side -1 / +1 */
.cf-card.cf-prev-1 {
  transform: translate(-115%, -50%) rotateY(28deg) scale(.78);
  z-index: 5;
  opacity: .55;
  filter: brightness(.7) blur(.5px);
}
.cf-card.cf-next-1 {
  transform: translate(15%, -50%) rotateY(-28deg) scale(.78);
  z-index: 5;
  opacity: .55;
  filter: brightness(.7) blur(.5px);
}
/* states: side -2 / +2 */
.cf-card.cf-prev-2 {
  transform: translate(-185%, -50%) rotateY(38deg) scale(.6);
  z-index: 1;
  opacity: .25;
  filter: brightness(.5) blur(1px);
}
.cf-card.cf-next-2 {
  transform: translate(85%, -50%) rotateY(-38deg) scale(.6);
  z-index: 1;
  opacity: .25;
  filter: brightness(.5) blur(1px);
}

.cf-card:hover { cursor: pointer; }

/* Window header */
.cf-window {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0,0,0,.5);
  border-bottom: 1px solid var(--gray-2);
  flex-shrink: 0;
}
.bw-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.bw-dot-r { background: #ED6B5D; }
.bw-dot-y { background: #F4BF4F; }
.bw-dot-g { background: #61C454; }
.bw-title {
  margin-left: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: #B8B8B8;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bw-status {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  white-space: nowrap;
}

.cf-img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.cf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s cubic-bezier(.16,1,.3,1);
}
.cf-card.cf-active:hover .cf-img-wrap img { transform: scale(1.05); }

.cf-meta {
  padding: 22px 24px;
  border-top: 1px solid var(--gray-2);
  background: rgba(0,0,0,.35);
}
.cf-tag {
  display: inline-block;
  padding: 5px 11px;
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.35);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--terracotta);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cf-meta h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--cream);
}
.cf-meta p {
  font-size: 13.5px;
  color: #B8B8B8;
  line-height: 1.5;
  margin-bottom: 14px;
}
.cf-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cf-stack span {
  padding: 4px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream);
}

/* Nav buttons */
.cf-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--gray-2);
  color: var(--cream);
  font-size: 22px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 20;
  transition: all .3s;
}
.cf-nav:hover { background: var(--terracotta); border-color: var(--terracotta); transform: scale(1.05); }
.cf-nav:active { transform: scale(.95); }

/* Dots */
.cf-dots {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.cf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-2);
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.cf-dot:hover { background: #555; }
.cf-dot-active { background: var(--terracotta); width: 24px; border-radius: 4px; }

@media (max-width: 900px) {
  .coverflow { gap: 8px; }
  .cf-stage { height: 500px; }
  .cf-card { width: 85vw; height: 460px; }
  .cf-card.cf-prev-1 { transform: translate(-130%, -50%) rotateY(20deg) scale(.7); }
  .cf-card.cf-next-1 { transform: translate(30%, -50%) rotateY(-20deg) scale(.7); }
  .cf-card.cf-prev-2, .cf-card.cf-next-2 { display: none; }
  .cf-nav { width: 44px; height: 44px; font-size: 18px; }
}

/* ============ AI CHAT — ChatGPT-style hero ============ */

.ai-section {
  padding: 140px 40px;
  background: linear-gradient(180deg, var(--gray) 0%, #0d0d0f 100%);
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(139,92,246,.15) 0%, transparent 60%);
  pointer-events: none;
}
.ai-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.ai-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--cream);
  margin-bottom: 32px;
  animation: aiPulse 2.5s ease-in-out infinite;
}
@keyframes aiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,92,246,0); }
  50% { box-shadow: 0 0 0 8px rgba(139,92,246,.15); }
}

.ai-hero-title {
  font-family: var(--sans);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  color: var(--cream);
}
.ai-hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--terracotta), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ai-hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #B8B8B8;
  margin-bottom: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Mega input — ChatGPT-style */
.ai-megainput {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg);
  border: 2px solid rgba(139,92,246,.35);
  border-radius: 100px;
  padding: 8px 8px 8px 28px;
  max-width: 760px;
  margin: 0 auto 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 0 rgba(139,92,246,.15);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  animation: megaInputGlow 3s ease-in-out infinite;
}
@keyframes megaInputGlow {
  0%, 100% {
    border-color: rgba(139,92,246,.35);
    box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 0 rgba(139,92,246,.15);
  }
  50% {
    border-color: rgba(139,92,246,.7);
    box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 12px rgba(139,92,246,.18);
  }
}
.ai-megainput:focus-within {
  animation: none;
  border-color: var(--terracotta);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 6px rgba(139,92,246,.25);
  transform: translateY(-2px);
}
#ai-chat-input {
  flex: 1;
  height: 64px;
  padding: 0 18px 0 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.01em;
}
#ai-chat-input::placeholder { color: #888; }
#ai-chat-send {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .25s, opacity .25s;
}
#ai-chat-send:hover { transform: scale(1.06); background: #7C3AED; }
#ai-chat-send:active { transform: scale(.95); }
#ai-chat-send:disabled { opacity: .4; cursor: not-allowed; transform: none; }

/* Caret blinker on empty input */
.ai-megainput.has-cursor::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 22px;
  background: var(--terracotta);
  animation: caret 1s steps(2) infinite;
  pointer-events: none;
}
@keyframes caret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Suggestions */
.ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}
.ai-suggestions-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-right: 4px;
}
.ai-chat-suggestion {
  padding: 10px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--cream);
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.ai-chat-suggestion:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,92,246,.3);
}

/* Chat answers area — hidden until first message */
.ai-chat-area {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 64px auto 0;
  background: var(--bg);
  border: 1px solid var(--gray-2);
  border-radius: 20px;
  overflow: hidden;
  display: none;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.ai-chat-area.is-open {
  display: block;
  animation: chatAreaOpen .5s cubic-bezier(.16,1,.3,1);
}
@keyframes chatAreaOpen {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-chat-area-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid var(--gray-2);
}
.ai-chat-area-title strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}
.ai-chat-area-title span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
  display: block;
}
.ai-chat-clear {
  margin-left: auto;
  padding: 8px 16px;
  height: auto;
  border-radius: 100px;
  border: 1px solid var(--gray-2);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: .05em;
  transition: all .3s;
}
.ai-chat-clear:hover { color: var(--cream); border-color: var(--terracotta); background: rgba(139,92,246,.08); }

@media (max-width: 700px) {
  .ai-section { padding: 80px 16px; }
  .ai-megainput { padding: 6px 6px 6px 20px; }
  #ai-chat-input { font-size: 15px; height: 52px; }
  #ai-chat-send { width: 44px; height: 44px; }
  .ai-suggestions-label { display: none; }
  .ai-chat-suggestion { font-size: 12px; padding: 8px 14px; }
}
.ai-chat-header {
  padding: 18px 24px;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ai-chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
}
.ai-chat-name { font-size: 15px; font-weight: 600; color: var(--cream); }
.ai-chat-status {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
}
.ai-chat-clear {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-2);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  transition: all .3s;
}
.ai-chat-clear:hover { color: var(--cream); border-color: var(--cream); }

.ai-chat-body::-webkit-scrollbar { width: 6px; }
.ai-chat-body::-webkit-scrollbar-track { background: transparent; }
.ai-chat-body::-webkit-scrollbar-thumb { background: var(--gray-2); border-radius: 3px; }

.ai-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
  animation: chatPop .35s cubic-bezier(.16,1,.3,1);
}
.ai-msg-bot {
  align-self: flex-start;
  background: var(--gray-2);
  color: var(--cream);
  border-bottom-left-radius: 4px;
}
.ai-msg-user {
  align-self: flex-end;
  background: var(--blue);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}
.ai-msg-typing {
  align-self: flex-start;
  background: var(--gray-2);
  border-bottom-left-radius: 4px;
  padding: 16px 20px;
  display: flex;
  gap: 4px;
}
.ai-msg-typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
  opacity: .6;
  animation: typing 1.2s infinite;
}
.ai-msg-typing span:nth-child(2) { animation-delay: .15s; }
.ai-msg-typing span:nth-child(3) { animation-delay: .3s; }

/* Input wrap — now ABOVE chat body, with bigger input + label */
.ai-chat-input-wrap.ai-chat-input-top {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--gray-2);
  background: linear-gradient(180deg, rgba(139,92,246,.06), rgba(0,0,0,.2));
  display: block;
}
.ai-chat-input-label {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terracotta);
  margin-bottom: 12px;
  font-weight: 600;
}
.ai-chat-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
#ai-chat-input {
  flex: 1;
  padding: 16px 22px;
  background: var(--gray);
  border: 2px solid rgba(139,92,246,.4);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  animation: inputPulse 2.5s ease-in-out infinite;
}
#ai-chat-input::placeholder { color: #888; font-style: italic; }
#ai-chat-input:focus {
  animation: none;
  border-color: var(--terracotta);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(139,92,246,.2);
}
@keyframes inputPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,92,246,0); border-color: rgba(139,92,246,.4); }
  50% { box-shadow: 0 0 0 6px rgba(139,92,246,.15); border-color: var(--terracotta); }
}

#ai-chat-send {
  padding: 0 22px;
  height: 54px;
  border-radius: 100px;
  background: var(--terracotta);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .25s, opacity .25s, background .25s;
  flex-shrink: 0;
}
#ai-chat-send span { white-space: nowrap; }
#ai-chat-send:hover { transform: translateY(-2px); background: #7C3AED; }
#ai-chat-send:active { transform: translateY(0); }
#ai-chat-send:disabled { opacity: .4; cursor: not-allowed; transform: none; }

.ai-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.ai-chat-suggestions-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-right: 4px;
}
.ai-chat-suggestion {
  padding: 8px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gray-2);
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--cream);
  cursor: pointer;
  transition: all .25s;
}
.ai-chat-suggestion:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Chat body becomes scrollable answers area */
.ai-chat-body {
  padding: 24px;
  flex: 1;
  max-height: 480px;
  min-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.price-side {
  padding: 32px;
  background: var(--bg);
  border-radius: 16px;
}
.price-side h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--cream);
}
.price-side-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-side-list li {
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  color: #C8C8C8;
  line-height: 1.55;
}
.price-side-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.price-side-list strong { color: var(--cream); font-weight: 600; }
.price-side-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-2);
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .ai-chat-wrap { grid-template-columns: 1fr; }
}

/* Stack row */
.stack-row {
  padding: 32px 40px;
  background: var(--gray);
  border-radius: 12px;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 32px;
  align-items: center;
}
.stack-label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--terracotta);
}
@media (max-width: 800px) {
  .stack-row { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
}

/* ============ TEAM (with photo) ============ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}
.team-photo { position: relative; }
.team-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,10,11,0.25);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.team-photo-wrap:hover img { transform: scale(1.04); }
.team-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}
.team-photo-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.team-photo-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  color: #fff;
  line-height: 1;
}
.team-photo-role {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.85);
}

.team-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-info .section-title { font-size: clamp(40px, 5.5vw, 88px); line-height: .95; }
.team-tagline {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  color: rgba(10,10,11,.7);
}
.team-tagline em { color: var(--terracotta); }
.team-text {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(10,10,11,.75);
}
.team-text strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  font-size: 22px;
}

.team-numbers {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(10,10,11,.15);
}
.team-num-val {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--bg);
}
.team-num-val span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: .55em;
  color: var(--terracotta);
  margin-left: 4px;
}
.team-num-label {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(10,10,11,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-photo-wrap { max-width: 480px; }
  .team-numbers { grid-template-columns: 1fr; gap: 20px; }
}

/* ============ CERTIFICATES (dark stage) ============ */
.certs-section {
  background: linear-gradient(180deg, var(--bg) 0%, #131316 100%);
  position: relative;
  overflow: hidden;
}
.certs-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 60%);
  pointer-events: none;
}
.certs-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #B8B8B8;
  max-width: 720px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.certs-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1500px;
}
.cert-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1e1e22 0%, #131316 100%);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .5s, border-color .5s;
  transform-style: preserve-3d;
  cursor: pointer;
}
.cert-card-1 { transform: rotate(-3deg) translateY(8px); }
.cert-card-2 { transform: rotate(0deg) translateY(0); z-index: 2; }
.cert-card-3 { transform: rotate(3deg) translateY(8px); }

.cert-card:hover {
  transform: rotate(0) translateY(-12px) scale(1.03);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px var(--terracotta);
  border-color: var(--terracotta);
  z-index: 5;
}
.cert-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #f0e9da;
  border-bottom: 1px solid var(--gray-2);
}
.cert-card-meta {
  padding: 24px;
  background: rgba(0,0,0,.35);
}
.cert-card-num {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--terracotta);
  letter-spacing: .15em;
  margin-bottom: 8px;
}
.cert-card-meta strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-bottom: 6px;
}
.cert-card-meta small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .certs-stage { grid-template-columns: 1fr; gap: 20px; }
  .cert-card-1, .cert-card-2, .cert-card-3 { transform: none; }
}

/* ============ PRICE CONSULTANT ============ */
.price-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #B8B8B8;
  max-width: 800px;
  margin-bottom: 50px;
}
.price-consultant-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.price-consultant {
  background: var(--bg);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.pc-header {
  padding: 18px 24px;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.pc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
}
.pc-name { font-size: 15px; font-weight: 600; color: var(--cream); }
.pc-status {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
}
.pc-body {
  padding: 28px 24px;
  min-height: 380px;
  max-height: 540px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pc-question {
  background: var(--gray-2);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 90%;
  align-self: flex-start;
  animation: chatPop .4s cubic-bezier(.16,1,.3,1);
}
.pc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: stretch;
  margin-top: 4px;
}
.pc-option {
  padding: 10px 16px;
  background: rgba(6,182,212,.08);
  border: 1px solid rgba(6,182,212,.3);
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--cream);
  cursor: pointer;
  transition: all .25s;
}
.pc-option:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.pc-answer {
  background: var(--blue);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 16px;
  border-bottom-right-radius: 4px;
  font-size: 14px;
  line-height: 1.45;
  max-width: 80%;
  align-self: flex-end;
  animation: chatPop .4s cubic-bezier(.16,1,.3,1);
}
.pc-result {
  background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(6,182,212,.15));
  border: 1px solid rgba(139,92,246,.3);
  padding: 24px;
  border-radius: 16px;
  align-self: stretch;
  animation: chatPop .5s cubic-bezier(.16,1,.3,1);
}
.pc-result h5 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 14px;
}
.pc-result-num {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--terracotta), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.pc-result-desc {
  font-size: 14px;
  color: #C8C8C8;
  line-height: 1.55;
  margin-bottom: 20px;
}
.pc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform .3s;
}
.pc-cta:hover { transform: translateY(-2px); }
.pc-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--gray-2);
  display: flex;
  justify-content: center;
}
.pc-btn-secondary {
  padding: 8px 18px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 100px;
  border: 1px solid var(--gray-2);
  cursor: pointer;
  transition: color .3s, border-color .3s;
}
.pc-btn-secondary:hover { color: var(--cream); border-color: var(--cream); }

.price-side {
  padding: 32px;
  background: var(--bg);
  border-radius: 16px;
}
.price-side h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--cream);
}
.price-side-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-side-list li {
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  color: #C8C8C8;
  line-height: 1.55;
}
.price-side-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.price-side-list strong { color: var(--cream); font-weight: 600; }
.price-side-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-2);
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .price-consultant-wrap { grid-template-columns: 1fr; }
}

/* ============================================ */
/* ============ CINEMATIC LAYER v2 ============ */
/* ============================================ */

/* ===== FLOATING CTA (urgency bar) ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  width: min(680px, calc(100% - 32px));
  background: linear-gradient(135deg, rgba(20,20,24,.96), rgba(30,20,40,.96));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, .35);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 50px rgba(139, 92, 246, .25), 0 4px 16px rgba(0,0,0,.5);
  transition: transform .6s cubic-bezier(.2,.9,.3,1.2);
}
.floating-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}
.floating-cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fc-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.35;
}
.fc-text strong { color: var(--cream); font-weight: 600; }
.fc-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 210, 106, .7);
  animation: fcPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes fcPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 106, .7); }
  50% { box-shadow: 0 0 0 8px rgba(0, 210, 106, 0); }
}
.fc-msg { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.fc-sep { opacity: .3; }
.fc-slots {
  color: var(--terracotta);
  font-size: 16px;
  font-weight: 700;
}
.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  white-space: nowrap;
  transition: transform .25s, box-shadow .25s;
}
.fc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, .45);
}
.fc-btn .arrow { transition: transform .3s; }
.fc-btn:hover .arrow { transform: translateX(3px); }
.fc-close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(244,239,230,.5);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.fc-close:hover { background: rgba(244,239,230,.08); color: var(--cream); }
@media (max-width: 600px) {
  .floating-cta { padding: 12px 14px; bottom: 16px; }
  .fc-text { font-size: 12px; }
  .fc-btn { padding: 8px 12px; font-size: 13px; }
  .fc-msg { flex-direction: column; align-items: flex-start; gap: 2px; }
  .fc-sep { display: none; }
}

/* ===== HERO CINEMATIC (robot + pipes) ===== */
.hero { position: relative; overflow: visible; }
.hero-grid { position: relative; z-index: 2; }

/* ===== SNAKE PIPES — flow from robot down behind text to Pain heading ===== */
.snake-pipes {
  position: absolute;
  top: 540px;          /* approximately where robot's body ends */
  left: -60px;         /* aligned with robot left edge */
  width: 460px;
  height: 1100px;      /* extends past hero into proof + pain heading area */
  pointer-events: none;
  z-index: 1;          /* above hero bg, below hero-grid (z-index: 2) */
  opacity: 0;
  animation: snakeFadeIn 1.6s 1s cubic-bezier(.2,.9,.3,1) forwards;
}
@keyframes snakeFadeIn {
  to { opacity: .55; }
}
.snake-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.snake-pipe {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 7;
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, .35));
  animation: snakeFlow 8s linear infinite;
}
.snake-pipe-2 {
  stroke: var(--blue);
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, .4));
  animation-delay: -2.5s;
  animation-duration: 9s;
}
.snake-pipe-3 {
  stroke: var(--terracotta);
  opacity: .7;
  animation-delay: -5s;
  animation-duration: 10s;
}
@keyframes snakeFlow {
  to { stroke-dashoffset: -240; }
}
@media (max-width: 1200px) {
  .snake-pipes { width: 360px; left: -90px; }
}
@media (max-width: 900px) {
  .snake-pipes { display: none; }
}

/* Robot outlet dots (where pipes connect to body) */
.rb-outlet {
  fill: var(--terracotta);
  animation: outletPulse 2s ease-in-out infinite;
  transform-origin: center;
}
.rb-outlet:nth-of-type(2) { animation-delay: .25s; }
.rb-outlet:nth-of-type(3) { animation-delay: .5s; }
@keyframes outletPulse {
  0%, 100% { opacity: .4; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Make marquee + proof transparent so snake pipes show through */
.marquee { background: transparent !important; }
.proof { background: transparent !important; }
.hero-cinema {
  position: absolute;
  top: 70px;
  left: -60px;
  width: 420px;
  height: 540px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: cinemaFadeIn 1.4s .3s cubic-bezier(.2,.9,.3,1) forwards;
}
@keyframes cinemaFadeIn {
  0% { opacity: 0; transform: translateY(-30px) scale(.88); }
  100% { opacity: .55; transform: translateY(0) scale(1); }
}
.hero-robot {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 60px rgba(139, 92, 246, .55)) drop-shadow(0 0 20px rgba(6, 182, 212, .3));
}
.rb-head, .rb-body, .rb-neck { stroke-width: 2.5; }
.rb-pipe { stroke-width: 2.5; }
@media (max-width: 1200px) {
  .hero-cinema { width: 320px; height: 420px; left: -80px; opacity: .4; }
}
@media (max-width: 900px) {
  .hero-cinema { display: none; }
}
.rb-head, .rb-body, .rb-neck {
  fill: rgba(139, 92, 246, .12);
  stroke: var(--terracotta);
  stroke-width: 2;
}
.rb-eye {
  fill: var(--terracotta);
  animation: robotBlink 4s infinite;
  transform-origin: center;
}
.rb-eye-r { animation-delay: .04s; }
@keyframes robotBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  94%, 96% { transform: scaleY(.1); }
}
.rb-mouth {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 2;
  stroke-linecap: round;
}
.rb-antenna { stroke: var(--terracotta); stroke-width: 2; }
.rb-antenna-ball {
  fill: var(--terracotta);
  animation: antennaPulse 1.6s ease-in-out infinite;
  transform-origin: 100px 16px;
}
@keyframes antennaPulse {
  0%, 100% { transform: scale(1); fill: var(--terracotta); }
  50% { transform: scale(1.4); fill: var(--blue); }
}
.rb-halo {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1;
  opacity: .25;
  animation: haloRotate 12s linear infinite;
  transform-origin: 100px 100px;
  stroke-dasharray: 4 6;
}
@keyframes haloRotate {
  to { transform: rotate(360deg); }
}
.rb-chest {
  fill: var(--blue);
  animation: chestPulse 1.8s ease-in-out infinite;
  transform-origin: 100px 174px;
}
@keyframes chestPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}
.rb-pipe {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 2;
  stroke-dasharray: 4 4;
  animation: pipeFlow 2s linear infinite;
}
.rb-pipe-2 { stroke: var(--blue); animation-delay: .3s; }
.rb-pipe-3 { animation-delay: .6s; }
@keyframes pipeFlow {
  to { stroke-dashoffset: -16; }
}

/* ===== HERO new layout & typography ===== */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(0, 210, 106, .08);
  border: 1px solid rgba(0, 210, 106, .25);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green);
  font-family: var(--mono);
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 210, 106, .8);
  animation: fcPulse 2s ease-in-out infinite;
}
.hero-title-new {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 600;
  color: var(--cream);
}
.hero-title-new .hl-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
}
.hero-title-new .hl-line.hl-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s cubic-bezier(.2,.9,.3,1), transform .9s cubic-bezier(.2,.9,.3,1);
}
.hero-title-new .hl-line:nth-child(2).hl-in { transition-delay: .15s; }
.hero-title-new .hl-line:nth-child(3).hl-in { transition-delay: .3s; }
.hero-title-new em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.hero-title-new .blue-em { color: var(--blue); }
.hero-sub-new {
  margin-top: 28px;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244,239,230,.78);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s .9s cubic-bezier(.2,.9,.3,1) forwards;
}
.hero-sub-new strong {
  color: var(--cream);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(139, 92, 246, .25) 60%);
  padding: 0 2px;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp .8s 1.1s cubic-bezier(.2,.9,.3,1) forwards;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp .8s 1.3s cubic-bezier(.2,.9,.3,1) forwards;
}
.btn-pulse {
  position: relative;
  overflow: hidden;
}
.btn-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%);
  animation: btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 70% { transform: translateX(-100%); }
  85%, 100% { transform: translateX(100%); }
}
.hero-trust {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(244,239,230,.55);
  font-family: var(--mono);
  opacity: 0;
  animation: heroFadeUp .8s 1.5s cubic-bezier(.2,.9,.3,1) forwards;
}
.hero-trust span { white-space: nowrap; }

/* ===== AGITATION section ===== */
.agitation {
  position: relative;
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, #18121d 50%, var(--bg) 100%);
  overflow: hidden;
}
.agitation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(220, 60, 60, .08), transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, .06), transparent 50%);
  pointer-events: none;
}
.agitation .container { position: relative; }
.agi-head {
  text-align: center;
  margin-bottom: 80px;
}
.agi-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(220, 60, 60, .12);
  border: 1px solid rgba(220, 60, 60, .35);
  border-radius: 100px;
  color: #ff8080;
  font-family: var(--mono);
}
.agi-head .section-title em { color: #ff8080; }
.agi-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.agi-item {
  position: relative;
  padding: 28px 22px;
  background: rgba(20,20,24,.6);
  border: 1px solid rgba(244,239,230,.06);
  border-radius: 16px;
  transition: border-color .4s, transform .4s, box-shadow .4s;
}
.agi-item:hover {
  border-color: rgba(139, 92, 246, .35);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
}
.agi-item-bad {
  border-color: rgba(220, 60, 60, .35);
  background: linear-gradient(180deg, rgba(40,15,20,.7), rgba(20,20,24,.7));
}
.agi-month {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(244,239,230,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.agi-bar {
  height: 4px;
  background: rgba(244,239,230,.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
}
.agi-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--terracotta), #b884ff);
  border-radius: 4px;
  transition: width 1.4s cubic-bezier(.2,.9,.3,1);
}
.agi-item.in .agi-bar-fill { width: var(--w); }
.agi-bar-red {
  background: linear-gradient(90deg, #ff5050, #ff8080);
}
.agi-loss {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 700;
  color: #ff8080;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.agi-loss-big {
  font-size: 38px;
  background: linear-gradient(135deg, #ff5050, #ff9090);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.agi-item p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,239,230,.65);
}
.agi-cta {
  margin-top: 56px;
  text-align: center;
}
.agi-cta-text {
  display: inline-block;
  padding: 18px 28px;
  background: rgba(139, 92, 246, .08);
  border: 1px solid rgba(139, 92, 246, .25);
  border-radius: 12px;
  font-size: 15px;
  color: rgba(244,239,230,.85);
  line-height: 1.5;
}
.agi-cta-text strong { color: var(--cream); }
.agi-cta-text a {
  color: var(--terracotta);
  font-weight: 600;
  border-bottom: 1px dashed currentColor;
}
.agi-cta-text a:hover { color: #b884ff; }
@media (max-width: 900px) {
  .agi-timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .agi-timeline { grid-template-columns: 1fr; }
}

/* ===== PAIN money counters ===== */
.pain-money {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(244,239,230,.14);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.pain-money-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(244,239,230,.45);
}
.pain-money-num {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: #ff7070;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.pain-total {
  margin-top: 64px;
  text-align: center;
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(255,80,80,.06), rgba(139,92,246,.04));
  border: 1px solid rgba(255,80,80,.18);
  border-radius: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pain-total-label {
  font-size: 14px;
  color: rgba(244,239,230,.6);
  margin-bottom: 8px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pain-total-num {
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  background: linear-gradient(135deg, #ff5050, #ff9090);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.pain-total-sub {
  margin-top: 6px;
  font-size: 16px;
  color: rgba(244,239,230,.55);
  font-variant-numeric: tabular-nums;
}

/* ===== SOLUTION recovery (mirror of pain losses) ===== */
.solution-recovery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 40px auto 60px;
  flex-wrap: wrap;
  max-width: 900px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(0,210,106,.08), rgba(139,92,246,.06));
  border: 1px solid rgba(0,210,106,.22);
  border-radius: 20px;
}
.solution-recovery .sr-from,
.solution-recovery .sr-to {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.solution-recovery .sr-label {
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(20,20,24,.6);
  font-family: var(--mono);
}
.solution-recovery .sr-num {
  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.solution-recovery .sr-loss {
  color: #c44a4a;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(196,74,74,.5);
  opacity: .7;
}
.solution-recovery .sr-gain {
  color: #00a050;
  background: linear-gradient(135deg, #00a050, #00d26a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solution-recovery .sr-arrow {
  color: rgba(20,20,24,.4);
}
.section-cream .solution-recovery .sr-label { color: rgba(20,20,24,.55); }

/* ===== FLOW DIAGRAM (Demo) ===== */
.flow-diagram {
  margin: 30px auto 50px;
  max-width: 1100px;
  padding: 30px 24px;
  background: linear-gradient(135deg, rgba(20,20,24,.5), rgba(30,20,40,.4));
  border: 1px solid rgba(139,92,246,.15);
  border-radius: 20px;
  position: relative;
}
.flow-svg {
  width: 100%;
  height: auto;
  max-height: 220px;
}
.flow-pipe {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: .6;
}
.flow-diagram.flow-active .flow-pipe-1 { animation: pipeDraw 1.2s .1s ease-out forwards; }
.flow-diagram.flow-active .flow-pipe-2 { animation: pipeDraw 1.2s .25s ease-out forwards; }
.flow-diagram.flow-active .flow-pipe-3 { animation: pipeDraw 1.2s .4s ease-out forwards; }
.flow-diagram.flow-active .flow-pipe-4 { animation: pipeDraw 1.2s .8s ease-out forwards; }
.flow-diagram.flow-active .flow-pipe-5 { animation: pipeDraw 1.2s .9s ease-out forwards; }
.flow-diagram.flow-active .flow-pipe-6 { animation: pipeDraw 1.2s 1s ease-out forwards; }
@keyframes pipeDraw {
  to { stroke-dashoffset: 0; }
}
.flow-node-bg {
  fill: rgba(139, 92, 246, .12);
  stroke: var(--terracotta);
  stroke-width: 1.5;
}
.flow-node-icon {
  font-size: 18px;
}
.flow-node-label {
  font-family: var(--sans);
  font-size: 11px;
  fill: rgba(244,239,230,.7);
  letter-spacing: .02em;
}
.flow-brain-bg {
  fill: rgba(139, 92, 246, .25);
  stroke: var(--terracotta);
  stroke-width: 2.5;
}
.flow-brain-halo {
  fill: rgba(139, 92, 246, .08);
  animation: brainPulse 2.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes brainPulse {
  0%, 100% { opacity: .3; r: 55; }
  50% { opacity: .8; r: 65; }
}
.flow-brain-icon {
  font-size: 28px;
}
.flow-brain-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  fill: var(--cream);
}
.flow-particle {
  fill: var(--blue);
  filter: drop-shadow(0 0 6px var(--blue));
  opacity: 0;
}
.flow-diagram.flow-active .flow-particle:nth-child(7) {
  animation: particleFlow1 2.4s 1.4s linear infinite;
}
.flow-diagram.flow-active .flow-particle:nth-child(8) {
  animation: particleFlow2 2.4s 1.6s linear infinite;
}
.flow-diagram.flow-active .flow-particle:nth-child(9) {
  animation: particleFlow3 2.4s 1.8s linear infinite;
}
@keyframes particleFlow1 {
  0% { opacity: 0; transform: translate(70px, 60px); }
  10% { opacity: 1; }
  45% { opacity: 1; transform: translate(500px, 100px); }
  55% { opacity: 1; transform: translate(500px, 100px); }
  90% { opacity: 1; transform: translate(910px, 70px); }
  100% { opacity: 0; transform: translate(910px, 70px); }
}
@keyframes particleFlow2 {
  0% { opacity: 0; transform: translate(70px, 100px); }
  10% { opacity: 1; }
  45% { opacity: 1; transform: translate(500px, 100px); }
  55% { opacity: 1; transform: translate(500px, 100px); }
  90% { opacity: 1; transform: translate(910px, 100px); }
  100% { opacity: 0; transform: translate(910px, 100px); }
}
@keyframes particleFlow3 {
  0% { opacity: 0; transform: translate(70px, 140px); }
  10% { opacity: 1; }
  45% { opacity: 1; transform: translate(500px, 100px); }
  55% { opacity: 1; transform: translate(500px, 100px); }
  90% { opacity: 1; transform: translate(910px, 130px); }
  100% { opacity: 0; transform: translate(910px, 130px); }
}
.flow-caption {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(244,239,230,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  flex-wrap: wrap;
}
.flow-caption-arrow {
  color: var(--terracotta);
  font-weight: 700;
}
@media (max-width: 700px) {
  .flow-svg { max-height: 180px; }
  .flow-caption { font-size: 10px; gap: 8px; }
  .flow-node-label, .flow-brain-label { font-size: 9px; }
}

/* ===== GUARANTEE / RISK REVERSAL ===== */
.guarantee {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, #0d1612 100%);
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 210, 106, .07), transparent 60%);
  pointer-events: none;
}
.guarantee .container { position: relative; }
.guarantee-card {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
  padding: 50px 50px;
  background: linear-gradient(135deg, rgba(20,30,24,.7), rgba(20,20,24,.7));
  border: 1px solid rgba(0, 210, 106, .25);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 210, 106, .08);
}
.guarantee-stamp {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  animation: stampSpin 25s linear infinite;
  filter: drop-shadow(0 0 30px rgba(0,210,106,.25));
}
@keyframes stampSpin {
  to { transform: rotate(360deg); }
}
.guarantee-stamp-svg { width: 100%; height: 100%; }
.guarantee .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 210, 106, .12);
  border: 1px solid rgba(0, 210, 106, .35);
  border-radius: 100px;
  color: var(--green);
  font-family: var(--mono);
}
.guarantee-title {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.guarantee-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}
.guarantee-sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244,239,230,.75);
}
.guarantee-sub strong { color: var(--cream); }
.guarantee-points {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.gp {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(0, 210, 106, .04);
  border-left: 3px solid var(--green);
  border-radius: 8px;
}
.gp-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0, 210, 106, .18);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.gp strong {
  display: block;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 2px;
}
.gp small {
  display: block;
  color: rgba(244,239,230,.6);
  font-size: 13px;
  line-height: 1.45;
}
.guarantee-why {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(20,20,24,.5);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,239,230,.7);
  font-style: italic;
  font-family: var(--serif);
}
.guarantee-why strong {
  font-style: normal;
  font-family: var(--sans);
  color: var(--cream);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
@media (max-width: 800px) {
  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
  }
  .guarantee-stamp { margin: 0 auto; width: 140px; height: 140px; }
  .gp { text-align: left; }
}

/* ===== ROI PARTICLE EXPLOSION ===== */
.roi-final { position: relative; }
.roi-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}
.roi-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px currentColor;
  pointer-events: none;
  animation: particleBurst 1.4s cubic-bezier(.2,.9,.3,1) forwards;
}
.roi-particle.rp-purple { background: var(--terracotta); color: var(--terracotta); }
.roi-particle.rp-blue { background: var(--blue); color: var(--blue); }
.roi-particle.rp-gold { background: var(--gold); color: var(--gold); }
@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) scale(.3);
  }
}

/* ===== Reveal animation tweak ===== */
.reveal { transition: opacity .8s cubic-bezier(.2,.9,.3,1), transform .8s cubic-bezier(.2,.9,.3,1); }

/* ===== Lenis smooth scroll integration ===== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ===== "Live" pill highlighting — channel that's demonstrable on this very page ===== */
.int-pill-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(139, 92, 246, .18), rgba(6, 182, 212, .12)) !important;
  border: 1px solid rgba(139, 92, 246, .55) !important;
  color: var(--cream) !important;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.int-pill-live::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-100%);
  animation: livePillShine 3s ease-in-out infinite;
}
@keyframes livePillShine {
  0%, 70% { transform: translateX(-100%); }
  85%, 100% { transform: translateX(100%); }
}
.int-pill-live:hover {
  transform: translateY(-2px);
  border-color: var(--terracotta) !important;
  box-shadow: 0 8px 24px rgba(139, 92, 246, .35);
}
.int-pill-arrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  animation: pillArrowBounce 1.6s ease-in-out infinite;
}
@keyframes pillArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}

/* "Try it below" note under channel row */
.int-note {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(139, 92, 246, .07);
  border: 1px dashed rgba(139, 92, 246, .35);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244, 239, 230, .82);
}
.int-note-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}
.int-note strong {
  color: var(--cream);
  font-weight: 600;
}
.int-note a {
  color: var(--terracotta);
  font-weight: 600;
  border-bottom: 1px dashed currentColor;
  white-space: nowrap;
}
.int-note a:hover { color: #b884ff; }

/* ===== Mobile performance — drop GPU-heavy backdrop-filter blurs ===== */
@media (max-width: 900px) {
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10, 10, 11, 0.97); }
  .floating-cta { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(20, 20, 24, 0.98); }
  .lightbox { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(8, 8, 12, 0.97); }
  /* Pause heavy infinite animations that aren't critical to UX */
  .rb-halo, .flow-brain-halo { animation: none; }
}

/* ============================================ */
/* ===== HERO AI-link + Pain CTA-row + Solution CTA ===== */
/* ============================================ */
.hero-ai-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px dashed rgba(0, 210, 106, .35);
  border-radius: 100px;
  background: rgba(0, 210, 106, .04);
  font-size: 13px;
  color: rgba(244,239,230,.85);
  font-family: var(--mono);
  transition: background .25s, border-color .25s, transform .25s;
}
.hero-ai-link:hover {
  background: rgba(0, 210, 106, .1);
  border-color: rgba(0, 210, 106, .55);
  border-style: solid;
  transform: translateY(-2px);
}
.hero-ai-link-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 210, 106, .8);
  animation: fcPulse 2s ease-in-out infinite;
}
.hero-ai-link .arrow { transition: transform .3s; }
.hero-ai-link:hover .arrow { transform: translateX(4px); }

.pain-cta-row {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.solution-cta {
  margin-top: 56px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(139, 92, 246, .08), rgba(0, 210, 106, .06));
  border: 1px solid rgba(139, 92, 246, .25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.solution-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 280px;
}
.solution-cta-text strong {
  font-size: 18px;
  color: var(--bg);
  font-weight: 600;
}
.solution-cta-text span {
  font-size: 14px;
  color: rgba(20, 20, 24, .65);
  line-height: 1.5;
}
.section-cream .solution-cta { color: var(--bg); }

/* ============================================ */
/* ===== TEAM DIPLOMAS (mini thumbnails) ===== */
/* ============================================ */
.team-diplomas {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed rgba(20, 20, 24, .15);
}
.team-diplomas-label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(20, 20, 24, .6);
  margin-bottom: 14px;
}
.team-diplomas-label small {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: rgba(20, 20, 24, .45);
  font-style: italic;
}
.team-diplomas-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.team-diploma {
  position: relative;
  display: block;
  width: 110px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform .35s cubic-bezier(.2,.9,.3,1.2), border-color .25s, box-shadow .35s;
  cursor: pointer;
  background: rgba(20, 20, 24, .06);
}
.team-diploma img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.9,.3,1);
}
.team-diploma::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,20,24,.5), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}
.team-diploma:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--terracotta);
  box-shadow: 0 12px 28px rgba(139, 92, 246, .25);
}
.team-diploma:hover img { transform: scale(1.08); }
.team-diploma:hover::after { opacity: 1; }
.team-diploma-num {
  position: absolute;
  top: 6px; left: 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--cream);
  background: rgba(20, 20, 24, .65);
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 2;
}
.team-diploma-zoom {
  position: absolute;
  bottom: 6px; right: 8px;
  font-size: 14px;
  color: var(--cream);
  background: rgba(139, 92, 246, .75);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .25s, transform .25s;
  z-index: 2;
}
.team-diploma:hover .team-diploma-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ============================================ */
/* ===== LIGHTBOX MODAL ===== */
/* ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 12, .92);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}
.lightbox-stage {
  position: relative;
  z-index: 1;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(.94);
  opacity: 0;
  transition: opacity .4s .1s cubic-bezier(.2,.9,.3,1.2), transform .4s .1s cubic-bezier(.2,.9,.3,1.2);
}
.lightbox.is-open .lightbox-stage {
  opacity: 1;
  transform: scale(1);
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  background: var(--gray);
}
.lightbox-caption {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(244, 239, 230, .85);
  letter-spacing: .04em;
  text-align: center;
  padding: 0 16px;
}
.lightbox-counter {
  position: absolute;
  top: -34px;
  right: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(244, 239, 230, .55);
}
.lightbox-loader {
  position: absolute;
  top: 50%; left: 50%;
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  border: 3px solid rgba(244, 239, 230, .15);
  border-top-color: var(--terracotta);
  border-radius: 50%;
  animation: lbSpin 1s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.lightbox.is-loading .lightbox-loader { opacity: 1; }
@keyframes lbSpin { to { transform: rotate(360deg); } }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 239, 230, .08);
  border: 1px solid rgba(244, 239, 230, .15);
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  padding-bottom: 6px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(139, 92, 246, .25);
  border-color: var(--terracotta);
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-nav.is-hidden { display: none; }
@media (max-width: 700px) {
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; font-size: 24px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 28px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-counter { top: -26px; }
}

/* ============================================ */
/* ===== FLOW DIAGRAM brain halo size fix ===== */
/* ============================================ */
@keyframes brainPulse {
  0%, 100% { opacity: .3; r: 58; }
  50% { opacity: .8; r: 72; }
}
.flow-svg { max-height: 280px !important; }
@media (max-width: 700px) {
  .flow-svg { max-height: 220px !important; }
}

