:root {
  --ink: #0D0F14;
  --ink-soft: #3A3D47;
  --ink-muted: #7A7E8B;
  --cream: #FAF8F4;
  --cream-warm: #F3EFE7;
  --gold: #C8963E;
  --gold-light: #E8B96A;
  --gold-pale: #FDF3E3;
  --teal: #1A6B6B;
  --teal-light: #2A9090;
  --teal-pale: #E8F5F5;
  --coral: #D45C3E;
  --coral-pale: #FCEEE9;
  --border: rgba(13,15,20,0.10);
  --shadow-sm: 0 2px 8px rgba(13,15,20,0.07);
  --shadow-md: 0 8px 32px rgba(13,15,20,0.10);
  --shadow-lg: 0 24px 64px rgba(13,15,20,0.13);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  height: 75px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 150px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.nav-logo-mark img {
  width: 90%;
  height: 90%;
  /* object-fit: cover;
  display: block; */
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-ghost {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--cream-warm); border-color: rgba(13,15,20,0.2); }

.btn-primary {
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: #1E2130; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-large {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: calc(68px + 80px) 5vw 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #E8B96A 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #2A9090 0%, transparent 70%);
  bottom: -50px; left: -100px;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #D45C3E 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
}

/* grid texture */
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 860px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--gold-pale);
  border: 1px solid rgba(200,150,62,0.25);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow span.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}
.hero-title .accent-line {
  position: relative; display: inline-block;
}
.hero-title .accent-line::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  transform: skewX(-8deg);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-trust {
  margin-top: 60px;
  display: flex; align-items: center; gap: 24px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.trust-icon {
  width: 20px; height: 20px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg {
  width: 11px;
  height: 11px;
  stroke-width: 2.2;
}
.trust-divider { width: 1px; height: 16px; background: var(--border); }

/* ── SECTION SHARED ── */
section { padding: 100px 5vw; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--teal);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.75;
}

/* ── LOGOS / SOCIAL PROOF ── */
.logos-band {
  background: var(--cream-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 5vw;
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.logos-track {
  display: flex; align-items: center; gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.logo-item {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-muted);
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.logo-item:hover { opacity: 1; }
.logo-item::before {
  content: '◆';
  font-size: 6px;
  color: var(--gold);
}
.logos-wrapper { overflow: hidden; }

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

/* ── PLATFORM OVERVIEW ── */
.platform-overview {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.platform-overview .section-label { color: var(--gold-light); }
.platform-overview .section-label::before { background: var(--gold-light); }
.platform-overview .section-title { color: #fff; }
.platform-overview .section-sub { color: rgba(255,255,255,0.6); }

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
}
.platform-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.platform-card:hover { background: rgba(255,255,255,0.07); }
.platform-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--ink);
}
.platform-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.platform-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.platform-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.platform-card-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(20px);
}

/* ── FEATURES FLOW ── */
.features-flow {
  background: var(--cream);
}
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-visual {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.feature-info {
  display: flex; flex-direction: column; justify-content: center;
  padding: 20px 0;
}
.feature-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}
.feature-badge svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
  flex-shrink: 0;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}
.feature-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-slider {
  width: 100%;
  --slide-height: 430px;
}
.wizard-slider { --slide-height: 520px; }
.slider-viewport {
  width: 100%;
}
.slider-track {
  position: relative;
  width: 100%;
  height: var(--slide-height);
}
.slide-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(13,15,20,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.slide-card.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1;
  display: block;
  object-fit: contain;
  background: rgba(255,255,255,0.72);
}
.slide-card figcaption {
  padding: 12px 14px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255,255,255,0.92);
}
.portrait-slide img {
  max-height: none;
}
.dark-slider .slide-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}
.dark-slider .slide-card img {
  background: rgba(255,255,255,0.04);
}
.dark-slider .slide-card figcaption {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(13,15,20,0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.slider-dot.active {
  background: var(--teal);
  transform: scale(1.2);
}
.dark-slider .slider-dot {
  background: rgba(255,255,255,0.28);
}
.dark-slider .slider-dot.active {
  background: var(--gold-light);
}

/* Mock UI Cards */
.mock-event-builder {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  width: 100%;
}
.mock-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.mock-tabs {
  display: flex; gap: 4px;
  background: var(--cream-warm);
  border-radius: 8px;
  padding: 4px;
}
.mock-tab {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-muted);
  cursor: default;
}
.mock-tab.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.mock-color-row {
  display: flex; gap: 8px; align-items: center; margin-bottom: 14px;
}
.mock-swatch {
  width: 28px; height: 28px;
  border-radius: 8px;
  cursor: pointer;
}
.mock-swatch.active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ink);
}
.mock-input {
  height: 32px;
  background: var(--cream-warm);
  border-radius: 6px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.mock-input::after {
  content: '';
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  width: 60%; height: 8px;
  background: rgba(13,15,20,0.12);
  border-radius: 4px;
}
.mock-mini-label {
  font-size: 0.68rem;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mock-font-row {
  display: flex; gap: 8px;
}
.mock-font-chip {
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--ink-soft);
  cursor: pointer;
  background: #fff;
}
.mock-font-chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ticket card */
.mock-ticket-row { display: flex; flex-direction: column; gap: 10px; }
.mock-ticket {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.mock-ticket-left { display: flex; align-items: center; gap: 10px; }
.mock-ticket-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-ticket-name { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.mock-ticket-type { font-size: 0.7rem; color: var(--ink-muted); }
.mock-ticket-price { font-size: 0.9rem; font-weight: 600; color: var(--ink); font-family: 'DM Mono', monospace; }

/* screen management mock */
.mock-screens {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-screens-toolbar {
  background: var(--ink);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.mock-screens-toolbar span {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mock-dot-row { display: flex; gap: 6px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-screen-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  padding: 16px;
}
.mock-screen-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.mock-screen-item .status {
  position: absolute;
  top: 6px; right: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
}
.mock-screen-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* badge mock */
.mock-badge-preview {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.mock-badge {
  width: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mock-badge-header {
  padding: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.mock-badge-event-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.mock-badge-body {
  background: #fff;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 6px;
  align-items: center;
}
.mock-badge-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  margin-bottom: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.mock-badge-name { font-size: 0.75rem; font-weight: 700; color: var(--ink); text-align: center; }
.mock-badge-role { font-size: 0.62rem; color: var(--ink-muted); text-align: center; }
.mock-qr {
  width: 36px; height: 36px;
  background: var(--ink);
  border-radius: 4px;
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 2px;
  padding: 4px;
}
.mock-qr-cell {
  background: #fff;
  border-radius: 1px;
}
.mock-qr-cell.dark { background: var(--ink); }

/* analytics mock */
.mock-analytics {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}
.mock-stat-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  margin-bottom: 20px;
}
.mock-stat {
  background: var(--cream-warm);
  border-radius: 10px;
  padding: 14px;
}
.mock-stat-value {
  font-family: 'DM Mono', monospace;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.mock-stat-label {
  font-size: 0.67rem;
  color: var(--ink-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mock-bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.mock-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--teal);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mock-bar:hover { opacity: 1; }
.mock-bar.accent { background: var(--gold); opacity: 1; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--cream-warm); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  background: var(--cream);
  padding: 40px 28px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.step-card:hover .step-num {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── FEATURES GRID ── */
.features-grid-section { background: var(--cream); }
.features-grid-section .section-title,
.features-grid-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.features-grid-section .section-label { margin-left: auto; margin-right: auto; }

.cards-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-card.tall { grid-row: span 2; }
.feat-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-card-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}
.feat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.feat-pill-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.feat-pill {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  background: var(--cream-warm);
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream-warm); }
.testimonials .section-label,
.testimonials .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 18px;
  color: var(--gold);
}
.testimonial-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: currentColor;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.testimonial-avatar-logo {
  background: #fff;
  padding: 5px;
  border: 1px solid rgba(13,15,20,0.08);
  box-shadow: var(--shadow-sm);
}
.testimonial-avatar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-role {
  font-size: 0.77rem;
  color: var(--ink-muted);
}

/* ── FAQ ── */
.faq-section { background: var(--cream); }
.faq-section .section-label,
.faq-section .section-title,
.faq-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.faq-list {
  max-width: 900px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 24px;
  box-shadow: var(--shadow-sm);
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 36px 24px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--teal-pale);
}
.faq-item p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 760px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink);
  padding: 100px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(200,150,62,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(42,144,144,0.15) 0%, transparent 70%);
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative; z-index: 1;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative; z-index: 1;
  line-height: 1.7;
}
.cta-actions {
  display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-gold {
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--gold);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,150,62,0.4); }
.btn-ghost-light {
  padding: 14px 32px;
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 5vw 40px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
  margin-top: 16px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-link-button {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
}
.footer-link-button:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-links .footer-link-button {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-links .footer-link-button:hover { color: rgba(255,255,255,0.8); }

/* ── MODALS ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13,15,20,0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-dialog {
  width: min(100%, 920px);
  max-height: calc(100vh - 48px);
  overflow: visible;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  position: relative;
}
.legal-dialog { width: min(100%, 680px); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
.modal-copy h3,
.legal-dialog h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}
.modal-copy p,
.legal-content p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.demo-form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.demo-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.demo-form span {
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--ink);
}
.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.demo-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%), linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.demo-form textarea {
  resize: vertical;
  min-height: 96px;
}
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: rgba(26,107,107,0.45);
  box-shadow: 0 0 0 4px rgba(26,107,107,0.08);
}
.modal-actions {
  display: flex;
  justify-content: flex-start;
}
.honeypot,
.submission-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  background: var(--ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 220;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── HAMBURGER / MOBILE ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: 0;
  background: transparent;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: 1fr; }
  .features-header { grid-template-columns: 1fr; gap: 20px; }
  .feature-block,
  .feature-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-visual { min-height: 260px; }
  .feature-slider { --slide-height: 380px; }
  .wizard-slider { --slide-height: 460px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .cards-masonry { grid-template-columns: repeat(2,1fr); }
  .feat-card.tall { grid-row: auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: auto;
    min-height: 68px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .nav-logo {
    order: 1;
  }
  .hamburger {
    display: flex;
    order: 2;
    margin-left: auto;
    align-self: center;
  }
  .nav-menu {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-top: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
  }
  nav.menu-open .nav-menu {
    display: flex;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nav-links a {
    font-size: 0.98rem;
    color: var(--ink);
  }
  .nav-cta {
    width: 100%;
  }
  .nav-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .cards-masonry { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  section { padding: 72px 5vw; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .mock-stat-row { grid-template-columns: repeat(3,1fr); }
  .mock-screen-grid { grid-template-columns: repeat(2,1fr); }
  .feature-visual { padding: 18px; }
  .feature-slider { --slide-height: 320px; }
  .wizard-slider { --slide-height: 420px; }
  .faq-item { padding: 0 18px; }
  .faq-item summary { font-size: 1rem; padding-right: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-dialog { padding: 24px; }
  .modal-backdrop {
    align-items: flex-start;
    overflow-y: auto;
    padding: 16px;
  }
  .modal-dialog {
    width: 100%;
    max-height: none;
    min-height: auto;
    margin: 0;
    border-radius: 20px;
  }
  .modal-copy h3,
  .legal-dialog h3 {
    font-size: 1.8rem;
  }
  .modal-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .hero { padding: calc(68px + 48px) 5vw 60px; }
  .nav-menu {
    padding: 16px;
    gap: 16px;
  }
  .mock-stat-row { grid-template-columns: 1fr 1fr; }
  .modal-backdrop {
    padding: 12px;
  }
  .modal-dialog {
    padding: 20px 18px;
    border-radius: 18px;
  }
  .modal-copy h3,
  .legal-dialog h3 {
    font-size: 1.45rem;
    max-width: 86%;
  }
  .modal-copy p,
  .legal-content p {
    font-size: 0.92rem;
  }
  .slide-card figcaption {
    font-size: 0.74rem;
  }
  .demo-form {
    gap: 12px;
  }
  .demo-form input,
  .demo-form select,
  .demo-form textarea {
    padding: 11px 13px;
  }
  .demo-form textarea {
    min-height: 88px;
  }
  .feature-slider { --slide-height: 250px; }
  .wizard-slider { --slide-height: 360px; }
  .modal-actions .btn-large {
    width: 100%;
    justify-content: center;
  }
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 0.6s 0.8s ease both;
  z-index: 1;
}
.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* colored icons */
.ic-gold { background: var(--gold-pale); }
.ic-teal { background: var(--teal-pale); }
.ic-coral { background: var(--coral-pale); }
.ic-ink { background: var(--cream-warm); }
