/* ============================================================
   Modern Startup — style.css
   Palette: Zinc #09090B · Violet #7C3AED · Lime #A3E635
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input  { font-family: inherit; }

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --bg:             #09090B;
  --bg-2:           #0F0F12;
  --surface:        #18181B;
  --surface-2:      #27272A;
  --surface-3:      #3F3F46;
  --border:         rgba(255, 255, 255, 0.08);
  --border-strong:  rgba(255, 255, 255, 0.15);

  --text:           #FAFAFA;
  --text-muted:     #A1A1AA;
  --text-dim:       #71717A;

  --violet:         #7C3AED;
  --violet-light:   #A78BFA;
  --violet-glow:    rgba(124, 58, 237, 0.25);

  --lime:           #A3E635;
  --lime-dark:      #65A30D;
  --lime-glow:      rgba(163, 230, 53, 0.2);

  --red:            #F43F5E;
  --yellow:         #EAB308;
  --green:          #22C55E;
  --cyan:           #06B6D4;

  --white:          #FFFFFF;
  --black:          #000000;

  --radius-sm:      8px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    9999px;

  --shadow:         0 4px 24px rgba(0,0,0,.45);
  --shadow-glow:    0 0 40px rgba(124,58,237,.3);

  --transition:     0.25s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.5s cubic-bezier(.4,0,.2,1);

  --nav-h:          72px;
  --container:      1200px;
}

/* ── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .9rem;
  line-height: 1;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--violet-glow);
}
.btn--primary:hover {
  background: #6D28D9;
  box-shadow: 0 0 20px 4px var(--violet-glow);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  color: var(--text-muted);
  background: transparent;
}
.btn--ghost:hover { color: var(--text); }

.btn--outline {
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--violet-light);
  color: var(--violet-light);
  background: rgba(124,58,237,.06);
}

.btn--lg { padding: .875rem 1.75rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; padding-block: .875rem; }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section Typography ──────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet-light);
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: var(--radius-full);
  padding: .25rem .875rem;
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: .875rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--transition), border-color var(--transition),
              backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9,9,11,.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.logo__text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}

/* Desktop nav */
.main-nav { margin-inline: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav__link {
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--text);
  background: var(--surface);
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

/* Burger button */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-left: auto;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--transition);
}
.nav__burger:hover { background: var(--surface-2); }
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ───────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(24px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.mobile-drawer__close {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
}
.mobile-drawer__close:hover {
  background: var(--surface-2);
  color: var(--text);
}

.mobile-drawer__nav { display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.mobile-drawer__link {
  display: block;
  padding: .875rem 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.mobile-drawer__link:hover {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}

.mobile-drawer__ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Drawer backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem;
}

.hero__content { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: .35rem .875rem;
  margin-bottom: 1.75rem;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(163,230,53,.2);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(163,230,53,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(163,230,53,.1); }
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }

.hero__note {
  font-size: .8rem;
  color: var(--text-dim);
}

/* Hero visual / mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero__mockup {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(124,58,237,.12);
  animation: float-mockup 6s ease-in-out infinite;
}
@keyframes float-mockup {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.mockup__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surface-3);
}
.mockup__bar span:nth-child(1) { background: var(--red); }
.mockup__bar span:nth-child(2) { background: var(--yellow); }
.mockup__bar span:nth-child(3) { background: var(--green); }

.mockup__body { padding: 1.5rem; }
.mockup__line--title {
  height: 14px;
  background: var(--surface-2);
  border-radius: 4px;
  width: 55%;
  margin-bottom: 1.5rem;
}

.mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
  margin-bottom: 1.25rem;
}
.chart__bar {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(to top, var(--violet), var(--violet-light));
  border-radius: 4px 4px 0 0;
  animation: bar-grow .8s var(--delay, 0s) cubic-bezier(.4,0,.2,1) both;
}
@keyframes bar-grow {
  from { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  to   { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

.mockup__stats {
  display: flex;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mstat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
}
.mstat__val {
  font-size: .95rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -.02em;
}
.mstat__lbl {
  font-size: .7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(24,24,27,.9);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: .5rem .875rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.float-badge--1 { top: 10%; right: -5%; animation: float-a 5s ease-in-out infinite; }
.float-badge--2 { top: 55%; left: -8%; animation: float-b 6s ease-in-out infinite; }
.float-badge--3 { bottom: 12%; right: -3%; animation: float-a 7s ease-in-out infinite reverse; }

@keyframes float-a {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes float-b {
  0%,100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-6px) translateX(3px); }
}

.badge-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--violet);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  margin-left: -6px;
  border: 1.5px solid var(--bg);
}
.badge-avatar:first-child { margin-left: 0; }

/* Hero glows */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero__glow--1 {
  width: 45vw; height: 45vw;
  background: rgba(124,58,237,.18);
  top: -10%; left: -5%;
}
.hero__glow--2 {
  width: 35vw; height: 35vw;
  background: rgba(163,230,53,.1);
  bottom: 0%; right: 5%;
}

/* ═══════════════════════════════════════════════════════════
   LOGOS
═══════════════════════════════════════════════════════════ */
.logos-section {
  padding-block: 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}
.logos__label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.logos__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logos__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logos__track:hover { animation-play-state: paused; }
.logo-item {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -.02em;
  white-space: nowrap;
  transition: color var(--transition);
}
.logo-item:hover { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   FEATURES — BENTO GRID
═══════════════════════════════════════════════════════════ */
.features {
  padding-block: 6rem;
  background: var(--bg);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1rem;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,58,237,.04), transparent 60%);
  pointer-events: none;
}
.bento-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0,0,0,.35), 0 0 20px rgba(124,58,237,.1);
}

/* Grid placement */
.bento-card--big   { grid-column: span 2; grid-row: span 2; }
.bento-card--small { grid-column: span 1; }
.bento-card--wide  { grid-column: span 2; }

.bento-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.bento-card__icon--violet {
  background: rgba(124,58,237,.15);
  color: var(--violet-light);
  border: 1px solid rgba(124,58,237,.25);
}
.bento-card__icon--lime {
  background: rgba(163,230,53,.12);
  color: var(--lime);
  border: 1px solid rgba(163,230,53,.2);
}

.bento-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.bento-card__body {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.bento-card--wide {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.bento-card--wide .bento-card__text { flex: 1; }

/* Terminal inside bento card */
.terminal {
  margin-top: 1.5rem;
  background: #0D0D0F;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.terminal__dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 4px;
}
.terminal__dot--red    { background: #F43F5E; }
.terminal__dot--yellow { background: #EAB308; }
.terminal__dot--green  { background: #22C55E; }

/* first row = dots */
.terminal > :first-child { display: flex; align-items: center; margin-bottom: .25rem; }

.terminal__code { display: flex; flex-direction: column; gap: .5rem; }
.terminal__line {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: .8rem;
  color: var(--text-muted);
}
.terminal__line--fade {
  animation: line-appear .4s ease both;
  animation-delay: .6s;
}
.terminal__line--blink { color: var(--lime); }
.terminal__line--blink::after {
  content: '█';
  animation: blink-caret .9s step-end infinite;
}
@keyframes blink-caret { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes line-appear { from { opacity:0; transform:translateX(-8px); } to { opacity:1; transform:translateX(0); } }

.t-dim   { color: var(--text-dim); }
.t-green { color: var(--green); }
.t-lime  { color: var(--lime); }

/* Collaboration avatars */
.collab-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.c-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg, var(--violet));
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--surface);
  margin-left: -10px;
  transition: transform var(--transition);
}
.c-avatar:first-child { margin-left: 0; }
.c-avatar:hover { transform: translateY(-4px) scale(1.1); z-index: 2; }
.c-avatar--more {
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: .7rem;
  border-color: var(--border);
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how {
  padding-block: 6rem;
  background: var(--bg-2);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step:hover {
  border-color: rgba(124,58,237,.4);
  box-shadow: 0 0 30px var(--violet-glow);
}

.step__divider {
  flex: 0 0 2.5rem;
  height: 2px;
  background: linear-gradient(to right, var(--violet), var(--lime));
  align-self: center;
  margin-top: -1.5rem;
  position: relative;
  z-index: 0;
}
.step__divider::before,
.step__divider::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px; height: 8px;
  background: var(--violet);
  border-radius: 50%;
}
.step__divider::before { left: 0; }
.step__divider::after  { right: 0; background: var(--lime); }

.step__number {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(135deg, var(--violet-light), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.step__body {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.pricing {
  padding-block: 6rem;
  background: var(--bg);
}

.pricing__toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: .375rem;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.toggle-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.toggle-btn--active {
  background: var(--violet);
  color: var(--white);
}
.toggle-btn:not(.toggle-btn--active):hover { color: var(--text); }

.toggle-badge {
  font-size: .65rem;
  font-weight: 700;
  background: rgba(163,230,53,.15);
  color: var(--lime);
  border: 1px solid rgba(163,230,53,.25);
  border-radius: var(--radius-full);
  padding: .1rem .4rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card--popular {
  border-color: var(--violet);
  box-shadow: 0 0 40px rgba(124,58,237,.2);
  background: linear-gradient(180deg, rgba(124,58,237,.08) 0%, var(--surface) 100%);
}
.pricing-card--popular:hover { box-shadow: 0 0 60px rgba(124,58,237,.3); transform: translateY(-6px); }

.pricing-card__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  color: var(--white);
  border-radius: var(--radius-full);
  padding: .25rem .875rem;
  margin-bottom: 1.25rem;
}

.pricing-card__header { margin-bottom: 1.5rem; }
.pricing-card__plan {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .4rem;
}
.pricing-card__desc { font-size: .85rem; color: var(--text-muted); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: 1.75rem;
}
.price__amount {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
}
.price__period { font-size: .875rem; color: var(--text-muted); }

.pricing-card__features { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .625rem; }
.feature-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.feature-item::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-item--yes {
  color: var(--text);
}
.feature-item--yes::before {
  background-color: rgba(163,230,53,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A3E635' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  border: 1px solid rgba(163,230,53,.25);
}
.feature-item--no {
  text-decoration: line-through;
  opacity: .45;
}
.feature-item--no::before {
  background-color: var(--surface-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  padding-block: 6rem;
  background: var(--bg-2);
}

.testimonials__grid {
  columns: 3;
  column-gap: 1.25rem;
}

.tcard {
  break-inside: avoid;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
  transition: border-color var(--transition), transform var(--transition);
}
.tcard:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.tcard--accent { border-color: rgba(124,58,237,.35); background: linear-gradient(135deg, rgba(124,58,237,.05), var(--surface)); }

.tcard__body {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.tcard__body::before { content: '"'; }
.tcard__body::after  { content: '"'; }

.tcard__author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.tcard__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg, var(--violet));
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tcard__name {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
}
.tcard__role {
  display: block;
  font-size: .75rem;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq { padding-block: 6rem; background: var(--bg); }
.faq__inner { max-width: 760px; margin-inline: auto; }

.faq__list { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item.open { border-color: rgba(124,58,237,.4); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: .975rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: var(--surface);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.faq__question:hover { background: var(--surface-2); }
.faq__item.open .faq__question { color: var(--violet-light); background: rgba(124,58,237,.06); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform var(--transition), color var(--transition);
}
.faq__item.open .faq__chevron { transform: rotate(180deg); color: var(--violet-light); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer p {
  padding: 1rem 1.5rem 1.5rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════ */
.cta-band {
  padding-block: 6rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.cta-band__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.cta-band__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-band__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-band__form { max-width: 520px; margin-inline: auto; }
.cta-form__row {
  display: flex;
  gap: .625rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  padding: .375rem .375rem .375rem 1.25rem;
}
.cta-form__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: .9rem;
  min-width: 0;
}
.cta-form__input::placeholder { color: var(--text-dim); }

.cta-form__msg {
  margin-top: .75rem;
  font-size: .85rem;
  min-height: 1.25rem;
  color: var(--lime);
}
.cta-form__msg.error { color: var(--red); }

.cta-band__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(124,58,237,.18), transparent);
  z-index: -1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #050507;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  gap: 4rem;
  padding-block: 4rem;
}
.footer__brand { flex: 1.2; }
.footer__tagline {
  font-size: .875rem;
  color: var(--text-dim);
  margin-top: .75rem;
  margin-bottom: 1.5rem;
}
.footer__socials { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover { color: var(--text); border-color: var(--border-strong); background: var(--surface-2); }

.footer__nav { display: flex; gap: 3rem; }
.footer__col h4.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__col a {
  font-size: .875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--violet-light); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.footer__bottom p {
  font-size: .8rem;
  color: var(--text-dim);
  text-align: center;
}
.footer__bottom a { color: var(--violet-light); }
.footer__bottom a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card--big { grid-column: span 2; grid-row: span 1; }
  .bento-card--wide { grid-column: span 2; }

  .pricing__cards {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-card:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  .testimonials__grid { columns: 2; }

  .steps { flex-direction: column; gap: 0; }
  .step__divider {
    width: 2px;
    height: 2.5rem;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--violet), var(--lime));
  }
  .step__divider::before { top: 0; left: -3px; }
  .step__divider::after  { bottom: 0; top: auto; left: -3px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Header mobile */
  .main-nav, .header__actions { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-block: 3rem;
  }
  .hero__subtitle { max-width: 100%; margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__mockup { max-width: 340px; margin-inline: auto; }
  .float-badge--1 { top: 0; right: 0; font-size: .7rem; }
  .float-badge--2 { display: none; }
  .float-badge--3 { bottom: 0; right: 0; font-size: .7rem; }

  /* Bento */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--big,
  .bento-card--wide,
  .bento-card--small { grid-column: span 1; }
  .bento-card--wide { flex-direction: column; }
  .collab-avatars { margin-top: 1rem; }

  /* Pricing */
  .pricing__cards { grid-template-columns: 1fr; }
  .pricing-card:last-child { grid-column: span 1; max-width: 100%; }

  /* Testimonials */
  .testimonials__grid { columns: 1; }

  /* CTA form */
  .cta-form__row { flex-direction: column; border-radius: var(--radius-lg); padding: .75rem; }
  .cta-form__input { padding: .5rem .25rem; }

  /* Footer */
  .footer__inner { flex-direction: column; gap: 2.5rem; }
  .footer__nav { flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }
  .steps { gap: 0; }
  .section-header { margin-bottom: 2.5rem; }
  .bento-card { padding: 1.25rem; }
}
