:root {
    --bg: #0a0c0e;
    --bg2: #111418;
    --bg3: #161b20;
    --card: #13191f;
    --border: #1e2830;
    --text: #e8edf2;
    --muted: #6b7e8f;
    --accent: #00d4aa;
    --accent2: #ff4b4b;
    --accent3: #f5a623;
    --font-head: 'Fraunces', serif;
    --font-mono: 'Space Mono', monospace;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  a { color: inherit; text-decoration: none; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(10,12,14,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
  }

  .logo-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
  }
  .logo-icon img {
    width: 36px; height: 36px;
    object-fit: contain;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 13px;
    color: var(--muted);
  }

  .nav-links a:hover { color: var(--text); transition: color 0.2s; }

  .nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
  }

  .btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
  }

  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

  .btn-primary {
    background: var(--accent);
    color: #000;
    font-weight: 700;
  }

  .btn-primary:hover {
    background: #00f2c4;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0,212,170,0.3);
  }

  .btn-outline-accent {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
  }

  .btn-outline-accent:hover {
    background: rgba(0,212,170,0.1);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding: 120px 64px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,212,170,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: var(--font-head);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 8px;
  }

  .hero-title .accent-line {
    color: var(--accent);
    display: block;
  }

  .hero-sub {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 400px;
    margin: 20px 0 36px;
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .download-note {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 48px;
  }

  .download-note a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .hero-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .hero-feat-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--accent);
  }

  .hero-feat span {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.3;
  }
  
.hero-shot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
    animation: float 6s ease-in-out infinite;
  }
  /* ─── APP MOCKUP ─── */
  .app-window {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .app-titlebar {
    background: #0d1117;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
  }

  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot.r { background: #ff5f56; }
  .dot.y { background: #ffbd2e; }
  .dot.g { background: #27c93f; }

  .app-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 320px;
  }

  .app-sidebar {
    background: #0d1117;
    padding: 12px 0;
    border-right: 1px solid var(--border);
  }

  .sidebar-item {
    padding: 8px 16px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .sidebar-item.active {
    background: rgba(0,212,170,0.08);
    color: var(--accent);
    border-left: 2px solid var(--accent);
  }

  .sidebar-item:hover:not(.active) { color: var(--text); }

  .app-content { padding: 16px; }

  .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,212,170,0.1);
    border: 1px solid rgba(0,212,170,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 16px;
  }

  .pulse {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .stat-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
  }

  .stat-label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .stat-value {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    color: var(--accent);
  }

  .stat-sub {
    font-size: 10px;
    color: var(--muted);
  }

  .stat-card.danger .stat-value { color: var(--accent2); }

  /* ─── SECTION GENERIC ─── */
  section { padding: 100px 64px; }

  .section-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
  }

  .section-title {
    font-family: var(--font-head);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .section-desc {
    color: var(--muted);
    font-size: 14px;
    max-width: 500px;
    line-height: 1.7;
  }

  /* ─── PROBLEM SECTION ─── */
  .problem {
    background: var(--bg2);
    text-align: center;
    padding: 100px 64px;
  }

  .problem .section-desc { margin: 0 auto 8px; }

  .problem-accent {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
    margin-top: 8px;
  }

  .lock-icon {
    font-size: 80px;
    margin: 40px auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(0,212,170,0.3));
    animation: lockpulse 4s ease-in-out infinite;
  }

  @keyframes lockpulse {
    0%,100% { filter: drop-shadow(0 0 30px rgba(0,212,170,0.2)); }
    50% { filter: drop-shadow(0 0 60px rgba(0,212,170,0.5)); }
  }

  /* ─── HOW IT WORKS ─── */
  .how-it-works { background: var(--bg); }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }

  .step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
  }

  .step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,212,170,0.04) 0%, transparent 60%);
    pointer-events: none;
  }

  .step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .step-num.s1 { background: var(--accent); color: #000; }
  .step-num.s2 { background: var(--accent3); color: #000; }
  .step-num.s3 { background: var(--accent2); color: #fff; }

  .step-icon { font-size: 32px; margin-bottom: 12px; display: block; }
  .step-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* TIMELINE */
  .timeline-wrap {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
  }

  .timeline-copy .tl-title {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .timeline-copy .tl-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .legend { display: flex; gap: 24px; }
  .legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; }
  .legend-dot { width: 8px; height: 8px; border-radius: 50%; }

  .timeline-bar-wrap { padding: 40px 0; }

  .tl-track {
    position: relative;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin: 0 20px;
  }

  .tl-fill-enc {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 33%;
    background: var(--accent);
    border-radius: 3px;
  }

  .tl-fill-del {
    position: absolute;
    left: 33%; top: 0; bottom: 0;
    width: 67%;
    background: var(--accent2);
    border-radius: 3px 0 0 3px;
  }

  .tl-markers {
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
    margin-top: -16px;
  }

  .tl-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    transform: translateY(-5px);
  }

  .tl-dot.d0 { background: var(--muted); }
  .tl-dot.d1 { background: var(--accent); }
  .tl-dot.d2 { background: var(--accent2); }

  .tl-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 8px;
    font-size: 11px;
    color: var(--muted);
  }

  .tl-events {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .tl-event {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
  }

  .tl-event .ev-icon { font-size: 24px; margin-bottom: 6px; display: block; }
  .tl-event .ev-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
  .tl-event .ev-sub { font-size: 11px; color: var(--muted); }
  .tl-event.enc { border-color: rgba(0,212,170,0.3); }
  .tl-event.del { border-color: rgba(255,75,75,0.3); }

  /* ─── FEATURES ─── */
  .features { background: var(--bg2); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .feat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .feat-card:hover {
    border-color: rgba(0,212,170,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }

  .feat-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .feat-card:hover::after { opacity: 1; }

  .feat-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
    color: var(--accent);
  }

  .feat-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .feat-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

  /* ─── WHO IS IT FOR ─── */
  .who { background: var(--bg); text-align: center; }

  .who-grid {
    display: grid;
	grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }

  .who-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s;
  }

  .who-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
  }

  .who-icon { font-size: 36px; margin-bottom: 16px; display: block; }
  .who-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .who-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

  /* ─── WARNING BANNER ─── */
  .warning-banner {
    background: linear-gradient(135deg, #1a0a0a, #200d0d);
    border: 1px solid rgba(255,75,75,0.3);
    margin: 0 64px;
    border-radius: 16px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .warning-icon { font-size: 48px; flex-shrink: 0; }
  .warning-title { color: var(--accent2); font-family: var(--font-head); font-size: 20px; font-weight: 800; margin-bottom: 8px; }
  .warning-text { font-size: 13px; color: #d4726f; line-height: 1.5; }

  /* ─── PRICING ─── */
  .pricing { background: var(--bg2); }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
    align-items: start;
  }

  .price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
  }

  .price-card:hover { transform: translateY(-4px); }

  .price-card.popular {
    border-color: var(--accent);
    position: relative;
    background: linear-gradient(135deg, #0f201a, var(--card));
  }

  .popular-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-mono);
  }

  .price-name { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 6px; }
  .price-tagline { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
  .price-launch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.14);
    border: 1px solid rgba(245, 166, 35, 0.28);
    color: var(--accent3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .price-amount { font-family: var(--font-head); font-size: 48px; font-weight: 800; letter-spacing: -2px; margin-bottom: 4px; }
  .price-note { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
  .price-target {
    font-size: 12px;
    color: #c7d2dc;
    margin-bottom: 28px;
  }
  .price-target span {
    color: var(--accent2);
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 75, 75, 0.55);
  }

  .price-features { list-style: none; margin-bottom: 32px; }
  .price-features li {
    padding: 8px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
  }
  .price-features li:last-child { border-bottom: none; }
  .price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

  .btn-full { width: 100%; text-align: center; padding: 14px; font-size: 14px; }

  .price-download-note {
    margin: 12px 0 0;
    text-align: center;
  }

  .extras-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }

  .extra-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
  }

  .extra-icon { font-size: 28px; flex-shrink: 0; }
  .extra-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .extra-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

  /* ─── SOCIAL PROOF ─── */
  .social-proof { background: var(--bg); }

  .testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }

  .testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s;
  }

  .testimonial:hover { border-color: rgba(0,212,170,0.3); }

  .stars { color: var(--accent3); margin-bottom: 12px; font-size: 14px; }
  .t-text { font-size: 13px; color: #bcc8d4; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
  .t-author { font-size: 11px; color: var(--muted); }

  /* ─── FAQ ─── */
  .faq { background: var(--bg2); }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }

  .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .faq-q {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
    user-select: none;
  }

  .faq-q:hover { color: var(--accent); }

  .faq-plus {
    font-size: 20px;
    color: var(--muted);
    transition: transform 0.3s;
    flex-shrink: 0;
  }

  .faq-a {
    padding: 0 24px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }

  .faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
  }

  .faq-item.open .faq-plus { transform: rotate(45deg); color: var(--accent); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 64px 40px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.6;
    max-width: 200px;
  }

  .footer-col h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
  }

  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 12px; color: var(--muted); }
  .footer-col a:hover { color: var(--accent); transition: color 0.2s; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: var(--muted);
  }

  .windows-badge {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

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

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
    section { padding: 60px 24px; }
    .steps, .features-grid, .who-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .faq-grid, .testimonials { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .warning-banner { margin: 0 24px; flex-direction: column; }
    .timeline-wrap { grid-template-columns: 1fr; }
  }

/* Utility classes extracted from inline styles */
.btn-large { padding: 14px 28px; font-size: 14px; }
.delay-005 { transition-delay: 0.05s; }
.delay-01 { transition-delay: 0.1s; }
.delay-015 { transition-delay: 0.15s; }
.delay-02 { transition-delay: 0.2s; }
.delay-025 { transition-delay: 0.25s; }
.delay-03 { transition-delay: 0.3s; }
.legend-dot-enc { background: var(--accent); }
.legend-dot-del { background: var(--accent2); }
.tl-track-spaced { margin-top: 12px; }
.text-center { text-align: center; }
.price-amount-accent { color: var(--accent); }
nav.is-scrolled { border-bottom-color: rgba(0,212,170,0.15); }
