@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --text: #f0f0f5;
  --text-muted: #8888a8;
  --accent: #c8a0e0;
  --accent-pink: #b04090;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

/* ===========================
   NAVBAR
   =========================== */
nav {
  width: 100%;
  max-width: 1600px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 24px;
  margin-bottom: 14px;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  justify-self: start;
}

.nav-menu {
  display: contents;
}

.nav-links {
  display: flex;
  gap: 32px;
  justify-self: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 8px;
  justify-self: end;
  align-items: center;
}

.btn-login,
.btn-signup {
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  border: 1px solid var(--border);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-login {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-signup {
  background: #ffffff;
  color: #0a0a0f;
  font-weight: 600;
  border-color: transparent;
}

.btn-signup:hover {
  opacity: 0.88;
}

.menu-toggle {
  display: none;
  width: 24px;
  height: 14px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===========================
   HERO CARD
   =========================== */
.hero-card {
  width: 100%;
  max-width: 1600px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  position: relative;
  background: #0d0b12;
  padding: 80px 40px 70px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -70%,
      transparent 60%,
      rgba(176, 48, 136, 0.03) 63%,
      rgba(176, 48, 136, 0.08) 65%,
      rgba(176, 48, 136, 0.16) 67%,
      rgba(176, 48, 136, 0.28) 69%,
      rgba(176, 48, 136, 0.40) 71%,
      rgba(176, 48, 136, 0.52) 73%,
      rgba(176, 48, 136, 0.64) 75%,
      rgba(176, 48, 136, 0.74) 77%,
      rgba(176, 48, 136, 0.82) 79%,
      rgba(210, 70, 175, 0.92) 85%,
      rgba(240, 110, 210, 0.88) 87%,
      rgba(255, 205, 250, 0.92) 91%,
      rgba(255, 240, 255, 0.98) 93%,
      #ffffff 95%),
    radial-gradient(circle at 50% 35%, rgba(120, 40, 180, 0.08) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at 50% -70%, transparent 60%, black 78%);
  mask-image: radial-gradient(circle at 50% -70%, transparent 60%, black 78%);
  z-index: 0;
  pointer-events: none;
}

/* ===========================
   ICON PIPELINE
   =========================== */
.icon-pipeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin-bottom: 52px;
  z-index: 1;
}

.beam-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}

.pipeline-line {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
}

.pipeline-line.right {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.15));
}

.icon-node {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1a1a24;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.4),
    -4px -4px 10px rgba(255, 255, 255, 0.03),
    inset 1px 1px 1px rgba(255, 255, 255, 0.05),
    inset 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.icon-node::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dotted #1a1a24;
  pointer-events: none;
}

.icon-node:hover {
  transform: translateY(-1px);
  box-shadow:
    8px 8px 14px rgba(0, 0, 0, 0.5),
    -5px -5px 12px rgba(255, 255, 255, 0.04),
    inset 1px 1px 1px rgba(255, 255, 255, 0.06),
    inset 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.icon-node:active {
  transform: translateY(0);
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.04),
    inset 6px 6px 10px rgba(0, 0, 0, 0.5);
}

.icon-node svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

/* Side-light glows */
.node-light-right::before,
.node-light-left::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 4;
}

.node-light-right::before {
  background: radial-gradient(circle at right, rgba(200, 200, 200, 0.45) 0%, transparent 70%);
}

.node-light-left::before {
  background: radial-gradient(circle at left, rgba(200, 100, 255, 0.5) 0%, transparent 70%);
}

.node-light-right.active::before,
.node-light-left.active::before {
  opacity: 1;
}

/* Center node */
.icon-node-center {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1e1e2c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.5),
    -6px -6px 14px rgba(255, 255, 255, 0.04),
    inset 1px 1px 2px rgba(255, 255, 255, 0.06),
    inset 6px 6px 12px rgba(0, 0, 0, 0.5);
}

.icon-node-center svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

/* Splash */
.splash {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 200, 0.6) 0%, transparent 70%);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.splash.animate {
  animation: splash-anim 0.8s ease-out forwards;
}

@keyframes splash-anim {
  0% {
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0.8;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* ===========================
   HERO TEXT
   =========================== */
.hero-content {
  max-width: 620px;
  z-index: 1;
  position: relative;
}

.hero-heading {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.hero-heading strong {
  display: block;
  font-weight: 400;
  margin-top: 4px;
  background: linear-gradient(to right, #ffffff, #a98597);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 440px;
  margin: 24px auto 36px;
  line-height: 1.55;
  font-weight: 400;
}

.btn-cta {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0f;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ===========================
   BRANDS ROW
   =========================== */
.brands {
  display: flex;
  flex-direction: row;
  gap: 64px;
  padding: 32px 24px 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1600px;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}

.brand-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hubspot-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: super;
  margin-left: 1px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 860px) {
  .icon-pipeline {
    gap: 0;
    margin-bottom: 40px;
  }
  .pipeline-line {
    width: 80px;
  }
}

@media (max-width: 768px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    justify-self: stretch;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 16px;
  }

  .btn-login,
  .btn-signup {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .icon-node {
    width: 38px;
    height: 38px;
  }

  .icon-node-center {
    width: 52px;
    height: 52px;
  }

  .icon-node-center svg {
    width: 22px;
    height: 22px;
  }

  .hero-card {
    padding: 60px 20px 60px;
    min-height: auto;
  }

  .brands {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-card {
    border-radius: 16px;
  }
  .brands {
    gap: 24px;
  }
  .pipeline-line {
    width: 50px;
  }
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ===========================
   SHARED SECTION SCAFFOLD
   =========================== */
.section {
  width: 100%;
  max-width: 1600px;
  padding: 120px 40px;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(200, 160, 224, 0.18);
  background: rgba(176, 64, 144, 0.06);
}

.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(200, 160, 224, 0.8);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin: 18px 0 14px;
  max-width: 720px;
}

.section-title strong {
  font-weight: 400;
  background: linear-gradient(to right, #ffffff, #a98597);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin-bottom: 56px;
}

.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head--center .section-title,
.section-head--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   FEATURES
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.3s ease;
}

.feature-card:hover {
  background: #15151e;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1a1a24;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.05),
    inset 2px 2px 6px rgba(0, 0, 0, 0.4),
    4px 4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 6px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.feature-body {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

/* ===========================
   STATS / SOCIAL PROOF STRIP
   =========================== */
.stats {
  width: 100%;
  max-width: 1600px;
  padding: 60px 40px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(176, 64, 144, 0.04), transparent 60%), var(--surface);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text);
}

.stat-value span {
  background: linear-gradient(to right, #ffffff, #a98597);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(200, 160, 224, 0.2);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  flex: 1;
}

.testimonial-quote::before {
  content: '"';
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a1f33, #1a1a24);
  border: 1px solid rgba(200, 160, 224, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.author-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: padding 0.3s ease;
}

.step:first-child {
  border-top: none;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1a24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.05),
    inset 2px 2px 4px rgba(0, 0, 0, 0.4);
  transition: color 0.3s ease, background 0.3s ease;
}

.step.active .step-num,
.step:hover .step-num {
  color: var(--accent);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

.code-frame {
  background: #0d0b12;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  position: relative;
}

.code-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -10%, rgba(176, 64, 144, 0.18), transparent 50%);
  pointer-events: none;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2a36;
}

.code-dot.red { background: #4a2329; }
.code-dot.yellow { background: #4a3f23; }
.code-dot.green { background: #234a29; }

.code-file {
  margin-left: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
}

.code-body {
  padding: 24px 22px;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow-x: auto;
}

.code-body pre {
  margin: 0;
  white-space: pre;
}

.tok-key { color: #c8a0e0; }
.tok-str { color: #e7a8c8; }
.tok-fn { color: #ffffff; }
.tok-com { color: rgba(255, 255, 255, 0.3); font-style: italic; }
.tok-var { color: rgba(255, 255, 255, 0.85); }
.tok-num { color: #b9a4ff; }

/* ===========================
   PRICING
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-2px);
}

.price-card.featured {
  background: #0d0b12;
  border-color: rgba(200, 160, 224, 0.25);
  box-shadow: 0 30px 60px rgba(176, 64, 144, 0.08);
  overflow: hidden;
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -40%,
      transparent 60%,
      rgba(176, 64, 144, 0.18) 75%,
      rgba(240, 110, 210, 0.35) 88%,
      rgba(255, 240, 255, 0.6) 95%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.price-card.featured > * {
  position: relative;
  z-index: 1;
}

.price-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200, 160, 224, 0.15);
  color: var(--accent);
  border: 1px solid rgba(200, 160, 224, 0.25);
}

.price-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 6px 0 4px;
}

.price-amount .num {
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text);
}

.price-amount .per {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.price-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.price-features li svg {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  flex-shrink: 0;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
  text-decoration: none;
  border: 1px solid var(--border);
}

.price-cta--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.price-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.price-cta--solid {
  background: #ffffff;
  color: #0a0a0f;
  border-color: transparent;
  font-weight: 600;
}

.price-cta--solid:hover {
  opacity: 0.9;
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-panel {
  max-height: 320px;
}

.faq-content {
  padding: 0 4px 28px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
}

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  width: 100%;
  max-width: 1600px;
  padding: 40px;
}

.cta-card {
  position: relative;
  background: #0d0b12;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 96px 40px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 50% 110%,
      transparent 55%,
      rgba(176, 64, 144, 0.18) 65%,
      rgba(210, 70, 175, 0.55) 78%,
      rgba(255, 205, 250, 0.85) 90%,
      #ffffff 96%);
  pointer-events: none;
  z-index: 0;
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 110%, transparent 50%, black 80%);
  mask-image: radial-gradient(ellipse 80% 100% at 50% 110%, transparent 50%, black 80%);
  pointer-events: none;
  z-index: 0;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 700px;
  margin: 14px 0 16px;
}

.cta-card h2 strong {
  font-weight: 400;
  background: linear-gradient(to right, #ffffff, #a98597);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  width: 100%;
  max-width: 1600px;
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

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

.footer-logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.footer-tag {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(200, 160, 224, 0.25);
}

.social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 18px;
}

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

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-meta a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.footer-meta a:hover {
  color: var(--text);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fbf83;
  box-shadow: 0 0 8px rgba(95, 191, 131, 0.5);
}

/* ===========================
   RESPONSIVE — SECTIONS
   =========================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 20px;
  }
  .stats {
    padding: 40px 20px;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    padding: 28px 24px;
    gap: 24px;
  }
  .stat-value {
    font-size: 1.8rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .final-cta {
    padding: 20px;
  }
  .cta-card {
    padding: 64px 24px;
    border-radius: 18px;
  }
  footer {
    padding: 40px 20px 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .feature-card {
    padding: 32px 24px;
  }
  .code-body {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  .cta-card h2 {
    font-size: 1.9rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
