/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #090B10;
  --bg2:     #111520;
  --card:    #161C2C;
  --white:   #FFFFFF;
  --ink:     #F0F4F8;
  --ink2:    #CBD5E1;
  --mid:     #94A3B8;
  --soft:    #64748B;
  --line:    #1F2736;
  --teal:    #00E5FF;
  --teal-lt: rgba(0,229,255,0.12);
  --gold:    #F59E0B;
  --gold-lt: rgba(245,158,11,0.12);
  --green:   #10B981;
  --plum:    #8B5CF6;
  --serif:   'Cormorant', Georgia, serif;
  --sans:    'Outfit', system-ui, sans-serif;
  --max:     1100px;
}


/* ── SECTION BANDING ─────────────────────────────────────────────────────────
   "Zawsze ciemne kino": Hero, liczby, misja i CTA zawsze dark.
   Sekcje treściowe (how, platforms, vs, partners) używają --surface-*
   które można nadpisać prefers-color-scheme jeśli będzie light mode.
*/
:root {
  --surface-1:  #0E1320;  /* sekcje treściowe - ciemny grafit */
  --surface-2:  #090B10;  /* głęboka czerń - jak bg */
  --surface-card: #141B2B;
}

/* Jeśli kiedyś będzie light mode toggle - nadpisz tylko --surface-* */
[data-theme="light"] {
  --surface-1:  #F5F4F0;
  --surface-2:  #EDEAE3;
  --surface-card: #FFFFFF;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--mid);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  background: rgba(9, 11, 16, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 39, 54, 0.6);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.12em;
}
.nav-logo span { color: var(--teal); }

.nav-logo { color: var(--white) !important; }

.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.08em;
  border: 1px solid var(--teal);
  padding: 8px 22px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--teal); color: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  background: #090B10;
}

/* Atmospheric glow behind text when video is light */
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

/* ── ANIMATED CANVAS BACKGROUND ── */
/* ── VIDEO BACKGROUND ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.5);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  /* Gradient: opaque cream at left where text lives, transparent right */
  background:
    linear-gradient(
      105deg,
      rgba(245, 242, 236, 0.94) 0%,
      rgba(245, 242, 236, 0.88) 38%,
      rgba(245, 242, 236, 0.55) 62%,
      rgba(245, 242, 236, 0.18) 100%
    );
}

/* Thin left accent */
.hero::after {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--teal) 40%, var(--teal) 60%, transparent);
  opacity: 0.5;
  z-index: 1;
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #00E5FF;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 300;
  color: #FFFFFF;
  text-shadow: none;
  line-height: 1.08;
  margin-bottom: 30px;
  max-width: 760px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.25rem;
  color: #FFFFFF;
  text-shadow: none;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.75s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  margin: 0 auto;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50% { transform: scaleY(0.5) translateY(8px); opacity: 0.5; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  padding: 15px 34px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(2, 132, 168, 0.2);
}
.btn-primary:hover {
  background: #016E8F;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(2, 132, 168, 0.3);
}

.btn-ghost {
  display: inline-block;
  color: var(--mid);
  font-size: 0.85rem;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

/* ── NUMBERS ── */
.numbers {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.numbers-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.num-item {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.num-item:last-child { border-right: none; }
.num-val {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}
.num-item:nth-child(1) .num-val { color: var(--teal); }
.num-item:nth-child(2) .num-val { color: var(--gold); }
.num-item:nth-child(3) .num-val { color: var(--green); }
.num-item:nth-child(4) .num-val { color: var(--plum); }
.num-lbl { font-size: 0.8rem; color: var(--soft); line-height: 1.45; }

/* ── SECTIONS ── */
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 56px;
}
.section-title em { font-style: italic; color: var(--teal); }

/* ── HOW ── */
.how { padding: 100px 0; background: var(--surface-1); }

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--surface-card);
  padding: 44px 38px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background 0.25s;
}
.step:hover { background: #1C2438; }
.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(0, 229, 255, 0.28);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
  transition: color 0.2s;
}
.step:hover .step-num { color: var(--teal); }
.step-body h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.step-body p { font-size: 0.9rem; color: var(--mid); line-height: 1.72; }

/* ── PLATFORMS ── */
.platforms {
  padding: 52px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.plat-label {
  font-size: 0.67rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 18px;
}
.plat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
}
.plat-list span {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--ink2);
}
.plat-list .dot {
  color: var(--teal);
  font-size: 1.6rem;
  padding: 0 16px;
}

/* ── VS AGENCY ── */
.vs { padding: 100px 0; background: var(--surface-1); }

.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border: 1px solid var(--line);
}
.vs-col { padding: 48px 44px; }
.vs-agency { background: var(--surface-card); }
.vs-rolmatic { background: rgba(0,229,255,0.05); border-left: 2px solid var(--teal); }
.vs-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 26px;
}
.vs-rolmatic .vs-label { color: var(--teal); }
.vs-col ul { list-style: none; }
.vs-col li {
  font-size: 0.95rem;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.vs-col li:last-child { border-bottom: none; }
.vs-agency li { color: var(--soft); }
.vs-agency li::before { content: '—'; color: var(--line); flex-shrink: 0; }
.vs-rolmatic li { color: var(--ink2); }
.vs-rolmatic li::before { content: '✓'; color: var(--teal); flex-shrink: 0; font-weight: 500; }

.vs-divider {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--soft);
  padding: 48px 32px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  writing-mode: vertical-rl;
  text-align: center;
  background: var(--surface-1);
}

/* ── MISSION ── */
.mission {
  padding: 110px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(2, 132, 168, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(196, 122, 43, 0.08) 0%, transparent 55%);
}
.mission blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.mission blockquote cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 28px;
}

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--bg); }

.contact-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-top: -36px;
  margin-bottom: 52px;
  max-width: 500px;
}

.contact-form { max-width: 580px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-row .form-field { margin-bottom: 0; }

.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
}
.form-field input {
  background: var(--surface-card);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field input::placeholder { color: var(--soft); }
.form-field input:focus { border-color: var(--teal); }

.btn-submit {
  margin-top: 8px;
  width: 100%;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}

.form-success {
  max-width: 580px;
  background: rgba(2, 132, 168, 0.07);
  border: 1px solid rgba(2, 132, 168, 0.25);
  padding: 32px 36px;
}
.form-success p {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--teal);
  font-style: italic;
}

.form-error { color: #B91C1C; font-size: 0.85rem; margin-bottom: 16px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 48px;
  background: var(--bg);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
}
.footer-logo span { color: var(--teal); }
.footer-copy { font-size: 0.8rem; color: var(--soft); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-video-overlay {
    background: rgba(9, 11, 16, 0.82);
  }
  nav { padding: 18px 24px; }
  .hero { padding: 100px 24px 72px; }
  .hero::after { display: none; }
  .br-desk { display: none; }
  .section-inner { padding: 0 24px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .num-item { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 20px; }
  .num-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .num-item:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .plat-list span { font-size: 1.15rem; }
  .plat-list .dot { padding: 0 10px; }
  .vs-grid { grid-template-columns: 1fr; }
  .vs-divider { writing-mode: horizontal-tb; padding: 18px 40px; border: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 1.5rem; }
  .mission blockquote { font-size: 1.55rem; padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .section-title { font-size: 2rem; }
  .num-val { font-size: 2.2rem; }
  .how, .vs, .contact { padding: 72px 0; }
  .mission { padding: 80px 0; }
}

/* ── PARTNERS ── */
.partners {
  padding: 100px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 580px;
  margin-top: -36px;
  margin-bottom: 52px;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.partner-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  padding: 32px 32px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.partner-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.partner-logo-wrap { flex-shrink: 0; }

.partner-initials {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.partner-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.partner-sector {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 14px;
}

.partner-quote {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--mid);
  line-height: 1.6;
  border-left: 2px solid var(--teal);
  padding-left: 14px;
}

.partners-more {
  font-size: 0.88rem;
  color: var(--soft);
  text-align: center;
  font-style: italic;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 32px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}
.cookie-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.cookie-text strong { color: var(--white); }
.cookie-text a { color: var(--teal); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  font-family: var(--sans);
  font-size: 0.78rem;
  padding: 9px 18px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

.cookie-btn-accept {
  background: var(--teal);
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #016E8F; }

/* ── COOKIE MODAL ── */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(18,25,42,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal-inner {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 40px 32px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--soft);
  cursor: pointer;
  padding: 4px 8px;
}
.cookie-modal-close:hover { color: var(--ink); }

.cookie-modal-inner h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.cookie-modal-date {
  font-size: 0.75rem;
  color: var(--soft);
  margin-bottom: 24px;
}

.cookie-modal-inner h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 8px;
}

.cookie-modal-inner p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partner-card { padding: 22px 20px; }
  .cookie-inner { flex-direction: column; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-ghost, .cookie-btn-accept { flex: 1; text-align: center; }
  .cookie-modal-inner { padding: 28px 22px 24px; }
}

/* ── HERO FIX FINAL ── */
.hero-video-wrap::after { display: none; }

.hero-video {
  filter: brightness(0.45) saturate(0.8);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 16, 0.82);
}

.hero::after { display: none; }

.hero-title,
.hero-title em,
.hero-sub,
.hero-eyebrow {
  text-shadow: none !important;
}

.hero-sub {
  font-size: 1.25rem;
  line-height: 1.65;
  max-width: 760px;
}

/* ── CTA + MISSION FIX ── */
.btn-primary {
  background: var(--teal);
  color: #071016;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 34px;
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.16);
}

.btn-primary:hover {
  background: #00cfe6;
  color: #071016;
  box-shadow: 0 10px 34px rgba(0, 229, 255, 0.22);
}

.mission {
  background: #111824;
}

.mission::before {
  background: radial-gradient(ellipse 60% 80% at 18% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 58%);
}

.mission blockquote {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  color: #f8f8f6;
  max-width: 980px;
}

.mission blockquote cite {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: #00d8f5;
  margin-top: 34px;
}

/* ── HERO TWO-COLUMN LAYOUT ── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

/* ── REEL SHOWCASE ── */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.reels-track {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.reel-phone {
  width: 175px;
  aspect-ratio: 9/16;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,229,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  flex-shrink: 0;
  position: relative;
}

/* Notch */
.reel-phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  z-index: 10;
}

.reel-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Second phone - slightly offset and smaller */
.reel-phone--offset {
  width: 150px;
  margin-top: 48px;
  opacity: 0.85;
}

/* Mobile CTA - hidden on desktop */
.btn-reel-mobile {
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-right {
    order: 2;
    padding: 40px 24px 20px;
    width: 100%;
  }

  .reels-track {
    gap: 14px;
  }

  .reel-phone { width: 140px; }
  .reel-phone--offset { width: 120px; margin-top: 32px; }

  /* Mobile CTA button */
  .btn-reel-mobile {
    display: inline-block;
    margin-top: 24px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--teal);
    text-decoration: none;
    letter-spacing: 0.06em;
    border: 1px solid rgba(0,229,255,0.35);
    padding: 10px 22px;
    transition: background 0.2s, color 0.2s;
  }
  .btn-reel-mobile:hover {
    background: var(--teal);
    color: #071016;
  }
}

@media (max-width: 560px) {
  .reel-phone { width: 120px; border-radius: 18px; }
  .reel-phone--offset { width: 104px; }
}

/* ── HERO STRUCTURE FIX ── */

/* Video wrap: absolute, covers entire hero */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Grid: sits on top of video */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  gap: 40px;
  min-height: calc(100vh - 80px);
  padding: 100px 48px 60px;
}

.hero {
  padding: 0;
  display: flex;
  align-items: stretch;
}

/* Video brighter - overlay handles darkness */
.hero-video {
  filter: brightness(0.5) saturate(0.7) !important;
}

/* Scroll hint on top */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 80px 24px 40px;
    min-height: auto;
    gap: 40px;
  }
}

/* ── COOKIE BANNER FIX ── */
.cookie-banner {
  background: #050810;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.cookie-text p {
  color: #C8D8E8;
  font-size: 0.88rem;
}

.cookie-text strong { color: #FFFFFF; }
.cookie-text a { color: #00E5FF; }

.cookie-btn-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: #94A3B8;
}
.cookie-btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: #FFFFFF;
}

/* Modal */
.cookie-modal-inner {
  background: #0E1420;
  border: 1px solid rgba(0,229,255,0.15);
}

.cookie-modal-inner h3 { color: #FFFFFF; }
.cookie-modal-date { color: #64748B; }
.cookie-modal-inner h4 { color: #00E5FF; }
.cookie-modal-inner p { color: #94A3B8; }

.cookie-modal-close {
  color: #64748B;
}
.cookie-modal-close:hover { color: #FFFFFF; }