/* =============================================
   LEMONADA LABS — FUTURISTIC
   ============================================= */

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

:root {
  --bg:        #07080F;
  --bg-2:      #0D0E1A;
  --hotpink:   #E20074;
  --pink-glow: rgba(226, 0, 116, 0.65);
  --pink-soft: rgba(226, 0, 116, 0.18);
  --cyan:      #00D4FF;
  --cyan-soft: rgba(0, 212, 255, 0.15);
  --yellow:    #FFE500;
  --yellow-soft: rgba(255, 229, 0, 0.13);
  --white:     #FFFFFF;
  --off-white: #FFFEF5;
  --muted:     rgba(255, 255, 255, 0.45);
  --border:    rgba(255, 255, 255, 0.07);

  --font-brand: 'Pacifico', cursive;
  --font-body:  'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* nav removed — legal pages keep their own minimal nav */

/* =============================================
   HERO — two-column, full viewport
   ============================================= */
.hero {
  height: 100vh;
  height: 100dvh;   /* shrinks correctly when iOS keyboard appears */
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Subtle grid */
.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Neon aurora blobs */
.aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
}

.b1 {
  width: 700px; height: 700px;
  background: var(--hotpink);
  opacity: 0.14;
  top: -200px; right: -150px;
  animation: bdrift1 28s ease-in-out infinite;
}
.b2 {
  width: 600px; height: 600px;
  background: var(--cyan);
  opacity: 0.11;
  bottom: -200px; left: -100px;
  animation: bdrift2 22s ease-in-out infinite;
}
.b3 {
  width: 450px; height: 450px;
  background: var(--yellow);
  opacity: 0.08;
  top: 40%; left: 35%;
  animation: bdrift3 34s ease-in-out infinite;
}

@keyframes bdrift1 {
  0%,100% { transform: translate(0,0);        }
  33%      { transform: translate(-60px,50px); }
  66%      { transform: translate(40px,-40px); }
}
@keyframes bdrift2 {
  0%,100% { transform: translate(0,0);        }
  33%      { transform: translate(70px,-50px); }
  66%      { transform: translate(-30px,60px); }
}
@keyframes bdrift3 {
  0%,100% { transform: translate(0,0);        }
  50%      { transform: translate(-80px,-60px); }
}

.hero-right {
  flex: 1;
  min-height: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* ---- Headline ---- */
.headline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.line-lemonada {
  font-family: var(--font-brand);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.0;
  color: var(--hotpink);
  display: block;
  animation: titleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both,
             titleGlow 4s ease-in-out 1.5s infinite;
  text-shadow:
    0 0 30px rgba(226, 0, 116, 0.7),
    0 0 80px rgba(226, 0, 116, 0.3);
}

.line-labs {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 3.5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  line-height: 1;
  animation: titleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

/* ---- Divider ---- */
.divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, var(--hotpink), transparent);
  box-shadow: 0 0 10px var(--hotpink);
  animation: fadeIn 0.6s ease 0.7s both;
}

/* =============================================
   TERMINAL BLOCK
   ============================================= */
.terminal {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(226,0,116,0.08), 0 28px 70px rgba(0,0,0,0.5);
  animation: fadeIn 0.6s ease 0.85s both;
}

/* title bar */
.t-bar {
  background: rgba(255,255,255,0.045);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.t-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.td-red    { background: #FF5F57; }
.td-yellow { background: #FEBC2E; }
.td-green  { background: #28C840; }
.t-title {
  margin-left: auto;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.03em;
}

/* scrollable body — fills remaining terminal height */
.t-body {
  padding: 1.3rem 1.6rem 1.5rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  font-family: 'Space Mono', monospace;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* brand block inside terminal */
.tb-brand {
  padding-bottom: 1.2rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tb-name {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--hotpink);
  display: block;
  text-shadow: 0 0 30px rgba(226,0,116,0.7), 0 0 80px rgba(226,0,116,0.3);
  animation: titleIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both,
             titleGlow 4s ease-in-out 1.5s infinite;
}

.tb-labs {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  display: block;
  line-height: 1;
  margin-top: 0.3rem;
  animation: titleIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}
.t-body::-webkit-scrollbar { width: 3px; }
.t-body::-webkit-scrollbar-track { background: transparent; }
.t-body::-webkit-scrollbar-thumb { background: rgba(226,0,116,0.35); border-radius: 2px; }

/* line types */
.tl-cmd  { display: flex; align-items: baseline; }
.tl-out  { color: rgba(255,255,255,0.7); }
.tl-prog { display: flex; align-items: center; white-space: pre; }
.tl-resp { color: rgba(255,255,255,0.65); padding-left: 0; margin: 0.1rem 0; }
.tl-hint { color: rgba(255,255,255,0.55); font-size: 0.85em; }

/* prompt $ */
.t-prompt-char {
  color: var(--hotpink);
  text-shadow: 0 0 10px var(--pink-glow);
  font-weight: 700;
  flex-shrink: 0;
  user-select: none;
}

/* progress bar pieces */
.t-lbl { font-weight: 700; }
.t-bar { letter-spacing: -0.5px; }
.t-ok  { font-weight: 700; }

/* help table */
.t-hr  { display: flex; padding-left: 2ch; }
.t-hk  { color: var(--hotpink); text-shadow: 0 0 8px var(--pink-glow); min-width: 9ch; }
.t-hd  { color: rgba(255,255,255,0.45); }

/* misc */
.t-link { color: var(--hotpink); text-decoration: none; }
.t-link:hover { text-decoration: underline; }
.t-err   { color: rgba(255,80,80,0.85); }
.t-muted { color: rgba(255,255,255,0.3); }
.t-input-text { color: rgba(255,255,255,0.9); }

/* neon colour helpers */
.col-pink   { color: var(--hotpink); text-shadow: 0 0 8px var(--pink-glow); }
.col-teal   { color: var(--cyan);    text-shadow: 0 0 8px rgba(0,212,255,0.5); }
.col-yellow { color: var(--yellow);  text-shadow: 0 0 8px rgba(255,229,0,0.4); }

/* pill callouts (used inline in typed text + command responses) */
.pill {
  display: inline;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.05em 0.4em 0.1em;
  border-width: 1px;
  border-style: solid;
  background: none;
}
.pill-pink   { color: var(--hotpink); background: var(--pink-soft);   border-color: rgba(226,0,116,0.35);  text-shadow: 0 0 8px rgba(226,0,116,0.4); }
.pill-teal   { color: var(--cyan);    background: var(--cyan-soft);   border-color: rgba(0,212,255,0.3);   text-shadow: 0 0 8px rgba(0,212,255,0.3); }
.pill-yellow { color: var(--yellow);  background: var(--yellow-soft); border-color: rgba(255,229,0,0.28);  text-shadow: 0 0 8px rgba(255,229,0,0.22); }

/* cursor */
.t-cursor { display: inline-block; color: var(--hotpink); text-shadow: 0 0 8px var(--pink-glow); margin-left: 1px; }
.t-cursor.blink { animation: cursorBlink 1.1s step-end infinite; }
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 0 40px rgba(226,0,116,0.7), 0 0 100px rgba(226,0,116,0.3);
  }
  50% {
    text-shadow: 0 0 60px rgba(226,0,116,0.9), 0 0 140px rgba(226,0,116,0.45);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   NAV  (legal inner pages)
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(7, 8, 15, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  color: var(--hotpink);
  text-decoration: none;
  text-shadow: 0 0 16px var(--pink-glow);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); }

/* =============================================
   BOTTOM BAR (minimal)
   ============================================= */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.7rem 2rem;
  background: rgba(7, 8, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-bar a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 0.2s;
}
.bottom-bar a:hover { color: rgba(255,255,255,0.75); }

.bottom-bar span {
  margin-left: auto;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

/* =============================================
   FOOTER  (legal inner pages)
   ============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 2rem 3.5rem;
}

.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.footer-logo {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  color: var(--hotpink);
  text-shadow: 0 0 16px var(--pink-glow);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.35rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--hotpink); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.18);
  margin-top: 0.4rem;
}

/* =============================================
   INNER PAGES (Privacy / Terms)
   ============================================= */
.page-hero {
  min-height: 32vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 7rem 2rem 3.5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--hotpink);
  text-shadow: 0 0 40px var(--pink-glow);
  margin-bottom: 0.55rem;
}

.page-hero .page-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
}

.legal-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.legal-content h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.75rem 0 0.7rem;
  letter-spacing: 0.03em;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1rem;
  line-height: 1.9;
}

.legal-content ul {
  margin: 0.5rem 0 1.1rem 1.4rem;
  color: rgba(255, 255, 255, 0.62);
}
.legal-content ul li {
  margin-bottom: 0.45rem;
  line-height: 1.85;
  font-size: 0.97rem;
}
.legal-content a { color: var(--hotpink); text-decoration: underline; }
.legal-content strong { color: rgba(255, 255, 255, 0.88); }

.legal-updated {
  display: inline-block;
  background: var(--pink-soft);
  border: 1px solid rgba(226, 0, 116, 0.3);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hotpink);
  margin-bottom: 2.75rem;
}

/* ── Terminal input row (mobile) ────────────────────────────────── */
/* Sits at the bottom of the .terminal flex column. Hidden on desktop
   because desktop uses document keydown events instead.             */
.t-input-row {
  display: none;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

#mb-form {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.1rem;
  padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
}

#t-mobile-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Space Mono', monospace;
  font-size: 16px;         /* must be ≥16px to prevent iOS Safari auto-zoom */
  color: rgba(255, 255, 255, 0.9);
  caret-color: var(--hotpink);
  padding: 0.2rem 0;
  -webkit-appearance: none;
  appearance: none;
}
#t-mobile-input::placeholder { color: rgba(255, 255, 255, 0.25); }

.mb-send {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--hotpink);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.12s;
}
.mb-send:active { opacity: 0.55; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  /* Terminal hero — tighter padding, font bigger than desktop */
  .hero        { padding: 0.6rem 0.9rem 3.2rem; }
  .t-body      { font-size: 1.15rem; line-height: 1.65; padding: 1rem 1.1rem 0.75rem; }
  .tb-name     { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .tb-labs     { font-size: clamp(1.1rem, 4.5vw, 1.6rem); }
  .tb-brand    { padding-bottom: 1rem; margin-bottom: 0.5rem; }

  /* Show the real input row inside the terminal */
  .t-input-row { display: block; }

  /* Legal nav — hide secondary links, keep Privacy + Terms */
  .nav { padding: 0 1.25rem; }
  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3) { display: none; }

  /* Legal content */
  .page-hero   { padding: 5.5rem 1.5rem 2.5rem; min-height: auto; }
  .legal-content { padding: 2.5rem 1.25rem 4rem; }
  .legal-content h2 { font-size: 1rem; }
  .legal-content p,
  .legal-content ul li { font-size: 0.93rem; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero .page-sub { font-size: 0.9rem; }
  .bottom-bar { padding: 0.6rem 1.25rem; gap: 1.2rem; }
  .footer     { padding: 2.5rem 1.25rem; }
  .footer-links { gap: 1.1rem; }
}

/* =============================================
   PORTFOLIO OVERLAY
   ============================================= */
.portfolio-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 8, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.portfolio-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.portfolio-panel {
  width: 100%;
  max-width: 920px;
  max-height: 86vh;
  overflow-y: auto;
  background: rgba(11, 12, 22, 0.97);
  border: 1px solid rgba(226, 0, 116, 0.18);
  border-radius: 20px;
  padding: 2rem 2rem 2.5rem;
  box-shadow:
    0 0 0 1px rgba(226, 0, 116, 0.06),
    0 0 80px rgba(226, 0, 116, 0.1),
    0 40px 100px rgba(0, 0, 0, 0.65);
  transform: translateY(28px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay.active .portfolio-panel {
  transform: translateY(0);
}

.portfolio-panel::-webkit-scrollbar { width: 3px; }
.portfolio-panel::-webkit-scrollbar-track { background: transparent; }
.portfolio-panel::-webkit-scrollbar-thumb { background: rgba(226,0,116,0.35); border-radius: 2px; }

.portfolio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.portfolio-header-left {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}

.portfolio-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hotpink);
  text-shadow: 0 0 16px var(--pink-glow);
}

.portfolio-count {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
}

.portfolio-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  line-height: 1;
}

.portfolio-close:hover {
  border-color: rgba(226, 0, 116, 0.55);
  color: var(--hotpink);
  box-shadow: 0 0 12px rgba(226, 0, 116, 0.28);
}

/* 6-column grid: first 2 cards span 3 (featured row), rest span 2 */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: default;
  border: 1px solid rgba(255,255,255,0.07);
  background: #000;
  aspect-ratio: 16 / 9;
  display: block;
  transition: border-color 0.22s, box-shadow 0.22s;
}

/* first 2 = large featured; rest = smaller supporting clips */
.video-card:nth-child(1),
.video-card:nth-child(2) { grid-column: span 3; }

.video-card:nth-child(n+3) { grid-column: span 2; }

/* featured "famous person" card — always-on pink glow */
.video-card.video-star {
  border-color: rgba(226, 0, 116, 0.38);
  box-shadow: 0 0 28px rgba(226, 0, 116, 0.16);
}

/* iframe fills card — controls=0 + modestbranding=1 keeps chrome minimal */
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

/* transparent overlay blocks all clicks through to iframe */
.video-block {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: transparent;
  cursor: default;
}

/* featured badge */
.video-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 20;
  background: rgba(226, 0, 116, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 0, 116, 0.5);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(226,0,116,0.5);
}

@media (max-width: 600px) {
  .portfolio-overlay { padding: 1rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card:nth-child(1),
  .video-card:nth-child(2),
  .video-card:nth-child(n+3) { grid-column: span 1; }
}
