:root {
  --ocean-deep: #012832;
  --ocean-mid: #033c48;
  --primary: #064c58;
  --primary-dark: #053a42;
  --accent: #4ecdc4;
  --accent-ice: #a8d8e8;
  --fog: #b8c9ce;
  --pearl: #f4f1ea;
  --lightgray: #ededed;
  --text-body: rgba(255, 255, 255, 0.9);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  --header-height: 4rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ocean-deep);
  color: white;
  font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-200%);
  border-radius: 999px;
  background: var(--primary);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 76, 88, 0.1);
  background: rgba(237, 237, 237, 0.95);
  padding: 0;
  color: var(--primary);
  box-shadow: 0 8px 28px rgba(1, 40, 50, 0.08);
}

.header-shell {
  position: relative;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-top {
  position: relative;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding-block: 1rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.brand:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 8px 18px rgba(6, 76, 88, 0.1);
}

.brand:focus-visible,
.nav a:focus-visible,
.language-toggle:focus-visible,
.button:focus-visible,
.footer-contacts-inner a:focus-visible,
.footer-bottom a:focus-visible,
.footer-bottom button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px var(--primary), 0 0 0 4px var(--lightgray);
}

.brand img,
.brand-onair img,
.brand-guard img {
  max-height: 2.25rem;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
}

.nav a,
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: var(--primary);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.nav a:hover,
.language-toggle:hover {
  transform: translateY(-0.125rem);
  background: rgba(6, 76, 88, 0.08);
  box-shadow: 0 8px 18px rgba(6, 76, 88, 0.1);
}

.nav a.is-active,
.nav a[aria-current="true"] {
  background: rgba(6, 76, 88, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-toggle {
  display: none;
  cursor: pointer;
  border: 1px solid rgba(6, 76, 88, 0.3);
  background: transparent;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}

.language-toggle:hover {
  border-color: rgba(6, 76, 88, 0.45);
}

.language-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.mobile-menu-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: background 200ms ease;
}

.mobile-menu-toggle:hover {
  background: rgba(6, 76, 88, 0.08);
}

.mobile-menu-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px var(--primary), 0 0 0 4px var(--lightgray);
}

.mobile-menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu-icon-close {
  display: none;
}

.mobile-menu-toggle.is-open .mobile-menu-icon-open {
  display: none;
}

.mobile-menu-toggle.is-open .mobile-menu-icon-close {
  display: block;
}

.mobile-nav {
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  border-top: 1px solid rgba(6, 76, 88, 0.1);
  padding: 1rem 0 1.25rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-inner > a:not(.button) {
  display: block;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  transition: background 200ms ease;
}

.mobile-nav-inner > a:not(.button):hover,
.mobile-nav-inner > a:not(.button).is-active,
.mobile-nav-inner > a:not(.button)[aria-current="true"] {
  background: rgba(6, 76, 88, 0.1);
}

.mobile-nav-divider {
  height: 1px;
  margin: 0.25rem 0;
  background: rgba(6, 76, 88, 0.1);
}

.mobile-nav-cta {
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
}

.mobile-nav-lang {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(6, 76, 88, 0.15);
  font-size: 0.875rem;
}

.shell {
  width: min(120rem, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.tone {
  background:
    radial-gradient(circle at 18% 12%, rgba(6, 76, 88, 0.18), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(78, 205, 196, 0.08), transparent 38%),
    rgba(3, 60, 72, 0.28);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(78, 205, 196, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(1, 40, 50, 0.8) 0%, rgba(1, 40, 50, 0.46) 48%, rgba(1, 40, 50, 0.5) 100%),
    linear-gradient(to top, rgba(1, 40, 50, 0.76), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 4rem 0;
}

.hero-copy {
  max-width: 54rem;
}

.hero-headline {
  display: grid;
  gap: 0.35rem;
}

.hero-product-name {
  margin-top: 0;
  max-width: none;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-tagline {
  margin-top: 0.35rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-lead {
  margin-top: 1.35rem;
}

.eyebrow,
.hero-card span,
.image-card span,
.mini-gallery figcaption {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(6, 76, 88, 0.4);
  border-radius: 999px;
  background: var(--primary);
  padding: 0.32rem 0.95rem;
  color: white;
  box-shadow: 0 8px 22px rgba(6, 76, 88, 0.28);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 1.5rem;
  max-width: 50rem;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

h2 {
  margin-top: 1.35rem;
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

h3 {
  color: white;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.hero-copy p,
.copy-panel p,
.section-heading p,
.roadmap p,
.final-card p {
  margin-top: 1.45rem;
  max-width: 48rem;
  color: var(--text-body);
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.hero-copy .hero-subtitle {
  margin-top: 0.25rem;
  margin-left: 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.12;
}

.hero-copy .hero-tagline {
  margin-top: 0.4rem;
  margin-left: 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.12;
}

.hero-copy .hero-lead {
  margin-top: 1.15rem;
  margin-left: 0.35rem;
  max-width: 42rem;
  font-size: clamp(1.08rem, 1.55vw, 1.25rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.cta-row.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 0;
  border-radius: 999px;
  padding: 0.875rem 2rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease, border-color 300ms ease, color 300ms ease;
}

.button:hover {
  transform: translateY(-0.125rem);
}

.button-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.button-small {
  display: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 28px rgba(6, 76, 88, 0.32);
}

.button-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 30px rgba(6, 76, 88, 0.6), 0 12px 30px rgba(6, 76, 88, 0.4);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
}

.button-secondary:hover {
  border-color: rgba(78, 205, 196, 0.5);
  background: rgba(78, 205, 196, 0.1);
  color: white;
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.25);
}

.hero-card,
.copy-panel,
.roadmap,
.final-card {
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card {
  width: min(100%, 30rem);
  justify-self: end;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.85rem, 2.5vw, 2.35rem);
  background: rgba(1, 40, 50, 0.68);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.hero-card span,
.image-card span {
  margin-bottom: 1.15rem;
}

.hero-card strong {
  display: block;
  color: white;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero-card p {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.image-card p,
.screenshot-card p {
  margin-top: 0.9rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 4rem);
}

.split.reversed {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.media-card {
  min-height: min(68vh, 36rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--ocean-mid);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.cloud-copy-panel {
  justify-content: space-between;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  padding-block: clamp(2rem, 5vw, 4rem);
}

.cloud-copy-panel .eyebrow {
  margin-bottom: 0.2rem;
}

.cloud-copy-panel h2 {
  margin-top: 0;
}

.cloud-copy-panel p {
  max-width: 34rem;
}

.cloud-copy-panel .button {
  margin-top: 0.5rem;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.chip-grid span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.6rem 0.9rem;
  color: var(--text-body);
  font-size: 0.88rem;
}

.section-heading {
  max-width: 58rem;
}

.section-heading p {
  max-width: 44rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card,
.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.image-card div,
.screenshot-card {
  padding: 1.35rem;
}

.configuration-note {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  max-width: 72rem;
  margin: 2rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
  padding: clamp(1.25rem, 3vw, 1.85rem) clamp(1.25rem, 4vw, 2.5rem);
  color: var(--text-body);
  font-size: clamp(1rem, 1.35vw, 1.06rem);
  line-height: 1.6;
  text-align: center;
  box-shadow: 0 18px 42px rgba(1, 18, 28, 0.18);
}

.configuration-note-label {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(6, 76, 88, 0.4);
  border-radius: 999px;
  background: var(--primary);
  padding: 0.25rem 0.75rem;
  color: white;
  box-shadow: 0 8px 22px rgba(6, 76, 88, 0.28);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.mini-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.045);
}

.mini-gallery img {
  width: 100%;
  height: clamp(12rem, 21vw, 18rem);
  object-fit: contain;
  background:
    radial-gradient(circle at 20% 18%, rgba(78, 205, 196, 0.1), transparent 34%),
    var(--ocean-deep);
  padding: 0.65rem;
}

.screenshot-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
}

.screenshot-card img {
  width: 100%;
  height: clamp(9rem, 15vw, 13rem);
  object-fit: contain;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 18% 22%, rgba(78, 205, 196, 0.1), transparent 36%),
    linear-gradient(135deg, rgba(1, 40, 50, 0.98), rgba(3, 60, 72, 0.92));
  padding: 0.75rem;
}

.mini-gallery figcaption {
  display: flex;
  width: max-content;
  max-width: calc(100% - 2rem);
  justify-content: center;
  margin: 1.05rem auto 1.15rem;
  padding: 0.32rem 0.95rem;
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
}

.screenshot-card h3,
.screenshot-card p {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.screenshot-card h3 {
  margin-top: 1.15rem;
  font-size: 1.35rem;
}

.screenshot-card p {
  margin-bottom: 1.25rem;
}

.roadmap {
  padding: clamp(1.7rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 18% 20%, rgba(78, 205, 196, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.final-section {
  background: linear-gradient(180deg, rgba(1, 40, 50, 0.2), rgba(3, 60, 72, 0.42));
}

.final-card {
  max-width: 64rem;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.final-card .eyebrow {
  margin: 0 auto;
}

.final-card p {
  margin-inline: auto;
}

/* Footer — pixel match to onair-website/src/components/Footer.tsx */
.site-footer {
  position: relative;
  z-index: 20;
  border-top: 1px solid rgba(6, 76, 88, 0.1);
  background: rgba(237, 237, 237, 0.95);
  color: var(--primary);
}

.footer-shell {
  max-width: 120rem;
  margin: 0 auto;
  padding: 1rem;
}

.footer-main {
  display: grid;
  column-gap: 2rem;
  row-gap: 0.75rem;
}

.site-footer img {
  width: auto;
  max-height: 2.25rem;
  object-fit: contain;
}

.footer-company {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.footer-company-text,
.footer-admin,
.footer-contacts {
  min-width: 0;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: 0.02em;
  color: rgba(6, 76, 88, 0.9);
}

.footer-company-name {
  margin: 0;
  color: var(--primary);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-company-address {
  margin: 0.125rem 0 0;
}

.footer-admin {
  border-top: 1px solid rgba(6, 76, 88, 0.1);
  padding-top: 0.75rem;
}

.footer-admin-title {
  margin: 0 0 0.25rem;
  color: var(--primary);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.375;
  text-transform: uppercase;
}

.footer-admin-fields {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.25rem;
}

.footer-separator {
  display: none;
  color: rgba(6, 76, 88, 0.3);
}

.footer-contacts {
  border-top: 1px solid rgba(6, 76, 88, 0.1);
  padding-top: 0.75rem;
}

.footer-contacts-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.5rem;
}

.footer-contacts-inner a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-contacts-inner a:hover,
.footer-bottom a:hover,
.footer-bottom button:hover {
  color: var(--primary);
}

.footer-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.footer-linkedin {
  display: flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(6, 76, 88, 0.3);
  border-radius: 999px;
  transition: border-color 300ms ease, background 300ms ease;
}

.footer-linkedin:hover {
  border-color: rgba(6, 76, 88, 0.5);
  background: rgba(6, 76, 88, 0.08);
}

.linkedin-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(6, 76, 88, 0.1);
  padding-top: 0.75rem;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: 0.02em;
  color: rgba(6, 76, 88, 0.8);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 400;
}

.footer-bottom button {
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
}

@media (min-width: 640px) {
  .header-shell {
    padding: 0 1.5rem;
  }

  .brand img,
  .brand-onair img,
  .brand-guard img {
    max-height: 2.5rem;
  }

  .footer-shell {
    padding: 1.25rem 1.5rem;
  }

  .footer-company {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .footer-company-text,
  .footer-admin,
  .footer-contacts {
    font-size: 0.6875rem;
  }

  .footer-bottom {
    margin-top: 0.375rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    padding-top: 0.375rem;
    font-size: 0.625rem;
  }
}

@media (min-width: 768px) {
  .mobile-menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .language-toggle {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .header-shell {
    padding: 0 3rem;
  }

  .brand img,
  .brand-onair img,
  .brand-guard img {
    max-height: 3rem;
  }

  .header-actions .button-small {
    display: inline-flex;
  }

  .footer-shell {
    padding: 0.75rem 3rem;
  }

  .site-footer img {
    max-height: 2.5rem;
  }
}

@media (min-width: 1280px) {
  .footer-main {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(22rem, 1.2fr) minmax(20rem, 1fr);
    align-items: center;
  }

  .footer-admin,
  .footer-contacts {
    border-top: 0;
    padding-top: 0;
  }

  .footer-contacts-inner {
    justify-content: flex-end;
  }

  .footer-separator {
    display: inline;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 160ms;
}

@media (max-width: 767px) {
  .nav-desktop,
  .header-actions-desktop {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-content,
  .split,
  .split.reversed,
  .card-grid.two,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-content: center;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 22rem;
  }

}

@media (max-width: 640px) {
  .brand img {
    max-height: 2.25rem;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    min-height: 100svh;
    padding: 4rem 0 3rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .copy-panel,
  .roadmap,
  .final-card {
    border-radius: 1.5rem;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    display: grid;
  }

  .footer-contacts-inner {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
