.company-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(34, 199, 179, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(36, 56, 74, 0.12), transparent 26%),
    #f4f8fb;
}

@media (min-width: 1100px) {
  .company-body {
    zoom: 0.8;
  }
}

.company-nav-copy {
  color: rgba(244, 251, 255, 0.82);
  font-weight: 700;
}

.company-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 72px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 6px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
}

.company-hero-copy,
.company-hero-art,
.company-panel,
.snapshot-card,
.insight-card,
.faq-item,
.cta-band {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(215, 225, 232, 0.96);
  box-shadow: var(--shadow);
}

.company-hero-copy,
.company-hero-art,
.company-panel,
.cta-band {
  border-radius: 28px;
}

.company-hero-copy {
  padding: 30px;
}

.company-hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.company-summary {
  margin: 20px 0 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.76;
  font-size: 1.05rem;
}

.hero-chip-row,
.hero-actions-row,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-chip-row {
  margin-top: 22px;
}

.hero-actions-row,
.cta-band-actions {
  margin-top: 24px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(34, 199, 179, 0.12);
  color: var(--teal-deep);
  font-weight: 800;
}

.company-primary,
.company-secondary,
.company-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.company-primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: white;
  box-shadow: 0 14px 30px rgba(38, 193, 150, 0.24);
}

.company-secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
}

.company-hero-art {
  padding: 26px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  background:
    linear-gradient(180deg, rgba(34, 199, 179, 0.1), rgba(255, 255, 255, 0.98) 60%),
    white;
}

.brand-visual {
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid #dde7ed;
  background: linear-gradient(180deg, #fbfdfe, #edf4f8);
}

.brand-visual img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.brand-visual-meta {
  display: grid;
  gap: 8px;
}

.brand-visual-kicker {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.brand-visual-meta strong {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.brand-visual-meta p {
  margin: 0;
  color: var(--muted);
}

.company-snapshot,
.insight-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.company-snapshot {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.snapshot-card,
.insight-card,
.faq-item {
  padding: 22px;
  border-radius: 22px;
}

.snapshot-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.snapshot-card strong {
  display: block;
  color: var(--navy);
  line-height: 1.5;
}

.snapshot-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.snapshot-link .snapshot-label,
.snapshot-link strong {
  text-decoration: none;
}

.snapshot-link:hover,
.snapshot-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(34, 199, 179, 0.45);
  box-shadow: 0 18px 36px rgba(23, 39, 53, 0.12);
}

.snapshot-link:hover strong,
.snapshot-link:focus-visible strong {
  color: var(--teal-deep);
}

.company-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  margin-top: 28px;
}

.company-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px;
  margin-top: 28px;
}

.company-video-card {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(215, 225, 232, 0.96);
  box-shadow: var(--shadow);
}

.video-frame-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0b1624;
  aspect-ratio: 16 / 9;
}

.video-frame-shell iframe,
.video-preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-preview-image {
  object-fit: cover;
}

.video-frame-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 27, 0.08), rgba(8, 16, 27, 0.78)),
    radial-gradient(circle at top right, rgba(34, 199, 179, 0.28), transparent 26%);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-frame-shell[data-started="true"]::after {
  opacity: 0;
}

.video-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  z-index: 1;
  pointer-events: none;
}

.video-overlay-copy {
  max-width: 70%;
  color: white;
}

.video-overlay-copy strong {
  display: block;
  margin-top: 8px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1.05;
}

.video-overlay-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.video-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-launch-button {
  min-width: 122px;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: white;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(38, 193, 150, 0.24);
  pointer-events: auto;
}

.video-sound-button {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 22, 36, 0.82);
  color: white;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(7, 14, 24, 0.24);
}

.company-video-copy h2 {
  max-width: 12ch;
}

.company-panel {
  padding: 28px;
}

.company-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

.company-panel p,
.insight-card p:last-child,
.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.74;
}

.company-panel-accent {
  background:
    linear-gradient(180deg, rgba(34, 199, 179, 0.1), rgba(255, 255, 255, 0.98) 55%),
    white;
}

.panel-callout {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(36, 56, 74, 0.05);
}

.panel-callout span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 800;
}

.company-inline-link {
  min-height: 42px;
  padding: 0 16px;
  background: var(--navy);
  color: white;
}

.insight-section,
.faq-section {
  margin-top: 28px;
}

.insight-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(34, 199, 179, 0.16), rgba(36, 56, 74, 0.06)),
    rgba(255, 255, 255, 0.96);
}

.cta-band p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .company-hero,
  .company-video-layout,
  .company-content-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .company-snapshot,
  .insight-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .company-shell {
    padding: 20px 14px 48px;
  }

  .company-hero-copy,
  .company-hero-art,
  .company-panel,
  .snapshot-card,
  .insight-card,
  .faq-item,
  .cta-band {
    padding: 22px;
  }

  .company-snapshot,
  .insight-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions-row,
  .cta-band-actions {
    flex-direction: column;
  }

  .company-primary,
  .company-secondary,
  .company-inline-link {
    width: 100%;
  }

  .video-overlay {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-overlay-copy {
    max-width: none;
  }

  .video-launch-button {
    width: 100%;
  }

  .brand-visual {
    min-height: 220px;
  }
}
