:root {
  --ink-950: #050b16;
  --ink-900: #0b1424;
  --ink-800: #14243d;
  --ink-700: #1e355a;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --emerald-500: #10b981;
  --slate-100: #d8e2f0;
  --slate-300: #9fb1ca;
  --white: #ffffff;
  --line: rgba(159, 177, 202, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--slate-100);
  background:
    radial-gradient(1100px 700px at 10% 0%, rgba(59, 130, 246, 0.22), transparent 45%),
    radial-gradient(1200px 700px at 90% 10%, rgba(16, 185, 129, 0.16), transparent 50%),
    linear-gradient(180deg, #050b16 0%, #0a1324 55%, #0e1a2e 100%);
}

h1,
h2,
h3,
summary,
.brand {
  font-family: "Poppins", "Inter", sans-serif;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  color: #0b1424;
  background: #fff;
  border: 2px solid var(--blue-500);
  padding: 8px 10px;
  z-index: 99;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 11, 22, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 1.18rem;
}

.brand span {
  color: var(--blue-400);
}

.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  text-decoration: none;
  color: #d8e2f0;
  font-weight: 500;
}

.site-nav a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(59, 130, 246, 0.25), transparent 55%),
    linear-gradient(100deg, rgba(5, 11, 22, 0.96) 18%, rgba(5, 11, 22, 0.76) 62%, rgba(5, 11, 22, 0.65));
  z-index: -1;
}

.hero-content {
  padding: 74px 0;
  animation: fadeup 700ms ease-out;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.hero-copy {
  background: rgba(8, 17, 33, 0.6);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #93c5fd;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.06;
  margin: 12px 0;
  max-width: 14ch;
  color: #fff;
}

.lead {
  font-size: clamp(1rem, 2.4vw, 1.16rem);
  max-width: 64ch;
  color: #dbeafe;
}

.cta-row {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue-500);
  color: #fff;
}

.btn-primary:hover {
  background: #2563eb;
}

.btn-ghost {
  border-color: #7fb0ff;
  color: #e8f1ff;
}

.btn-ghost:hover {
  background: rgba(96, 165, 250, 0.12);
}

.headline-panel {
  border: 1px solid rgba(96, 165, 250, 0.3);
  background: linear-gradient(180deg, rgba(8, 18, 36, 0.94), rgba(13, 29, 56, 0.92));
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.headline-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  font-weight: 700;
}

.headline-viewport {
  margin-top: 12px;
  height: 376px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(3, 8, 17, 0.55);
  position: relative;
}

.headline-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  animation: headlineScroll 32s linear infinite;
}

.headline-viewport:hover .headline-track {
  animation-play-state: paused;
}

.headline-track a {
  display: block;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-left: 3px solid #60a5fa;
  border-radius: 10px;
  text-decoration: none;
  color: #dbeafe;
  background: rgba(11, 20, 36, 0.9);
  min-height: 44px;
  padding: 10px;
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.headline-track a:hover {
  border-left-color: var(--emerald-500);
  color: #fff;
}

.panel-photos {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.panel-photos img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(159, 177, 202, 0.28);
}

.img-portrait {
  object-position: center 20%;
}

.img-emmys {
  object-position: center 35%;
}

.photo-strip {
  padding: 10px 0 36px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(159, 177, 202, 0.2);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.video-grid iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(159, 177, 202, 0.3);
  border-radius: 12px;
  background: #02060f;
}

.video-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.video-links a {
  text-decoration: none;
  background: rgba(8, 18, 34, 0.9);
  border: 1px solid rgba(159, 177, 202, 0.25);
  border-left: 3px solid #60a5fa;
  color: #dbeafe;
  border-radius: 10px;
  padding: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.video-links a:hover {
  border-left-color: var(--emerald-500);
  color: #fff;
}

.img-stage {
  object-position: center 24%;
}

.img-stage-wide {
  object-position: center 12%;
}

.img-media {
  object-position: center 34%;
}

.credibility {
  background: rgba(7, 14, 26, 0.85);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.cred-label {
  margin: 0;
  color: var(--slate-300);
  font-weight: 700;
}

.logo-row,
.cred-meta {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-row span,
.cred-meta span {
  border: 1px solid var(--line);
  background: rgba(8, 17, 33, 0.8);
  color: #e2e8f0;
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 600;
}

.middle-row {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(7, 14, 26, 0.85), rgba(11, 28, 52, 0.9), rgba(7, 14, 26, 0.85));
}

.middle-row-inner {
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: baseline;
  justify-content: center;
  text-align: center;
}

.middle-row-title {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.middle-row-copy {
  margin: 0;
  color: #b9cde3;
  font-weight: 600;
}

.section,
.authority,
.bridge {
  padding: 72px 0;
}

.section {
  background: transparent;
}

.section-alt {
  background: rgba(7, 16, 31, 0.66);
}

.grid-3,
.service-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.glass-card {
  background: rgba(8, 17, 33, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.bridge {
  background: linear-gradient(135deg, #0a1324, #112748 60%, #0f2f52);
  color: #e2e8f0;
}

.bridge-grid,
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}

.bridge-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline {
  margin: 0;
  padding-left: 18px;
  color: #c8d5e6;
}

.timeline li + li {
  margin-top: 8px;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
}

.section p,
.section li {
  color: #c6d4e7;
}

.section-lead {
  color: #aec0d7;
  margin-top: 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

details {
  background: rgba(8, 18, 34, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
}

.text-link {
  color: #8ec5ff;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  color: #fff;
}

.service-grid article {
  background: rgba(8, 18, 34, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.testimonials {
  background: #050b16;
}

.testimonial-wrap {
  position: relative;
  min-height: 128px;
}

.testimonial {
  opacity: 0;
  position: absolute;
  margin: 0;
  inset: 0;
  transition: opacity 320ms ease;
  font-size: 1.05rem;
}

.testimonial.active {
  opacity: 1;
}

.testimonial cite {
  margin-top: 10px;
  display: block;
  color: #9db3cf;
  font-style: normal;
}

.faq details + details {
  margin-top: 10px;
}

.contact {
  background: rgba(7, 16, 30, 0.75);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-links a {
  color: #fff;
}

.contact-form {
  background: rgba(5, 12, 23, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #dbeafe;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #0b1424;
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}

.captcha-note {
  margin: 0;
  font-size: 0.85rem;
  color: #9fb1ca;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050b16;
  padding: 20px 0 32px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #dbeafe;
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headlineScroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .panel-photos img {
    height: 200px;
  }
}

@media (max-width: 900px) {
  .grid-3,
  .topic-grid,
  .service-grid,
  .media-grid,
  .bridge-grid,
  .split,
  .photo-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 4vw;
    background: #0d1a2e;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    flex-direction: column;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: #0d1a2e;
    color: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    font-weight: 700;
  }

  .headline-viewport {
    height: 310px;
  }

  .photo-grid img {
    aspect-ratio: 4 / 3;
  }

  .video-grid iframe {
    min-height: 260px;
  }
}
