/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #06060e;
  --bg-alt:       #08080f;
  --surface:      rgba(255,255,255,0.04);
  --surface-2:    rgba(255,255,255,0.07);
  --border:       rgba(255,255,255,0.08);
  --border-2:     rgba(255,255,255,0.14);
  --text-primary: #f0f0f5;
  --text-muted:   rgba(240,240,245,0.45);
  --text-faint:   rgba(240,240,245,0.25);
  --accent:       #4f7fff;
  --accent-glow:  rgba(79,127,255,0.35);
  --font:         'Inter', system-ui, sans-serif;
  --max-w:        1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── BACKGROUND BLOBS ────────────────────────────────────── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}

.blob-1 {
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, #1a3aff 0%, #0d1fff 30%, transparent 70%);
  top: -80px;
  right: -160px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: morph1 14s ease-in-out infinite alternate, drift1 18s ease-in-out infinite alternate;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, #6030ff 0%, #3010c0 40%, transparent 70%);
  top: 100px;
  right: 80px;
  border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%;
  animation: morph2 11s ease-in-out infinite alternate, drift2 16s ease-in-out infinite alternate;
  opacity: 0.35;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, #0a8fff 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  border-radius: 50%;
  animation: morph2 17s ease-in-out infinite alternate;
  opacity: 0.2;
}

.noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

@keyframes morph1 {
  0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  33%  { border-radius: 45% 55% 40% 60% / 60% 35% 65% 40%; }
  66%  { border-radius: 55% 45% 60% 40% / 40% 65% 35% 60%; }
  100% { border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%; }
}
@keyframes morph2 {
  0%   { border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; }
  50%  { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; }
  100% { border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%; }
}
@keyframes drift1 {
  0%   { transform: translate(0, 0) rotate(-5deg) scale(1); }
  100% { transform: translate(-60px, 60px) rotate(8deg) scale(1.08); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0) rotate(3deg) scale(1); }
  100% { transform: translate(40px, -50px) rotate(-6deg) scale(1.12); }
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(6,6,14,0.6);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-link-highlight { color: var(--accent) !important; }
.nav-link-highlight:hover { color: #7fa4ff !important; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-outline {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  opacity: 1;
}

.btn-primary {
  padding: 12px 22px;
  background: #fff;
  color: #06060e;
  border: none;
  font-weight: 600;
  flex-shrink: 0;
}
.btn-primary:hover {
  background: #e8e8f0;
  opacity: 1;
  box-shadow: 0 0 28px rgba(255,255,255,0.2);
}

.btn-cta-boxed {
  padding: 9px 18px;
  border: 1px solid rgba(79,127,255,0.65);
  background: rgba(79,127,255,0.08);
  color: #8ab4ff;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(79,127,255,0.18), inset 0 0 14px rgba(79,127,255,0.04);
  letter-spacing: 0.01em;
}
.btn-cta-boxed:hover {
  background: rgba(79,127,255,0.15);
  border-color: rgba(79,127,255,0.9);
  box-shadow: 0 0 28px rgba(79,127,255,0.32), inset 0 0 20px rgba(79,127,255,0.08);
  color: #adc8ff;
  opacity: 1;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-heading {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  opacity: 0.7;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.hero-scroll-hint:hover { color: var(--text-muted); }

.hero-scroll-arrow {
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(5px); opacity: 1; }
}

/* ── HARD TRUTH SECTION ──────────────────────────────────── */
.truth-section {
  position: relative;
  z-index: 10;
  padding: 100px 24px 80px;
}

.truth-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.truth-quote {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-primary);
  text-align: center;
  max-width: 780px;
  position: relative;
  padding: 0 32px;
}

.truth-quote::before,
.truth-quote::after {
  content: '"';
  font-size: 5rem;
  font-weight: 800;
  line-height: 0;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 14px;
}
.truth-quote::before { left: 0; }
.truth-quote::after  { content: '"'; right: 0; bottom: -10px; top: auto; }

/* ── Split-screen ── */
.truth-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  width: 100%;
  max-width: 900px;
}

.truth-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Label pill */
.tp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.tp-label--bad  { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border); }
.tp-label--good { background: rgba(79,127,255,0.15); color: var(--accent); border: 1px solid rgba(79,127,255,0.3); }

/* Browser chrome */
.tp-screen {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  filter: blur(1.5px) saturate(0.4) brightness(0.7);
}
.tp-screen--good {
  filter: none;
  border-color: rgba(79,127,255,0.4);
  box-shadow: 0 0 40px rgba(79,127,255,0.2), 0 0 80px rgba(79,127,255,0.08);
}

.tp-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid var(--border);
}
.tp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.tp-dot--good { background: rgba(79,127,255,0.5); }
.tp-url {
  font-size: 9px;
  color: var(--text-faint);
  margin-left: 6px;
  background: rgba(255,255,255,0.04);
  padding: 2px 8px;
  border-radius: 4px;
  flex: 1;
  max-width: 160px;
}
.tp-url--good { color: rgba(79,127,255,0.7); background: rgba(79,127,255,0.08); }

/* Screen body */
.tp-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}
.tp-body--bad  { background: #0a0a14; }
.tp-body--good { background: linear-gradient(160deg, #080c1e 0%, #060810 100%); }

.tp-nav-strip {
  height: 10px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
}
.tp-nav-strip--good { background: rgba(79,127,255,0.12); }

.tp-hero-block {
  padding: 14px 10px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tp-hero-block--bad  { background: rgba(255,255,255,0.03); }
.tp-hero-block--good { background: rgba(79,127,255,0.06); border: 1px solid rgba(79,127,255,0.12); }

.tp-accent-bar {
  width: 32px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
  margin-bottom: 4px;
}

.tp-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}
.tp-line--long   { width: 85%; }
.tp-line--mid    { width: 60%; }
.tp-line--short  { width: 40%; }
.tp-line--bright { background: rgba(240,240,245,0.25); }

.tp-fake-btn {
  width: 70px; height: 18px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  margin-top: 4px;
}
.tp-fake-btn--good { background: var(--accent); opacity: 0.85; }

.tp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.tp-card {
  height: 42px;
  border-radius: 5px;
}
.tp-card--bad      { background: rgba(255,255,255,0.04); }
.tp-card--good     { background: rgba(79,127,255,0.07); border: 1px solid rgba(79,127,255,0.1); }
.tp-card--featured { background: rgba(79,127,255,0.18); border-color: rgba(79,127,255,0.35); }

/* Overlays */
.tp-noise-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.06) 2px,
    rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
}
.tp-glow-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(79,127,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Caption */
.tp-caption {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.tp-caption--good { color: rgba(79,127,255,0.8); }

/* VS divider */
.truth-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  padding-bottom: 48px; /* offset for caption */
}
.truth-vs {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Body copy */
.truth-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
}

/* Responsive */
@media (max-width: 700px) {
  .truth-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }
  .truth-divider { padding: 0; }
  .truth-quote::before,
  .truth-quote::after { display: none; }
  .truth-quote { padding: 0; }
  .truth-br { display: none; }
}

/* ── PATHWAYS SECTION ────────────────────────────────────── */
.pathways-section {
  position: relative;
  z-index: 10;
  padding: 80px 24px 100px;
}

.pathways-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.pathways-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pathways-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: -32px;
}

.pathways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.pathway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 44px 40px;
  border-radius: 16px;
  border: 1px solid var(--border-2);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pathway-card:hover { transform: translateY(-4px); }

.pathway-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pathway-card:hover .pathway-bg { opacity: 1; }

.pathway-card--corporate {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}
.pathway-card--corporate:hover {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.pathway-card--corporate .pathway-bg {
  background: radial-gradient(ellipse at top left, rgba(200,200,255,0.06) 0%, transparent 65%);
}
.pathway-card--corporate .pathway-icon { color: rgba(220,220,255,0.7); }
.pathway-card--corporate .pathway-cta  { color: var(--text-primary); }

.pathway-card--ecom {
  background: linear-gradient(135deg, rgba(79,127,255,0.08) 0%, rgba(79,127,255,0.03) 100%);
}
.pathway-card--ecom:hover {
  border-color: rgba(79,127,255,0.45);
  box-shadow: 0 20px 60px rgba(79,127,255,0.12), inset 0 1px 0 rgba(79,127,255,0.15);
}
.pathway-card--ecom .pathway-bg {
  background: radial-gradient(ellipse at top left, rgba(79,127,255,0.12) 0%, transparent 65%);
}
.pathway-card--ecom .pathway-icon { color: var(--accent); }
.pathway-card--ecom .pathway-cta  { color: var(--accent); }

.pathway-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.pathway-prompt {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 340px;
}

.pathway-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.pathway-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 360px;
  flex: 1;
}

.pathway-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  transition: gap 0.2s ease;
}
.pathway-card:hover .pathway-cta { gap: 11px; }

@media (max-width: 700px) {
  .pathways-grid { grid-template-columns: 1fr; }
  .pathway-card  { padding: 32px 28px; }
}

/* ── SOCIAL PROOF BAR ────────────────────────────────────── */
.proof-section {
  position: relative;
  z-index: 10;
  padding: 12px 0 52px;
}

.proof-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.proof-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.proof-track-wrapper {
  width: 100%;
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.proof-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}

.proof-logo-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  opacity: 0.45;
  flex-shrink: 0;
  filter: grayscale(1);
  transition: opacity 0.2s;
}
.proof-logo-item:hover { opacity: 0.75; }

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SHARED SECTION STYLES ───────────────────────────────── */
.section {
  position: relative;
  z-index: 10;
  padding: 96px 32px;
}

.section-alt {
  background: rgba(255,255,255,0.018);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 640px;
}

.section-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 16px;
}

/* ── FEATURES GRID ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 16px;
}

.feature-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(255,255,255,0.025); }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  margin-top: 24px;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(79,127,255,0.1);
  border: 1px solid rgba(79,127,255,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 24px;
}

/* horizontal connector between steps */
.step-connector {
  display: none;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 17px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(to right,
    rgba(79,127,255,0.4),
    rgba(79,127,255,0.1)
  );
  pointer-events: none;
}

.step-body { display: flex; flex-direction: column; gap: 12px; }

.step-body h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.step-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pricing-card--featured {
  background: rgba(79,127,255,0.06);
  border-color: rgba(79,127,255,0.3);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(79,127,255,0.2), 0 20px 60px rgba(0,0,0,0.5);
}
.pricing-card--featured:hover {
  border-color: rgba(79,127,255,0.5);
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 0 1px rgba(79,127,255,0.3), 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(79,127,255,0.12);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-header { display: flex; flex-direction: column; gap: 4px; }

.plan-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.plan-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

.plan-price {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-per {
  font-size: 14px;
  color: var(--text-muted);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-primary);
}

.plan-features li.disabled { color: var(--text-faint); }

.check {
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li:not(.disabled) .check { color: var(--accent); }
.plan-features li.disabled .check { color: var(--text-faint); }

.plan-cta {
  width: 100%;
  padding: 13px;
  font-size: 14px;
  border-radius: 9px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  padding: 64px 32px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 220px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ── PORTFOLIO CAROUSEL ──────────────────────────────────── */
.portfolio-section {
  overflow: hidden; /* contain the wide track */
}

.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 1400px;
  margin: 32px auto 0;
  padding: 0 64px;
}

.carousel-viewport {
  flex: 1;
  /* overflow: visible so hover scale isn't clipped;
     .portfolio-section { overflow: hidden } handles horizontal clipping */
  overflow: visible;
  padding: 20px 0;   /* breathing room for vertical hover lift */
  margin: -20px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Site card ── */
.site-card {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}

.site-screen {
  width: 100%;
  aspect-ratio: 9 / 14;       /* tall portrait — like a phone/scroll */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a12;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition:
    transform   0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow  0.3s ease,
    border-color 0.3s ease;
}

.site-card:hover .site-screen {
  transform: scale(1.045) translateY(-6px);
  border-color: rgba(79,127,255,0.35);
  box-shadow:
    0 16px 56px rgba(0,0,0,0.6),
    0 0 40px rgba(79,127,255,0.18),
    0 0 80px rgba(79,127,255,0.08);
}

/* fake browser bar */
.screen-bar {
  flex-shrink: 0;
  height: 28px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}

.bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.bar-url {
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  margin-left: 8px;
  font-family: var(--font);
  letter-spacing: 0.02em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* fake website content */
.screen-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mock-hero {
  flex-shrink: 0;
  height: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 12px;
  gap: 7px;
}

.mock-nav {
  height: 5px;
  width: 80%;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 10px;
}

.mock-headline {
  height: 7px;
  width: 90%;
  border-radius: 3px;
  background: rgba(255,255,255,0.18);
}
.mock-headline--short { width: 60%; background: rgba(255,255,255,0.1); }

.mock-cta {
  margin-top: 8px;
  height: 14px;
  width: 36%;
  border-radius: 4px;
  background: rgba(79,127,255,0.5);
}

.mock-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 6px;
}

.mock-card {
  border-radius: 4px;
}

/* card metadata below the screen */
.site-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
}

.site-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.site-tag {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 9px;
}

/* ── Arrow buttons ── */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: rgba(6,6,14,0.8);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.carousel-arrow:hover {
  background: rgba(79,127,255,0.15);
  border-color: rgba(79,127,255,0.4);
  box-shadow: 0 0 16px rgba(79,127,255,0.2);
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow:active { transform: translateY(-50%) scale(0.96); }

.carousel-arrow--prev { left: 8px; }
.carousel-arrow--next { right: 8px; }

.carousel-arrow:disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* ── Dot indicators ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}
.carousel-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .carousel-outer { padding: 0 48px; }
  .site-card { width: 220px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .footer-inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .carousel-outer { padding: 0 40px; }
  .site-card { width: 200px; }
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }

.footer-cols { grid-template-columns: repeat(2, 1fr); }
}
