/* ============================================================
   She's a Bot — landing page
   Palette: near-black + neon red + electric blue
   ============================================================ */

:root {
  --bg:        #08080d;
  --bg-2:      #0d0d16;
  --panel:     #12121c;
  --ink:       #f4f5fa;
  --ink-dim:   #a7a9ba;
  --ink-faint: #6b6d80;
  --red:       #ff2545;
  --red-soft:  #ff5a72;
  --blue:      #21b7ff;
  --blue-soft: #6fd2ff;
  --line:      rgba(255, 255, 255, 0.08);
  --radius:    16px;
  --wrap:      1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.02; letter-spacing: 0.01em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(8, 8, 13, 0.85), rgba(8, 8, 13, 0));
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.studio-tag {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  font-weight: 500;
}
.studio-tag .sep { color: var(--ink-faint); margin: 0 4px; }
.header-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}
.header-cta:hover { border-color: var(--red); color: var(--red-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 92px 0 34px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 78%);
}
.streaks {
  position: absolute; inset: -20%;
  background:
    repeating-linear-gradient(74deg, transparent 0 26px, rgba(33,183,255,0.05) 26px 27px),
    repeating-linear-gradient(-74deg, transparent 0 30px, rgba(255,37,69,0.045) 30px 31px);
  mask-image: radial-gradient(ellipse 60% 55% at 50% 45%, transparent 22%, #000 72%);
  opacity: 0.8;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.glow-red {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--red), transparent 62%);
  top: 8%; left: -6%;
}
.glow-blue {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--blue), transparent 62%);
  bottom: 2%; right: -8%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wordmark {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 13vw, 168px);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  position: relative;
}
/* Glow sits BEHIND the letters as a blurred duplicate. A `filter` on the
   wordmark itself (or any ancestor) collapses background-clip:text in
   Chromium, so the glow must be a separate, non-clipped layer. */
.wordmark::after {
  content: "SHE'S A BOT";
  position: absolute;
  inset: 0;
  z-index: -1;
  color: rgba(120, 130, 255, 0.35);
  filter: blur(26px);
}
/* Two-tone chrome matching the title card: warm copper "SHE'S" + cool steel "A BOT".
   NOTE: background-clip MUST come after the `background` shorthand — the shorthand
   resets background-clip to border-box, which would fill the whole box. */
.wordmark .w-warm {
  background: linear-gradient(180deg, #ffe9cf 6%, #ff9d5a 38%, #b8551f 60%, #ffcfa0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.wordmark .w-cool {
  background: linear-gradient(180deg, #eef3ff 6%, #a9c0ff 38%, #5566c9 60%, #d6e0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Title-card logo image (replaces the CSS wordmark once uploaded) */
.hero-logo {
  margin: 0 auto;
  line-height: 0;
}
.hero-logo img {
  display: block;
  width: min(1060px, 94vw);
  height: auto;
  margin: 0 auto;
}
.tagline {
  margin-top: 18px;
  font-size: clamp(15px, 2.4vw, 22px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.scroll-cue {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-dim);
  transition: color 0.2s;
}
.scroll-cue:hover { color: #fff; }
.scroll-cue-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-cue-chev {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  animation: cueBob 1.8s ease-in-out infinite;
  transition: border-color 0.2s, box-shadow 0.2s;
}
/* pulsing ring to draw the eye */
.scroll-cue-chev::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--red);
  animation: cuePulse 2s ease-out infinite;
}
.scroll-cue:hover .scroll-cue-chev {
  border-color: var(--red);
  box-shadow: 0 0 26px rgba(255, 37, 69, 0.45);
}
@keyframes cueBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@keyframes cuePulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Video ---------- */
.video-section { padding: 40px 0 90px; position: relative; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 22px;
}
.section-label .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(33, 183, 255, 0.06);
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(33,183,255,0.10), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(255,37,69,0.12), transparent 55%),
    var(--bg-2);
}
.play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.play-btn:hover {
  transform: scale(1.06);
  background: rgba(255, 37, 69, 0.18);
  box-shadow: 0 0 40px rgba(255, 37, 69, 0.4);
}
.play-btn svg { margin-left: 4px; }
.placeholder-note {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Format: Real vs AI ---------- */
.format { padding: 20px 0 70px; }
.versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
}
.vs-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.vs-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.16;
  pointer-events: none;
}
.vs-real { border-color: rgba(33,183,255,0.4); }
.vs-real::before { background: radial-gradient(circle at 30% 20%, var(--blue), transparent 60%); }
.vs-ai { border-color: rgba(255,37,69,0.4); }
.vs-ai::before { background: radial-gradient(circle at 70% 20%, var(--red), transparent 60%); }
.vs-tag {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
}
.vs-real .vs-tag { color: var(--blue-soft); }
.vs-ai .vs-tag { color: var(--red-soft); }
.vs-card p { color: var(--ink-dim); font-size: 15px; position: relative; }
.vs-split {
  display: grid;
  place-items: center;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.vs-split span {
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--panel);
}

/* ---------- Stills gallery (neon HUD frames) ---------- */
.gallery { padding: 20px 0 80px; }
.still-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.still-frame {
  position: relative;
  border-radius: 12px;
  padding: 6px;
  border: 1.5px solid;
}
.frame-blue { border-color: rgba(33,183,255,0.55); box-shadow: 0 0 26px rgba(33,183,255,0.14), inset 0 0 20px rgba(33,183,255,0.06); }
.frame-red  { border-color: rgba(255,37,69,0.55);  box-shadow: 0 0 26px rgba(255,37,69,0.14),  inset 0 0 20px rgba(255,37,69,0.06); }
/* HUD corner brackets */
.still-frame::before,
.still-frame::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid currentColor;
}
.frame-blue { color: var(--blue-soft); }
.frame-red  { color: var(--red-soft); }
.still-frame::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; border-top-left-radius: 12px; }
.still-frame::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; border-bottom-right-radius: 12px; }
.still {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background-color: var(--bg-2);
  /* Placeholder gradient shows until a real still is dropped in */
  background-image: linear-gradient(135deg, rgba(33,183,255,0.12), rgba(255,37,69,0.12));
  background-size: cover;
  background-position: center;
}

/* ---------- Pillars ---------- */
.pillars {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 56px 0;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.pillar:nth-child(1) h3 { color: var(--red-soft); }
.pillar:nth-child(2) h3 { color: var(--blue-soft); }
.pillar:nth-child(3) h3 { color: #fff; }
.pillar p { color: var(--ink-dim); font-size: 15px; max-width: 30ch; }

/* ---------- Contact ---------- */
.contact { padding: 90px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 0.02em;
}
.contact-copy p { margin-top: 14px; color: var(--ink-dim); font-size: 16px; max-width: 34ch; }
.mail-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.mail-link:hover { border-color: var(--blue-soft); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.field .optional { text-transform: none; letter-spacing: 0; color: var(--ink-faint); }
.field input,
.field textarea {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 37, 69, 0.15);
}
.hidden-field { display: none; }
.submit-btn {
  align-self: flex-start;
  margin-top: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 999px;
  padding: 14px 34px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.submit-btn:hover {
  background: var(--red-soft);
  box-shadow: 0 0 34px rgba(255, 37, 69, 0.4);
  transform: translateY(-1px);
}
.submit-btn:disabled { opacity: 0.7; cursor: default; transform: none; box-shadow: none; }
.form-status {
  font-size: 14px;
  margin-top: 2px;
}
.form-status:empty { display: none; }
.form-status.ok { color: var(--blue-soft); }
.form-status.err { color: var(--red-soft); }
.form-status a { color: inherit; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #fff;
  display: inline-flex;
  align-items: center;
}
.footer-brand img {
  height: 28px;
  width: auto;
  display: block;
}
.footer-brand sup { font-size: 9px; }
.footer-meta { font-size: 13px; color: var(--ink-faint); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 88vh; }
  .versus { grid-template-columns: 1fr; }
  .vs-split { transform: rotate(90deg); margin: -2px 0; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .studio-tag { font-size: 12px; }
  .still-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-cue-chev,
  .scroll-cue-chev::after { animation: none; }
}
