/* ============================================================
   Get AI Act Compliant — Landing Page
   Dark theme · purple/violet accents · matches logo
   ============================================================ */

:root {
  --bg:           #07060b;
  --bg-elev:      #0d0b16;
  --bg-card:      #110e1c;
  --bg-card-2:    #15122a;
  --border:       rgba(139, 92, 246, 0.18);
  --border-soft:  rgba(255, 255, 255, 0.06);

  --text:         #ece9f7;
  --text-dim:     #a7a3bd;
  --text-mute:    #7b7895;

  --accent:       #8b5cf6;    /* logo violet */
  --accent-2:     #a78bfa;
  --accent-3:     #c4b5fd;
  --accent-deep:  #6d28d9;
  --accent-glow:  rgba(139, 92, 246, 0.35);

  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --shadow-soft:  0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow:  0 0 0 1px var(--border), 0 20px 60px -20px var(--accent-glow);

  --container:    1180px;
  --container-narrow: 820px;

  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head:    'Space Grotesk', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--accent-3); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.25rem, 5vw + 0.5rem, 4rem); }
h2 { font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }

.accent { color: var(--accent-2); }
.muted  { color: var(--text-dim); }
.small  { font-size: 0.92rem; }
.center { text-align: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 6, 11, 0.7);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand:hover { color: #fff; }

.brand-mark {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  margin-right: 12px;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--accent-glow), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px -8px var(--accent-glow), inset 0 0 0 1px rgba(255,255,255,0.12);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.4);
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(139, 92, 246, 0.28), transparent 60%),
    radial-gradient(40% 35% at 80% 30%, rgba(167, 139, 250, 0.18), transparent 70%),
    radial-gradient(50% 40% at 15% 60%, rgba(109, 40, 217, 0.22), transparent 70%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-inner {
  text-align: center;
  max-width: 920px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-3);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.grad {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-3) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.3vw + 0.5rem, 1.25rem);
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-marquee {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
}
.hero-marquee li {
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 500;
  padding: 6px 14px;
  border: 1px dashed rgba(139, 92, 246, 0.2);
  border-radius: 999px;
}

/* ============================================================
   HERO SHOWCASE (image or inline diagram)
   ============================================================ */
.hero-showcase {
  position: relative;
  margin: 56px auto 0;
  max-width: 980px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 30px 80px -20px var(--accent-glow),
    0 10px 40px rgba(0, 0, 0, 0.5);
  background: var(--bg-card);
}
.hero-showcase img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
/* Photo variant only: dark vignette + overlay caption */
.hero-showcase:not(.hero-showcase-diagram)::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(7, 6, 11, 0.85));
  pointer-events: none;
}
.hero-showcase:not(.hero-showcase-diagram) .hero-showcase-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 28px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  z-index: 1;
}

/* Diagram variant: SVG mockup of the dashboard */
.hero-showcase-diagram {
  background: #0a0815;
  /* no clipping: let the SVG corners show through the frame */
}
.hero-diagram {
  display: block;
  width: 100%;
  height: auto;
}
.hero-showcase-diagram .hero-showcase-caption {
  position: static;
  border-top: 1px solid rgba(139, 92, 246, 0.18);
  background: rgba(7, 6, 11, 0.5);
}

.hero-showcase-caption {
  padding: 20px 26px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-showcase-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.25), 0 0 18px var(--accent-glow);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-showcase-dot { animation: none; }
}

/* ============================================================
   SPLIT ROW (image + text side-by-side)
   ============================================================ */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}
.split-row.split-reverse .split-text { order: 2; }
.split-row.split-reverse .split-image { order: 1; }

.split-text .kicker { margin-bottom: 14px; }
.split-text h2 { margin-bottom: 18px; }
.split-text .lead { font-size: 1.05rem; line-height: 1.65; }

.split-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 24px 60px -20px var(--accent-glow),
    0 12px 30px rgba(0, 0, 0, 0.4);
  aspect-ratio: 1 / 1;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.split-image:hover img { transform: scale(1.03); }
.split-image::before {
  /* subtle violet wash so the photo blends with the dark palette */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 100% at 100% 0%, rgba(139, 92, 246, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 880px) {
  .split-row { grid-template-columns: 1fr; gap: 36px; }
  .split-row.split-reverse .split-text,
  .split-row.split-reverse .split-image { order: initial; }
  .split-image { aspect-ratio: 4 / 3; }
}

/* ============================================================
   SOCIAL PROOF (hero avatar pile)
   ============================================================ */
.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
}
.avatar-pile {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.avatar-pile li {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #0d0b16;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.45), 0 4px 18px -6px var(--accent-glow);
  background: var(--bg-card);
  transition: transform 0.2s;
}
.avatar-pile li + li { margin-left: -14px; }
.avatar-pile li:hover { transform: translateY(-3px); z-index: 2; }
.avatar-pile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.social-proof-text {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 0;
  text-align: center;
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt {
  background:
    linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03) 30%, transparent),
    var(--bg-elev);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-head { max-width: 820px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 720px;
}
.section-head.center .lead { margin-inline: auto; }

.subhead {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 18px;
}

.closer {
  margin-top: 40px;
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 820px;
  line-height: 1.65;
}
.closer.center { margin-inline: auto; text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.two-col .prose p { color: var(--text-dim); line-height: 1.7; }
.two-col h2 { font-size: clamp(1.6rem, 2vw + 0.5rem, 2.1rem); }

/* ============================================================
   QUESTION CARDS
   ============================================================ */
.question-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.q-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 22px 48px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.q-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}
.q-card::before {
  content: "?";
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.18);
  color: var(--accent-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============================================================
   BENEFIT GRID
   ============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.b-card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.b-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.b-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: var(--shadow-soft);
}
.b-card:hover::before { opacity: 1; }
.b-icon {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--border);
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.b-card h3 { color: #fff; margin-bottom: 8px; }
.b-card p { color: var(--text-dim); font-size: 0.97rem; margin: 0; line-height: 1.55; }

/* ============================================================
   PILLS
   ============================================================ */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.pill {
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s;
}
.pill:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.45);
  color: #fff;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.step:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--shadow-soft);
}
.step-num {
  position: absolute;
  top: -18px;
  left: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.step h3 { color: #fff; margin: 14px 0 8px; }
.step p { color: var(--text-dim); margin: 0; font-size: 0.97rem; line-height: 1.55; }

/* ============================================================
   REASON GRID
   ============================================================ */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.r-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.r-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.4);
}
.r-card h3 { color: #fff; margin-bottom: 10px; }
.r-card p { color: var(--text-dim); margin: 0 0 10px; font-size: 0.97rem; line-height: 1.6; }

.r-card-feature {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(109, 40, 217, 0.08));
  border-color: rgba(139, 92, 246, 0.35);
}

@media (max-width: 720px) {
  .r-card-feature { grid-column: span 1; }
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.who-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.97rem;
  transition: border-color 0.2s, background 0.2s;
}
.who-card:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.4);
}
.who-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-glow);
  flex-shrink: 0;
}

/* ============================================================
   SCENARIOS
   ============================================================ */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.s-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.s-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: var(--shadow-soft);
}
.s-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 5px 10px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 6px;
  margin-bottom: 14px;
}
.s-card p {
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials {
  background:
    radial-gradient(50% 70% at 50% 0%, rgba(139, 92, 246, 0.10), transparent 70%),
    var(--bg-elev);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.t-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: var(--shadow-soft);
}
.t-card-feature {
  background:
    radial-gradient(70% 100% at 100% 0%, rgba(139, 92, 246, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border-color: rgba(139, 92, 246, 0.4);
}
.t-quote {
  width: 36px;
  height: 36px;
  color: var(--accent-2);
  flex-shrink: 0;
  opacity: 0.9;
}
.t-quote-body {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.t-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 4px 14px -4px var(--accent-glow);
  flex-shrink: 0;
}
.t-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}
.t-role {
  font-size: 0.84rem;
  color: var(--text-mute);
  margin: 2px 0 0;
  line-height: 1.4;
}

/* ============================================================
   EMPHASIS CARD
   ============================================================ */
.emphasis-card {
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(139, 92, 246, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.emphasis-card h2 { margin-bottom: 18px; }
.emphasis-card p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 12px;
}

/* Variant with image on left, text on right */
.emphasis-card-with-image {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  text-align: left;
  padding: 48px;
  align-items: center;
  max-width: 1100px;
}
.emphasis-card-with-image .emphasis-body .kicker { margin-bottom: 14px; }
.emphasis-card-with-image h2 { margin-bottom: 18px; }
.emphasis-card-with-image p { margin-left: 0; margin-right: 0; max-width: none; }

.emphasis-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.25),
    0 24px 50px -16px var(--accent-glow);
  aspect-ratio: 4 / 5;
  position: relative;
}
.emphasis-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.emphasis-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), transparent 40%);
  pointer-events: none;
}

@media (max-width: 880px) {
  .emphasis-card-with-image {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }
  .emphasis-image { aspect-ratio: 4 / 3; }
}

/* ============================================================
   PACKAGES
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.pkg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.pkg:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: var(--shadow-soft);
}
.pkg h3 { color: #fff; margin-bottom: 10px; }
.pkg p { color: var(--text-dim); margin: 0; font-size: 0.97rem; line-height: 1.55; }
.pkg-feature {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(109, 40, 217, 0.08));
  border-color: rgba(139, 92, 246, 0.4);
}

/* ============================================================
   WHY NOW
   ============================================================ */
.section-whynow {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(139, 92, 246, 0.14), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] {
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.25s, background 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--accent);
  color: #fff;
}
.faq-item p {
  color: var(--text-dim);
  margin: 0 0 18px;
  line-height: 1.65;
  font-size: 0.98rem;
}

/* ============================================================
   CTA
   ============================================================ */
.section-cta { padding: 100px 0 120px; }

.cta-card {
  position: relative;
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(139, 92, 246, 0.25), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(109, 40, 217, 0.18), transparent 60%),
    linear-gradient(180deg, #14102a, #0c0918);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 { font-size: clamp(1.7rem, 2.5vw + 0.5rem, 2.6rem); }
.cta-card p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-foot { margin-top: 28px; }

/* CTA card variant with image */
.cta-card-with-image {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
  padding: 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.cta-card-with-image .cta-body { position: relative; }
.cta-card-with-image .cta-body p { margin-left: 0; margin-right: 0; max-width: none; }
.cta-card-with-image .cta-buttons { justify-content: flex-start; }
.cta-card-with-image .cta-foot { text-align: left; }

.cta-image {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.3),
    0 24px 50px -16px var(--accent-glow);
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.cta-image:hover img { transform: scale(1.04); }
.cta-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 100% at 0% 100%, rgba(139, 92, 246, 0.2), transparent 60%);
  pointer-events: none;
}

@media (max-width: 880px) {
  .cta-card-with-image {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px;
    text-align: center;
  }
  .cta-image { aspect-ratio: 4 / 3; }
  .cta-card-with-image .cta-buttons { justify-content: center; }
  .cta-card-with-image .cta-foot { text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 50px 0 40px;
  background: var(--bg);
}
.footer-inner { text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-tag { color: var(--text-dim); margin: 0 0 6px; }
.footer-copy { color: var(--text-mute); font-size: 0.88rem; margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(7, 6, 11, 0.97);
    backdrop-filter: blur(14px);
    padding: 18px 24px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav.open .nav-cta {
    display: inline-flex;
    margin: 6px 24px 0;
  }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 70px 0; }
  .hero { padding: 80px 0 70px; }
  .emphasis-card, .cta-card { padding: 44px 24px; }
}

/* ============================================================
   REVEAL ANIMATION (used by script.js)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
