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

    :root {
      --navy:      #204B8C;
      --navy-dk:   #163566;
      --navy-xl:   #0f2347;
      --navy-lt:   #2a5fa8;
      --steel:     #f0f3f8;
      --steel-dk:  #e4e9f2;
      --white:     #ffffff;
      --ink:       #111827;
      --ink-2:     #374151;
      --muted:     #6b7694;
      --rule:      rgba(32,75,140,0.10);
      --gold:      #e8a020;
      --gold-lt:   #f5b942;
      --green:     #16a34a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--steel);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: var(--navy);
      position: sticky; top: 0; z-index: 200;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    }
    .nav-wrap {
      max-width: 1200px; margin: 0 auto;
      padding: 0 40px;
      display: flex; align-items: center;
      justify-content: space-between;
      height: 66px;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-mark {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px; font-weight: 500; color: #fff;
    }
    .nav-logo-text { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -0.025em; }
    .nav-logo-text span { color: rgba(255,255,255,0.45); font-weight: 300; }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .nav-link { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: none; transition: color 0.18s; }
    .nav-link:hover { color: #fff; }
    .nav-btn {
      background: var(--gold); color: var(--ink); font-weight: 600;
      font-size: 13.5px; font-family: 'Outfit', sans-serif;
      padding: 9px 22px; border-radius: 6px; border: none; cursor: pointer;
      text-decoration: none; transition: background 0.18s, transform 0.15s; display: inline-block;
    }
    .nav-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }

    /* ── HERO ── */
    .hero { background: var(--navy); position: relative; overflow: hidden; }
    .hero::after {
      content: ''; display: block; height: 70px;
      background: var(--steel); clip-path: polygon(0 100%, 100% 0, 100% 100%);
      margin-top: -1px;
    }
    .hero-texture {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 48px 48px; pointer-events: none;
    }
    .hero-glow { position: absolute; pointer-events: none; }
    .hero-glow-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
      right: -80px; top: -100px;
    }
    .hero-glow-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%);
      left: 5%; bottom: 20%;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 96px 40px 80px;
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center;
    }
    .hero-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
      color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px;
    }
    .hero-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); display: inline-block; }
    .hero h1 {
      font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: #fff;
      line-height: 1.06; letter-spacing: -0.04em; margin-bottom: 22px;
    }
    .hero h1 .accent {
      color: transparent;
      background: linear-gradient(100deg, #93c5fd, var(--gold-lt));
      -webkit-background-clip: text; background-clip: text;
    }
    .hero-body { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.72; max-width: 520px; margin-bottom: 40px; }
    .hero-ctas { display: flex; align-items: center; gap: 16px; }
    .cta-primary {
      background: var(--gold); color: var(--ink);
      font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
      padding: 14px 32px; border-radius: 7px; border: none; cursor: pointer;
      text-decoration: none; display: inline-block; transition: all 0.2s;
      box-shadow: 0 4px 20px rgba(232,160,32,0.3);
    }
    .cta-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,0.4); }
    .cta-secondary {
      color: rgba(255,255,255,0.65); font-size: 14px; text-decoration: none;
      display: flex; align-items: center; gap: 7px; transition: color 0.18s;
    }
    .cta-secondary:hover { color: #fff; }
    .cta-secondary:hover svg { transform: translateX(4px); }
    .cta-secondary svg { transition: transform 0.2s; }

    /* Hero panel */
    .hero-panel {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px; padding: 28px; backdrop-filter: blur(4px);
    }
    .hero-panel-title {
      font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 500;
      color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .panel-stat {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .panel-stat:last-of-type { border-bottom: none; }
    .panel-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }
    .panel-stat-val { font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 500; color: #fff; }
    .panel-stat-val.green { color: #4ade80; }
    .panel-stat-val.gold  { color: var(--gold-lt); }
    .panel-badge {
      display: inline-block; background: rgba(74,222,128,0.15); color: #4ade80;
      font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px;
      letter-spacing: 0.06em; text-transform: uppercase; margin-top: 16px;
    }

    /* ── TRUST BAR ── */
    .trust-bar { background: var(--white); border-bottom: 1px solid var(--rule); }
    .trust-wrap {
      max-width: 1200px; margin: 0 auto; padding: 0 40px;
      display: grid; grid-template-columns: repeat(5, 1fr);
    }
    .trust-item { padding: 22px 16px; text-align: center; border-right: 1px solid var(--rule); }
    .trust-item:last-child { border-right: none; }
    .trust-num { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; line-height: 1; }
    .trust-num sup { font-size: 14px; vertical-align: top; margin-top: 4px; }
    .trust-label { font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }

    /* ── SECTIONS ── */
    .section { padding: 88px 40px; }
    .section-white { background: var(--white); }
    .section-steel { background: var(--steel); }
    .section-navy  { background: var(--navy-xl); }
    .wrap { max-width: 1200px; margin: 0 auto; }
    .section-eyebrow {
      font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
      color: var(--navy); letter-spacing: 0.1em; text-transform: uppercase;
      display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
    }
    .section-eyebrow::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--navy); opacity: 0.3; }
    .section-eyebrow.light { color: rgba(255,255,255,0.4); }
    .section-eyebrow.light::after { background: rgba(255,255,255,0.2); }
    h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 14px; }
    h2.light { color: #fff; }
    .section-sub { font-size: 17px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 500px; margin-bottom: 56px; }
    .section-sub.light { color: rgba(255,255,255,0.5); }

    /* ── FEATURES ── */
    .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .feat-card {
      background: var(--white); border: 1px solid var(--rule); border-radius: 12px; padding: 30px;
      position: relative; overflow: hidden; transition: box-shadow 0.22s, transform 0.22s;
    }
    .feat-card::after {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: linear-gradient(180deg, var(--navy), var(--navy-lt)); opacity: 0; transition: opacity 0.22s;
    }
    .feat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(32,75,140,0.10); }
    .feat-card:hover::after { opacity: 1; }
    .feat-icon { width: 44px; height: 44px; background: var(--steel); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; border: 1px solid var(--rule); }
    .feat-title { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 9px; }
    .feat-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; font-weight: 300; }

    /* ── AUDIENCE ── */
    .audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .aud-card {
      border: 1.5px solid var(--rule); border-radius: 12px; padding: 34px 30px;
      background: var(--steel); transition: all 0.22s;
    }
    .aud-card:hover { background: var(--white); border-color: var(--navy); box-shadow: 0 8px 32px rgba(32,75,140,0.10); }
    .aud-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--navy); font-weight: 500; letter-spacing: 0.1em; margin-bottom: 14px; opacity: 0.5; }
    .aud-title { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 10px; }
    .aud-desc { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 18px; }
    .aud-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
    .aud-list li { font-size: 13px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 9px; }
    .aud-list li::before { content: '—'; color: var(--navy); font-weight: 600; flex-shrink: 0; }

    /* ── COMPARISON ── */
    .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .compare-card { border-radius: 12px; padding: 32px; }
    .compare-card.legacy { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
    .compare-card.modern { background: rgba(232,160,32,0.09); border: 1px solid rgba(232,160,32,0.25); }
    .compare-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .compare-card.modern .compare-head { border-bottom-color: rgba(232,160,32,0.2); }
    .compare-head-title { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
    .compare-card.legacy .compare-head-title { color: rgba(255,255,255,0.45); }
    .compare-card.modern .compare-head-title { color: var(--gold-lt); }
    .compare-pill { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 500; padding: 3px 9px; border-radius: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
    .compare-card.legacy .compare-pill { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.3); }
    .compare-card.modern .compare-pill { background: rgba(232,160,32,0.18); color: var(--gold); }
    .compare-rows { display: flex; flex-direction: column; gap: 11px; }
    .compare-row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5; }
    .compare-card.legacy .compare-row { color: rgba(255,255,255,0.38); }
    .compare-card.modern .compare-row { color: rgba(255,255,255,0.82); }
    .cr-icon { flex-shrink: 0; font-size: 14px; }

    /* ── PRICING ── */
    .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .price-card { background: var(--white); border: 1.5px solid var(--rule); border-radius: 12px; padding: 28px 24px; text-align: center; transition: all 0.22s; position: relative; }
    .price-card:hover { border-color: var(--navy); box-shadow: 0 8px 30px rgba(32,75,140,0.10); transform: translateY(-2px); }
    .price-card.featured { border-color: var(--navy); background: var(--navy); }
    .price-card.featured .price-name { color: rgba(255,255,255,0.6); }
    .price-card.featured .price-amount { color: #fff; }
    .price-card.featured .price-period { color: rgba(255,255,255,0.4); }
    .price-card.featured .price-desc { color: rgba(255,255,255,0.5); }
    .price-card.featured .price-divider { background: rgba(255,255,255,0.1); }
    .price-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
    .price-name { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 500; }
    .price-amount { font-size: 38px; font-weight: 800; color: var(--navy); letter-spacing: -0.05em; line-height: 1; }
    .price-amount sup { font-size: 18px; vertical-align: top; margin-top: 6px; font-weight: 600; }
    .price-period { font-size: 12px; color: var(--muted); margin-top: 4px; }
    .price-divider { height: 1px; background: var(--rule); margin: 18px 0; }
    .price-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }
    .price-note { margin-top: 20px; font-size: 12px; color: var(--muted); text-align: center; }
    .price-note a { color: var(--navy); text-decoration: none; }

    /* ── ROADMAP ── */
    .roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .rm-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; }
    .rm-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
    .rm-dot.soon   { background: var(--gold); box-shadow: 0 0 8px rgba(232,160,32,0.5); }
    .rm-dot.future { background: rgba(255,255,255,0.2); }
    .rm-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: -0.01em; margin-bottom: 3px; }
    .rm-sub { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; line-height: 1.5; }

    /* ── NOTIFY ── */
    .notify-section { background: var(--navy); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
    .notify-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 900px 500px at 50% 50%, rgba(59,130,246,0.12), transparent); pointer-events: none; }
    .notify-section h2 { color: #fff; margin-bottom: 12px; }
    .notify-section .section-sub { margin: 0 auto 40px; color: rgba(255,255,255,0.5); }
    .notify-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; justify-content: center; flex-wrap: wrap; }
    .notify-form input { flex: 1; min-width: 220px; padding: 13px 18px; background: rgba(255,255,255,0.09); border: 1.5px solid rgba(255,255,255,0.18); border-radius: 7px; color: #fff; font-size: 14.5px; font-family: 'Outfit', sans-serif; font-weight: 300; outline: none; transition: border-color 0.18s; }
    .notify-form input::placeholder { color: rgba(255,255,255,0.3); }
    .notify-form input:focus { border-color: rgba(255,255,255,0.4); }
    .notify-form button { background: var(--gold); color: var(--ink); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 7px; border: none; cursor: pointer; transition: all 0.18s; white-space: nowrap; box-shadow: 0 4px 16px rgba(232,160,32,0.3); }
    .notify-form button:hover { background: var(--gold-lt); transform: translateY(-1px); }
    .notify-sub { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 16px; }
    #success-msg { display: none; color: #4ade80; font-size: 16px; font-weight: 500; margin-top: 20px; }

    /* ── FOOTER ── */
    footer { background: var(--navy-xl); padding: 36px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-brand { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: -0.02em; }
    .footer-stack { display: flex; align-items: center; gap: 8px; }
    .stack-badge { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.1); padding: 2px 7px; border-radius: 3px; letter-spacing: 0.04em; }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.18s; }
    .footer-links a:hover { color: rgba(255,255,255,0.6); }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.18); width: 100%; text-align: center; margin-top: 4px; }

    /* ── ANIMATIONS ── */
    @keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    .rise { opacity: 0; animation: riseIn 0.65s cubic-bezier(.22,.68,0,1.2) forwards; }
    .rise.d1 { animation-delay: 0.08s; } .rise.d2 { animation-delay: 0.18s; }
    .rise.d3 { animation-delay: 0.30s; } .rise.d4 { animation-delay: 0.44s; }
    .rise.d5 { animation-delay: 0.56s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-panel { display: none; }
      .feat-grid, .audience-grid, .compare-grid { grid-template-columns: 1fr 1fr; }
      .pricing-grid, .roadmap-grid { grid-template-columns: 1fr 1fr; }
      .trust-wrap { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 600px) {
      .section { padding: 60px 24px; }
      .nav-wrap { padding: 0 24px; }
      .nav-link { display: none; }
      .hero-inner { padding: 64px 24px 60px; }
      .feat-grid, .audience-grid, .compare-grid, .pricing-grid, .roadmap-grid { grid-template-columns: 1fr; }
      .trust-wrap { grid-template-columns: repeat(2,1fr); }
    }



.monitor {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 12px;
  background: #1e1e1e;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  overflow: hidden;
  border: 1px solid #333;
  min-height: 250px;
}

.monitor-header {
  height: 36px;
  background: #2b2b2b;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red { background: #ff5f57; }
.yellow { background: #ffbd2e; }
.green { background: #28c840; }

.monitor-screen {
  background: #000;
}

.monitor-screen img {
  width: 100%;
  display: block;
  padding: 0px 5px;
}


.monitor:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.url {
  background: #444;
  color: #ccc;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  flex: 1;
}

.monitor::after {
  content: "";
  display: block;
  width: 120px;
  height: 10px;
  background: #444;
  margin: 10px auto 0;
  border-radius: 4px;
}
/* ─────────────────────────────────────────────
   ADDITIONS — May 2026
   Hide body until partials load (no flash)
   New sections: Objects, Videos, Apps, Pricing tweaks
   ───────────────────────────────────────────── */

body { opacity: 0; transition: opacity .25s ease; }
body.partials-loaded { opacity: 1; }

/* ─── OBJECTS GRID ─── */
.obj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.obj-card {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  padding: 22px 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.obj-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 75, 140, 0.08);
  border-color: #c8d4e6;
}
.obj-icon { font-size: 32px; margin-bottom: 12px; line-height: 1; }
.obj-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1c2c44;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.obj-badge {
  font-size: 0.65rem;
  font-weight: 600;
  background: #E8A020;
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.obj-desc { color: #5a6678; font-size: 0.92rem; line-height: 1.5; }
.obj-footer {
  text-align: center;
  margin-top: 36px;
  color: #5a6678;
  font-size: 0.95rem;
  font-style: italic;
}

/* ─── VIDEOS GRID ─── */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.vid-card {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.vid-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(32, 75, 140, 0.12);
}
.vid-thumb {
  background: linear-gradient(135deg, #204B8C 0%, #1c2c44 100%);
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #204B8C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.vid-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.vid-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1c2c44;
  padding: 16px 18px 6px;
}
.vid-desc {
  color: #5a6678;
  font-size: 0.9rem;
  padding: 0 18px 18px;
}
.vid-footer {
  text-align: center;
  margin-top: 32px;
  color: #5a6678;
}
.vid-footer a { color: #204B8C; font-weight: 600; text-decoration: none; }
.vid-footer a:hover { text-decoration: underline; }

/* ─── SAMPLE APPS GRID ─── */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.app-card {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(32, 75, 140, 0.12);
}
.app-thumb {
  background: linear-gradient(135deg, #204B8C 0%, #2d6db3 100%);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
.app-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1c2c44;
  padding: 16px 18px 6px;
}
.app-desc {
  color: #5a6678;
  font-size: 0.92rem;
  padding: 0 18px 20px;
  line-height: 1.5;
}

/* ─── PRICING ENHANCEMENTS ─── */
.price-features {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  text-align: left;
}
.price-features li {
  padding: 8px 0;
  color: #3d4856;
  font-size: 0.94rem;
  border-bottom: 1px solid #f0f3f7;
}
.price-features li:last-child { border-bottom: none; }
.price-features li strong { color: #204B8C; font-weight: 600; }
.price-explain {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: center;
  color: #5a6678;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.6;
  padding: 16px 24px;
  background: #f7f9fc;
  border-radius: 8px;
  border-left: 3px solid #E8A020;
}
