/* arastir.io — tanıtım sitesi. Next.js uygulamasındaki landing.module.css'ten birebir taşındı. */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@600;700;800&family=Hanken+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap");

:root {
  --paper: #f4f3ee;
  --paper-2: #efeee7;
  --ink: #0a0e17;
  --ink-soft: #4b515f;
  --ink-faint: #8a8f9b;
  --line: #ddd9cf;
  --brand: #1e44d6;
  --brand-deep: #14246b;
  --signal: #1fb6dd;
  --hot: #ef8b1c;
  --won: #1f9d57;
  --screen: #070b16;
  --screen-line: rgba(120, 200, 235, 0.16);

  --font-body: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
body {
  position: relative;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--brand); color: #fff; }

.display { font-family: var(--font-display); letter-spacing: -0.025em; line-height: 0.98; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; }
.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .wrap { padding: 0 2rem; } }

/* grid texture */
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,14,23,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,14,23,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}

/* ───────── Header ───────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(244,243,238,.8);
  backdrop-filter: blur(10px);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.brand { display: flex; align-items: center; gap: .5rem; min-width: 0; flex-shrink: 1; }
.brand-mark {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 2.5rem; height: 2.5rem; border-radius: .75rem;
  background: var(--ink); box-shadow: 0 10px 24px -12px var(--brand);
}
.brand-mark img { width: 1.5rem; height: 1.5rem; }
@media (min-width: 640px) {
  .brand { gap: .75rem; }
  .brand-mark { width: 3rem; height: 3rem; }
  .brand-mark img { width: 1.75rem; height: 1.75rem; }
}
.brand-name { font-size: 1.25rem; font-weight: 800; white-space: nowrap; }
.brand-name span { color: var(--brand); }
@media (min-width: 640px) { .brand-name { font-size: 1.875rem; } }
.main-nav { display: none; align-items: center; gap: 1.75rem; font-size: .875rem; font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
.main-nav a:hover { color: var(--ink); }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.header-actions { display: flex; align-items: center; gap: .375rem; flex-shrink: 0; }
@media (min-width: 640px) { .header-actions { gap: .5rem; } }
.link-ghost { display: none; border-radius: 999px; padding: .5rem 1rem; font-size: .875rem; font-weight: 600; color: var(--ink-soft); }
.link-ghost:hover { color: var(--ink); }
@media (min-width: 640px) { .link-ghost { display: inline-block; } }
.btn-dark {
  display: inline-flex; align-items: center; gap: .375rem; white-space: nowrap;
  border-radius: 999px; background: var(--ink); color: var(--paper);
  padding: .5rem .875rem; font-size: .75rem; font-weight: 600;
  transition: transform .2s;
}
.btn-dark:hover { transform: translateY(-2px); }
@media (min-width: 640px) { .btn-dark { padding: .625rem 1.25rem; font-size: .875rem; } }

/* mobile nav */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 999px; border: 1px solid var(--line);
  background: transparent; cursor: pointer; color: var(--ink);
}
.nav-toggle:hover { border-color: var(--ink); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.mobile-nav-panel {
  display: none; position: fixed; inset: 5rem 0 auto 0; z-index: 50;
  border-bottom: 1px solid var(--line); background: var(--paper);
  padding: 1rem 1.25rem 1.25rem; box-shadow: 0 24px 48px -24px rgba(10,14,23,.45);
}
.mobile-nav-panel.open { display: block; }
.mobile-nav-panel a {
  display: block; border-radius: .5rem; padding: .75rem; font-size: 1rem; font-weight: 500; color: var(--ink-soft);
}
.mobile-nav-panel a:hover { background: var(--paper-2); color: var(--ink); }
.mobile-nav-panel .btn-dark { justify-content: center; width: 100%; margin-top: .5rem; padding: .75rem; font-size: 1rem; }
.mobile-nav-scrim {
  display: none; position: fixed; inset: 5rem 0 0 0; z-index: 40;
  background: rgba(10,14,23,.2); backdrop-filter: blur(2px);
}
.mobile-nav-scrim.open { display: block; }
@media (min-width: 1024px) { .mobile-nav-panel, .mobile-nav-scrim { display: none !important; } }

/* ───────── Buttons ───────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px;
  background: var(--brand); color: #fff; padding: .875rem 1.75rem; font-size: 1rem; font-weight: 600;
  box-shadow: 0 18px 40px -18px var(--brand); transition: transform .2s;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink); padding: .875rem 1.75rem; font-size: 1rem; font-weight: 600;
  transition: border-color .2s;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-outline.on-dark { border-color: rgba(255,255,255,.2); color: #fff; }
.btn-outline.on-dark:hover { border-color: #fff; }

/* ───────── Hero ───────── */
.hero { position: relative; }
.hero .wrap {
  display: grid; gap: 2rem; align-items: center; padding: 2.5rem 1.25rem;
}
@media (min-width: 640px) { .hero .wrap { gap: 3rem; padding: 4rem 2rem; } }
@media (min-width: 1024px) { .hero .wrap { grid-template-columns: 1.05fr .95fr; padding: 6rem 2rem; } }

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.5);
  padding: .25rem .75rem; font-size: .6875rem; text-transform: uppercase; letter-spacing: .18em; color: var(--brand);
}
.eyebrow-pill svg { width: .875rem; height: .875rem; }

.hero h1 { margin: 1.5rem 0 0; font-size: 3rem; font-weight: 800; }
@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.25rem; } }
.hero h1 .signal { position: relative; white-space: nowrap; color: var(--brand); }
.hero h1 .signal svg { position: absolute; left: 0; bottom: -.5rem; width: 100%; height: 10px; }

.hero p.lede { margin-top: 1.75rem; max-width: 34rem; font-size: 1.125rem; line-height: 1.7; color: var(--ink-soft); }
.hero p.lede strong { color: var(--ink); }
.hero .cta-row { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.hero .tags {
  margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint);
}
.hero .tags span.sep { color: var(--line); }

/* ───────── Radar hero ───────── */
.hero-visual { position: relative; }
.hero-visual::before {
  content: ""; position: absolute; inset: -1.5rem; z-index: -1; border-radius: 1.5rem;
  background: radial-gradient(circle at 50% 30%, rgba(30,68,214,.12), transparent 70%);
}
.floaty { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.radar {
  position: relative; width: 100%; aspect-ratio: 1; border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, #0c1426 0%, var(--screen) 70%);
  border: 1px solid rgba(120,200,235,.22); overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(20,36,107,.55), inset 0 0 60px rgba(31,182,221,.06);
}
.radar-labels { position: absolute; inset: 0; z-index: 20; padding: 1rem; font-size: .625rem; text-transform: uppercase; letter-spacing: .18em; color: #6fb6d4; pointer-events: none; }
.radar-labels .tl { position: absolute; left: 1rem; top: 1rem; }
.radar-labels .tr { position: absolute; right: 1rem; top: 1rem; display: flex; align-items: center; gap: .375rem; }
.radar-labels .bl { position: absolute; left: 1rem; bottom: 1rem; opacity: .7; }
.dot-live { display: inline-block; width: .375rem; height: .375rem; border-radius: 999px; background: var(--won); animation: blink 1.05s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.radar-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid var(--screen-line); border-radius: 50%; }
.radar-cross { position: absolute; background: var(--screen-line); }
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(31,182,221,0) 0deg, rgba(31,182,221,0) 300deg, rgba(31,182,221,.05) 330deg, rgba(31,182,221,.5) 360deg);
  animation: spin 4.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.radar-scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(31,182,221,.55), transparent);
  animation: scan 4.6s ease-in-out infinite;
}
@keyframes scan { 0%,100% { top: 8%; opacity: 0; } 20% { opacity: .7; } 50% { top: 92%; opacity: .7; } 60% { opacity: 0; } }

.blip { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 12px 2px rgba(31,182,221,.7); transform: translate(-50%,-50%); opacity: 0; animation: blip 4.6s ease-out infinite; }
.blip.hot { background: var(--hot); box-shadow: 0 0 16px 3px rgba(239,139,28,.75); }
@keyframes blip { 0%,100% { opacity: 0; transform: translate(-50%,-50%) scale(.6); } 6% { opacity: 1; transform: translate(-50%,-50%) scale(1.25); } 40% { opacity: .5; } 70% { opacity: 0; } }

.lock-card {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: min(86%, 360px); background: rgba(8,14,26,.74); backdrop-filter: blur(10px);
  border: 1px solid rgba(120,200,235,.28); border-radius: 12px; padding: 14px 16px; color: #eaf3f8;
  opacity: 0; animation: lockIn 4.6s ease-out infinite;
}
@keyframes lockIn { 0%,55% { opacity: 0; transform: translateX(-50%) translateY(12px); } 62% { opacity: 1; transform: translateX(-50%) translateY(0); } 92% { opacity: 1; } 100% { opacity: 0; } }
.lock-card .row1 { display: flex; align-items: center; justify-content: space-between; margin-bottom: .375rem; font-size: .625rem; text-transform: uppercase; letter-spacing: .1em; color: #7ec7e0; }
.lock-card .row1 .hot { color: var(--hot); }
.lock-card .row2 { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.lock-card .co { font-size: .875rem; font-weight: 600; }
.lock-card .loc { font-size: .75rem; color: #9fb6c4; }
.lock-card .score { text-align: right; }
.lock-card .score .num { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; line-height: 1; color: var(--hot); }
.lock-card .score .lbl { font-size: .625rem; text-transform: uppercase; letter-spacing: .1em; color: #7ec7e0; }
.lock-card p { margin: .5rem 0 0; font-size: .6875rem; line-height: 1.5; color: #aebfca; }

/* ───────── Section shells ───────── */
section { position: relative; }
.section-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.section-pad { padding: 3.5rem 1.25rem; }
@media (min-width: 640px) { .section-pad { padding: 6rem 2rem; } }
.dark-band { position: relative; overflow: hidden; background: var(--ink); color: var(--paper); }

.eyebrow { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; color: var(--brand); margin: 0; }
h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.875rem; margin: .75rem 0 0; max-width: 42rem; }
@media (min-width: 640px) { h2 { font-size: 2.25rem; } }
.section-lede { margin-top: .75rem; max-width: 36rem; color: var(--ink-soft); }
.dark-band .section-lede { color: #aebfca; }

/* ───────── Cards / grids ───────── */
.grid-3 { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
.grid-2 { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2,1fr); } }
.grid-4 { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

.card {
  height: 100%; border-radius: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.55);
  padding: 1.5rem; transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(20,36,107,.4); border-color: var(--brand); }
.card-icon { display: flex; width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center; border-radius: .75rem; background: rgba(30,68,214,.1); color: var(--brand); }
.card-icon svg { width: 1.25rem; height: 1.25rem; }
.card h3 { font-family: var(--font-display); margin: 1.25rem 0 0; font-size: 1.125rem; font-weight: 700; }
.card p { margin: .5rem 0 0; font-size: .875rem; line-height: 1.6; color: var(--ink-soft); }

/* manifesto */
.manifesto-bad { height: 100%; border-radius: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.4); padding: 1.5rem; }
.manifesto-bad .label { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); }
.manifesto-bad .row { display: flex; align-items: center; gap: .75rem; margin-top: .5rem; border-radius: .5rem; border: 1px dashed var(--line); padding: .5rem .75rem; font-size: .875rem; color: var(--ink-faint); text-decoration: line-through; }
.manifesto-bad .row svg { width: .875rem; height: .875rem; flex-shrink: 0; }
.manifesto-bad > p { margin-top: 1.25rem; font-size: .875rem; color: var(--ink-soft); }

.manifesto-good { position: relative; overflow: hidden; height: 100%; border-radius: 1rem; border: 1px solid rgba(30,68,214,.3); background: var(--ink); padding: 1.5rem; color: var(--paper); }
.manifesto-good .head { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--signal); }
.manifesto-good .badge { border-radius: 999px; background: rgba(239,139,28,.2); padding: .125rem .5rem; color: var(--hot); }
.manifesto-good .co { margin-top: 1rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.manifesto-good .loc { font-size: .875rem; color: #9fb6c4; }
.manifesto-good p { margin-top: 1rem; font-size: .875rem; line-height: 1.6; color: #c4d2dc; }
.manifesto-good .why { color: var(--signal); }
.manifesto-good .chips { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem; font-size: .75rem; }
.manifesto-good .chips span { border-radius: 999px; border: 1px solid rgba(255,255,255,.15); padding: .25rem .625rem; color: #aebfca; }

/* how it works */
.step-card { position: relative; height: 100%; border-radius: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.55); padding: 1.5rem; }
.step-card .num { font-family: var(--font-display); color: var(--line); font-size: 3.5rem; font-weight: 800; line-height: 1; }
.step-card .icon { display: flex; margin-top: -1.75rem; width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center; border-radius: .75rem; background: var(--brand); color: #fff; }
.step-card .icon svg { width: 1.25rem; height: 1.25rem; }
.step-card h3 { font-family: var(--font-display); margin: 1.25rem 0 0; font-size: 1.25rem; font-weight: 700; }
.step-card p { margin: .5rem 0 0; font-size: .875rem; line-height: 1.6; color: var(--ink-soft); }

/* live feed */
.feed-stats { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 2rem .5rem; }
.feed-stat .num { font-family: var(--font-display), var(--font-mono); font-size: 1.875rem; font-weight: 800; color: var(--signal); }
.feed-stat .lbl { font-size: .75rem; color: #8aa0ac; }
.feed-panel { border-radius: 1rem; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.02); padding: 1rem; }
.feed-head { display: flex; align-items: center; justify-content: space-between; padding: 0 .5rem .75rem; font-family: var(--font-mono); font-size: .6875rem; text-transform: uppercase; letter-spacing: .1em; color: var(--signal); }
.feed-head .live { display: flex; align-items: center; gap: .375rem; }
.feed-viewport { height: 340px; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent); }
.feed-track { display: flex; flex-direction: column; gap: .625rem; animation: vfeed 18s linear infinite; }
@keyframes vfeed { to { transform: translateY(-50%); } }
.feed-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; border-radius: .75rem; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); padding: .75rem 1rem; }
.feed-row .co { font-size: .875rem; font-weight: 600; }
.feed-row .loc { font-size: .75rem; color: #8aa0ac; }
.feed-row .score { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.feed-row .score .n { font-family: var(--font-mono); font-size: 1.125rem; font-weight: 700; }
.feed-row .score .dot { width: .375rem; height: .375rem; border-radius: 999px; }

/* lead anatomy */
.badge-row { margin-top: 1.75rem; display: grid; grid-template-columns: repeat(3,1fr); gap: .625rem; }
.badge-row .b { border-radius: .75rem; border: 1px solid var(--line); background: rgba(255,255,255,.5); padding: .625rem; }
.badge-row .r { font-family: var(--font-mono); font-size: .75rem; white-space: nowrap; }
.badge-row .n { margin-top: .25rem; font-size: .875rem; font-weight: 600; }

.lead-card { border-radius: 1rem; border: 1px solid var(--line); background: #fff; padding: 1.5rem; box-shadow: 0 30px 60px -40px rgba(20,36,107,.4); }
.lead-card .top { display: flex; align-items: center; justify-content: space-between; }
.lead-card .co { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.lead-card .loc { font-size: .875rem; color: var(--ink-soft); }
.lead-card .score-badge { display: flex; width: 3.5rem; height: 3.5rem; align-items: center; justify-content: center; border-radius: .75rem; background: rgba(239,139,28,.12); }
.lead-card .score-badge span { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--hot); }
.criteria { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .875rem; }
.criteria .row { display: flex; align-items: center; justify-content: space-between; font-size: .875rem; }
.criteria .row .w { font-family: var(--font-mono); font-size: .75rem; color: var(--ink-faint); }
.score-track { margin-top: .375rem; height: 6px; overflow: hidden; border-radius: 999px; background: var(--paper-2); }
.score-fill { height: 100%; border-radius: 999px; background: var(--brand); width: 0; transition: width 1.1s cubic-bezier(.22,1,.36,1); }

/* lead detail */
.field-card { height: 100%; border-radius: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.55); padding: 1.25rem; }
.field-card .head { display: flex; align-items: center; gap: .5rem; color: var(--brand); }
.field-card .head svg { width: 1.25rem; height: 1.25rem; }
.field-card .head span { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); }
.field-card ul { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .625rem; font-size: .875rem; color: var(--ink-soft); }
.field-card li { display: flex; align-items: flex-start; gap: .5rem; }
.field-card li svg { flex-shrink: 0; width: .875rem; height: .875rem; margin-top: .1rem; color: var(--won); }

/* b2b rule */
.fit-yes, .fit-no { height: 100%; border-radius: 1rem; padding: 1.5rem; }
.fit-yes { border: 1px solid rgba(31,157,87,.3); background: rgba(31,157,87,.05); }
.fit-no { border: 1px solid var(--line); background: rgba(255,255,255,.4); }
.fit-head { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.fit-yes .fit-head { color: var(--won); }
.fit-no .fit-head { color: var(--ink-faint); }
.fit-chips { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.fit-yes .fit-chips span { border-radius: 999px; border: 1px solid rgba(31,157,87,.3); background: rgba(255,255,255,.6); padding: .375rem .75rem; font-size: .875rem; }
.fit-no .fit-chips span { border-radius: 999px; border: 1px solid var(--line); padding: .375rem .75rem; font-size: .875rem; color: var(--ink-faint); text-decoration: line-through; }
.exception-note { margin-top: 1.25rem; display: flex; gap: .75rem; border-radius: .75rem; border: 1px solid var(--line); background: rgba(255,255,255,.5); padding: 1rem 1.25rem; font-size: .875rem; color: var(--ink-soft); }
.exception-note svg { width: 1rem; height: 1rem; margin-top: .1rem; flex-shrink: 0; color: var(--brand); }
.exception-note strong { color: var(--ink); }

/* uygunluk (simplified) */
.fit-box {
  border-radius: 1.5rem; border: 1px solid var(--line); background: rgba(255,255,255,.6);
  box-shadow: 0 40px 80px -50px rgba(20,36,107,.45); padding: 2rem;
}
.fit-box .sectors { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .625rem; }
.fit-box .sectors span { border-radius: 999px; border: 1px solid var(--line); background: #fff; padding: .5rem 1rem; font-size: .875rem; font-weight: 500; cursor: default; transition: border-color .2s, color .2s; }
.fit-box .sectors span:hover { border-color: var(--brand); color: var(--brand); }
.fit-box .cta { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem; }

/* pipeline */
.pipeline-box { position: relative; margin-top: 2rem; border-radius: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.6); padding: 1.25rem; }
@media (min-width: 640px) { .pipeline-box { padding: 2rem; } }
.pipe-row { display: flex; align-items: center; gap: .5rem; overflow-x: auto; padding-bottom: .25rem; }
@media (min-width: 640px) { .pipe-row { justify-content: space-between; overflow: visible; } }
.pipe-step { flex-shrink: 0; display: flex; align-items: center; gap: .5rem; }
@media (min-width: 640px) { .pipe-step { flex: 1; } }
.pipe-step .pill { white-space: nowrap; border-radius: .5rem; border: 1px solid var(--line); background: var(--paper); padding: .625rem .75rem; text-align: center; font-size: .75rem; font-weight: 600; }
@media (min-width: 640px) { .pipe-step .pill { width: 100%; font-size: .875rem; } }
.pipe-step.won .pill { border-color: rgba(31,157,87,.4); background: rgba(31,157,87,.1); color: var(--won); }
.pipe-step .connector { display: none; height: 1px; width: 1rem; flex-shrink: 0; background: var(--line); }
@media (min-width: 640px) { .pipe-step .connector { display: block; } }

/* marquee */
.marquee-section { display: flex; flex-direction: column; gap: .75rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); padding: 1.75rem 0; }
.marquee-mask { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track.rev { animation: marquee 50s linear infinite reverse; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track span { margin: 0 1.5rem; white-space: nowrap; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: rgba(244,243,238,.35); }
.marquee-track.rev span { color: rgba(31,182,221,.4); }
.marquee-track span .sep { margin-left: 3rem; color: var(--signal); }
.marquee-track.rev span .sep { margin-left: 3rem; color: rgba(244,243,238,.25); }

/* bot examples */
.bot-chip-grid { margin-top: 1.75rem; display: grid; grid-template-columns: repeat(2,1fr); gap: .625rem; }
.bot-chip-grid div { display: flex; align-items: center; gap: .5rem; border-radius: .5rem; border: 1px solid var(--line); background: rgba(255,255,255,.55); padding: .5rem .75rem; font-size: .8125rem; font-weight: 500; }
.bot-chip-grid svg { width: .875rem; height: .875rem; color: var(--brand); }
.bot-examples { display: flex; flex-direction: column; gap: .75rem; }
.bot-example { border-radius: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.6); padding: 1.25rem; }
.bot-example .head { display: flex; align-items: center; gap: .5rem; }
.bot-example .head .ic { display: flex; width: 2rem; height: 2rem; align-items: center; justify-content: center; border-radius: .5rem; background: var(--brand); color: #fff; }
.bot-example .head .ic svg { width: 1rem; height: 1rem; }
.bot-example .head h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin: 0; }
.bot-example .meta-row { margin-top: .75rem; font-size: .875rem; }
.bot-example .meta-row p { margin: .25rem 0; }
.bot-example .meta-row .k { color: var(--ink-faint); }
.bot-example .loc { margin-top: .75rem; display: flex; align-items: center; gap: .375rem; font-family: var(--font-mono); font-size: .75rem; color: var(--brand); }
.bot-example .loc svg { width: .75rem; height: .75rem; }

/* FAQ */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; max-width: 48rem; }
.faq-item { border-radius: .75rem; border: 1px solid var(--line); background: rgba(255,255,255,.6); padding: 0 1.25rem; }
.faq-item[open] { background: #fff; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; font-size: 1rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--brand); transition: transform .3s ease; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p { margin: 0; padding-bottom: 1.25rem; font-size: .875rem; line-height: 1.6; color: var(--ink-soft); }

/* packages */
.plan-card { position: relative; display: flex; height: 100%; flex-direction: column; border-radius: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.6); padding: 1.5rem; }
.plan-card.featured { border-color: var(--brand); background: var(--ink); color: var(--paper); }
.plan-card .pop { position: absolute; right: 1rem; top: 1rem; border-radius: 999px; background: var(--brand); padding: .125rem .5rem; font-family: var(--font-mono); font-size: .625rem; text-transform: uppercase; letter-spacing: .05em; color: #fff; }
.plan-card .name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.plan-card .lead { margin-top: .75rem; font-family: var(--font-mono); font-size: .875rem; color: var(--brand); }
.plan-card.featured .lead { color: var(--signal); }
.plan-card .bot { margin-top: .25rem; font-size: .875rem; color: var(--ink-soft); }
.plan-card.featured .bot { color: #aebfca; }
.plan-card .note { margin-top: 1rem; font-size: .875rem; color: var(--ink-soft); }
.plan-card.featured .note { color: #c4d2dc; }
.plan-card .plan-cta { margin-top: 1.5rem; display: inline-flex; align-items: center; justify-content: center; gap: .375rem; border-radius: 999px; background: var(--ink); color: var(--paper); padding: .625rem 1rem; font-size: .875rem; font-weight: 600; }
.plan-card.featured .plan-cta { background: #fff; color: var(--ink); }
.addon-note { margin-top: 1.5rem; text-align: center; font-family: var(--font-mono); font-size: .75rem; color: var(--ink-faint); }

/* final CTA */
.final-cta { text-align: center; max-width: 56rem; margin: 0 auto; }
.final-cta .icon-box { margin: 0 auto; display: flex; width: 3.5rem; height: 3.5rem; align-items: center; justify-content: center; border-radius: 1rem; background: var(--brand); }
.final-cta .icon-box svg { width: 1.75rem; height: 1.75rem; }
.final-cta h2 { margin: 1.75rem auto 0; font-size: 2.25rem; font-weight: 800; }
@media (min-width: 640px) { .final-cta h2 { font-size: 3rem; } }
.final-cta p { margin: 1.25rem auto 0; max-width: 36rem; font-size: 1.125rem; color: #aebfca; }
.final-cta .cta-row { margin-top: 2.25rem; justify-content: center; }

/* footer */
footer { border-top: 1px solid var(--line); }
.footer-top { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 1.25rem; padding: 2.25rem 1.25rem; }
@media (min-width: 640px) { .footer-top { flex-direction: row; align-items: center; padding: 3rem 2rem; } }
.footer-top .wrap { max-width: 72rem; margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 1.25rem; width: 100%; padding: 0; }
@media (min-width: 640px) { .footer-top .wrap { flex-direction: row; align-items: center; } }
.footer-brand { display: flex; align-items: center; gap: .625rem; }
.footer-brand .mark { display: flex; width: 2.25rem; height: 2.25rem; align-items: center; justify-content: center; border-radius: .5rem; background: var(--ink); }
.footer-brand .mark img { width: 1.25rem; height: 1.25rem; }
.footer-brand .name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; }
.footer-brand .name span { color: var(--brand); }
.footer-desc { margin-top: .75rem; max-width: 20rem; font-size: .875rem; color: var(--ink-soft); }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem .5rem; font-size: .875rem; color: var(--ink-soft); }
.footer-links .item { display: flex; align-items: center; gap: .375rem; }
.footer-links svg { width: 1rem; height: 1rem; color: var(--ink-faint); }
.footer-links a { font-weight: 600; color: var(--ink); }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.25rem 0; text-align: center; font-family: var(--font-mono); font-size: .75rem; color: var(--ink-faint); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .radar-sweep, .blip, .lock-card, .radar-scanline, .marquee-track, .dot-live, .floaty { animation: none !important; }
  .blip, .lock-card { opacity: .9; }
  .reveal { opacity: 1; transform: none; }
}
