/* THEME VARIABLES */
:root {
  /* Premium, high-contrast base */
  --bg: #f6f7ff;
  --bg-soft: #eceefe;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-soft: rgba(255, 255, 255, 0.82);
  --bg-hero-grad: radial-gradient(1200px circle at 15% 0%, rgba(79, 70, 229, 0.45) 0%, rgba(2, 6, 23, 0.0) 45%),
    radial-gradient(900px circle at 85% 10%, rgba(236, 72, 153, 0.22) 0%, rgba(2, 6, 23, 0.0) 45%),
    linear-gradient(180deg, #020617 0%, #060a18 55%, #0b1025 100%);
  --text-main: #0b1020;
  --text-muted: rgba(11, 16, 32, 0.78);
  --text-soft: rgba(11, 16, 32, 0.62);
  --text-on-dark: rgba(241, 245, 249, 0.92);
  --text-on-dark-muted: rgba(241, 245, 249, 0.76);
  --accent: #4f46e5;
  --accent-strong: #4338ca;
  --accent-pink: #ec4899;
  --accent-cyan: #22d3ee;
  --border-soft: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 12px 30px rgba(2, 6, 23, 0.12);
  --shadow-hero: 0 34px 86px rgba(2, 6, 23, 0.55);
  --header-bg: rgba(246, 247, 255, 0.72);
  --footer-bg: #020617;
  --footer-text: rgba(148, 163, 184, 0.9);
}

.theme-dark {
  --bg: #020617;
  --bg-soft: rgba(2, 6, 23, 0.92);
  --bg-card: rgba(2, 6, 23, 0.72);
  --bg-card-soft: rgba(2, 6, 23, 0.62);
  --text-main: rgba(226, 232, 240, 0.96);
  --text-muted: rgba(226, 232, 240, 0.78);
  --text-soft: rgba(226, 232, 240, 0.64);
  --text-on-dark: rgba(226, 232, 240, 0.96);
  --text-on-dark-muted: rgba(226, 232, 240, 0.78);
  --accent: #818cf8;
  --accent-strong: #6366f1;
  --border-soft: rgba(148, 163, 184, 0.25);
  --border-strong: rgba(148, 163, 184, 0.38);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.65);
  --shadow-hero: 0 30px 86px rgba(0, 0, 0, 0.9);
  --header-bg: rgba(2, 6, 23, 0.72);
  --footer-bg: #000000;
  --footer-text: rgba(148, 163, 184, 0.9);
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* Smooth scroll for section jumps */
html:focus-within {
  scroll-behavior: smooth;
}

/* Premium type rhythm */
h1, h2, h3 {
  letter-spacing: -0.02em;
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--accent) 70%, white);
  outline-offset: 3px;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.main-nav {
  margin-left: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 58px;
  width: auto;
}

.logo-mark {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #6366f1);
}

.logo-text {
  font-size: 0.98rem;
}
.logo-text a {
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

/* Nav CTA: keep primary button label white */
.main-nav a.btn-primary,
.main-nav a.btn-primary:hover {
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme toggle */
.theme-toggle {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: transparent;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-soft);
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Basic link */
.nav-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text-main);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease,
    background 0.08s ease, border-color 0.08s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 20%, color-mix(in oklab, var(--accent) 60%, var(--accent-pink)) 50%, var(--accent-pink) 100%);
  border: none;
  color: white;
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(79, 70, 229, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: color-mix(in oklab, var(--border-strong) 65%, transparent);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: color-mix(in oklab, var(--accent) 55%, var(--border-strong));
  transform: translateY(-1px);
}

.btn-pill {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.78));
  color: #ffffff;
  padding-inline: 1.6rem;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.28);
}

.btn-pill:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: color-mix(in oklab, var(--border-strong) 70%, transparent);
  color: currentColor;
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--accent) 60%, var(--border-strong));
}

/* Outline buttons inside dark pricing cards need a light border to be visible */
.section--pricing .pricing-card .btn-outline {
  border-color: rgba(241, 245, 249, 0.35);
  color: rgba(241, 245, 249, 0.9);
}

.section--pricing .pricing-card .btn-outline:hover {
  border-color: rgba(241, 245, 249, 0.7);
  background: rgba(241, 245, 249, 0.07);
}

/* Surfaces (glass + bordered) */
.surface {
  position: relative;
  border-radius: 18px;
}

.surface--bordered {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.surface--glass {
  background: linear-gradient(180deg, color-mix(in oklab, var(--bg-card) 92%, transparent), color-mix(in oklab, var(--bg-card-soft) 86%, transparent));
  border: 1px solid color-mix(in oklab, var(--border-soft) 75%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.surface--glow {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(129, 140, 248, 0.34);
  box-shadow: 0 22px 70px rgba(99, 102, 241, 0.28);
  backdrop-filter: blur(14px);
}

/* Hero */
.hero {
  padding: 5.2rem 0 4.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-content {
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-content .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  justify-content: center;
}

.hero--showcase {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bg-hero-grad);
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.9;
  transform: translateZ(0);
}

.bg-orb--one {
  width: min(520px, 54vw);
  height: min(520px, 54vw);
  left: -140px;
  top: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.55), rgba(79, 70, 229, 0.0) 62%);
}

.bg-orb--two {
  width: min(620px, 62vw);
  height: min(620px, 62vw);
  right: -220px;
  top: -240px;
  background: radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.45), rgba(79, 70, 229, 0.0) 66%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(60% 55% at 50% 15%, black 0%, transparent 70%);
}

.section--dark {
  color: var(--text-on-dark);
}

.section--dark .section-header p,
.section--dark p,
.section--dark li {
  color: var(--text-on-dark-muted);
}

.section--dark a {
  color: color-mix(in oklab, var(--accent-cyan) 75%, white);
}

/* Ensure button labels stay readable on dark sections */
.section--dark a.btn-primary,
.section--dark a.btn-pill {
  color: white;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(226, 232, 240, 0.16);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(241, 245, 249, 0.8);
  margin-bottom: 1.25rem;
}

.theme-dark .hero-pill {
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.6rem, 3.8vw + 1rem, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: rgba(248, 250, 252, 0.96);
}

.hero h1 .accent {
  display: block;
  background: linear-gradient(90deg, color-mix(in oklab, var(--accent) 75%, white), color-mix(in oklab, var(--accent-pink) 70%, white));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(241, 245, 249, 0.78);
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-footnote {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.66);
}

/* Hero media */
.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 0.7rem;
}

.hero-image {
  width: 100%;
  border-radius: 18px;
  height: 380px;
  object-fit: cover;
  background: radial-gradient(circle at 10% 10%, rgba(79, 70, 229, 0.5), rgba(2, 6, 23, 0.0) 45%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(2, 6, 23, 0.95));
  box-shadow: var(--shadow-hero);
}

.hero-image-caption {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.72);
  margin-bottom: 0.7rem;
}

/* Marquee (scroll surprise) */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid color-mix(in oklab, var(--border-soft) 70%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--border-soft) 70%, transparent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.55));
}

.theme-dark .marquee {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.55));
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 1.2rem;
  align-items: center;
  white-space: nowrap;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-pink));
  opacity: 0.9;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
}

/* Audience cards */
.audience {
  padding: 0 0 3rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.audience-grid--showcase {
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 1.75rem 1.8rem;
  box-shadow: var(--shadow-soft);
}

.card.surface {
  background: transparent;
  box-shadow: none;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.card-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--text-muted);
}

.card-list {
  margin: 1rem 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.card-list li + li {
  margin-top: 0.25rem;
}

.card-link {
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.card-link:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section--soft {
  background: radial-gradient(800px circle at 18% 10%, rgba(79, 70, 229, 0.10), transparent 55%),
    radial-gradient(700px circle at 88% 25%, rgba(34, 211, 238, 0.10), transparent 60%),
    var(--bg-soft);
}

.section--split {
  position: relative;
  background:
    radial-gradient(900px circle at 15% 20%, rgba(79, 70, 229, 0.10), transparent 55%),
    radial-gradient(900px circle at 85% 35%, rgba(236, 72, 153, 0.08), transparent 55%),
    var(--bg);
}

.section--angled {
  position: relative;
  overflow: clip;
}

.section--angled::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 70px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.18), rgba(79, 70, 229, 0.14), rgba(236, 72, 153, 0.16));
  clip-path: polygon(0 0, 100% 0, 100% 55%, 0 100%);
  opacity: 0.55;
}

/* Why consistency matters: dark section with coloured background + readable cards */
#value {
  background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 35%, #312e81 70%, #1e3a5f 100%);
  position: relative;
}

#value .section-header h2 {
  color: #f8fafc;
}

#value .section-header p {
  color: rgba(248, 250, 252, 0.85);
}

/* Cards: light background, dark text, accent border */
#value .info-block {
  background: #ffffff;
  color: #1e293b;
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  border-left: 4px solid var(--accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

#value .info-block h3 {
  color: #0f172a;
  margin-top: 0;
}

#value .info-block p {
  color: #475569;
  margin-bottom: 0;
}

/* Slight accent variation per card */
#value .grid-3 .info-block:nth-child(1) { border-left-color: #4f46e5; }
#value .grid-3 .info-block:nth-child(2) { border-left-color: #22d3ee; }
#value .grid-3 .info-block:nth-child(3) { border-left-color: #ec4899; }

.section--lift {
  background: var(--bg);
  position: relative;
}

.section--lift::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px circle at 20% 0%, rgba(79, 70, 229, 0.10), transparent 55%),
    radial-gradient(700px circle at 90% 25%, rgba(34, 211, 238, 0.08), transparent 55%);
  opacity: 0.85;
}

.section--pricing {
  background:
    radial-gradient(900px circle at 15% 10%, rgba(79, 70, 229, 0.26), transparent 58%),
    radial-gradient(900px circle at 85% 0%, rgba(236, 72, 153, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.98));
}

.section--dark .surface--glass,
.section--dark .surface--glow {
  color: var(--text-on-dark);
}

.section--dark .surface--glass p,
.section--dark .surface--glass li,
.section--dark .surface--glow p,
.section--dark .surface--glow li {
  color: var(--text-on-dark-muted);
}
.section-header {
  text-align: left;
  max-width: 40rem;
  margin-bottom: 2rem;
}
.section-header-wider{
  text-align: left;
  max-width: 60rem;
  margin-bottom: 2rem;
}
.section-header h1 {
    font-size: clamp(2.3rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--text-main);
}

.section-header .accent {
  display: block;
  color: var(--accent);
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* Simple grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Info & feature blocks */
.info-block,
.feature-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-alt .feature-card {
  background: var(--bg-card-soft);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.step.surface {
  background: transparent;
  box-shadow: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent) 55%, var(--accent-cyan)));
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.benefits-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonial {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}

.testimonial blockquote {
  margin: 0 0 0.6rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 1.8rem 1.9rem;
  box-shadow: var(--shadow-soft);
}

.pricing-card.surface {
  background: transparent;
  box-shadow: none;
}

.pricing-card--highlight {
  border: 1px solid rgba(79, 70, 229, 0.4);
}

.pricing-card h3 {
  margin-top: 0;
}

.price {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0.3rem 0;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.pricing-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

/* CTA / Sign-up form */
.cta-section {
  padding: 3.2rem 0 3.5rem;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #111827;
  color: #f9fafb;
  border-radius: 20px;
  padding: 1.9rem 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.theme-dark .cta-inner {
  background: #020617;
}

.cta-inner--premium {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(900px circle at 10% 10%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(850px circle at 90% 0%, rgba(236, 72, 153, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.90), rgba(2, 6, 23, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.cta-inner--premium::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.0), rgba(34, 211, 238, 0.22), rgba(236, 72, 153, 0.20), rgba(79, 70, 229, 0.16), rgba(34, 211, 238, 0.0));
  opacity: 0.65;
  filter: blur(18px);
  pointer-events: none;
}

.cta-inner h2 {
  margin: 0 0 0.25rem;
}

.cta-inner p {
  margin: 0;
  color: #e5e7eb;
}

.cta-button {
  flex-shrink: 0;
  color: white;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-form input[type="text"],
.cta-form input[type="email"] {
  min-width: 180px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
}

.cta-form input[type="text"]:focus,
.cta-form input[type="email"]:focus {
  outline: 2px solid rgba(34, 211, 238, 0.55);
  outline-offset: 2px;
}

/* Pricing ownership callout – readable + accent colour */
.ownership {
  margin-top: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #ddd6fe 0%, #bae6fd 100%);
  border: 1px solid rgba(79, 70, 229, 0.35);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(79, 70, 229, 0.22);
}

.ownership h3 {
  color: #1e1b4b;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.ownership .price {
  color: #1e1b4b;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

#pricing .ownership .price,
#pricing .ownership .price span {
  color: #1e1b4b;
}

.ownership .price-note {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.ownership-list {
  text-align: left;
  max-width: 420px;
  margin: 1rem auto;
  padding-left: 1.1rem;
  color: #334155;
}

/* Override section--dark so ownership text uses solid colours (no opacity) */
#pricing .ownership .price-note,
#pricing .ownership .ownership-list,
#pricing .ownership .ownership-list li {
  color: #334155;
}

#pricing .ownership .price-note {
  color: #64748b;
}

.ownership-intro {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e1b4b !important;
  margin-bottom: 0.5rem;
}

.ownership-desc {
  color: #334155;
  margin-bottom: 1rem;
}

.ownership-subhead {
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 0.25rem;
}

.ownership-footer {
  font-size: 0.9rem;
  color: #475569;
  margin-top: 1rem;
  margin-bottom: 0;
}

#pricing .ownership .ownership-desc,
#pricing .ownership .ownership-footer {
  color: #475569;
}

.ownership .btn-outline {
  border-color: rgba(79, 70, 229, 0.5);
  color: #4f46e5;
}

.ownership .btn-outline:hover {
  border-color: #4f46e5;
  background: rgba(79, 70, 229, 0.08);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-minimal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-minimal .footer-meta {
  margin-top: 0;
}

.footer-brand {
  max-width: 260px;
}

.footer-text {
  font-size: 0.9rem;
  color: #6b7280;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-links h4 {
  margin: 0 0 0.4rem;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--footer-text);
  text-decoration: none;
  margin-bottom: 0.2rem;
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-meta {
  grid-column: 1 / -1;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-legal {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.65;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
  margin: 0 0.2rem;
}

.footer-legal a:hover {
  opacity: 0.9;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 999px;
}

/* Accessibility helpers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .audience-grid,
  .grid-3,
  .steps-grid,
  .benefits-grid,
  .pricing-grid,
  .footer-grid,
  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    height: 260px;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .nav-actions {
    display: flex;
  }

  .site-header.nav-open .nav-container {
    height: auto;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.6rem;
    padding-bottom: 0.75rem;
  }

  .site-header.nav-open .main-nav {
    order: 3;
    flex-basis: 100%;
  }

  .site-header.nav-open .nav-toggle {
    margin-left: auto;
  }

  .site-header.nav-open .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header.nav-open .nav-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .cta-inner {
    padding: 1.6rem 1.5rem;
  }
}
/* Pricing hero tweaks */
.pricing-hero .section-header h1 {
  font-size: clamp(2.3rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--text-main);
}
.pricing-hero h1 .accent {
  display: block;
  color: var(--accent);
}



.pricing-hero .section-header {
  margin-bottom: 2.5rem;
}

/* Pricing table */
.pricing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.pricing-table thead {
  background: var(--bg-card-soft);
}

.pricing-table th,
.pricing-table td {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  vertical-align: top;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  font-weight: 600;
  width: 28%;
}

.plan-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plan-name {
  font-weight: 600;
}

.plan-price {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Active nav state for pricing */
.nav-link-active {
  color: var(--text-main);
  font-weight: 600;
}

/* Mobile tweaks for pricing page */
@media (max-width: 960px) {
  .pricing-table {
    min-width: 640px;
  }
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

/* Clean comparison table */
.pricing-table.clean {
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-table.clean th,
.pricing-table.clean td {
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.pricing-table.clean td {
  color: var(--text-muted);
}

.pricing-table.clean td:nth-child(2),
.pricing-table.clean td:nth-child(3),
.pricing-table.clean td:nth-child(4) {
  text-align: center;
}

/* Category row */
.pricing-table.clean tr.category td {
  background: #d5d8e6;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.7rem 1rem;
  color: var(--text-main);
  border-bottom: 2px solid rgba(148, 163, 184, 0.25);
}

/* Plan header */
.plan-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plan-header strong {
  color: var(--text-main);
  font-size: 1rem;
}

.plan-header span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

/* Ticks/crosses */
.pricing-table.clean td:contains("✔") {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 700;
}

.pricing-table.clean td:contains("✖") {
  font-size: 1.05rem;
  color: #c24141;
  font-weight: 700;
}