*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: #222a32;
  background: #f8fafb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== FULLSCREEN INFO OVERLAY ===== */
[data-pw-screen="info"].pw-fs,
.pw-fs {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%) !important;
  color: #fff !important;
  font-family: "Outfit", sans-serif !important;
  text-align: center !important;
  padding: 2rem !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  clip: auto !important;
  clip-path: none !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  transform: none !important;
  max-height: none !important;
  min-height: 100vh !important;
}
.pw-fs-icon {
  font-size: 3rem !important;
  margin-bottom: 1rem !important;
}
.pw-fs-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.75rem !important;
  color: #fff !important;
}
.pw-fs-msg {
  font-size: 1.1rem !important;
  color: rgba(255,255,255,0.8) !important;
  max-width: 480px !important;
  line-height: 1.6 !important;
  margin: 0 0 1.5rem !important;
}

/* ===== VARIABLES ===== */
:root {
  --brand-50: #eef2ff;
  --brand-100: #e0e7ff;
  --brand-200: #c7d2fe;
  --brand-400: #818cf8;
  --brand-500: #6366f1;
  --brand-600: #4f46e5;
  --brand-700: #4338ca;
  --brand-800: #312e81;
  --brand-900: #1e1b4b;
  --accent: #f0b100;
  --accent-dark: #d08700;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,250,251,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.nav.scrolled {
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand-800);
}
.nav-logo svg {
  width: 40px;
  height: 40px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--brand-700);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff !important;
  background: var(--brand-700);
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--brand-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(21, 84, 54, 0.3);
}

/* Language Switcher */
.lang-switch {
  position: relative;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.7rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  background: none;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-current:hover {
  border-color: var(--brand-200);
  color: var(--brand-700);
}
.lang-current svg {
  transition: transform 0.2s;
}
.lang-switch.open .lang-current svg {
  transform: rotate(180deg);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 200;
  min-width: 140px;
}
.lang-switch.open .lang-dropdown {
  display: flex;
  flex-direction: column;
}
.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.6rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.lang-dropdown button:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle svg {
  width: 28px;
  height: 28px;
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248,250,251,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
  }
}

/* ===== HERO ===== */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(21,84,54,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(232,148,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  border-radius: 999px;
  margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-gradient {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust pills under hero CTA */
.hero-trust {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  box-shadow: 0 4px 14px rgba(21, 84, 54, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 84, 54, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-secondary {
  color: var(--gray-700);
  background: #ffffff;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
  transform: translateY(-1px);
}
.btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
}
.hero-carousel {
  position: relative;
}
.hero-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 20px 50px rgba(0,0,0,0.12),
    0 8px 20px rgba(0,0,0,0.06);
  scrollbar-width: none;
}
.hero-track::-webkit-scrollbar { display: none; }
.hero-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.hero-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--brand-400);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-dot:hover {
  border-color: var(--brand-500);
  transform: scale(1.2);
}
.hero-dot.active {
  background: var(--brand-500);
  border-color: var(--brand-500);
}
.highlight-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 12px 32px rgba(0,0,0,0.10);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: left;
  margin-bottom: 4rem;
}
.section-header--center {
  text-align: center;
}
.section-header--center p {
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-600);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FEATURES GRID ===== */
.features {
  padding: 6rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card:first-child {
  grid-column: span 2;
}
.feature-card:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.25rem;
}
.feature-card:last-child .feature-icon {
  grid-row: 1 / -1;
  align-self: start;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:first-child { grid-column: span 2; }
  .feature-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card:first-child,
  .feature-card:last-child { grid-column: auto; display: block; }
}
.feature-card {
  padding: 2rem;
  background: linear-gradient(168deg, #ffffff 0%, #f1f4f6 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}
.feature-card:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) rotate(-0.5deg);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.fi-rehearsal { font-style: italic; font-weight: 800; font-size: 1.3rem; }
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Feature icon colors */
.fi-archive { background: var(--gray-100); color: var(--brand-700); }
.fi-ocr { background: #edf2f5; color: #3a5845; }
.fi-concert { background: #f0ede8; color: #6b4a30; }
.fi-binder { background: #e5f0ea; color: #1c6b46; }
.fi-reports { background: #edf2ea; color: #3a5540; }
.fi-ai { background: #f0ece8; color: #5c4030; }
.fi-rehearsal { background: #f0f9ff; color: #0284c7; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 6rem 0;
  background: var(--gray-50);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-200), var(--brand-400), var(--brand-200));
}
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before { display: none; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(21, 84, 54, 0.25);
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== HIGHLIGHT SECTION ===== */
.highlight {
  padding: 6rem 0;
}
.highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.highlight-row:last-child { margin-bottom: 0; }
.highlight-row.reverse .highlight-text { order: 2; }
.highlight-row.reverse .highlight-visual { order: 1; }
@media (max-width: 768px) {
  .highlight-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .highlight-row.reverse .highlight-text { order: 1; }
  .highlight-row.reverse .highlight-visual { order: 2; }
}
.highlight-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-600);
  margin-bottom: 0.75rem;
}
.highlight-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.highlight-text p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.highlight-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--brand-500);
  margin-top: 2px;
}
.highlight-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brand-50), var(--gray-100));
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.highlight-visual .visual-content {
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.visual-icon {
  font-size: 4rem;
  opacity: 0.3;
}

/* OCR flow visual */
.ocr-flow {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ocr-step-box {
  padding: 0.8rem 1.2rem;
  background: #ffffff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.ocr-step-box .emoji { font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
.ocr-arrow {
  font-size: 1.2rem;
  color: var(--brand-400);
}

/* ===== STATS ===== */
.stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-900));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item h3 .accent { color: var(--accent); }
.stat-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stat-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

/* ===== REHEARSAL MODE (dedicated section) ===== */
.rehearsal-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 100%);
}
.rehearsal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .rehearsal-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Animated demo */
.rehearsal-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.rehearsal-conductor {
  text-align: center;
}
.rehearsal-conductor-icon {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}
.rehearsal-conductor-label {
  font-size: 1rem;
  color: var(--gray-700);
}
.rehearsal-piece-name {
  margin-top: 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-600);
  transition: opacity 0.3s, transform 0.3s;
}
.rehearsal-piece-name.piece-switching {
  opacity: 0;
  transform: translateY(-6px);
}

/* Signal dots animation */
.rehearsal-signal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
}
.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-400);
  animation: signalPulse 1.5s ease-in-out infinite;
}
.signal-dot:nth-child(2) { animation-delay: 0.25s; }
.signal-dot:nth-child(3) { animation-delay: 0.5s; }
@keyframes signalPulse {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Devices row */
.rehearsal-devices {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.rehearsal-device {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-200);
  transition: border-color 0.3s;
  min-width: 130px;
}
.rehearsal-device:hover { border-color: var(--brand-300); }
.device-screen {
  padding: 1rem 1.2rem;
  background: #fff;
  text-align: center;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.eink-screen {
  background: #f0f2f0;
  color: #1a1a1a;
}
.device-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}
.eink-screen .device-header { color: #666; }
.device-piece {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: opacity 0.2s, transform 0.2s;
}
.device-piece.piece-switching {
  opacity: 0;
  transform: translateY(-4px);
}
.device-eink {
  border-color: #c0cec6;
}

/* E-Ink feature badge */
.rehearsal-eink-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #f0f8f4, #f0f2f0);
  border: 1px solid #d0dcd4;
  border-radius: var(--radius-sm);
}
.eink-badge-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.rehearsal-eink-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}
.rehearsal-eink-badge p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* Features list in rehearsal section */
.rehearsal-features .highlight-list { margin-bottom: 0; }
.rehearsal-features .icon-warn { color: var(--accent-dark); }

/* ===== TECH ===== */
.tech {
  padding: 5rem 0;
  background: var(--gray-50);
}
.tech-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.5;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
}
.tech-item .tech-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* ===== TESTIMONIAL / QUOTE ===== */
.quote-section {
  padding: 6rem 0;
}
.quote-card {
  max-width: 560px;
  margin: 0 0 0 auto;
  text-align: left;
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  background: linear-gradient(168deg, #ffffff 0%, #f1f4f6 100%);
  border-radius: 2px var(--radius) var(--radius) 2px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  transform: rotate(-1deg);
  position: relative;
}
.quote-card::after {
  content: '✏️';
  position: absolute;
  top: -14px;
  right: 24px;
  font-size: 1.3rem;
  transform: rotate(15deg);
}
.quote-card blockquote {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.quote-card blockquote::before { content: "\201E"; color: var(--accent); font-size: 2rem; }
.quote-card blockquote::after { content: "\201D"; color: var(--accent); font-size: 2rem; }
.quote-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 0;
  text-align: center;
}
.cta-box {
  padding: 4rem 3rem;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(232, 148, 58, 0.08);
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(21, 84, 54, 0.1);
}
.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}
.cta-box p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.cta-box .btn {
  position: relative;
  z-index: 1;
}
.btn-accent {
  color: var(--brand-900) !important;
  background: var(--accent);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(232, 148, 58, 0.35);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 148, 58, 0.45);
}

/* ===== PRICING ===== */
.pricing {
  padding: 6rem 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.pricing-card {
  background: #ffffff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pricing-card.featured {
  border-color: var(--brand-500);
  box-shadow: 0 8px 30px rgba(40, 134, 92, 0.15);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-3px);
}
.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
}
.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-400);
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}
.pricing-yearly {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-600);
  background: var(--brand-50);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0.4rem 0;
}
.pricing-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--brand-500);
  margin-top: 2px;
}
.pricing-features li.disabled {
  color: var(--gray-300);
}
.pricing-features li.disabled svg {
  color: var(--gray-300);
}
.pricing-card .btn {
  width: 100%;
  justify-content: center;
}
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* ===== FAQ ===== */
.faq {
  padding: 6rem 0;
  background: var(--gray-50);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question:hover {
  color: var(--brand-700);
}
.faq-question .chevron {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-700);
}
.footer-logo svg {
  width: 32px;
  height: 32px;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--brand-600);
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--gray-400);
}
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Musical notes floating animation */
.floating-notes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.floating-notes span {
  position: absolute;
  font-size: 2rem;
  opacity: 0.06;
  animation: float-up 12s linear infinite;
}
@keyframes float-up {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.09; }
  90% { opacity: 0.09; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===== STAFF-LINE DIVIDERS ===== */
.staff-divider {
  position: relative;
  width: 160px;
  height: 29px;
  margin: 0 auto;
}
.staff-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-300);
  box-shadow:
    0 7px 0 0 var(--gray-300),
    0 14px 0 0 var(--gray-300),
    0 21px 0 0 var(--gray-300),
    0 28px 0 0 var(--gray-300);
  opacity: 0.45;
}

/* ===== REHEARSAL MARKS ===== */
[data-mark]::before {
  content: attr(data-mark);
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 2.5px solid currentColor;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-right: 0.5rem;
  vertical-align: middle;
  line-height: 1;
}
  
