/* ================================================================
   Noterix — Marketing Website Stylesheet
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg:         #06040f;
  --bg-1:       #0c0a1e;
  --bg-2:       #131030;
  --bg-card:    rgba(15, 13, 36, 0.92);
  --bg-glass:   rgba(18, 15, 42, 0.65);

  --purple:     #7c5fff;
  --purple-l:   #a47fff;
  --blue:       #5b8cff;
  --cyan:       #00c8ff;

  --g-brand:    linear-gradient(135deg, #7c5fff 0%, #5b8cff 55%, #00c8ff 100%);
  --g-text:     linear-gradient(90deg, #b49fff 0%, #5b8cff 50%, #00c8ff 100%);
  --g-border:   linear-gradient(135deg, rgba(124,95,255,.6), rgba(0,200,255,.3));
  --g-hero:     radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,95,255,.25) 0%, transparent 70%);
  --g-glow-p:   radial-gradient(circle, rgba(124,95,255,.35) 0%, transparent 60%);
  --g-glow-c:   radial-gradient(circle, rgba(0,200,255,.25) 0%, transparent 60%);

  --text:       #f2eeff;
  --text-2:     #a89fc8;
  --text-3:     #5e5a7a;
  --border:     rgba(124,95,255,.18);
  --border-b:   rgba(124,95,255,.45);

  --r:          14px;
  --r-lg:       22px;
  --r-xl:       32px;
  --shadow:     0 12px 48px rgba(0,0,0,.55);
  --shadow-g:   0 0 48px rgba(124,95,255,.22);
  --ease:       cubic-bezier(.4,0,.2,1);
  --t:          .22s var(--ease);

  --max-w:      1180px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-b); border-radius: 3px; }

/* ── Typography ────────────────────────────────────────────── */
.gradient-text {
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1, h2, h3, h4 { font-weight: 700; line-height: 1.18; }
.display { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -.04em; }
.h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -.03em; }
.h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -.025em; }
.h3 { font-size: 1.15rem; font-weight: 600; }
.lead { font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--text-2); }
.label {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--purple-l);
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-header .label { margin-bottom: .75rem; }
.section-header p { color: var(--text-2); margin-top: 1rem; font-size: 1.05rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
  white-space: normal;
  text-align: center;
  justify-content: center;
  line-height: 1.2;
  max-width: 100%;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--g-brand);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,95,255,.4);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(124,95,255,.55); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-b);
}
.btn-secondary:hover {
  background: var(--bg-glass);
  border-color: var(--purple-l);
  color: var(--purple-l);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: .75rem 1.25rem;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: .95rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }

.btn-download {
  background: var(--g-brand);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(124,95,255,.45), 0 0 0 0 rgba(124,95,255,0);
  transition: transform var(--t), box-shadow var(--t);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  max-width: 100%;
  gap: .6rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}
.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124,95,255,.55), 0 0 0 6px rgba(124,95,255,.12);
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Badge / Pill ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(124,95,255,.12);
  border: 1px solid rgba(124,95,255,.35);
  color: var(--purple-l);
}
.badge-new {
  background: rgba(0,200,255,.1);
  border-color: rgba(0,200,255,.3);
  color: var(--cyan);
}
.badge-soon {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: var(--text-3);
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.card:hover {
  border-color: var(--border-b);
  box-shadow: var(--shadow-g);
  transform: translateY(-4px);
}
.card-gradient {
  background: linear-gradient(135deg, rgba(124,95,255,.1) 0%, rgba(0,200,255,.05) 100%);
}

/* Glass card */
.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(6,4,15,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo-text { color: var(--text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}
.nav-links a {
  padding: .45rem .85rem;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--text-2);
  font-weight: 500;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,.06);
}
.nav-actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: var(--t);
  display: block;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(6,4,15,.97);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .75rem 1rem;
  border-radius: 10px;
  color: var(--text-2);
  font-weight: 500;
  transition: color var(--t), background var(--t);
}
.nav-mobile a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: .5rem; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-hero);
  pointer-events: none;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .5;
}
.hero-bg-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: var(--g-glow-p);
  animation: orb-float 8s ease-in-out infinite alternate;
}
.hero-bg-orb-2 {
  width: 500px; height: 500px;
  top: 10%; right: -150px;
  background: var(--g-glow-c);
  animation: orb-float 10s ease-in-out infinite alternate-reverse;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text { max-width: 580px; }
.hero-text .badge { margin-bottom: 1.5rem; }
.hero-title { margin-bottom: 1.25rem; }
.hero-subtitle {
  color: var(--text-2);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-cta { margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: .8rem; color: var(--text-3); margin-top: .1rem; }

/* App mockup */
.hero-visual { position: relative; }
.app-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 80px rgba(124,95,255,.18);
}
.app-mockup-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: .4rem; }
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-title-text {
  flex: 1;
  text-align: center;
  font-size: .78rem;
  color: var(--text-3);
}
.mockup-body {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 280px;
}
.mockup-sidebar {
  background: rgba(255,255,255,.02);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem .4rem;
}
.mockup-sidebar-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(124,95,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  cursor: pointer;
  transition: background var(--t);
}
.mockup-sidebar-icon.active {
  background: rgba(124,95,255,.4);
  color: var(--purple-l);
}
.mockup-main { padding: .75rem; }
.mockup-track { margin-bottom: .6rem; }
.mockup-track-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .3rem;
}
.mockup-track-label {
  font-size: .65rem;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mockup-track-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.tab-line {
  font-family: 'Courier New', monospace;
  font-size: .62rem;
  color: var(--text-2);
  letter-spacing: .05em;
  line-height: 1.5;
  white-space: pre;
  padding: .25rem .5rem;
  background: rgba(255,255,255,.02);
  border-radius: 6px;
}
.tab-line .note { color: #a47fff; font-weight: 700; }
.tab-line .note-c { color: #00c8ff; font-weight: 700; }
.tab-line .note-g { color: #5bff8a; font-weight: 700; }
.mockup-playbar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .75rem;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
}
.play-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--g-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}
.waveform {
  flex: 1;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.wave-bar {
  flex: 1;
  border-radius: 2px;
  background: rgba(124,95,255,.35);
  animation: wave 1.2s ease-in-out infinite alternate;
}
.wave-bar.active { background: var(--g-brand); }
.mockup-time { font-size: .65rem; color: var(--text-3); }

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(18,15,40,.5);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label { font-size: .85rem; color: var(--text-2); }

/* ── Features Grid ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.feature-card:hover {
  border-color: rgba(124,95,255,.45);
  box-shadow: 0 8px 40px rgba(124,95,255,.15);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(124,95,255,.12);
  border: 1px solid rgba(124,95,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--text);
}
.feature-desc { font-size: .9rem; color: var(--text-2); line-height: 1.65; }

/* ── Showcase ───────────────────────────────────────────────── */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.showcase-reversed .showcase-visual { order: -1; }
.showcase-text .label { margin-bottom: .75rem; }
.showcase-text .h2 { margin-bottom: 1rem; }
.showcase-text p { color: var(--text-2); margin-bottom: 1.5rem; }
.showcase-list { display: flex; flex-direction: column; gap: .75rem; }
.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text-2);
  font-size: .95rem;
}
.showcase-list li::before {
  content: '✦';
  color: var(--purple-l);
  font-size: .75rem;
  margin-top: .3rem;
  flex-shrink: 0;
}
.showcase-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.showcase-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-card);
  opacity: .4;
  pointer-events: none;
}

/* ── Download CTA ───────────────────────────────────────────── */
.download-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(124,95,255,.1) 0%, rgba(0,200,255,.06) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.download-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,95,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.download-cta .h2 { margin-bottom: 1rem; }
.download-cta p { color: var(--text-2); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.download-platforms {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Platform cards (download page) ─────────────────────────── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.platform-card:hover {
  border-color: var(--border-b);
  box-shadow: var(--shadow-g);
  transform: translateY(-4px);
}
.platform-card.available { border-color: rgba(124,95,255,.35); }
.platform-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.platform-name { font-size: 1.15rem; font-weight: 700; margin-bottom: .25rem; }
.platform-version { font-size: .82rem; color: var(--text-3); margin-bottom: 1.25rem; }
.platform-req {
  font-size: .78rem;
  color: var(--text-3);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.pricing-card.featured {
  border-color: var(--border-b);
  background: linear-gradient(160deg, rgba(124,95,255,.12) 0%, rgba(0,200,255,.06) 100%);
  box-shadow: var(--shadow-g);
  position: relative;
}
.pricing-card.featured .featured-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g-brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem 1.1rem;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pricing-tier { font-size: .8rem; font-weight: 600; color: var(--purple-l); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.pricing-price { margin-bottom: .5rem; line-height: 1; }
.pricing-price-amount { font-size: 2.8rem; font-weight: 900; }
.pricing-price-period { font-size: .85rem; color: var(--text-3); }
.pricing-desc { font-size: .88rem; color: var(--text-2); margin-bottom: 1.75rem; min-height: 2.5rem; }
.pricing-features { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .65rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-2);
}
.pricing-features li .check { color: var(--purple-l); font-size: .75rem; margin-top: .25rem; }
.pricing-features li.dim { opacity: .4; }
.pricing-features li.dim .check { color: var(--text-3); }
.pricing-btn { width: 100%; justify-content: center; }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { color: var(--purple-l); }
.faq-chevron { font-size: .8rem; transition: transform var(--t); color: var(--text-3); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.7;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.testimonial-stars { font-size: .8rem; color: #fbbf24; margin-bottom: 1rem; }
.testimonial-text {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--g-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: .88rem; font-weight: 600; }
.testimonial-role { font-size: .78rem; color: var(--text-3); }

/* ── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--g-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
}
.team-name { font-weight: 700; margin-bottom: .25rem; }
.team-role { font-size: .85rem; color: var(--text-3); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: var(--text-3); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: var(--text-3);
  transition: color var(--t), border-color var(--t), background var(--t);
}
.footer-social a:hover { color: var(--text); border-color: var(--border-b); background: rgba(124,95,255,.1); }
.footer-col h4 { font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .88rem; color: var(--text-3); transition: color var(--t); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-3);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-3); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--text); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-hero);
  pointer-events: none;
}
.page-hero .label { margin-bottom: .75rem; }
.page-hero .display { margin-bottom: 1.25rem; }
.page-hero .lead { max-width: 560px; margin: 0 auto 2rem; }

/* ── Divider ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }
.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,95,255,.4), transparent);
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--text-2); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes orb-float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}
@keyframes wave {
  from { transform: scaleY(0.3); opacity: .5; }
  to   { transform: scaleY(1);   opacity: 1;  }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up .65s var(--ease) forwards; }
.animate-delay-1 { animation-delay: .1s; opacity: 0; }
.animate-delay-2 { animation-delay: .22s; opacity: 0; }
.animate-delay-3 { animation-delay: .34s; opacity: 0; }
.animate-delay-4 { animation-delay: .46s; opacity: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .hero { padding-top: 6rem; min-height: auto; padding-bottom: 4rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .app-mockup { max-width: 420px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .showcase-reversed .showcase-visual { order: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .download-platforms { flex-direction: column; align-items: center; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn, .btn-group .btn-download { width: 100%; }
  .btn-lg { padding: .9rem 1.4rem; font-size: 1rem; }
  .btn-download { padding: .9rem 1.4rem; font-size: 1rem; width: 100%; }
  .hero-stats { gap: 1.25rem; }
  .platforms-grid { grid-template-columns: 1fr; }
}

/* ?? Modal overlay ???????????????????????????????????????? */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-2);
  border: 1px solid var(--border-b);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text-2);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--t);
}
.modal-close:hover { background: rgba(255,255,255,.1); }
.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--g-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.modal-box h2 { margin-bottom: .75rem; }
.modal-box p { color: var(--text-2); font-size: .92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.modal-input {
  width: 100%;
  padding: .85rem 1.1rem;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .95rem;
  font-family: inherit;
  margin-bottom: 1rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color var(--t);
}
.modal-input:focus { border-color: rgba(124,95,255,.5); }
.modal-fine { font-size: .75rem; color: var(--text-3); margin-top: .75rem; margin-bottom: 0; }

/* ?? Text link button ????????????????????????????????????? */
.btn-text-link {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: .85rem;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .5rem;
  border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.btn-text-link:hover { color: var(--purple-l); background: rgba(124,95,255,.08); }

/* ?? Platform more row ???????????????????????????????????? */
.platform-more {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-3);
  flex-wrap: wrap;
}

/* ????????????????????????????????????????????
   Hero � new centred layout (index.html v2)
   ???????????????????????????????????????????? */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-hero);
}
.hero-bg .waveform {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 130px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 0 2.5rem;
  opacity: .12;
}
.hero-bg .wave-bar {
  flex: 1;
  background: var(--g-brand);
  border-radius: 3px 3px 0 0;
  min-height: 20%;
  animation: wave 1.4s ease-in-out infinite alternate;
}
.hero > .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 9rem;
  padding-bottom: 7rem;
}
.hero-label { margin-bottom: 1.5rem; }
.hero-sub {
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-note { font-size: .82rem; color: var(--text-3); }

/* ?? Stats bar (new) ???????????????????????? */
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .2rem;
}
.stat-label { font-size: .82rem; color: var(--text-3); }
.stat-sep {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat-sep { display: none; }
  .stat { padding: .75rem 1.5rem; }
}

/* ?? App mockup (new class names) ?????????? */
.mockup-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 80px rgba(124,95,255,.18);
  max-width: 860px;
  margin: 0 auto;
}
.mockup-wrap .mockup-body {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 260px;
}
.mockup-wrap .mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: .85rem .5rem;
}
.sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .45rem .25rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: .58rem;
  color: var(--text-3);
  transition: background var(--t), color var(--t);
}
.sidebar-item:hover { background: rgba(124,95,255,.1); color: var(--text-2); }
.sidebar-item.active { background: rgba(124,95,255,.2); color: var(--purple-l); }
.sidebar-ico { display: flex; opacity: .7; }
.sidebar-item.active .sidebar-ico { opacity: 1; }

.mockup-content {
  display: flex;
  flex-direction: column;
  padding: .85rem 1rem;
  gap: 0;
  overflow: hidden;
}
.tab-row {
  display: flex;
  align-items: center;
  gap: .1rem;
  font-family: 'Courier New', monospace;
  font-size: .66rem;
  line-height: 2;
}
.tab-row.header { margin-bottom: .25rem; opacity: .5; }
.tab-string {
  width: 12px;
  text-align: center;
  color: var(--text-3);
  font-weight: 700;
  flex-shrink: 0;
}
.tab-cell {
  width: 22px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: .65rem;
  flex-shrink: 0;
  border-radius: 3px;
}
.tab-cell.tab-note {
  color: var(--purple-l);
  font-weight: 700;
  background: rgba(124,95,255,.15);
}
.tab-cell.tab-playing {
  color: var(--cyan);
  background: rgba(0,200,255,.18);
  font-weight: 700;
}
.tab-row.playhead .tab-cell:not(.tab-note):not(.tab-playing) { opacity: .35; }

/* Playbar */
.mockup-wrap .mockup-playbar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1rem;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
}
.pb-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--g-brand);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: white;
  flex-shrink: 0;
}
.pb-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.pb-fill {
  height: 100%;
  background: var(--g-brand);
  border-radius: 2px;
  transition: width .3s;
}
.pb-time { font-size: .66rem; color: var(--text-3); flex-shrink: 0; white-space: nowrap; }
