/* ============================================================
   Thynk Venues — Design System v3.0
   Brand: Hero Purple #57147E · Archivo Narrow + DM Sans
   Aesthetic: Nordic minimal · Premium restraint · No gradients
   ============================================================ */

:root {
  /* Primary brand */
  --hero-purple: #57147E;
  --accent-purple: #8C52FF;
  --accent-pink: #FF4DB8;
  --gray-purple: #DCCBFF;

  /* Neutrals */
  --deep-text: #1A0A2E;
  --muted-purple: #6B5B8A;
  --off-white: #F4F2F8;
  --white: #FFFFFF;

  /* Subtle */
  --divider: #E8E4F0;
  --soft-bg: #FAF8FC;

  /* KPI pills */
  --pill-purple-bg: #DCCBFF;  --pill-purple-text: #57147E;
  --pill-violet-bg: #EDE5FF;  --pill-violet-text: #8C52FF;
  --pill-pink-bg: #FFE5F6;    --pill-pink-text: #C93A95;

  /* Type scale */
  --font-display: 'Archivo Narrow', Arial, sans-serif;
  --font-body: 'DM Sans', Arial, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-pad: 32px;
  --section-y: 96px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ============================================================
   Reset & base
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--deep-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--hero-purple);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
h1 { font-size: clamp(48px, 7vw, 88px); letter-spacing: -0.025em; }
h2 { font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.02em; }
h3 { font-size: clamp(24px, 2.6vw, 32px); }
h4 { font-size: 20px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 24px;
  display: inline-block;
}

.body-lg { font-size: 19px; line-height: 1.55; color: var(--deep-text); }
.body-md { font-size: 16px; line-height: 1.6; color: var(--deep-text); }
.body-sm { font-size: 14px; line-height: 1.5; color: var(--muted-purple); }
.muted { color: var(--muted-purple); }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section { padding: var(--section-y) 0; }
.section-tight { padding: 64px 0; }
.section-purple { background: var(--hero-purple); color: var(--white); }
.section-purple h2, .section-purple h3 { color: var(--white); }
.section-off { background: var(--off-white); }
.section-soft { background: var(--soft-bg); }

.divider-rule {
  height: 1px;
  background: var(--divider);
  width: 100%;
}

/* ============================================================
   Top navigation
   ============================================================ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}
.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.topnav-logo svg { height: 30px; width: auto; }
.topnav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.topnav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-text);
  position: relative;
  padding: 8px 0;
  transition: color 0.18s ease;
}
.topnav-link:hover { color: var(--hero-purple); }
.topnav-link.active { color: var(--hero-purple); }
.topnav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-pink);
}
.topnav-cta {
  background: var(--hero-purple);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
  letter-spacing: 0.01em;
}
.topnav-cta:hover { background: var(--deep-text); color: var(--white); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--hero-purple);
  color: var(--white);
}
.btn-primary:hover { background: var(--deep-text); }
.btn-secondary {
  background: transparent;
  color: var(--hero-purple);
  border: 1px solid var(--hero-purple);
}
.btn-secondary:hover { background: var(--hero-purple); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--hero-purple);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hero-purple);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.btn-link:hover { border-bottom-color: var(--hero-purple); }
.btn-arrow { transition: transform 0.18s ease; }
.btn-link:hover .btn-arrow { transform: translateX(3px); }

/* ============================================================
   Persistent trust strip
   ============================================================ */
.trust-strip {
  background: var(--hero-purple);
  color: var(--white);
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.trust-strip .sep { opacity: 0.4; margin: 0 14px; }
.trust-strip .bold { font-weight: 600; }

/* ============================================================
   Logo bar
   ============================================================ */
.logo-bar {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.logo-bar-inner {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.logo-bar-item {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--muted-purple);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.7;
}
.logo-bar-caption {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted-purple);
}
@media (max-width: 1024px) {
  .logo-bar-inner { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .logo-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ============================================================
   Quote band (Altman opening on pillar page)
   ============================================================ */
.quote-band {
  background: var(--soft-bg);
  padding: 96px 0 88px;
  text-align: center;
  border-bottom: 1px solid var(--divider);
}
.quote-band .eyebrow { color: var(--accent-purple); }
.quote-band-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--hero-purple);
  max-width: 920px;
  margin: 16px auto 12px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  position: relative;
  padding: 8px 0;
}
.quote-band-quote::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 40px;
  height: 3px;
  background: var(--accent-pink);
  transform: translateX(-50%);
}
.quote-band-attr {
  font-size: 14px;
  color: var(--muted-purple);
  margin-top: 32px;
  font-style: normal;
}
.quote-band-body {
  max-width: 720px;
  margin: 32px auto 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--deep-text);
}

/* ============================================================
   Pillar hero
   ============================================================ */
.hero {
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero-content { max-width: 640px; }
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 .line {
  display: block;
}
.hero h1 .accent-line {
  color: var(--accent-purple);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--deep-text);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-tertiary {
  font-size: 14px;
  color: var(--muted-purple);
}
.hero-tertiary a {
  color: var(--hero-purple);
  border-bottom: 1px solid var(--gray-purple);
  padding-bottom: 1px;
}
.hero-tertiary a:hover { border-bottom-color: var(--hero-purple); }

/* Auto-rotating product mockup */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--divider);
}
.hero-mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-mockup.active { opacity: 1; }
.hero-mockup-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--hero-purple);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-mockup-pagination {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
}
.hero-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s ease;
}
.hero-mockup-dot.active { background: var(--accent-pink); }

/* ============================================================
   Stat band — three big stats
   ============================================================ */
.stat-band {
  padding: 96px 0 96px;
  background: var(--white);
}
.stat-band-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
@media (max-width: 768px) {
  .stat-band-grid { grid-template-columns: 1fr; }
}
.stat-cell {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid var(--divider);
}
.stat-cell:last-child { border-right: none; }
@media (max-width: 768px) {
  .stat-cell { border-right: none; border-bottom: 1px solid var(--divider); }
  .stat-cell:last-child { border-bottom: none; }
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 88px);
  color: var(--hero-purple);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 15px;
  color: var(--deep-text);
  line-height: 1.45;
  max-width: 280px;
  margin: 0 auto;
}
.stat-source {
  display: block;
  font-size: 11px;
  color: var(--muted-purple);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.stat-body {
  max-width: 760px;
  margin: 64px auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: var(--deep-text);
}

/* ============================================================
   Section header (used across sections)
   ============================================================ */
.section-head {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 20px; }
.section-head-sub {
  font-size: 18px;
  color: var(--muted-purple);
  line-height: 1.55;
}

/* ============================================================
   Four-pillar block — what Thynk delivers
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
@media (max-width: 768px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
.pillar-cell {
  padding: 48px;
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  position: relative;
}
.pillar-cell:nth-child(2n) { border-right: none; }
.pillar-cell:nth-child(n+3) { border-bottom: none; }
@media (max-width: 768px) {
  .pillar-cell { border-right: none; }
  .pillar-cell:last-child { border-bottom: none; }
}
.pillar-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-pink);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.pillar-cell h3 {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.pillar-cell p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--deep-text);
}

.kpi-strip {
  text-align: center;
  padding: 48px 0 0;
  font-size: 14px;
  color: var(--muted-purple);
}
.kpi-strip strong {
  color: var(--hero-purple);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 14px;
}

/* ============================================================
   Module card grid (10 modules)
   ============================================================ */
.module-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .module-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .module-grid { grid-template-columns: 1fr; }
}
.module-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  transition: background 0.2s ease;
  cursor: pointer;
}
.module-cell:hover { background: var(--soft-bg); }
.module-cell:nth-child(5n) { border-right: none; }
.module-cell:nth-child(n+6) { border-bottom: none; }
@media (max-width: 1024px) {
  .module-cell { border-right: none !important; border-bottom: 1px solid var(--divider) !important; }
  .module-cell:nth-child(2n) { border-right: none; }
}
.module-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--hero-purple);
}
.module-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--hero-purple);
  margin-bottom: 6px;
  line-height: 1.2;
}
.module-line {
  font-size: 13px;
  color: var(--muted-purple);
  line-height: 1.4;
}

/* ============================================================
   Card grid (persona, solutions, generic)
   ============================================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cards-3, .cards-4 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border: 1px solid var(--divider);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: var(--hero-purple);
  transform: translateY(-2px);
}
.card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-pink);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.card p {
  font-size: 15px;
  color: var(--deep-text);
  line-height: 1.55;
  margin-bottom: 18px;
}
.card-outcome {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: var(--muted-purple);
  margin-bottom: 18px;
}

/* ============================================================
   Stat-led customer reference grid (Mews-format)
   ============================================================ */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .refs-grid { grid-template-columns: 1fr; }
}
.ref-card {
  background: var(--off-white);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ref-card:hover {
  border-color: var(--hero-purple);
  background: var(--white);
}
.ref-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--hero-purple);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.ref-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-purple);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   Three-step strip (Ready for impact, What going live looks like)
   ============================================================ */
.steps-strip {
  background: var(--hero-purple);
  color: var(--white);
  padding: 80px 48px;
  border-radius: var(--radius-lg);
}
.steps-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 768px) {
  .steps-strip-grid { grid-template-columns: 1fr; gap: 36px; }
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 60px;
  color: var(--accent-pink);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}
.step-body {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.steps-strip-cta {
  margin-top: 56px;
  text-align: center;
}

/* ============================================================
   Sivulka 7-pillar layout (rows)
   ============================================================ */
.sivulka-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--divider);
  align-items: start;
}
@media (max-width: 768px) {
  .sivulka-row { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
}
.sivulka-row:last-child { border-bottom: none; }
.sivulka-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: var(--accent-purple);
  letter-spacing: -0.02em;
  line-height: 1;
}
.sivulka-num-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-purple);
  margin-top: 4px;
}
.sivulka-individual h4 {
  color: var(--muted-purple);
  margin-bottom: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sivulka-individual p {
  color: var(--muted-purple);
  font-size: 15px;
  line-height: 1.55;
}
.sivulka-institutional h4 {
  color: var(--hero-purple);
  margin-bottom: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sivulka-institutional p {
  color: var(--deep-text);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.sivulka-capability {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: var(--accent-purple);
  border-left: 2px solid var(--accent-pink);
  padding-left: 12px;
  line-height: 1.45;
}

/* ============================================================
   Comparison page — 30-row table
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-table thead th {
  background: var(--hero-purple);
  color: var(--white);
  text-align: left;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.compare-table thead th:first-child { width: 38%; }
.compare-table tbody td {
  padding: 14px 24px;
  border-top: 1px solid var(--divider);
  font-size: 14px;
  color: var(--deep-text);
  vertical-align: top;
  line-height: 1.4;
}
.compare-table tbody tr:nth-child(even) { background: var(--soft-bg); }
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--hero-purple);
}
.compare-table tbody td.thynk-cell { color: var(--hero-purple); font-weight: 500; }
.compare-table tbody td.weak-cell { color: var(--muted-purple); }

/* ============================================================
   Comparison page Sivulka pillar table
   ============================================================ */
.sivulka-compare {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sivulka-compare-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  border-top: 1px solid var(--divider);
}
.sivulka-compare-row:first-child {
  border-top: none;
  background: var(--hero-purple);
  color: var(--white);
}
.sivulka-compare-row:first-child > div {
  padding: 16px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.sivulka-compare-row > div {
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.45;
}
.sivulka-compare-row > div:first-child {
  font-weight: 600;
  color: var(--hero-purple);
  background: var(--soft-bg);
}
.sivulka-compare-row:first-child > div:first-child { background: var(--hero-purple); color: var(--white); }
.sivulka-compare-row > div:nth-child(2) {
  color: var(--muted-purple);
  border-left: 1px solid var(--divider);
}
.sivulka-compare-row > div:nth-child(3) {
  color: var(--deep-text);
  font-weight: 500;
  border-left: 1px solid var(--divider);
}

/* ============================================================
   FAQ accordion (Mews-format)
   ============================================================ */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--hero-purple);
  cursor: pointer;
}
.faq-toggle {
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-purple);
  transition: transform 0.2s ease;
  font-family: var(--font-body);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 16px;
  line-height: 1.65;
  color: var(--deep-text);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 28px;
}

/* ============================================================
   Final CTA section
   ============================================================ */
.final-cta {
  text-align: center;
  padding: 120px 0 140px;
  background: var(--soft-bg);
}
.final-cta h2 { margin-bottom: 24px; }
.final-cta-sub {
  font-size: 18px;
  color: var(--deep-text);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--deep-text);
  color: var(--white);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 36px;
  margin-bottom: 64px;
}
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); }
  .footer-grid > .footer-col:last-child { grid-column: span 2; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > .footer-col:last-child { grid-column: span 1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 20px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin-bottom: 24px;
}
.footer-col h5 {
  color: var(--accent-pink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.18s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   Manifesto page
   ============================================================ */
.manifesto {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 32px;
}
.manifesto h1 {
  font-size: clamp(56px, 8vw, 96px);
  margin-bottom: 64px;
  line-height: 1;
}
.manifesto p {
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 28px;
  color: var(--deep-text);
}
.manifesto .divider {
  display: block;
  text-align: center;
  margin: 56px 0;
  color: var(--accent-pink);
  font-size: 22px;
  font-weight: 700;
}
.manifesto-pull {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  color: var(--hero-purple);
  border-left: 4px solid var(--accent-pink);
  padding: 8px 0 8px 32px;
  margin: 56px 0;
  line-height: 1.2;
}
.manifesto-pull-attr {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-purple);
  margin-top: 12px;
  font-family: var(--font-body);
}

/* ============================================================
   Module page — generic
   ============================================================ */
.module-hero {
  padding: 96px 0 80px;
  background: var(--soft-bg);
  border-bottom: 1px solid var(--divider);
}
.module-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .module-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.module-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  margin-bottom: 24px;
  line-height: 1.05;
}
.module-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--deep-text);
  margin-bottom: 32px;
  max-width: 520px;
}
.module-visual {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-purple);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.what-replaces {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .what-replaces { grid-template-columns: 1fr 1fr; }
}
.what-replaces-item {
  padding: 24px 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  text-align: center;
  color: var(--deep-text);
  border: 1px solid var(--divider);
  text-decoration: line-through;
  text-decoration-color: var(--accent-pink);
  text-decoration-thickness: 1.5px;
  line-height: 1.4;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.fade-up.d1 { animation-delay: 0.08s; }
.fade-up.d2 { animation-delay: 0.16s; }
.fade-up.d3 { animation-delay: 0.24s; }
.fade-up.d4 { animation-delay: 0.32s; }

/* ============================================================
   Awards row
   ============================================================ */
.awards-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 48px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
@media (max-width: 768px) {
  .awards-row { grid-template-columns: repeat(3, 1fr); }
}
.award-badge {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--hero-purple);
  border-radius: var(--radius-sm);
}
.award-badge-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--hero-purple);
  letter-spacing: 0.04em;
}
.award-badge-name {
  font-size: 11px;
  color: var(--muted-purple);
  margin-top: 4px;
  line-height: 1.3;
}

/* ============================================================
   Generic responsive helpers
   ============================================================ */
.center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 64px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 64px; }

/* ============================================================
   Audience toggle — "For Hotels / For Venues"
   Lives inside the top nav between logo and primary nav links
   ============================================================ */
.audience-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--soft-bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius-pill, 40px);
  padding: 3px;
  margin-left: 28px;
  height: 36px;
  flex-shrink: 0;
}
.audience-toggle a {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted-purple);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.audience-toggle a:hover {
  color: var(--hero-purple);
}
.audience-toggle a.active {
  background: var(--hero-purple);
  color: var(--white);
}
.audience-toggle a.active:hover {
  color: var(--white);
}
@media (max-width: 1100px) {
  .audience-toggle { display: none; }
  .audience-toggle.mobile-visible { display: inline-flex; }
}

/* ============================================================
   Homepage audience-segmentation band
   "What do you operate?" row above the Altman quote
   ============================================================ */
.audience-band {
  background: var(--white);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--divider);
}
.audience-band-head {
  text-align: center;
  margin-bottom: 32px;
}
.audience-band-head .eyebrow {
  color: var(--accent-purple);
  margin-bottom: 12px;
}
.audience-band-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  margin: 0;
}
.audience-band-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .audience-band-grid { grid-template-columns: 1fr; }
}
.audience-card {
  display: block;
  padding: 36px 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  position: relative;
}
.audience-card:hover {
  border-color: var(--hero-purple);
  background: var(--soft-bg);
  transform: translateY(-2px);
}
.audience-card-active {
  border-color: var(--hero-purple);
  background: var(--soft-bg);
}
.audience-card-active::before {
  content: 'YOU ARE HERE';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-pink);
}
.audience-card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-purple);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.audience-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.audience-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--deep-text);
  margin-bottom: 18px;
}
.audience-card .btn-link {
  font-size: 14px;
}

/* ============================================================
   Hotel-link strip in footer
   ============================================================ */
.cross-audience-strip {
  background: var(--soft-bg);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 32px 0;
  text-align: center;
}
.cross-audience-strip-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.cross-audience-strip p {
  font-size: 15px;
  color: var(--muted-purple);
  margin: 0;
}
.cross-audience-strip a {
  color: var(--hero-purple);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-purple);
  padding-bottom: 1px;
  transition: border-color 0.18s ease;
}
.cross-audience-strip a:hover {
  border-bottom-color: var(--hero-purple);
}

/* ============================================================
   Top-nav dropdowns — Platform + Solutions/Venues
   ============================================================ */

.has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.has-dropdown > .topnav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.has-dropdown > .topnav-link::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  position: relative;
  top: -2px;
  opacity: 0.5;
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
}
.has-dropdown:hover > .topnav-link::after {
  transform: rotate(-135deg);
  top: 2px;
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(87, 20, 126, 0.08);
  padding: 28px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
}

.dropdown-menu.dropdown-platform {
  min-width: 320px;
}
.dropdown-menu.dropdown-solutions {
  min-width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.dropdown-section-head {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-purple);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.dropdown-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-items li {
  margin: 0;
  padding: 0;
}
.dropdown-items a {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s ease;
}
.dropdown-items a:hover {
  background: var(--soft-bg);
}
.dropdown-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--hero-purple);
}
.dropdown-item-blurb {
  font-size: 12px;
  color: var(--muted-purple);
  margin-top: 2px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .dropdown-menu { display: none !important; }
  .has-dropdown > .topnav-link::after { display: none; }
  .has-dropdown::after { display: none; }
}

/* ============================================================
   Mobile nav (≤768px): collapse to logo + audience toggle + CTA
   Quick demo-quality fix — proper hamburger drawer happens in
   the production HubSpot rebuild.
   ============================================================ */
@media (max-width: 768px) {
  /* Hide the full nav-links list entirely */
  .topnav-links { display: none !important; }

  /* Tighten the container so the three remaining elements fit */
  .topnav-inner {
    height: 64px;
    padding: 0 16px;
    gap: 12px;
  }

  /* Logo stays visible but slightly smaller */
  .topnav-logo img { width: 84px; height: auto; }

  /* Keep the audience toggle visible on mobile (override the 1100px hide) */
  .audience-toggle {
    display: inline-flex !important;
    margin-left: 0;
    height: 32px;
    padding: 2px;
  }
  .audience-toggle a {
    height: 26px;
    padding: 0 10px;
    font-size: 11px;
  }

  /* CTA button: smaller, tighter */
  .topnav-cta {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
}

/* Extra-narrow phones (≤360px): drop the "For Hotels" label,
   show only Venues as the active indicator */
@media (max-width: 360px) {
  .audience-toggle a:first-child { display: none; }
  .audience-toggle a.active { padding: 0 12px; }
}

/* ============================================================
   Batch 6 — visual refinement against thynk.cloud + mews.com
   Six coordinated changes per Section 4.1 of the reference doc.
   These override earlier rules deliberately — do not edit, override.
   ============================================================ */

/* ---- 1 of 6 · Body weight bump (400 → 500) ---- */
body {
  font-weight: 500;
}

/* ---- 2 of 6 · Primary CTAs as Accent Pink 50px pills ---- */
/* Match thynk.cloud's actual CTA treatment: fully rounded pink pills,
   DM Sans Regular at 18px, generous padding. */
.btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.btn-primary {
  background: var(--accent-pink);
  color: var(--white);
}
.btn-primary:hover {
  background: #E63DA6; /* slightly deeper pink on hover */
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--hero-purple);
  border: 1.5px solid var(--hero-purple);
}
.btn-secondary:hover {
  background: var(--hero-purple);
  color: var(--white);
}
/* Light variant (used inside section-purple blocks) - keep visible on dark bg */
.btn-light {
  background: var(--white);
  color: var(--hero-purple);
  border-radius: 50px;
  padding: 14px 28px;
}
.btn-light:hover {
  background: var(--accent-pink);
  color: var(--white);
}

/* Top-nav CTA: same pink pill treatment */
.topnav-cta {
  background: var(--accent-pink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.topnav-cta:hover {
  background: #E63DA6;
  color: var(--white);
}

/* ---- 3 of 6 · Sticky floating nav capsule ---- */
/* thynk.cloud wraps the entire nav inside a floating pill capsule with a
   subtle shadow. We replicate the effect by changing .topnav from a
   full-width sticky bar into a centred capsule with side margin. */
.topnav {
  position: sticky;
  top: 16px;                                   /* small offset from page edge */
  z-index: 100;
  background: transparent;                     /* let the inner capsule carry colour */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;                         /* remove the previous flat-bar divider */
  padding: 0 24px;                             /* edge-to-capsule margin */
  pointer-events: none;                        /* outer is transparent; inner handles input */
}
.topnav-inner {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  border: 1px solid var(--divider);
  box-shadow: 0 6px 24px rgba(87, 20, 126, 0.08);
  padding: 0 24px;                             /* internal padding */
  height: 64px;
  pointer-events: auto;                        /* re-enable input on the capsule */
}

/* Dropdown menus need to clear the new capsule + offset */
.dropdown-menu {
  top: calc(100% + 18px);
}

/* ---- 4 of 6 · Section padding bump (96 → 112px default, 128 for editorial) ---- */
:root {
  --section-y: 112px;
}
.section-editorial {                            /* new larger-rhythm modifier */
  padding: 128px 0;
}

/* ---- 5 of 6 · Venue-tile grid (homepage component) ---- */
/* 5-card grid of venue types, sits below the hero. Mirrors Mews's audience-tile
   pattern, populated with the venue-category taxonomy already in the nav. */
.venue-tiles {
  background: var(--white);
  padding: 96px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.venue-tiles-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.venue-tiles-head .eyebrow {
  color: var(--accent-purple);
  margin-bottom: 12px;
}
.venue-tiles-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  margin: 0;
}
.venue-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
@media (max-width: 900px) {
  .venue-tiles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .venue-tiles-grid { grid-template-columns: 1fr; gap: 12px; }
}
.venue-tile {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  background: var(--soft-bg);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease, transform 0.18s ease;
  min-height: 220px;
}
.venue-tile:hover {
  background: var(--gray-purple);
  transform: translateY(-2px);
}
.venue-tile-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-purple);
}
.venue-tile-icon svg { width: 100%; height: 100%; }
.venue-tile h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--hero-purple);
  margin-bottom: 8px;
  line-height: 1.15;
}
.venue-tile p {
  font-size: 13px;
  color: var(--muted-purple);
  line-height: 1.4;
  margin-bottom: 16px;
  flex: 1;
}
.venue-tile-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--hero-purple);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

/* ---- 6 of 6 · Full-bleed testimonial band ---- */
/* Mews's editorial gravitas pattern: one oversized customer quote on
   full-bleed Hero Purple, Accent Pink quote marks, centred. */
.testimonial-band {
  background: var(--hero-purple);
  color: var(--white);
  padding: 128px 0;
  text-align: center;
}
.testimonial-band-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}
.testimonial-band-mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.4;
  color: var(--accent-pink);
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
}
.testimonial-band blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}
.testimonial-band-cite {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}
.testimonial-band-cite strong {
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

/* Mobile rules — re-tighten nav capsule + venue-tiles ---- */
@media (max-width: 768px) {
  .topnav {
    top: 0;
    padding: 0;
  }
  .topnav-inner {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--divider);
    box-shadow: none;
    padding: 0 16px;
  }
  .venue-tiles { padding: 72px 0; }
  .testimonial-band { padding: 88px 0; }
}

/* ============================================================
   Batch 7 — Mews-pattern 50/50 hero
   Convert the existing centred-content + side-mockup hero into
   a true two-card 50/50 split: Hero Purple dark left card with
   white type, soft-bg right card with the product mockup overlaid.
   ============================================================ */

.hero.hero-split {
  padding: 32px 0 96px;                     /* tighter top so cards push to top of page */
  background: transparent;
  overflow: visible;
}

.hero.hero-split .container {
  padding: 0 24px;                           /* match the capsule nav edge margin */
  max-width: 1340px;                          /* slightly wider than default container */
}

.hero.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;             /* TRUE 50/50 */
  gap: 16px;                                  /* small gap between cards, Mews-style */
  align-items: stretch;                       /* both cards equal height */
}

@media (max-width: 1024px) {
  .hero.hero-split .hero-grid {
    grid-template-columns: 1fr;               /* single-column stack */
    gap: 16px;
  }
}

/* ---- LEFT CARD: Hero Purple with white type ---- */
.hero.hero-split .hero-content {
  background: var(--hero-purple);
  color: var(--white);
  border-radius: 24px;
  padding: 64px 56px;
  max-width: none;                            /* override default 640px */
  position: relative;
  overflow: hidden;
  min-height: 580px;                          /* anchor card height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Subtle inner decoration: small Accent Pink dot in the top-right.
   No gradients — brand discipline. A single dot in the corner anchors
   the card visually without breaking the Nordic-minimal rule. */
.hero.hero-split .hero-content::after {
  content: '';
  position: absolute;
  top: 32px;
  right: 32px;
  width: 10px;
  height: 10px;
  background: var(--accent-pink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 77, 184, 0.25);
  pointer-events: none;
  z-index: 0;
}

.hero.hero-split .hero-content > * {
  position: relative;
  z-index: 1;                                 /* keep content above the glow */
}

.hero.hero-split .eyebrow {
  color: var(--gray-purple);                  /* light purple eyebrow on dark bg */
  margin-bottom: 24px;
}

.hero.hero-split h1 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero.hero-split h1 .line {
  display: block;
}

.hero.hero-split h1 .accent-line {
  color: var(--accent-pink);                  /* pink accent line picks up CTA colour */
}

.hero.hero-split .hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero.hero-split .hero-ctas {
  margin-bottom: 24px;
}

/* CTA overrides inside the dark card */
.hero.hero-split .btn-primary {
  background: var(--accent-pink);
  color: var(--white);
}
.hero.hero-split .btn-primary:hover {
  background: var(--white);
  color: var(--hero-purple);
}
.hero.hero-split .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.hero.hero-split .btn-secondary:hover {
  background: var(--white);
  color: var(--hero-purple);
  border-color: var(--white);
}

.hero.hero-split .hero-tertiary {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.hero.hero-split .hero-tertiary a {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.hero.hero-split .hero-tertiary a:hover {
  border-bottom-color: var(--accent-pink);
  color: var(--accent-pink);
}

/* ---- RIGHT CARD: Off-white with product mockup ---- */
.hero.hero-split .hero-visual {
  background: var(--off-white);
  border-radius: 24px;
  border: none;
  aspect-ratio: auto;                         /* override the earlier 5:4 */
  min-height: 580px;                          /* match left card */
  position: relative;
  overflow: hidden;
}

/* Module-name badge top-right of the right card */
.hero.hero-split .hero-visual::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 32px;
  width: 10px;
  height: 10px;
  background: var(--accent-pink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 77, 184, 0.2);
  z-index: 2;
}

.hero.hero-split .hero-mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 56px 88px;                    /* room for the label at bottom */
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero.hero-split .hero-mockup.active {
  opacity: 1;
}

.hero.hero-split .hero-mockup object {
  max-width: 100%;
  max-height: 100%;
}

.hero.hero-split .hero-mockup-label {
  background: var(--hero-purple);             /* Hero Purple pill, white text */
  color: var(--white);
  bottom: 32px;
  left: 32px;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hero.hero-split .hero-mockup-pagination {
  bottom: 32px;
  right: 32px;
}

.hero.hero-split .hero-mockup-dot {
  background: rgba(87, 20, 126, 0.2);
}
.hero.hero-split .hero-mockup-dot.active {
  background: var(--accent-pink);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero.hero-split {
    padding: 24px 0 64px;
  }
  .hero.hero-split .container {
    padding: 0 16px;
  }
  .hero.hero-split .hero-content {
    padding: 48px 32px;
    min-height: auto;
    border-radius: 20px;
  }
  .hero.hero-split h1 {
    font-size: clamp(32px, 7vw, 44px);
  }
  .hero.hero-split .hero-visual {
    min-height: 400px;
    border-radius: 20px;
  }
  .hero.hero-split .hero-mockup {
    padding: 40px 24px 72px;
  }
  .hero.hero-split .hero-ctas .btn { width: 100%; justify-content: center; }
}
