  /* ============================================================
     SYCLLA MEDIA — placeholder site
     Aesthetic: refined editorial. Deep navy on warm cream, taken
     from the logo. Fraunces serif + Hanken Grotesk.
     NOTE: roster, stats, and brand names below are PLACEHOLDERS.
     ============================================================ */

  :root {
    --navy-900: #14213b;   /* deepest navy — CTA / footer / headings */
    --navy-800: #1b2a47;   /* primary navy (logo match) */
    --navy-700: #2b3d61;

    --paper:    #f6f2e9;   /* main warm cream background */
    --paper-2:  #efe8d8;   /* deeper cream — alt sections */
    --card:     #fcfaf4;   /* card surface (slight lift) */

    --muted:  #55617a;     /* secondary text */
    --faint:  #8a93a4;     /* labels / tertiary */

    --line: rgba(27, 42, 71, 0.14);
    --line-2: rgba(27, 42, 71, 0.26);

    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Hanken Grotesk", system-ui, sans-serif;

    --maxw: 1240px;
    --pad-section: clamp(5rem, 11vw, 9.5rem);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background-color: var(--paper);
    color: var(--navy-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
  }

  /* subtle warm ambience + depth */
  .ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(70% 50% at 50% -8%, #fffdf7 0%, transparent 60%),
      radial-gradient(60% 60% at 100% 110%, rgba(27, 42, 71, 0.06) 0%, transparent 55%);
  }

  /* paper grain for texture */
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 4vw, 2.75rem);
    position: relative;
    z-index: 1;
  }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  ::selection { background: var(--navy-800); color: var(--paper); }

  /* ---------- Shared type ---------- */
  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--navy-700);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
  }
  .eyebrow::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--navy-700);
    opacity: 0.6;
  }

  .section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: -0.015em;
    margin-top: 1.4rem;
    color: var(--navy-900);
  }
  .section-lead {
    color: var(--muted);
    max-width: 46ch;
    margin-top: 1.25rem;
    font-size: 1.05rem;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.92rem 1.6rem;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
                background 0.3s, color 0.3s, border-color 0.3s;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--navy-800);
    color: var(--paper);
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    background: var(--navy-900);
    box-shadow: 0 16px 34px -12px rgba(20, 33, 59, 0.5);
  }
  .btn-ghost {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--line-2);
  }
  .btn-ghost:hover {
    border-color: var(--navy-800);
    background: var(--navy-800);
    color: var(--paper);
    transform: translateY(-3px);
  }
  .btn svg { width: 16px; height: 16px; }

  /* ============================================================
     NAV
     ============================================================ */
  header.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
  }
  header.nav.scrolled {
    background: rgba(246, 242, 233, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
  }
  .brand { display: flex; align-items: center; }
  .logo-img { height: 50px; width: auto; display: none; }
  .logo-fallback {
    font-family: var(--font-display);
    font-size: 1.34rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--navy-900);
  }
  .logo-fallback b { font-weight: 600; }
  .logo-lockup { display: inline-flex; align-items: center; gap: 0.6rem; }
  .logo-mark {
    width: 40px; height: 40px;
    flex: none; display: block;
    border-radius: 9px;
    box-shadow: 0 4px 14px -8px rgba(20, 33, 59, 0.55);
  }
  .logo-word { line-height: 1; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.1rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.92rem;
    color: var(--muted);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 1.5px;
    background: var(--navy-800);
    transition: width 0.35s var(--ease);
  }
  .nav-links a:hover { color: var(--navy-900); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta { display: flex; align-items: center; gap: 1rem; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle span {
    width: 24px; height: 2px;
    background: var(--navy-900);
    transition: transform 0.35s var(--ease), opacity 0.3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    position: relative;
    padding-top: clamp(9rem, 18vh, 13rem);
    padding-bottom: var(--pad-section);
    overflow: hidden;
  }
  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: end;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.9rem, 8vw, 6.6rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-top: 1.8rem;
    color: var(--navy-900);
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    position: relative;
  }
  .hero h1 em::after {
    content: "";
    position: absolute;
    left: -0.02em; bottom: 0.08em;
    width: 102%; height: 0.16em;
    background: var(--navy-800);
    opacity: 0.78;
    z-index: -1;
    border-radius: 4px;
  }
  .hero-sub {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    max-width: 42ch;
    margin-top: 1.9rem;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.4rem;
  }
  .hero-side {
    border-left: 2px solid var(--navy-800);
    padding-left: clamp(1.2rem, 2.5vw, 2rem);
    padding-bottom: 0.5rem;
  }
  .hero-side p {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.18rem;
    color: var(--navy-900);
    line-height: 1.5;
  }
  .hero-side .cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faint);
    margin-top: 1.1rem;
    display: block;
  }

  /* staggered load-in */
  .rise { opacity: 0; transform: translateY(26px); animation: rise 1s var(--ease) forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
  .d1 { animation-delay: 0.05s; }
  .d2 { animation-delay: 0.18s; }
  .d3 { animation-delay: 0.31s; }
  .d4 { animation-delay: 0.44s; }
  .d5 { animation-delay: 0.57s; }

  /* ============================================================
     STATS STRIP
     ============================================================ */
  .stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper-2);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat {
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 1.5rem);
    position: relative;
  }
  .stat + .stat::before {
    content: "";
    position: absolute;
    left: 0; top: 22%; bottom: 22%;
    width: 1px;
    background: var(--line);
  }
  .stat .num {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.1rem, 4vw, 3rem);
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat .num span { color: var(--navy-700); opacity: 0.7; }
  .stat .lbl {
    color: var(--muted);
    font-size: 0.86rem;
    margin-top: 0.7rem;
    letter-spacing: 0.02em;
  }

  /* ============================================================
     SECTION SHELL
     ============================================================ */
  section.block { padding-block: var(--pad-section); position: relative; }
  .block-head { max-width: 760px; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
  .scroll-mt { scroll-margin-top: 90px; }

  /* ---------- Services ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }
  .service {
    position: relative;
    padding: 2rem 1.8rem 2.2rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--card);
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
  }
  .service:hover {
    transform: translateY(-6px);
    border-color: var(--line-2);
    box-shadow: 0 22px 44px -26px rgba(20, 33, 59, 0.45);
  }
  .service .idx {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--navy-700);
    letter-spacing: 0.1em;
    opacity: 0.7;
  }
  .service h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    margin-top: 1.3rem;
    letter-spacing: -0.01em;
    color: var(--navy-900);
  }
  .service p { color: var(--muted); margin-top: 0.7rem; font-size: 0.96rem; }

  /* ---------- Roster ---------- */
  .roster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }
  .creator {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.6rem 1.5rem 1.4rem;
    background: var(--card);
    transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
  }
  .creator:hover {
    transform: translateY(-6px);
    border-color: var(--line-2);
    box-shadow: 0 22px 44px -26px rgba(20, 33, 59, 0.45);
  }
  .avatar {
    position: relative;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 1.2rem;
  }
  .avatar img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .creator h4 { font-size: 1.08rem; font-weight: 600; color: var(--navy-900); }
  .creator .handle { color: var(--navy-700); font-size: 0.85rem; margin-top: 0.15rem; }
  .creator .meta {
    display: flex; justify-content: space-between;
    margin-top: 1.1rem; padding-top: 1.1rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem; color: var(--muted);
  }
  .creator .meta b { color: var(--navy-900); font-weight: 600; }

  /* ---------- About ---------- */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
  }
  .about-quote {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--navy-900);
  }
  .about-quote em { font-style: italic; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 6px; }
  .about-body p { color: var(--muted); }
  .about-body p + p { margin-top: 1.1rem; }
  .pillars { list-style: none; margin-top: 1.8rem; display: grid; gap: 0.9rem; }
  .pillars li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--navy-900); }
  .pillars li svg { width: 18px; height: 18px; color: var(--navy-800); flex: none; margin-top: 4px; }

  /* ---------- Brands marquee ---------- */
  .brands { border-block: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 3.5rem); overflow: hidden; background: var(--paper-2); }
  .brands .label {
    text-align: center;
    color: var(--faint);
    font-size: 0.74rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }
  .marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
  .marquee .track { display: flex; gap: 4rem; padding-right: 4rem; animation: scroll 42s linear infinite; }
  .marquee .track span {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    color: var(--navy-800);
    white-space: nowrap;
    opacity: 0.55;
    transition: opacity 0.3s;
  }
  .marquee .track span:hover { opacity: 1; }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* ---------- CTA (inverted navy block) ---------- */
  .cta-card {
    position: relative;
    border-radius: 28px;
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
    text-align: center;
    overflow: hidden;
    background: var(--navy-900);
    color: var(--paper);
  }
  .cta-card .eyebrow { color: #c7cedd; justify-content: center; }
  .cta-card .eyebrow::before { background: #c7cedd; }
  .cta-card h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: #fff;
  }
  .cta-card h2 em { font-style: italic; }
  .cta-card p { color: #c7cedd; margin: 1.3rem auto 0; max-width: 48ch; font-size: 1.05rem; }
  .cta-card .hero-actions { justify-content: center; }
  .cta-card .btn-primary { background: var(--paper); color: var(--navy-900); }
  .cta-card .btn-primary:hover { background: #fff; box-shadow: 0 16px 34px -12px rgba(0,0,0,0.5); }
  .cta-card .btn-ghost { border-color: rgba(255,255,255,0.3); color: var(--paper); }
  .cta-card .btn-ghost:hover { background: var(--paper); color: var(--navy-900); border-color: var(--paper); }

  /* ============================================================
     FOOTER (navy)
     ============================================================ */
  footer {
    border-top: 1px solid var(--line);
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
    padding-bottom: 2.5rem;
    background: var(--navy-900);
    color: var(--paper);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .foot-brand .logo-fallback { color: #fff; font-size: 1.5rem; display: inline-block; margin-bottom: 1.1rem; }
  .foot-brand p { color: #aeb6c6; max-width: 34ch; font-size: 0.95rem; }
  .foot-col h5 {
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #828ca0;
    margin-bottom: 1.2rem;
    font-weight: 600;
  }
  .foot-col ul { list-style: none; display: grid; gap: 0.7rem; }
  .foot-col a { color: #aeb6c6; font-size: 0.95rem; transition: color 0.3s; }
  .foot-col a:hover { color: #fff; }
  .foot-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    color: #828ca0;
    font-size: 0.84rem;
  }
  .foot-note { display: inline-flex; align-items: center; gap: 0.55rem; }
  .foot-note::before {
    content: "";
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--paper);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse { 50% { opacity: 0.3; } }

  /* ============================================================
     SCROLL REVEAL
     ============================================================ */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.in.stagger > * { animation: rise 0.8s var(--ease) backwards; }
  .reveal.in.stagger > *:nth-child(1) { animation-delay: 0.04s; }
  .reveal.in.stagger > *:nth-child(2) { animation-delay: 0.12s; }
  .reveal.in.stagger > *:nth-child(3) { animation-delay: 0.2s; }
  .reveal.in.stagger > *:nth-child(4) { animation-delay: 0.28s; }
  .reveal.in.stagger > *:nth-child(5) { animation-delay: 0.36s; }
  .reveal.in.stagger > *:nth-child(6) { animation-delay: 0.44s; }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-side { border-left: 0; border-top: 2px solid var(--navy-800); padding-left: 0; padding-top: 1.8rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .roster-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .foot-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 720px) {
    .nav-links, .nav-cta .btn { display: none; }
    .nav-toggle { display: flex; }

    .mobile-menu {
      position: fixed;
      inset: 78px 0 auto 0;
      background: rgba(246, 242, 233, 0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
      transform: translateY(-120%);
      transition: transform 0.5s var(--ease);
      z-index: 90;
      padding: 1.5rem clamp(1.25rem, 4vw, 2.75rem) 2rem;
    }
    .mobile-menu.open { transform: translateY(0); }
    .mobile-menu ul { list-style: none; display: grid; gap: 0.3rem; }
    .mobile-menu a {
      display: block;
      padding: 0.9rem 0;
      font-family: var(--font-display);
      font-size: 1.4rem;
      border-bottom: 1px solid var(--line);
      color: var(--navy-900);
    }
    .mobile-menu .btn { margin-top: 1.4rem; width: 100%; justify-content: center; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat + .stat::before { display: none; }
    .stat:nth-child(odd)::after {
      content: ""; position: absolute; right: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line);
    }
  }
  @media (max-width: 480px) {
    .services-grid, .roster-grid, .foot-grid { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
  }
  .mobile-menu { display: none; }
  @media (max-width: 720px) { .mobile-menu { display: block; } }

/* ====================== VIDEOS ====================== */
.videos-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.videos-head > div { max-width: 60ch; }
.videos-all { flex: none; white-space: nowrap; }

.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.video-card { display: block; width: 100%; margin: 0; padding: 0; border: 0; background: none; text-align: left; font: inherit; color: inherit; cursor: pointer; }
.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card:hover .video-thumb { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 26px 50px -28px rgba(20, 33, 59, 0.55); }
.video-play {
  position: absolute; inset: 0; margin: auto;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: rgba(246, 242, 233, 0.92);
  color: var(--navy-900);
  border-radius: 50%;
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.video-play svg { width: 20px; height: 20px; margin-left: 3px; }
.video-card:hover .video-play { transform: scale(1.09); background: var(--paper); }
.video-dur {
  position: absolute; right: 10px; bottom: 10px;
  padding: 0.2rem 0.5rem; border-radius: 7px;
  background: rgba(20, 33, 59, 0.82); color: var(--paper);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
}
.video-info { display: block; margin-top: 0.9rem; }
.video-info .video-title { display: block; font-size: 1rem; font-weight: 600; color: var(--navy-900); line-height: 1.32; }
.video-creator { display: block; margin-top: 0.15rem; color: var(--navy-700); font-size: 0.84rem; }

.videos-note { margin-top: 2.6rem; color: var(--muted); font-size: 0.9rem; }
.videos-note code { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: 0.85em; background: rgba(27, 42, 71, 0.08); padding: 0.12em 0.44em; border-radius: 5px; color: var(--navy-800); }

@media (max-width: 980px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .video-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; } .videos-head { align-items: flex-start; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(12, 20, 38, 0.74);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; width: min(420px, 100%); transform: translateY(14px) scale(0.97); transition: transform 0.38s var(--ease); }
.lightbox.open .lightbox-inner { transform: none; }
.lightbox video { display: block; width: 100%; aspect-ratio: 9 / 16; background: #05080f; border-radius: 18px; box-shadow: 0 34px 90px -34px rgba(0, 0, 0, 0.75); }
.lightbox-msg { position: absolute; inset: 0; display: none; place-items: center; text-align: center; padding: 2rem; border-radius: 18px; background: linear-gradient(155deg, var(--navy-700), var(--navy-900)); color: var(--paper); font-size: 0.95rem; }
.lightbox.no-video .lightbox-msg { display: grid; }
.lightbox.no-video video { visibility: hidden; }
.lightbox-cap { margin-top: 1.1rem; text-align: center; }
.lightbox-cap b { display: block; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--paper); }
.lightbox-cap span { color: #b9c1d2; font-size: 0.86rem; }
.lightbox-close {
  position: absolute; top: -3rem; right: 0;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(246, 242, 233, 0.14); color: var(--paper);
  border: 1px solid rgba(246, 242, 233, 0.28); border-radius: 50%;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.lightbox-close:hover { background: rgba(246, 242, 233, 0.26); transform: rotate(90deg); }
@media (max-width: 480px) { .lightbox-close { top: 0; right: 0; } }
