:root {
  --ink: #17130f;
  --paper: #fff8e8;
  --paper-strong: #f5e7c6;
  --line: rgba(23, 19, 15, 0.14);
  --muted: #6f6254;
  --orange: #d8a12f;
  --yellow: #ffd51d;
  --red: #572c19;
  --mint: #808035;
  --blue: #163955;
  --sky: #b7d9fe;
  --black: #111111;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(87, 44, 25, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(183, 217, 254, 0.62), transparent 20rem),
    radial-gradient(circle at 90% 12%, rgba(255, 213, 29, 0.28), transparent 22rem),
    linear-gradient(135deg, rgba(128, 128, 53, 0.18), transparent 28rem),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 232, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 182px;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  animation: logoFloat 4s ease-in-out infinite;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(183, 217, 254, 0.28);
}

.nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: none;
}

.hero {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 220px);
  align-items: center;
  padding: clamp(26px, 5vw, 64px) clamp(18px, 4vw, 56px) 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  animation: fadeLift 700ms ease both;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-info {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 640px;
  margin-top: 28px;
}

.hero-info img {
  display: block;
  width: 110px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: 0 16px 36px rgba(87, 44, 25, 0.14);
}

.hero-info strong,
.hero-info span,
.hero-info a {
  display: block;
}

.hero-info strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.12;
}

.hero-info span,
.hero-info a {
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-info a {
  color: var(--red);
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.watch-menu {
  position: relative;
  z-index: 1100;
}

.header-watch {
  margin-left: auto;
}

.header-watch .button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.header-watch .watch-dropdown {
  right: 0;
  left: auto;
}

.watch-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1200;
  display: grid;
  min-width: 240px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 19, 15, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.watch-menu:hover .watch-dropdown,
.watch-menu:focus-within .watch-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.watch-dropdown a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.watch-dropdown a:hover,
.watch-dropdown a:focus-visible {
  background: var(--yellow);
  outline: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.14);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  border-color: rgba(87, 44, 25, 0.24);
  box-shadow: 0 12px 0 rgba(87, 44, 25, 0.2);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero-visual {
  min-width: 0;
}

.hero-logo-stage {
  position: relative;
  display: grid;
  min-height: clamp(390px, 48vw, 600px);
  place-items: center;
  perspective: 1100px;
}

.hero-logo-stage::after {
  position: absolute;
  bottom: 12%;
  left: 50%;
  width: 58%;
  height: 12%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(17, 19, 15, 0.28), rgba(17, 19, 15, 0));
  filter: blur(10px);
  transform: translateX(-50%);
  content: "";
  transition:
    transform 280ms ease,
    opacity 280ms ease;
}

.hero-logo-stage img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(72%, 470px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 18px;
  filter:
    drop-shadow(0 28px 24px rgba(87, 44, 25, 0.22))
    drop-shadow(16px 22px 0 rgba(22, 57, 85, 0.12));
  transform: rotateY(0deg) rotateX(0deg) translateZ(0);
  transform-origin: 55% 50%;
  transition:
    filter 280ms ease,
    transform 280ms ease;
}

.hero-logo-stage:hover img {
  filter:
    drop-shadow(0 32px 28px rgba(87, 44, 25, 0.28))
    drop-shadow(28px 24px 0 rgba(22, 57, 85, 0.16));
  transform: rotateY(-18deg) rotateX(3deg) translateZ(34px);
}

.hero-logo-stage:hover::after {
  opacity: 0.74;
  transform: translateX(-46%) scaleX(0.88);
}

@keyframes pulse {
  from {
    height: 28%;
  }
  to {
    height: 96%;
  }
}

@keyframes studioGlow {
  from {
    --spot-x: 70%;
    --spot-y: 18%;
    filter: saturate(1);
  }
  to {
    --spot-x: 84%;
    --spot-y: 30%;
    filter: saturate(1.16);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes micNod {
  0%,
  100% {
    transform: translateX(-24%) rotate(0);
  }
  50% {
    transform: translateX(-24%) rotate(-2deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-3px) rotate(1deg);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.intro-band,
.section,
.split-section,
.offer-section,
.faq-section,
.contact-section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 56px);
  scroll-margin-top: 90px;
}

.intro-band {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: clamp(460px, 48vw, 760px);
  padding-bottom: clamp(22px, 3vw, 42px);
  color: var(--paper);
  background: var(--red);
}

.intro-band::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.72), rgba(17, 19, 15, 0.48) 48%, rgba(17, 19, 15, 0.64)),
    radial-gradient(circle at 18% 18%, rgba(255, 213, 29, 0.24), transparent 34%);
  content: "";
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

.intro-band .signal-line,
.intro-band p {
  position: relative;
  z-index: 2;
}

.signal-line {
  display: flex;
  width: max-content;
  gap: 10px;
  margin: 0 0 38px;
  animation: tickerMove 18s linear infinite;
}

.signal-line span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 232, 0.28);
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
  white-space: nowrap;
}

.intro-band p {
  max-width: 1120px;
  margin: auto auto 0;
  font-size: clamp(25px, 3.4vw, 48px);
  line-height: 1.08;
}

.section-heading {
  display: block;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 760px;
  margin-left: 0;
}

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

.format-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.format-card:hover {
  transform: translateY(-7px);
  border-color: rgba(87, 44, 25, 0.32);
  box-shadow: 0 22px 50px rgba(87, 44, 25, 0.14);
}

.format-card:nth-child(2) {
  background: var(--sky);
}

.format-card:nth-child(3) {
  color: var(--paper);
  background: var(--mint);
}

.format-index {
  display: block;
  margin-bottom: 70px;
  color: var(--red);
  font-weight: 950;
}

.format-card p,
.split-section p,
.video-tile p,
.contact-card p {
  color: var(--muted);
}

.format-card:nth-child(3) p {
  color: rgba(255, 248, 232, 0.78);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(183, 217, 254, 0.46), transparent 46%),
    var(--paper-strong);
}

.split-section > div p {
  max-width: 620px;
  font-size: 18px;
}

.process-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  padding: 22px 22px 22px 78px;
  border: 1px solid rgba(23, 19, 15, 0.12);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 34px rgba(87, 44, 25, 0.12);
}

.process-list li::before {
  position: absolute;
  top: 20px;
  left: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
  counter-increment: step;
  content: counter(step);
  font-weight: 900;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 6px;
  color: var(--muted);
}

.works {
  background: var(--paper);
}

.equipment-section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 56px);
  scroll-margin-top: 90px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 213, 29, 0.34), transparent 20rem),
    var(--sky);
}

.equipment-lead {
  max-width: 980px;
  margin: -8px 0 28px auto;
}

.equipment-lead p {
  color: #2d4050;
  font-size: clamp(18px, 2vw, 24px);
}

.equipment-proof {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.equipment-proof div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(22, 57, 85, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.8);
}

.equipment-proof strong,
.equipment-proof span {
  display: block;
}

.equipment-proof strong {
  color: var(--red);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.equipment-proof span {
  margin-top: 9px;
  color: #324553;
  font-size: 13px;
  font-weight: 850;
}

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

.equipment-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 520px;
  padding: 22px;
  border: 1px solid rgba(22, 57, 85, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease;
}

.equipment-card:hover {
  transform: translateY(-6px);
}

.equipment-main {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 14%, rgba(183, 217, 254, 0.38), transparent 36%),
    var(--red);
}

.equipment-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 188px;
  place-items: center;
  margin: -2px -2px 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 213, 29, 0.34), transparent 38%),
    linear-gradient(135deg, rgba(183, 217, 254, 0.74), rgba(255, 248, 232, 0.82));
}

.equipment-main .equipment-visual {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 213, 29, 0.42), transparent 38%),
    linear-gradient(135deg, rgba(255, 248, 232, 0.18), rgba(183, 217, 254, 0.18));
}

.equipment-visual::after {
  position: absolute;
  right: 12%;
  bottom: 18px;
  left: 12%;
  height: 18px;
  border-radius: 50%;
  background: rgba(17, 19, 15, 0.18);
  filter: blur(12px);
  content: "";
}

.equipment-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 250px;
  max-width: 92%;
  max-height: 178px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(17, 19, 15, 0.24));
}

.equipment-img-camera {
  width: 230px;
  max-width: 76%;
  transform: translate(-10%, 2%) rotate(-3deg);
}

.equipment-img-lens {
  position: absolute;
  right: 6%;
  bottom: 4%;
  width: 118px;
  max-width: 38%;
  transform: rotate(10deg);
}

.equipment-img-lens-single {
  width: 210px;
  max-width: 78%;
  max-height: 184px;
  transform: rotate(-8deg);
}

.equipment-img-wide {
  width: 260px;
  max-width: 96%;
}

.equipment-img-recorder {
  width: 224px;
  max-width: 76%;
  transform: translate(-10%, 0) rotate(-8deg);
}

.equipment-img-wireless {
  position: absolute;
  right: 5%;
  bottom: 2%;
  width: 116px;
  max-width: 34%;
  transform: rotate(8deg);
}

.equipment-img-tall {
  width: 230px;
  max-width: 86%;
  max-height: 206px;
}

.equipment-grid strong,
.equipment-grid span,
.equipment-grid p {
  display: block;
}

.equipment-grid strong {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.08;
}

.equipment-main strong {
  color: var(--paper);
}

.equipment-tag {
  width: max-content;
  margin-bottom: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(22, 57, 85, 0.18);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(255, 213, 29, 0.74);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.equipment-grid p {
  margin-bottom: 18px;
  color: #3f4f5a;
}

.equipment-main p {
  color: rgba(255, 248, 232, 0.82);
}

.equipment-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment-grid li {
  position: relative;
  padding-left: 18px;
  color: #2f3840;
  font-size: 14px;
  font-weight: 750;
}

.equipment-main li {
  color: rgba(255, 248, 232, 0.88);
}

.equipment-grid li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.equipment-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.equipment-stack article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(22, 57, 85, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.76);
}

.equipment-stack span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  font-weight: 950;
}

.equipment-stack h3 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
}

.equipment-stack p {
  max-width: 980px;
  margin: 0;
  color: #324553;
  font-size: clamp(16px, 1.5vw, 19px);
}

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

.video-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rutube-preview,
.tile-visual {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  border: 0;
}

.rutube-preview {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--paper);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 213, 29, 0.72), transparent 28%),
    radial-gradient(circle at 78% 74%, rgba(183, 217, 254, 0.58), transparent 30%),
    linear-gradient(135deg, #572c19, #808035);
  transition: transform 180ms ease;
}

.rutube-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.rutube-preview::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 19, 15, 0.02), rgba(17, 19, 15, 0.1) 42%, rgba(17, 19, 15, 0.72)),
    radial-gradient(circle at 14% 20%, rgba(255, 213, 29, 0.34), transparent 34%);
  content: "";
}

.rutube-preview:hover {
  transform: scale(1.015);
}

.rutube-preview span {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 950;
}

.rutube-preview strong {
  position: relative;
  z-index: 1;
  max-width: 92%;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.95;
}

.field-preview img {
  object-position: 50% 50%;
}

.studio-preview img {
  object-position: 50% 42%;
}

.video-tile > div:not(.tile-visual) {
  padding: 20px;
}

.story-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.story-points li {
  position: relative;
  padding-left: 18px;
  color: #3f4f5a;
  font-size: 15px;
  font-weight: 800;
}

.story-points li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.tile-visual {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.22), rgba(17, 17, 17, 0.02)),
    var(--blue);
}

.dark-tile .tile-visual {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 213, 29, 0.5), transparent 34%),
    linear-gradient(135deg, #17130f, var(--red));
}

.tile-visual span {
  font-size: 13px;
  font-weight: 950;
}

.tile-visual strong {
  max-width: 260px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 213, 29, 0.22), transparent 22rem),
    var(--ink);
}

.geo-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(50px, 7vw, 90px) clamp(18px, 4vw, 56px);
  scroll-margin-top: 90px;
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--blue), #0f2538);
}

.geo-section div {
  max-width: 920px;
}

.geo-section p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 248, 232, 0.78);
  font-size: 20px;
}

.faq-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 213, 29, 0.24), transparent 22rem),
    linear-gradient(180deg, var(--paper), rgba(183, 217, 254, 0.32));
}

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

.faq-grid details {
  border: 1px solid rgba(87, 44, 25, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(87, 44, 25, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.faq-grid details:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 44, 25, 0.32);
}

.faq-grid details[open] {
  background: var(--sky);
}

.faq-grid summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid p {
  margin: 0;
  padding: 0 24px 24px;
  color: #4d4a3d;
}

.offer-copy h2 {
  max-width: 900px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.audience-list span,
.social-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 20%, rgba(183, 217, 254, 0.58), transparent 22rem),
    var(--paper);
}

.contact-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: clamp(26px, 5vw, 56px);
}

.alexandra-card {
  max-width: 260px;
  margin: 0 0 30px;
}

.alexandra-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: 52% 30%;
  box-shadow: 0 22px 46px rgba(17, 19, 15, 0.18);
}

.contact-card h2 {
  max-width: 920px;
}

.contact-card p {
  max-width: 760px;
  font-size: 20px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-panel {
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 28px;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 16%, rgba(183, 217, 254, 0.48), transparent 34%),
    var(--red);
}

.contact-panel img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  animation: logoFloat 4s ease-in-out infinite;
}

.contact-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-panel div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 248, 232, 0.18);
}

.contact-panel dt {
  color: rgba(255, 248, 232, 0.68);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 950;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: var(--black);
}

.footer p {
  margin: 0;
}

.footer .legal-info {
  margin-top: 8px;
  color: rgba(255, 248, 232, 0.64);
  font-size: 14px;
  line-height: 1.4;
}

.footer a {
  font-weight: 900;
}

@media (max-width: 1060px) {
  .hero,
  .split-section,
  .offer-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .audience-list {
    justify-content: flex-start;
  }

  .geo-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .intro-band,
  .section,
  .split-section,
  .offer-section,
  .faq-section,
  .contact-section,
  .equipment-section,
  .geo-section {
    scroll-margin-top: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: visible;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav {
    order: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .nav a {
    min-width: 0;
    padding: 0 6px;
    font-size: 13px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(35px, 10vw, 54px);
    line-height: 1;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

  .equipment-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .equipment-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-stack article {
    grid-template-columns: 1fr;
  }

  .hero-logo-stage {
    min-height: 420px;
  }

  .format-index {
    margin-bottom: 38px;
  }

  .section-heading {
    display: block;
  }

  .process-list li {
    padding-right: 18px;
  }

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

@media (max-width: 430px) {
  .hero-info {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-info img {
    width: 92px;
  }

  .hero-info strong {
    font-size: 17px;
  }

  .hero-info span,
  .hero-info a {
    font-size: 14px;
    line-height: 1.35;
  }

  .watch-menu {
    width: 100%;
  }

  .site-header .watch-menu {
    width: auto;
  }

  .watch-dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
    transition:
      max-height 180ms ease,
      margin-top 180ms ease,
      opacity 160ms ease,
      padding 180ms ease;
  }

  .watch-menu:hover .watch-dropdown,
  .watch-menu:focus-within .watch-dropdown {
    max-height: 320px;
    margin-top: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    transform: none;
  }

  .watch-dropdown a {
    min-height: 54px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header .watch-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 36px));
    max-height: none;
    margin-top: 0;
    overflow: visible;
    padding: 8px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .nav a {
    padding: 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
