/* ============================================================
   Compleye — Landing Page
   Bold modern SaaS · dark · violet→cyan accent
   ============================================================ */

:root {
  --bg: #07070b;
  --bg-1: #0a0a0f;
  --bg-2: #11111a;
  --bg-3: #161624;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #e9e9f1;
  --text-dim: #a3a3b8;
  --text-mute: #6b6b80;
  --violet: #a78bfa;
  --cyan: #22d3ee;
  --green: #4ade80;
  --grad: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  --grad-soft: linear-gradient(135deg, rgba(167, 139, 250, 0.22) 0%, rgba(124, 58, 237, 0.22) 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-glow: 0 30px 80px -20px rgba(167, 139, 250, 0.35);
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { padding: 0; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

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

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }
.btn--primary {
  background: var(--grad);
  color: #0a0a0f;
  font-weight: 600;
  box-shadow: 0 8px 30px -8px rgba(167, 139, 250, 0.5);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px -10px rgba(167, 139, 250, 0.7);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(7, 7, 11, 0.65);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-color: var(--line); background: rgba(7, 7, 11, 0.85); }
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo__mark { width: 28px; height: 28px; }
.logo__word { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav__links a { transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}
.hero__glow--a {
  width: 600px; height: 600px;
  background: #6d28d9;
  top: -200px; left: -150px;
}
.hero__glow--b {
  width: 500px; height: 500px;
  background: #0e7490;
  top: -100px; right: -100px;
}

.hero__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #c7c7d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title .serif {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.95em;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__meta {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 80px;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-mute); }
.dot--green { background: var(--green); box-shadow: 0 0 8px rgba(74, 222, 128, 0.6); }

/* === Mock dashboard === */
.mock {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, #14141f 0%, #0c0c14 100%);
  box-shadow: var(--shadow-glow), 0 60px 120px -30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  text-align: left;
}
.mock__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.mock__chrome span:nth-child(-n+3) {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.mock__chrome span:nth-child(1) { background: #ff5f57; }
.mock__chrome span:nth-child(2) { background: #febc2e; }
.mock__chrome span:nth-child(3) { background: #28c840; }
.mock__url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  flex: 1;
  max-width: 320px;
}
.mock__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 380px;
}
.mock__side {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}
.mock__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  padding: 0 8px;
}
.mock__logo {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--grad);
}
.mock__side ul { list-style: none; padding: 0; margin: 0; }
.mock__side li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-mute);
  margin-bottom: 2px;
}
.mock__side li span {
  width: 14px; height: 14px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
}
.mock__side li.active {
  background: rgba(167, 139, 250, 0.1);
  color: var(--text);
}
.mock__side li.active span { background: var(--grad); }

.mock__main { padding: 22px; }
.mock__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.mock__stat {
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock__stat-label { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.05em; }
.mock__stat-value {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.mock__stat-value small { font-size: 14px; color: var(--text-mute); margin-left: 2px; }
.mock__delta { font-size: 11px; color: var(--text-mute); }
.mock__delta.up { color: var(--green); }
.mock__delta.down { color: #f87171; }

.mock__bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}
.mock__bar i { display: block; height: 100%; background: var(--grad); border-radius: 99px; }

.mock__panel {
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}
.mock__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.mock__pill {
  padding: 3px 9px;
  border-radius: 99px;
  background: rgba(74, 222, 128, 0.12);
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
}
.mock__fw {
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
  padding: 6px 0;
}
.mock__fw b { color: var(--text); text-align: right; font-weight: 600; }

.mock__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
  font-size: 12px;
  animation: float 6s ease-in-out infinite;
}
.mock__float b { display: block; color: var(--text); font-size: 12px; font-weight: 600; }
.mock__float small { color: var(--text-mute); font-size: 11px; }
.mock__float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--grad-soft);
  border: 1px solid rgba(167, 139, 250, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet);
  font-size: 16px;
}
.mock__float-icon.ok { background: rgba(74, 222, 128, 0.12); border-color: rgba(74, 222, 128, 0.4); color: var(--green); }
.mock__float--a { top: 22%; left: -30px; animation-delay: 0s; }
.mock__float--b { bottom: 18%; right: -20px; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 760px) {
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { display: none; }
  .mock__row { grid-template-columns: 1fr; }
  .mock__float { display: none; }
}

/* ============ STRIP ============ */
.strip {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}
.strip__label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 28px;
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 18px;
}
.section-head p {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ============ FEATURES ============ */
.features { padding: 140px 0; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.card:hover::before { opacity: 0.6; }
.card > * { position: relative; }
.card__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--grad-soft);
  border: 1px solid rgba(167, 139, 250, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--violet);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.card p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ============ AI ============ */
.ai {
  padding: 140px 0;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
}
.ai__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .ai__inner { grid-template-columns: 1fr; gap: 60px; } }

.ai__copy h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 12px 0 20px;
}
.ai__copy > p {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0 0 28px;
}
.checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
}
.checks li span {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--grad-soft);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.checks li b { color: var(--text); font-weight: 600; }

.ai-card {
  padding: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #14141f 0%, #0c0c14 100%);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-glow), 0 40px 100px -20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.ai-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.ai-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.ai-card__model {
  margin-left: auto;
  padding: 3px 9px;
  border-radius: 99px;
  background: rgba(167, 139, 250, 0.12);
  color: var(--violet);
  border: 1px solid rgba(167, 139, 250, 0.25);
}
.ai-card__body { padding: 22px; display: flex; flex-direction: column; gap: 18px; }
.ai-line { font-size: 13px; }
.ai-line b { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); margin-bottom: 6px; }
.ai-line p { margin: 0; color: var(--text); }
.ai-line--bot p { display: flex; align-items: center; gap: 8px; }
.dots { display: inline-flex; gap: 3px; }
.dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--violet);
  display: block;
  animation: blink 1.4s infinite;
}
.dots i:nth-child(2) { animation-delay: 0.2s; }
.dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.2; } 30% { opacity: 1; } }

.ai-result {
  margin-top: 14px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-result > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
}
.ai-result em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
}
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  letter-spacing: 0.02em;
}
.tag--new { background: var(--grad-soft); color: var(--violet); border: 1px solid rgba(167, 139, 250, 0.3); }
.ai-cta {
  margin-top: 14px;
  padding: 11px;
  text-align: center;
  background: var(--grad);
  color: #0a0a0f;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* ============ HOW ============ */
.how { padding: 140px 0; border-top: 1px solid var(--line); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}
.step__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--violet);
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--grad-soft);
  border: 1px solid rgba(167, 139, 250, 0.25);
}
.step h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ============ FW LIST ============ */
.fwlist { padding: 120px 0; border-top: 1px solid var(--line); }
.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.pills span {
  padding: 10px 18px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  transition: all 0.2s;
}
.pills span:hover {
  border-color: var(--violet);
  color: var(--text);
  background: var(--grad-soft);
}

/* ============ QUOTE ============ */
.quote { padding: 120px 0; border-top: 1px solid var(--line); }
.quote blockquote {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.quote p {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 36px;
  color: var(--text);
}
.quote em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.quote footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  color: #0a0a0f;
  font-size: 14px;
}
.quote footer b { display: block; color: var(--text); font-weight: 600; }
.quote footer span { color: var(--text-mute); font-size: 13px; }

/* ============ PRICING ============ */
.pricing { padding: 140px 0; border-top: 1px solid var(--line); }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  display: flex;
  flex-direction: column;
}
.tier--featured {
  border-color: rgba(167, 139, 250, 0.4);
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.08) 0%, rgba(34, 211, 238, 0.04) 100%);
  box-shadow: 0 30px 80px -30px rgba(167, 139, 250, 0.4);
}
.tier__badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 99px;
  background: var(--grad);
  color: #0a0a0f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tier h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}
.tier__tag {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0 0 24px;
}
.tier__price {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.tier__price span { font-size: 24px; font-weight: 500; color: var(--text-mute); margin-right: 2px; vertical-align: super; }
.tier__price small { font-size: 14px; color: var(--text-mute); font-weight: 400; }
.tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier li {
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier li::before {
  content: "✓";
  color: var(--violet);
  font-weight: 700;
}
.tier .btn { margin-top: auto; }

/* ============ CTA ============ */
.cta {
  position: relative;
  padding: 140px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(167, 139, 250, 0.18) 0%, transparent 70%);
}
.cta__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta__inner h2 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 24px;
}
.cta__inner h2 .serif {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta__inner > p {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 0 36px;
}
.cta__form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 16px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}
.cta__form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 18px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
}
.cta__form input::placeholder { color: var(--text-mute); }
.cta__form button {
  border: none;
  background: var(--grad);
  color: #0a0a0f;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  transition: transform 0.2s;
}
.cta__form button:hover { transform: translateY(-1px); }
.cta__fine { font-size: 12px; color: var(--text-mute); margin: 0; }

/* ============ FOOTER ============ */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--line); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr; gap: 40px; } }
.footer__brand p {
  font-size: 14px;
  color: var(--text-mute);
  margin: 14px 0 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }
.footer__cols h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  font-weight: 600;
  margin: 0 0 14px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__cols a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-mute);
}
@media (max-width: 600px) { .footer__bottom { flex-direction: column; gap: 10px; text-align: center; } }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   SUBPAGE STYLES (about, customers, privacy, security, signin)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(167, 139, 250, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 10%, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 18px 0 18px;
  background: linear-gradient(180deg, #ffffff 0%, #c7c7d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-dim, #a3a3b8);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Prose body */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0 120px;
  font-size: 16px;
  color: #c9c9d6;
  line-height: 1.75;
}
.prose h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 56px 0 14px;
}
.prose h2 .serif { color: #a78bfa; }
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e9e9f1;
  margin: 32px 0 8px;
}
.prose p { margin: 0 0 16px; }
.prose ul { padding-left: 22px; margin: 0 0 18px; }
.prose ul li { margin: 6px 0; color: #a3a3b8; }
.prose ul li b { color: #e9e9f1; font-weight: 600; }
.prose a {
  color: #c4b5fd;
  border-bottom: 1px solid rgba(167, 139, 250, 0.4);
  transition: color 0.2s;
}
.prose a:hover { color: #ffffff; border-bottom-color: #ffffff; }
.prose hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 48px 0;
}
.prose .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #6b6b80;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Stat band */
.stat-band {
  padding: 40px 0;
  border-top: 1px solid var(--line, rgba(255,255,255,0.08));
  border-bottom: 1px solid var(--line, rgba(255,255,255,0.08));
  background: rgba(255,255,255,0.01);
}
.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 700px) {
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-band__item b {
  display: block;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-band__item span {
  display: block;
  font-size: 13px;
  color: #6b6b80;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Customer logos / case grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 60px 0 40px;
}
@media (max-width: 800px) { .case-grid { grid-template-columns: 1fr; } }
.case {
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  transition: all 0.3s ease;
}
.case:hover { border-color: rgba(167,139,250,0.3); transform: translateY(-2px); }
.case__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #a3a3b8;
}
.case__brand .dotmark {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}
.case h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
}
.case p {
  font-size: 14px;
  color: #a3a3b8;
  margin: 0 0 18px;
  line-height: 1.6;
}
.case__stats {
  display: flex;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.case__stat b {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.case__stat span {
  font-size: 11px;
  color: #6b6b80;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Security badge grid */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 40px 0 60px;
}
@media (max-width: 700px) { .badge-grid { grid-template-columns: repeat(2, 1fr); } }
.badge {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  text-align: center;
}
.badge__icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(167,139,250,0.18), rgba(34,211,238,0.18));
  border: 1px solid rgba(167,139,250,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #a78bfa;
  font-size: 22px;
}
.badge h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px;
}
.badge p {
  font-size: 12px;
  color: #6b6b80;
  margin: 0;
  line-height: 1.5;
}

/* Sign-in centered card */
.signin-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  isolation: isolate;
}
.signin-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(167,139,250,0.18) 0%, transparent 70%);
}
.signin-card {
  width: 100%;
  max-width: 440px;
  padding: 44px 40px;
  border-radius: 22px;
  background: linear-gradient(180deg, #14141f 0%, #0c0c14 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px -20px rgba(167, 139, 250, 0.35), 0 60px 120px -30px rgba(0, 0, 0, 0.6);
  text-align: center;
}
.signin-card .logo {
  justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
}
.signin-card h1 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 10px;
}
.signin-card p {
  font-size: 14px;
  color: #a3a3b8;
  margin: 0 0 28px;
  line-height: 1.6;
}
.signin-card .btn { width: 100%; }
.signin-card .alt {
  margin-top: 24px;
  font-size: 13px;
  color: #6b6b80;
}
.signin-card .alt a {
  color: #c4b5fd;
  font-weight: 500;
}

.footer__row{display:flex;flex-wrap:wrap;gap:28px;align-items:center;justify-content:flex-end;}
.footer__row a{color:var(--muted,#9ca3af);text-decoration:none;font-size:14px;font-weight:500;transition:color .15s;}
.footer__row a:hover{color:#fff;}
@media (max-width:720px){.footer__row{justify-content:flex-start;gap:20px;}}

/* ==================== FAQ ==================== */
.faq { padding: 100px 0 60px; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 22px 0;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--violet);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .25s ease;
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__item summary h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}
.faq__item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 22px;
  padding-right: 38px;
}
@media (max-width: 680px) {
  .faq__item summary h3 { font-size: 16px; }
  .faq__item p { padding-right: 0; }
}
