/* Blackline AI — Dark absurdist theme */

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

:root {
  --black: #000000;
  --white: #FFFFFF;
  --cyan: #00D4FF;
  --navy: #1A1A2E;
  --navy-light: #16213E;
  --gray: #AAAAAA;
  --gray-dark: #555555;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Satoshi', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .hero-headline, .section-title, .card-title, .subscribe-title, .footer-name, .btn-primary, .subscribe-btn {
  font-family: 'Syne', sans-serif;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline .cyan { color: var(--cyan); }

.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 16px;
  font-weight: 300;
}

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.hero-tagline span { color: var(--cyan); }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #33DFFF; transform: translateY(-2px); }

.hero-video-placeholder {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16/9;
  background: var(--navy);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  cursor: pointer;
  transition: border-color 0.2s;
}
.hero-video-placeholder:hover { border-color: rgba(0,212,255,0.5); }

.play-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-circle::after {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid var(--cyan);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.video-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
}

/* ---- VIDEO GRID ---- */
.video-grid-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.video-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-4px);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,26,46,0.9) 100%);
}

.thumb-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  text-align: center;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.play-btn-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
}
.video-card:hover .play-btn-overlay { border-color: var(--cyan); background: rgba(0,212,255,0.1); }
.play-btn-overlay::after {
  content: '';
  width: 0; height: 0;
  border-left: 12px solid rgba(255,255,255,0.8);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}
.video-card:hover .play-btn-overlay::after { border-left-color: var(--cyan); }

.video-card-body { padding: 20px 24px; }

.card-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.card-tagline {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

/* ---- WHAT WE DO ---- */
.what-section {
  padding: 100px 24px;
  background: var(--navy);
}

.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.what-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.what-col {}

.what-icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.what-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.what-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.what-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- STATS ---- */
.stats-section {
  padding: 80px 24px;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.stat-card {
  background: var(--navy);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
}

.stat-number {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ---- SUBSCRIBE ---- */
.subscribe-section {
  padding: 100px 24px;
  background: var(--navy);
}

.subscribe-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.subscribe-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 40px;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-input {
  flex: 1;
  min-width: 260px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 15px;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-input::placeholder { color: var(--gray-dark); }
.subscribe-input:focus { border-color: rgba(0,212,255,0.5); }

.subscribe-btn {
  background: var(--cyan);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  font-family: inherit;
}
.subscribe-btn:hover { background: #33DFFF; }

.subscribe-fine {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-dark);
}

/* ---- FOOTER ---- */
.footer {
  padding: 48px 24px;
  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: 24px;
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }

.footer-name {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-dark);
}

.footer-social { display: flex; gap: 16px; align-items: center; }

.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--cyan); color: var(--cyan); }

.footer-copy {
  font-size: 12px;
  color: var(--gray-dark);
  text-align: center;
}

/* ---- VIDEO THUMBNAILS — atmospheric SVG backgrounds ---- */
.video-thumb {
  background: var(--black);
}

.thumb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Restaurant — warm glow, empty tables */
.thumb-restaurant .thumb-bg {
  background: radial-gradient(ellipse at 50% 80%, rgba(255, 100, 30, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
              linear-gradient(180deg, #0a0a12 0%, #1a0a0a 100%);
}
/* Restaurant SVG: table silhouettes + robot waiter outline */
.thumb-restaurant::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180'%3E%3Crect x='40' y='110' width='60' height='8' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='50' y='90' width='40' height='20' rx='3' fill='%23ffffff' opacity='0.04'/%3E%3Crect x='160' y='110' width='60' height='8' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='170' y='90' width='40' height='20' rx='3' fill='%23ffffff' opacity='0.04'/%3E%3Crect x='260' y='110' width='60' height='8' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='270' y='90' width='40' height='20' rx='3' fill='%23ffffff' opacity='0.04'/%3E%3Ccircle cx='160' cy='70' r='18' stroke='%2300D4FF' stroke-width='1.5' fill='none' opacity='0.7'/%3E%3Cline x1='160' y1='88' x2='160' y2='130' stroke='%2300D4FF' stroke-width='2' opacity='0.6'/%3E%3Crect x='148' y='60' width='24' height='14' rx='4' fill='none' stroke='%2300D4FF' stroke-width='1.5' opacity='0.5'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Hospital — cold blue, clinical glow */
.thumb-hospital .thumb-bg {
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 100, 255, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
              linear-gradient(180deg, #06060f 0%, #0a0f1a 100%);
}
.thumb-hospital::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180'%3E%3Crect x='130' y='70' width='60' height='80' rx='4' fill='none' stroke='%2300D4FF' stroke-width='1.5' opacity='0.4'/%3E%3Cline x1='150' y1='80' x2='150' y2='110' stroke='%2300D4FF' stroke-width='2' opacity='0.5'/%3E%3Cline x1='140' y1='95' x2='160' y2='95' stroke='%2300D4FF' stroke-width='2' opacity='0.5'/%3E%3Ccircle cx='100' cy='140' r='25' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.08'/%3E%3Cline x1='100' y1='115' x2='100' y2='165' stroke='%23ffffff' stroke-width='1' opacity='0.06'/%3E%3Cline x1='75' y1='140' x2='125' y2='140' stroke='%23ffffff' stroke-width='1' opacity='0.06'/%3E%3Crect x='60' y='30' width='200' height='6' rx='3' fill='%2300D4FF' opacity='0.15'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Date — romantic purple, robotic silhouette */
.thumb-date .thumb-bg {
  background: radial-gradient(ellipse at 50% 60%, rgba(150, 0, 200, 0.2) 0%, transparent 55%),
              radial-gradient(ellipse at 30% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 45%),
              linear-gradient(160deg, #0f0614 0%, #0a0a10 100%);
}
.thumb-date::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180'%3E%3Crect x='90' y='120' width='60' height='8' rx='2' fill='%23ffffff' opacity='0.05'/%3E%3Crect x='170' y='120' width='60' height='8' rx='2' fill='%23ffffff' opacity='0.05'/%3E%3Ccircle cx='160' cy='50' r='22' stroke='%2300D4FF' stroke-width='2' fill='none' opacity='0.7'/%3E%3Crect x='148' y='40' width='24' height='12' rx='4' fill='none' stroke='%2300D4FF' stroke-width='1.5' opacity='0.5'/%3E%3Cline x1='160' y1='72' x2='160' y2='110' stroke='%2300D4FF' stroke-width='2' opacity='0.5'/%3E%3Crect x='140' y='100' width='40' height='20' rx='5' fill='none' stroke='%2300D4FF' stroke-width='1' opacity='0.4'/%3E%3Ccircle cx='80' cy='30' r='15' fill='%23ffffff' opacity='0.03'/%3E%3Ccircle cx='240' cy='40' r='20' fill='%23ffffff' opacity='0.03'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* School — green monitor glow, chalkboard */
.thumb-school .thumb-bg {
  background: radial-gradient(ellipse at 50% 30%, rgba(0, 200, 100, 0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
              linear-gradient(180deg, #050f0a 0%, #0a0f0e 100%);
}
.thumb-school::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180'%3E%3Crect x='60' y='40' width='200' height='110' rx='4' fill='none' stroke='%2300D4FF' stroke-width='1.5' opacity='0.4'/%3E%3Cline x1='70' y1='60' x2='250' y2='60' stroke='%2300D4FF' stroke-width='1' opacity='0.3'/%3E%3Cline x1='75' y1='80' x2='200' y2='80' stroke='%2300FFAA' stroke-width='2' opacity='0.5'/%3E%3Cline x1='75' y1='100' x2='180' y2='100' stroke='%2300FFAA' stroke-width='2' opacity='0.4'/%3E%3Cline x1='75' y1='120' x2='220' y2='120' stroke='%2300FFAA' stroke-width='2' opacity='0.3'/%3E%3Cline x1='220' y1='140' x2='270' y2='140' stroke='%23ffffff' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Sports — spotlight, stadium rows */
.thumb-sports .thumb-bg {
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 200, 0, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 10%, rgba(0, 212, 255, 0.15) 0%, transparent 40%),
              linear-gradient(180deg, #0a0a05 0%, #0f0f0a 100%);
}
.thumb-sports::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180'%3E%3Crect x='20' y='130' width='280' height='30' rx='4' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.05'/%3E%3Crect x='40' y='110' width='240' height='20' rx='4' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.04'/%3E%3Crect x='60' y='90' width='200' height='20' rx='4' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.04'/%3E%3Crect x='80' y='70' width='160' height='20' rx='4' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.04'/%3E%3Ccircle cx='160' cy='60' r='18' stroke='%2300D4FF' stroke-width='2' fill='none' opacity='0.7'/%3E%3Cline x1='160' y1='78' x2='160' y2='120' stroke='%2300D4FF' stroke-width='2' opacity='0.5'/%3E%3Crect x='148' y='50' width='24' height='14' rx='4' fill='none' stroke='%2300D4FF' stroke-width='1.5' opacity='0.5'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Casino — neon glow, slot machine rows */
.thumb-casino .thumb-bg {
  background: radial-gradient(ellipse at 50% 60%, rgba(255, 180, 0, 0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.12) 0%, transparent 45%),
              linear-gradient(180deg, #0f0a00 0%, #050505 100%);
}
.thumb-casino::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180'%3E%3Crect x='30' y='110' width='50' height='60' rx='6' fill='none' stroke='%23FFB400' stroke-width='1.5' opacity='0.5'/%3E%3Crect x='38' y='120' width='34' height='20' rx='3' fill='%23FFB400' opacity='0.15'/%3E%3Ccircle cx='55' cy='165' r='6' fill='%23FFB400' opacity='0.2'/%3E%3Crect x='100' y='110' width='50' height='60' rx='6' fill='none' stroke='%2300D4FF' stroke-width='1.5' opacity='0.5'/%3E%3Crect x='108' y='120' width='34' height='20' rx='3' fill='%2300D4FF' opacity='0.15'/%3E%3Ccircle cx='125' cy='165' r='6' fill='%2300D4FF' opacity='0.2'/%3E%3Crect x='170' y='110' width='50' height='60' rx='6' fill='none' stroke='%23FFB400' stroke-width='1.5' opacity='0.4'/%3E%3Crect x='178' y='120' width='34' height='20' rx='3' fill='%23FFB400' opacity='0.12'/%3E%3Ccircle cx='195' cy='165' r='6' fill='%23FFB400' opacity='0.15'/%3E%3Crect x='240' y='110' width='50' height='60' rx='6' fill='none' stroke='%2300D4FF' stroke-width='1.5' opacity='0.4'/%3E%3Crect x='248' y='120' width='34' height='20' rx='3' fill='%2300D4FF' opacity='0.12'/%3E%3Ccircle cx='265' cy='165' r='6' fill='%2300D4FF' opacity='0.15'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Hero placeholder — cosmic */
.hero-video-placeholder {
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.08) 0%, rgba(26, 26, 46, 0.8) 100%),
              var(--navy);
}

/* ---- SCROLL REVEAL ---- */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 50px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .subscribe-form { flex-direction: column; align-items: stretch; }
  .subscribe-input { min-width: unset; }
}