  /* ── Honeypot bot-protection ─────────────────────────────────────────────
     Visually hides the field without display:none (bots skip those).
     Humans never see or interact with it; bots fill it → instant rejection. */
  .hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
    aria-hidden: true;
  }

  :root {
    --brand-blue: #00699c;
    --brand-emerald: #0D9488;
    --brand-teal: #14B8A6;
    --brand-teal-light: #CCFBF1;
    --brand-gold: #D97706;
    --brand-gold-light: #FEF3C7;
    --ink-primary: #0F172A;
    --ink-secondary: #475569;
    --ink-muted: #94A3B8;
    --surface-base: #FFFFFF;
    --surface-dim: #F8FAFC;
    --surface-card: #FFFFFF;
    --border-color: #E2E8F0;
    --header-bg: rgba(255, 255, 255, 0.90);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.01);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-full: 9999px;
  }

  html[data-theme="dark"] {
    --ink-primary: #F8FAFC;
    --ink-secondary: #94A3B8;
    --ink-muted: #64748B;
    --surface-base: #0B0F19;
    --surface-dim: #111827;
    --surface-card: #1E293B;
    --border-color: #334155;
    --header-bg: rgba(11, 15, 25, 0.88);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  
  body {
    background-color: var(--surface-base);
    color: var(--ink-primary);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* NAVBAR */
  header {
    position: sticky; top: 0; z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.25s ease, border-color 0.25s ease;
  }
  
  nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }

  .logo-brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 24px; color: var(--ink-primary);
    letter-spacing: -0.03em;
  }

  .logo-icon {
    width: 36px; height: 36px;
    color: var(--brand-emerald);
  }

  .nav-menu {
    display: flex; gap: 32px; align-items: center;
    font-size: 15px; font-weight: 600;
  }

  .nav-menu a {
    color: var(--ink-secondary);
    transition: color 0.15s ease;
  }

  .nav-menu a:hover { color: var(--brand-emerald); }
  .nav-menu a.active { color: var(--brand-emerald); }

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

  .icon-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--ink-primary);
    transition: background-color 0.15s ease, border-color 0.15s ease;
  }

  .icon-btn:hover {
    background-color: var(--surface-dim);
    border-color: var(--ink-muted);
  }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 700; font-size: 14.5px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  }

  .btn-primary {
    background-color: #00B4B1;
    color: #FFFFFF;
  }
  .btn-primary:hover {
    background-color: #009A98;
    box-shadow: 0 4px 12px rgba(0, 180, 177, 0.30);
  }

  .btn-secondary {
    background-color: var(--surface-dim);
    border-color: var(--border-color);
    color: var(--ink-primary);
  }
  .btn-secondary:hover { background-color: var(--border-color); }

  @media (max-width: 900px) { .nav-menu { display: none; } }
  @media (max-width: 900px) { .nav-actions .btn-secondary { display: none; } }

  /* MOBILE NAV TOGGLE */
  .mobile-nav-toggle {
    display: none;
    background: transparent; border: 1px solid var(--border-color);
    width: 40px; height: 40px; border-radius: var(--radius-md);
    align-items: center; justify-content: center;
    cursor: pointer; color: var(--ink-primary);
    flex-direction: column; gap: 4px;
  }
  .mobile-nav-toggle span {
    display: block; width: 18px; height: 2px; background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .mobile-nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  @media (max-width: 900px) { .mobile-nav-toggle { display: flex; } }

  .mobile-nav-menu {
    display: none;
    flex-direction: column;
    padding: 8px 0 20px;
    border-top: 1px solid var(--border-color);
  }
  .mobile-nav-menu.open { display: flex; }
  .mobile-nav-menu a {
    padding: 14px 4px;
    font-weight: 600; font-size: 15.5px;
    color: var(--ink-primary);
    border-bottom: 1px solid var(--border-color);
  }
  .mobile-nav-menu .mobile-nav-group-label {
    padding: 14px 4px 4px;
    font-size: 12px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--ink-muted);
  }
  .mobile-nav-menu .mobile-nav-actions {
    display: flex; gap: 12px; margin-top: 14px;
  }
  .mobile-nav-menu .mobile-nav-actions .btn { flex: 1; }

  /* DROPDOWN */
  .nav-item-dropdown { position: relative; }
  .nav-item-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
  .nav-item-dropdown .chevron { width: 12px; height: 12px; transition: transform 0.15s ease; }
  .nav-item-dropdown:hover .chevron { transform: rotate(180deg); }
  .dropdown-panel {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    min-width: 220px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  }
  .nav-item-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px; /* matches the gap in dropdown-panel's top offset */
  }  
  .nav-item-dropdown:hover .dropdown-panel,
  .dropdown-panel:hover {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown-panel a {
    display: block; padding: 10px 12px; border-radius: 8px;
    font-size: 14px; font-weight: 600; color: var(--ink-primary);
  }
  .dropdown-panel a:hover { background: var(--surface-dim); color: var(--brand-emerald); }

  /* HERO SECTION (LIGHT ISLAMIC THEME) */
  .hero-section {
    position: relative;
    padding: 110px 0 80px;
    background-color: var(--surface-base);
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: radial-gradient(var(--ink-primary) 1px, transparent 1px),
                      linear-gradient(to right, var(--ink-primary) 1px, transparent 1px);
    background-size: 24px 24px, 48px 48px;
    pointer-events: none;
  }

  .hero-glow {
    position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 680px; height: 420px;
    background: radial-gradient(circle, rgba(13,180,177,0.14) 0%, rgba(217,119,6,0.05) 50%, transparent 80%);
    pointer-events: none;
    border-radius: 50%;
  }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    color: var(--ink-primary);
  }

  .badge-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: var(--radius-full);
    background-color: var(--brand-teal-light);
    color: #0F766E;
    font-size: 13px; font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(20, 184, 166, 0.3);
  }

  .hero-content h1 {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink-primary);
    text-shadow: 0 2px 12px rgba(0,0,0,0.04);
    margin-bottom: 20px;
  }

  h1 span.highlight {
    color: #00B4B1;
  }

  .hero-content p.subtitle {
    font-size: 18px; color: var(--ink-secondary);
    max-width: 640px; margin: 0 auto 32px;
  }

  .hero-ctas {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .hero-ctas .btn { padding: 16px 30px; font-size: 16px; }

  .wave-wrap {
    margin-top: 48px;
    display: flex; justify-content: center;
  }
  canvas#wave {
    width: 100%;
    max-width: 620px;
    height: 110px;
  }

  /* PULSE DOT */
  .live-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #DC2626;
  }

  @keyframes pulse{
    0%   { transform:scale(1);   opacity:1; }
    50%  { transform:scale(1.5); opacity:0.4; }
    100% { transform:scale(1);   opacity:1; }
  }

  /* CATEGORIES / ADHKAR SECTION */
  .categories-section {
    padding: 80px 0;
    background-color: var(--surface-dim);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .section-header {
    text-align: center; max-width: 600px; margin: 0 auto 48px;
  }

  .section-header .eyebrow-tag {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-emerald);
    margin-bottom: 12px;
    display: block;
  }

  .section-header h2 {
    font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px;
  }

  .section-header p { color: var(--ink-secondary); font-size: 15px; }

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .cat-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
  }

  .cat-card:hover {
    border-color: var(--brand-teal);
    box-shadow: var(--shadow-md);
  }

  .cat-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--brand-teal-light);
    color: var(--brand-emerald);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
  }

  .cat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
  .cat-card p { font-size: 12px; color: var(--ink-muted); }

  /* FEATURES MATRIX */
  .features-section { padding: 80px 0; }

  .features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }

  .feature-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
  }

  .feature-icon-wrapper {
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: var(--brand-gold-light);
    color: var(--brand-gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .feature-icon-wrapper.violet { background: rgba(108,76,245,0.12); color: #6C4CF5; }
  .feature-icon-wrapper.cyan { background: rgba(0,194,224,0.12); color: #00C2E0; }
  .feature-icon-wrapper.gold { background: var(--brand-gold-light); color: var(--brand-gold); }

  .feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .feature-card p { font-size: 14.5px; color: var(--ink-secondary); }

  /* TAILORED PLATFORMS */
  .platforms-section {
    padding: 80px 0;
    background-color: var(--surface-dim);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .platforms-grid { grid-template-columns: 1fr; } }
  .platform-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .platform-card:hover {
    border-color: #00B4B1;
    box-shadow: var(--shadow-md);
  }
  .platform-icon {
    width: 48px; height: 48px;
    background: var(--brand-teal-light);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: #00B4B1;
  }
  .platform-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
  .platform-card p { color: var(--ink-secondary); font-size: 14.5px; line-height: 1.6; margin-bottom: 14px; }
  .platform-link { display: inline-block; font-weight: 700; font-size: 14px; color: #00B4B1; }
  .platform-link:hover { text-decoration: underline; }

  /* CITIES */
  .cities-section {
    padding: 70px 0;
    background-color: var(--surface-base);
  }
  .cities-head { text-align: center; margin-bottom: 36px; }
  .cities-head h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
  .cities-head p { color: var(--ink-secondary); font-size: 15.5px; }
  .cities-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  }
  @media (max-width: 800px) { .cities-grid { grid-template-columns: 1fr; } }
  .city-tile {
    position: relative;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex; align-items: flex-end;
    border: 1px solid var(--border-color);
  }
  .city-tile::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,0.85) 100%);
  }
  .city-tile .city-label {
    position: relative; z-index: 2;
    padding: 26px; color: #fff;
  }
  .city-tile .city-label .tag {
    display: inline-block;
    font-size: 12px; font-weight: 800; letter-spacing: 0.03em;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 5px 12px; border-radius: var(--radius-full);
    margin-bottom: 10px;
  }
  .city-tile h3 { font-size: 24px; font-weight: 800; }
  .city-tile p { font-size: 14px; color: #E2E8F0; margin-top: 4px; }
  .city-makkah {
    background-image: linear-gradient(0deg, rgba(0,0,0,0.05), rgba(0,0,0,0.05)),
      url('https://images.unsplash.com/photo-1513072064285-240f87fa81e8?fm=jpg&q=80&w=1600&auto=format&fit=crop');
  }
  .city-madina {
    background-image: linear-gradient(0deg, rgba(0,0,0,0.05), rgba(0,0,0,0.05)),
      url('https://images.unsplash.com/photo-1577295605163-132e25c3c914?fm=jpg&q=80&w=1600&auto=format&fit=crop');
  }

  /* HOW IT WORKS */
  .how-section { padding: 80px 0; background-color: var(--surface-base); }
  .how-section .section-title { font-size: 34px; font-weight: 800; text-align: center; margin-bottom: 52px; }
  .how-steps {
    display: flex; justify-content: space-between;
    gap: 24px;
    position: relative;
  }
  .how-steps::before {
    content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-color) 0 10px, transparent 10px 18px);
    z-index: 0;
  }
  @media (max-width: 800px) {
    .how-steps { flex-direction: column; }
    .how-steps::before { display: none; }
  }
  .how-step {
    flex: 1; position: relative; z-index: 1; text-align: center;
  }
  .step-num {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; color: #fff;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-md);
  }
  .how-step:nth-child(1) .step-num { background: var(--brand-blue); }
  .how-step:nth-child(2) .step-num { background: var(--brand-gold); }
  .how-step:nth-child(3) .step-num { background: var(--brand-teal); }
  .how-step h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
  .how-step p { font-size: 14px; color: var(--ink-secondary); max-width: 220px; margin: 0 auto; }

  /* LIVE NOW (dark, theme-independent) */
  .live-section {
    background-color: #151221;
    color: #fff;
    padding: 76px 0;
  }
  .live-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 36px; flex-wrap: wrap;
  }
  .live-badge-lg {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,59,59,0.15);
    border: 1px solid rgba(255,59,59,0.4);
    color: #FF7A7A;
    font-weight: 800; font-size: 13.5px;
    padding: 8px 16px; border-radius: var(--radius-full);
  }
  .live-badge-lg .live-dot { background: #FF3B3B; }
  .live-section h2 { font-size: 26px; font-weight: 800; }
  .live-scroll {
    display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px;
    scrollbar-width: none;
  }
  .live-scroll::-webkit-scrollbar { display: none; }
  .live-card {
    min-width: 230px; flex: 0 0 auto;
    background: #1F1B33;
    border: 1px solid #322C4E;
    border-radius: var(--radius-lg);
    padding: 20px;
  }
  .live-card .tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 800; letter-spacing: 0.02em;
    color: #FF7A7A;
    margin-bottom: 14px;
  }
  .live-card .tag.recorded { color: #9A93B8; }
  .live-card .tag .live-dot { width: 7px; height: 7px; background: #FF3B3B; }
  .live-card .tag.recorded::before {
    content: ""; display: inline-block; width: 7px; height: 7px;
    border-radius: 50%; background: #9A93B8;
  }
  .live-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
  .live-card .meta { font-size: 13px; color: #9A93B8; }
  .live-card .meta .count { color: #FFC93C; font-weight: 700; }

  /* TESTIMONIAL */
  .testimonial-section {
    padding: 80px 0; text-align: center;
    background-color: var(--surface-base);
  }
  .testimonial-section blockquote {
    font-size: 24px; font-weight: 600; line-height: 1.4;
    max-width: 680px; margin: 0 auto 20px;
    color: var(--ink-primary);
  }
  .testimonial-section .stars { color: var(--brand-gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 3px; }
  .testimonial-section cite { font-style: normal; font-size: 14.5px; color: var(--ink-secondary); font-weight: 600; }

  /* WHY TEASER */
  .why-teaser-section { padding: 70px 0; background-color: var(--surface-dim); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
  .why-teaser-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
  @media (max-width: 850px) { .why-teaser-inner { grid-template-columns: 1fr; } }
  .why-teaser-copy h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 10px 0 12px; }
  .why-teaser-copy p { color: var(--ink-secondary); margin-bottom: 22px; max-width: 480px; }
  .why-teaser-points { display: flex; flex-direction: column; gap: 16px; }
  .why-teaser-points li {
    display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 15px;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
  }
  .why-teaser-points .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .why-teaser-points .dot.green { background: #16A34A; }

  /* STATS */
  .stats-section {
    background: var(--brand-emerald);
    color: #fff;
    padding: 52px 0;
  }
  .stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 20px;
  }
  @media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; } }
  .stats-grid .num { font-size: 38px; font-weight: 800; color: var(--brand-gold-light); }
  .stats-grid .label { font-size: 14px; opacity: 0.9; margin-top: 4px; }

  /* NEWSLETTER */
  .newsletter-section {
    padding: 80px 0; text-align: center;
    background-color: var(--surface-base);
  }
  .newsletter-section h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
  .newsletter-section p { color: var(--ink-secondary); margin-bottom: 26px; }
  .newsletter-section form {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  }
  .newsletter-section input {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    width: 280px;
    outline: none;
    background-color: var(--surface-card);
    color: var(--ink-primary);
  }
  .newsletter-section input:focus { border-color: var(--brand-emerald); }

  /* FOOTER */
  footer {
    background-color: var(--surface-dim);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
    font-size: 14px;
    color: var(--ink-secondary);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
  }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  .footer-brand p {
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.6;
  }
  .footer-brand .logo-brand { color: var(--ink-primary); }

  .footer-col h5 {
    color: var(--ink-primary);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 14px;
  }
  .footer-col ul {
    display: flex; flex-direction: column; gap: 10px;
  }
  .footer-col a:hover { color: #00B4B1; }

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

  .footer-copy { font-size: 13px; color: var(--ink-muted); }

  /* VIEW TRANSITIONS */
  @supports (view-transition-name: none) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
      animation-duration: 0.3s;
      animation-timing-function: ease-in-out;
    }

    ::view-transition-old(root) {
      animation-name: fade-out;
    }

    ::view-transition-new(root) {
      animation-name: fade-in;
    }
  }

  @keyframes fade-out {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.98); }
  }

  @keyframes fade-in {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
  }
  /* FORM FEEDBACK (AJAX submission messages) */
  .form-feedback {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 1px solid transparent;
    animation: form-fade-in 0.3s ease-out;
  }
  .form-feedback-success {
    background: rgba(16,185,164,0.08);
    border-color: rgba(16,185,164,0.3);
    color: #0d9488;
  }
  .form-feedback-error {
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.4);
    color: #dc2626;
  }
  @keyframes form-fade-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }  /* BETA BADGE */
  .beta-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    margin-left: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #f59e0b;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.4);
    border-radius: 999px;
    vertical-align: middle;
  }