@font-face {
  font-family: "Qanelas";
  src: url("fonts/Qanelas-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas";
  src: url("fonts/Qanelas-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas";
  src: url("fonts/Qanelas-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas";
  src: url("fonts/Qanelas-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas";
  src: url("fonts/Qanelas-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas";
  src: url("fonts/Qanelas-Black.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}

:root {
  --blue-dark: #3161e9;
  --blue-light: #528dff;
  --gradient: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
  --black: #0b1017;
  --black-soft: #10161f;
  --black-card: #161d29;
  --white: #ffffff;
  --gray: #dcdedd;
  --ink: #0e1116;
  --muted: #6b7280;
  --green: #16a34a;
  --radius: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Qanelas", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(49, 97, 233, 0.55);
}
.btn-dark-blue {
  background: linear-gradient(90deg, #1f3fb0, #2f57d6);
}
.btn-login {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-login:hover { background: rgba(255,255,255,0.12); }
.btn-glow {
  position: relative;
  animation: btnPulse 2.6s ease-in-out infinite;
}
.btn-glow:hover {
  box-shadow:
    0 0 0 1px rgba(82,141,255,0.55),
    0 8px 24px -4px rgba(49,97,233,0.8),
    0 0 42px 8px rgba(82,141,255,0.6);
}
@keyframes btnPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(82,141,255,0.4),
      0 8px 20px -4px rgba(49,97,233,0.65),
      0 0 16px 2px rgba(82,141,255,0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(82,141,255,0.6),
      0 8px 26px -4px rgba(49,97,233,0.85),
      0 0 34px 10px rgba(82,141,255,0.65);
  }
}
.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-white-pulse { animation: whitePulse 2.4s ease-in-out infinite; }
@keyframes whitePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.55), 0 0 0 0 rgba(82,141,255,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0), 0 0 22px 4px rgba(82,141,255,0.55); }
}
.btn-outline-dark {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.09); }

/* Header */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
header.site-header.scrolled {
  background: rgba(11, 16, 23, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand img { height: 24px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  font-weight: 400;
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }
.nav-cta { display:flex; align-items:center; gap:14px; }
.burger {
  display: none;
  background: none; border: none; color: #fff;
  font-size: 24px; line-height: 1;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 18% 15%, rgba(49,97,233,0.28), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(82,141,255,0.18), transparent 45%),
    var(--black);
  padding: 128px 24px 84px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.hero-v-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  max-width: 130vw;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  filter: brightness(0) invert(1);
}
.hero-track {
  position: absolute;
  opacity: 0.1;
}
.track-1 {
  width: 300px;
  height: auto;
  top: -60px;
  left: 8%;
  animation: track1Float 14s ease-in-out infinite;
}
.track-2 {
  width: 560px;
  height: auto;
  bottom: -80px;
  right: -80px;
  animation: track2Float 18s ease-in-out infinite;
}
.track-3 {
  width: 240px;
  height: auto;
  bottom: -120px;
  left: 20%;
  opacity: 0.07;
  animation: track3Float 16s ease-in-out infinite;
}
@keyframes track1Float {
  0%, 100% { transform: rotate(-8deg) translate(0, 0); }
  50% { transform: rotate(-3deg) translate(12px, -18px); }
}
@keyframes track2Float {
  0%, 100% { transform: rotate(12deg) translate(0, 0); }
  50% { transform: rotate(17deg) translate(-16px, 14px); }
}
@keyframes track3Float {
  0%, 100% { transform: rotate(20deg) translate(0, 0); }
  50% { transform: rotate(25deg) translate(10px, 12px); }
}
.hero-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 32px;
  animation: heroTitleIn 0.8s cubic-bezier(.16,.84,.44,1) both;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light);
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
h1.hero-title {
  font-size: clamp(32px, 5.4vw, 54px);
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 26px;
  letter-spacing: -0.01em;
  animation: heroTitleIn 0.9s cubic-bezier(.16,.84,.44,1) 0.12s both;
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
h1.hero-title .accent {
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  max-width: 470px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.hero-stats .stat { text-align: left; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 16px; }
.hero-stats .stat strong { display: block; font-size: 20px; font-weight: 800; }
.hero-stats .stat span { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Feature intro (white) */
.section-white { background: #fff; padding: 90px 24px; }
.feature-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.feature-intro h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  margin: 6px 0 18px;
  letter-spacing: -0.01em;
}
.feature-intro h2 .accent { color: var(--blue-dark); font-weight: 500; }
.feature-intro p { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 480px; }
.device-frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.25);
  position: relative;
}
.device-frame img { width: 100%; }

.phone-frame {
  display: flex;
  justify-content: center;
  transition: transform .4s ease;
}
.phone-frame img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
}
.phone-frame:hover { transform: translateY(-8px); }
.phone-rise.reveal { transform: translateY(70px); }
.phone-rise.reveal.in-view { transform: translateY(0); }
.device-caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.25);
}
.device-caption .tag { color: var(--blue-dark); font-size: 12.5px; font-weight: 700; }
.device-caption p { margin: 4px 0 0; font-size: 15px; font-weight: 700; color: var(--ink); }

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #f6f7fb;
  border-radius: 18px;
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 20px 40px -20px rgba(15,23,42,0.25);
}
.card:hover .num { transform: scale(1.08) rotate(-4deg); }
.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  transition: transform .25s ease;
  margin-bottom: 20px;
}
.card:nth-child(2) .num { background: var(--ink); }
.card h3 { font-size: 18px; margin: 0 0 10px; font-weight: 700; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* Dark method section */
.section-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(49,97,233,0.32), transparent 42%),
    radial-gradient(circle at 90% 30%, rgba(82,141,255,0.22), transparent 45%),
    radial-gradient(circle at 15% 95%, rgba(49,97,233,0.2), transparent 40%),
    var(--black);
  color: #fff;
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.section-head h2 {
  font-size: 26px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.section-head h2 .mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.tag-pill {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #aab8dd;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 70px;
}
.step-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  transition: transform .3s ease, border-color .3s ease;
}
.step-card:not(.result):hover {
  transform: translateY(-4px);
  border-color: rgba(82,141,255,0.35);
}
.step-card .n { color: var(--blue-light); font-weight: 800; font-size: 14px; min-width: 20px; }
.step-card h4 { margin: 0 0 4px; font-size: 15px; font-weight: 500; }
.step-card p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.step-card.result {
  grid-column: 2 / 3;
  background: var(--gradient);
  align-items: center;
}
.step-card.result p { color: #fff; font-weight: 700; font-size: 15px; margin: 0; }

.diff-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.diff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(82,141,255,0.35);
  box-shadow: 0 24px 48px -24px rgba(49,97,233,0.5);
}
.diff-card .label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--blue-light); margin-bottom: 14px; }
.diff-card h3 { font-size: 19px; font-weight: 500; margin: 0 0 12px; }
.diff-card > p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.55; margin: 0 0 16px; }
.diff-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.diff-card li { font-size: 13.5px; color: rgba(255,255,255,0.75); display: flex; gap: 8px; }
.diff-card li::before { content: "✓"; color: var(--green); font-weight: 800; }
.diff-card li.accent {
  color: var(--green);
  font-weight: 700;
  width: fit-content;
  animation: accentGlow 2.2s ease-in-out infinite;
}
@keyframes accentGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* Bling section (light gradient) */
.section-bling {
  background: linear-gradient(160deg, #eafff2 0%, #f2f7ff 55%, #ffffff 100%);
  padding: 90px 24px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.pill-light {
  background: #eafff2;
  border: 1px solid #cdf3dd;
  color: #16a34a;
}
.pill-light .green-dot { background: #16a34a; animation: dotPulse 1.8s ease-in-out infinite; }
.two-col h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 500; line-height: 1.2; margin: 0 0 18px; letter-spacing: -0.01em; }
.two-col h2 .green { color: #16a34a; font-weight: 600; position: relative; }
.stagger-heading .rv {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
}
.reveal.in-view .stagger-heading .rv {
  animation: heroTitleIn .7s cubic-bezier(.16,.84,.44,1) both;
}
.stagger-heading .rv:nth-child(1) { animation-delay: .05s; }
.stagger-heading .rv:nth-child(2) { animation-delay: .16s; }
.stagger-heading .rv:nth-child(3) { animation-delay: .27s; }
.stagger-heading .rv:nth-child(4) { animation-delay: .38s; }
.two-col h2 .green::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 100%;
  background: #16a34a;
  transform: scaleX(0);
  transform-origin: left;
}
.reveal.in-view h2 .green::after {
  animation: underlineDraw .6s ease .55s both;
}
@keyframes underlineDraw {
  to { transform: scaleX(1); }
}
.two-col > div > p { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin-bottom: 30px; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 20px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px -22px rgba(15,23,42,0.3);
  border-color: #dde3f5;
}
.mini-card .ic {
  font-size: 18px;
  margin-bottom: 12px;
  display: inline-flex;
  transition: transform .3s ease;
}
.mini-card:hover .ic { transform: scale(1.15) rotate(-6deg); }
.mini-card h4 { margin: 0 0 6px; font-size: 14.5px; font-weight: 500; color: #16a34a; }
.mini-card:nth-child(3) h4, .mini-card:nth-child(4) h4 { color: var(--blue-dark); }
.mini-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45; }

.bling-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.2);
  transition: transform .35s ease, box-shadow .35s ease;
}
.bling-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -30px rgba(15,23,42,0.28);
}
.bling-panel-top { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid #eef0f4; margin-bottom: 18px; }
.bling-logo { width: 44px; height: 44px; border-radius: 12px; background: #16a34a; color: #fff; display:flex; align-items:center; justify-content:center; }
.bling-logo img { width: 26px; height: auto; }
.bling-panel-top strong { display:block; font-size: 14.5px; }
.bling-panel-top span { font-size: 12.5px; color: var(--muted); }
.pill-online { margin-left: auto; background: #ecfdf3; color: #16a34a; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.pill-online.pulse-online::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: dotPulse 1.6s ease-in-out infinite;
}
.stat-row { display: flex; gap: 14px; margin-bottom: 18px; }
.stat-box { flex:1; border: 1px solid #eef0f4; border-radius: 14px; padding: 14px 16px; }
.stat-box span { font-size: 12.5px; color: var(--muted); }
.stat-box strong { display: block; font-size: 22px; font-weight: 800; margin-top: 4px; }
.dividerline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 22px 0;
  height: 1px;
  background: linear-gradient(90deg, #16a34a, var(--blue-dark));
}
.dividerline span {
  position: relative;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.analysis-box { background: var(--black); border-radius: 16px; padding: 18px; color: #fff; }
.analysis-box .head { display:flex; align-items:center; justify-content: space-between; margin-bottom: 14px; }
.analysis-box .head small { color: rgba(255,255,255,0.5); font-size: 11px; display:block; }
.analysis-box .head strong { font-size: 15px; }
.analysis-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
}
.analysis-icon img { width: 15px; height: auto; }
.analysis-row {
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 13.5px;
  margin-bottom: 8px;
  transition: border-color .25s ease, background .25s ease;
}
.analysis-row:last-child { margin-bottom: 0; }
.analysis-row:hover { border-color: rgba(82,141,255,0.4); background: rgba(255,255,255,0.03); }
.analysis-row b { color: #fff; font-weight: 700; }
.analysis-row b.blue { color: var(--blue-light); }

/* Chat AI section (dark) */
.chat-section { background: var(--black); color: #fff; padding: 90px 24px; }
.chat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.chat-grid h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 500; line-height: 1.15; margin: 10px 0 18px; letter-spacing: -0.01em; }
.chat-grid > div:first-child > p { color: rgba(255,255,255,0.55); font-size: 15.5px; line-height: 1.6; margin-bottom: 24px; max-width: 460px; }
.qa-line {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 10px;
  transition: transform .25s ease, border-color .25s ease;
}
.qa-line:hover { transform: translateX(6px); border-color: rgba(82,141,255,0.35); }
.qa-line b { color: #fff; }
.qa-line span { color: rgba(255,255,255,0.6); }

.chat-mock {
  background: #fff;
  border-radius: 28px;
  padding: 22px;
  color: var(--ink);
  position: relative;
  z-index: 1;
  transition: transform .35s ease, box-shadow .35s ease;
}
.chat-mock::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(82,141,255,0.35), rgba(82,141,255,0) 70%);
  filter: blur(6px);
}
.chat-mock:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -30px rgba(0,0,0,0.35); }
.connected-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px auto 0;
  background: #fff;
  border: 1px solid #e9ebf1;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  width: fit-content;
}
.connected-pill .sq { width: 9px; height: 9px; border-radius: 3px; background: #7c8aa8; }
.chat-mock-top { display:flex; align-items:center; gap: 12px; margin-bottom: 18px; }
.chat-mock-top .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--gradient); display:flex; align-items:center; justify-content:center; }
.chat-mock-top .ic img { width: 16px; height: auto; }
.chat-mock-top strong { display:block; font-size: 14.5px; }
.chat-mock-top span { font-size: 12px; color: var(--muted); }
.chat-title { text-align: center; margin: 20px 0; }
.chat-title h3 { font-size: 20px; margin: 0 0 6px; font-weight: 500; }
.chat-title h3 .it { color: var(--blue-dark); font-style: italic; }
.chat-title p { font-size: 13px; color: var(--muted); margin: 0; }
.chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.chip {
  background: #fff;
  border: 1px solid #e9ebf1;
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.chip:hover { transform: translateY(-3px); border-color: var(--blue-light); background: #f5f8ff; }
.chat-input { display:flex; align-items:center; background:#fff; border:1px solid #e9ebf1; border-radius: 999px; padding: 6px 6px 6px 18px; margin-bottom: 14px; }
.chat-input span { flex:1; font-size: 13.5px; color: var(--muted); }
.chat-input .send {
  flex: none;
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 14px;
  animation: sendPulse 2.6s ease-in-out infinite;
}
@keyframes sendPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(82,141,255,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(82,141,255,0); }
}
.chat-reply {
  background: var(--gradient);
  color:#fff;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 13.5px;
  line-height: 1.5;
  transform-origin: top left;
  opacity: 0;
  transform: scale(.85) translateY(8px);
}
.reveal.in-view .chat-reply {
  animation: replyPop .5s cubic-bezier(.2,.9,.3,1.3) .5s both;
}
.chat-reply b { display:block; font-size: 10.5px; letter-spacing: 0.06em; opacity: 0.8; margin-bottom: 4px; }
@keyframes replyPop {
  from { opacity: 0; transform: scale(.85) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Founder */
.founder-section { background: var(--black); padding: 100px 24px; position: relative; overflow: hidden; }
.founder-v-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  max-width: 110vw;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  filter: brightness(0) invert(1);
  pointer-events: none;
  animation: vMarkDrift 10s ease-in-out infinite;
  transform-origin: center;
}
.founder-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}
.founder-card {
  position: relative;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.founder-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5); }
.founder-card-photo { position: absolute; inset: 0; }
.founder-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 22px 22px;
  color: #fff;
  background: linear-gradient(0deg, rgba(8,13,35,0.95) 25%, rgba(8,13,35,0.55) 65%, transparent 100%);
}
.founder-card-body .role { font-size: 12px; color: var(--blue-light); font-weight: 700; letter-spacing: 0.04em; }
.founder-card-body h3 { font-size: 24px; margin: 6px 0 0; font-weight: 500; }
.founder-card-body .ceo { display: block; font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; margin-bottom: 16px; }
@keyframes vMarkDrift {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -52%) rotate(2.5deg) scale(1.03); }
}
@keyframes pricingVDrift {
  0%, 100% { transform: translateY(-50%) rotate(0deg) scale(1); }
  50% { transform: translateY(-51%) rotate(1.5deg) scale(1.02); }
}
.stagger-kids > * {
  opacity: 0;
  transform: translateY(20px);
}
.reveal.in-view .stagger-kids > *,
.reveal.in-view.stagger-kids > * {
  animation: heroTitleIn .7s cubic-bezier(.16,.84,.44,1) both;
}
.stagger-kids > *:nth-child(1) { animation-delay: .05s; }
.stagger-kids > *:nth-child(2) { animation-delay: .14s; }
.stagger-kids > *:nth-child(3) { animation-delay: .23s; }
.stagger-kids > *:nth-child(4) { animation-delay: .32s; }
.btn-arrow { display: inline-flex; align-items: center; gap: 6px; }
.btn-arrow .arrow { transition: transform .25s ease; display: inline-block; }
.btn-arrow:hover .arrow { transform: translateX(5px); }
.founder-card-body .btn-sm { padding: 9px 18px; font-size: 13px; }
.founder-text { color: #fff; }
.founder-text .label { color: var(--blue-light); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 14px; }
.founder-text h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 500; margin: 0 0 20px; line-height: 1.25; }
.founder-text p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.65; margin: 0 0 16px; max-width: 520px; }

/* Comparison */
.compare-table { border-radius: 18px; overflow: hidden; border: 1px solid #eef0f4; box-shadow: 0 20px 45px -30px rgba(15,23,42,0.25); }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; }
.compare-row.head { background: var(--black); color: #fff; font-weight: 700; font-size: 14px; }
.compare-row:not(.head) {
  border-top: 1px solid #eef0f4;
  font-size: 14.5px;
  transition: background .25s ease;
}
.compare-row:not(.head):hover { background: #f8f9ff; }
.compare-row > div { padding: 16px 24px; }
.compare-row:not(.head) .col-1 { font-weight: 700; }
.compare-row:not(.head) .col-2 { color: var(--muted); }
.compare-row:not(.head) .col-3 {
  color: var(--blue-dark);
  font-weight: 700;
  position: relative;
  opacity: 0;
  transform: translateX(-10px);
}
.reveal.in-view .compare-row:not(.head) .col-3 {
  animation: col3In .6s cubic-bezier(.16,.84,.44,1) both, col3Pulse 2.6s ease-in-out 1s infinite;
}
.compare-row:nth-child(2):not(.head) .col-3 { animation-delay: .3s, .3s; }
.compare-row:nth-child(3):not(.head) .col-3 { animation-delay: .42s, .42s; }
.compare-row:nth-child(4):not(.head) .col-3 { animation-delay: .54s, .54s; }
.compare-row:nth-child(5):not(.head) .col-3 { animation-delay: .66s, .66s; }
@keyframes col3In {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes col3Pulse {
  0%, 100% { color: var(--blue-dark); }
  50% { color: var(--blue-light); }
}

/* Pricing */
.pricing-section { background: var(--black); color: #fff; padding: 90px 24px; text-align: center; position: relative; overflow: hidden; }
.pricing-v-mark {
  position: absolute;
  top: 50%;
  left: -5%;
  height: 145%;
  width: auto;
  max-width: none;
  opacity: 0.05;
  filter: brightness(0) invert(1);
  pointer-events: none;
  animation: pricingVDrift 11s ease-in-out infinite;
  transform-origin: center;
}
.pricing-section h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 500; margin: 0 0 50px; position: relative; z-index: 2; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; position: relative; z-index: 2; }
.price-card { background: var(--black-card); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 30px; position: relative; z-index: 0; }
.price-card.popular {
  border: none;
  padding: 2px;
  background: transparent;
  box-shadow: 0 20px 50px -20px rgba(82,141,255,0.4);
  overflow: hidden;
  border-radius: 20px;
  isolation: isolate;
  clip-path: inset(0 round 20px);
}
.price-card.popular .border-glow {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  border-radius: 40%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 82%, var(--blue-light) 92%, #fff 96%, var(--blue-light) 100%);
  animation: borderSpin 4s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes borderSpin { to { transform: rotate(360deg); } }
.price-card.popular .price-card-inner {
  position: relative;
  z-index: 1;
  background: var(--black-card);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
}
.price-card .badge { display:inline-block; background: rgba(255,255,255,0.08); font-size: 11.5px; font-weight: 700; padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; }
.price-card h3 { font-size: 20px; margin: 0 0 6px; }
.price-card > p.desc { font-size: 13.5px; color: rgba(255,255,255,0.5); margin: 0 0 18px; }
.price-card .price { font-size: 34px; font-weight: 800; margin-bottom: 18px; }
.price-card .price span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5); }
.price-card ul { list-style:none; margin: 0 0 24px; padding: 0; display:flex; flex-direction:column; gap: 9px; }
.price-card li { font-size: 13.5px; color: rgba(255,255,255,0.7); display:flex; gap: 8px; }
.price-card li::before { content:"✓"; color: var(--blue-light); font-weight: 800; }
.price-card .btn { width: 100%; }
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 2.8s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0% { left: -75%; }
  60% { left: 125%; }
  100% { left: 125%; }
}

/* FAQ */
.faq-section { background: #fff; padding: 90px 24px; }
.faq-section h2 { text-align: center; font-size: clamp(26px, 4vw, 36px); font-weight: 500; margin-bottom: 44px; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #f6f7fb;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.faq-item:hover { border-color: rgba(49,97,233,0.25); background: #f0f3ff; }
.faq-item.open { background: #f0f3ff; border-color: rgba(49,97,233,0.35); }
.faq-q {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-size: 15.5px; font-weight: 700;
  color: var(--ink); text-align: left;
  cursor: pointer;
}
.faq-q .plus { font-size: 20px; font-weight: 400; transition: transform .3s ease; color: var(--blue-dark); }
.faq-item.open .faq-q .plus { transform: rotate(45deg) scale(1.15); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { margin: 0; padding: 0 24px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* Marquee */
.marquee-wrap { overflow: hidden; background: var(--black); }
.marquee-ribbon { position: relative; overflow: hidden; padding: 0; margin: -1px 0; background: var(--black); }
.marquee-ribbon .marquee-wrap.skew {
  transform: skewY(-0.6deg);
  position: relative;
  z-index: 2;
  width: 106%;
  left: -3%;
}
.marquee-ribbon .marquee-wrap.skew + .marquee-wrap.skew { margin-top: -18px; z-index: 1; }
.marquee { display: flex; width: max-content; white-space: nowrap; padding: 20px 0; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; animation: scroll 30s linear infinite; will-change: transform; }
.marquee.dark { background: var(--black); color: #fff; }
.marquee.dark.blue { background: linear-gradient(90deg, #141c46, #2440c9, #141c46); }
.marquee.light { background: #fff; color: var(--ink); border-top: 1px solid #eef0f4; border-bottom: 1px solid #eef0f4; }
.marquee span { padding: 0 20px; display:flex; align-items:center; gap: 8px; flex-shrink: 0; white-space: nowrap; }
.marquee-track { display: flex; flex-shrink: 0; white-space: nowrap; }
.green-text { color: #22c55e; font-weight: 800; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Final CTA */
.final-cta { background: var(--black); padding: 60px 24px 100px; }
.cta-box {
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(120deg, #0d1424 0%, #17224a 55%, #1c2c5c 130%);
  border-radius: 28px;
  padding: 64px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box .label,
.cta-box h2,
.cta-box p,
.cta-box .cta-actions { position: relative; z-index: 2; }
.cta-box .label { color: var(--blue-light); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 16px; }
.cta-box h2 { font-size: clamp(28px, 4.5vw, 44px); font-weight: 500; line-height: 1.15; margin: 0 0 20px; max-width: 620px; letter-spacing: -0.01em; }
.cta-box p { color: rgba(255,255,255,0.65); font-size: 15.5px; line-height: 1.6; max-width: 520px; margin: 0 0 30px; }
.cta-graphic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  pointer-events: none;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer */
footer.site-footer { background: #05070b; color: rgba(255,255,255,0.55); padding: 26px 24px; font-size: 13.5px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display:flex; justify-content: space-between; align-items:center; flex-wrap: wrap; gap: 12px; }
.footer-links { display:flex; gap: 22px; }
.footer-links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .feature-intro, .two-col, .chat-grid, .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { min-height: 340px; }
  .founder-text { padding: 32px 28px; }
  .card-row, .diff-cards, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card.result { grid-column: auto; }
  .compare-row { grid-template-columns: 1.2fr 1fr 1fr; font-size: 13px; }
  .compare-row > div { padding: 12px 14px; }
  .hero { padding: 112px 20px 64px; }
  .section-white, .section-dark, .section-bling, .chat-section, .pricing-section, .faq-section { padding: 60px 20px; }
}

@media (max-width: 620px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .hero-v-mark { width: auto; height: 145%; max-width: none; opacity: 0.05; }
  .founder-v-mark { width: auto; height: 130%; max-width: none; }
  .founder-section { padding: 32px 20px; }
  .cta-graphic {
    inset: auto;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 78%;
    object-fit: contain;
    object-position: top right;
    opacity: 0.85;
  }
  .track-1 { width: 160px; top: -30px; left: -10%; }
  .track-2 { width: 260px; bottom: -40px; right: -60px; }
  .track-3 { width: 130px; bottom: -70px; left: 10%; }
  .hero-stats { gap: 20px; justify-content: space-between; }
  .hero-stats .stat { padding-left: 12px; }
  .hero-stats .stat strong { font-size: 17px; }
  .hero-stats .stat span { font-size: 11.5px; }
}
