:root {
  color-scheme: dark;

  --black: #020404;
  --black-soft: #060908;
  --black-raised: #0a0e0c;
  --panel: #0d110f;

  --green: #b8ff23;
  --green-soft: rgba(184, 255, 35, 0.12);
  --green-line: rgba(184, 255, 35, 0.34);

  --white: #f7f8f4;
  --muted: #afb6af;
  --muted-dark: #747b75;

  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);

  --page-padding: clamp(20px, 6vw, 96px);
  --section-space: clamp(88px, 11vw, 176px);
  --content-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1.4;
}

/* ==================================================
   HERO
================================================== */

.hero {
  width: 100%;
  background: #000;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==================================================
   FLAGSHIP FILM
================================================== */

.film-section {
  padding:
    clamp(76px, 9vw, 136px)
    var(--page-padding)
    var(--section-space);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(184, 255, 35, 0.1),
      transparent 34%
    ),
    var(--black);
}

.section-heading {
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.film-heading {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 750;
  letter-spacing: -0.068em;
  line-height: 0.92;
}

.section-heading h1 span {
  color: var(--green);
}

.film-frame {
  width: min(1320px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--green-line);
  border-radius: clamp(14px, 2vw, 28px);
  background: #000;
  box-shadow:
    0 48px 130px rgba(0, 0, 0, 0.68),
    0 0 100px rgba(184, 255, 35, 0.055);
}

.flagship-film {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.film-note {
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

/* ==================================================
   INTRODUCTION
================================================== */

.intro-section {
  padding:
    var(--section-space)
    var(--page-padding);

  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(184, 255, 35, 0.075),
      transparent 30%
    ),
    var(--black-soft);
}

.intro-layout {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: end;
}

.intro-heading h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 760;
  letter-spacing: -0.072em;
  line-height: 0.9;
}

.intro-heading h2 span {
  color: var(--green);
}

.intro-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.67;
}

/* ==================================================
   PROCESS
================================================== */

.process-section {
  padding:
    var(--section-space)
    var(--page-padding);

  background: var(--black);
}

.process-heading {
  margin-bottom: clamp(64px, 8vw, 112px);
}

.process-heading h2 {
  font-size: clamp(48px, 7vw, 94px);
}

.process-track {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
}

.process-step {
  position: relative;
  min-height: 570px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.045),
      transparent 42%
    ),
    var(--black-raised);
}

.process-step::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(184, 255, 35, 0.05);
  filter: blur(40px);
}

.process-number {
  position: relative;
  z-index: 2;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.process-visual {
  position: relative;
  z-index: 2;
  height: 300px;
  margin: 46px 0 34px;
  display: grid;
  place-items: center;
}

.process-copy {
  position: relative;
  z-index: 2;
}

.process-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 720;
  letter-spacing: -0.052em;
}

.process-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.process-arrow {
  color: var(--green);
  font-size: clamp(24px, 3vw, 42px);
  opacity: 0.75;
}

/* Phone illustration */

.phone-shell {
  position: relative;
  width: 142px;
  height: 275px;
  padding: 9px;
  border: 2px solid rgba(255, 255, 255, 0.54);
  border-radius: 31px;
  background: #080b09;
  transform: rotate(-4deg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.54),
    0 0 40px rgba(184, 255, 35, 0.08);
}

.phone-camera {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 44px;
  height: 9px;
  border-radius: 999px;
  background: #050605;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 23px;
  background:
    linear-gradient(
      to bottom,
      #293c39 0%,
      #182623 43%,
      #1b4f28 44%,
      #0d321a 100%
    );
}

.recording-indicator {
  position: absolute;
  top: 18px;
  right: 13px;
  z-index: 2;
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.recording-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff493d;
}

.golfer-silhouette {
  position: absolute;
  right: 33px;
  bottom: 48px;
  width: 8px;
  height: 56px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.78);
  transform: rotate(-4deg);
}

.golfer-silhouette::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.82);
}

.golfer-silhouette::after {
  content: "";
  position: absolute;
  top: 18px;
  left: -17px;
  width: 50px;
  height: 3px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.82);
  transform: rotate(-48deg);
  transform-origin: center;
}

.fairway-line {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 88px;
  height: 145px;
  border-radius: 50% 50% 0 0;
  border-left: 2px solid rgba(184, 255, 35, 0.5);
  border-right: 2px solid rgba(184, 255, 35, 0.5);
  transform: translateX(-50%) perspective(100px) rotateX(20deg);
}

/* Upload illustration */

.upload-visual {
  align-content: center;
}

.upload-ring {
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green-line);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(184, 255, 35, 0.13),
      rgba(184, 255, 35, 0.025) 65%
    );
  box-shadow:
    0 0 0 24px rgba(184, 255, 35, 0.025),
    0 0 80px rgba(184, 255, 35, 0.1);
}

.upload-arrow {
  color: var(--green);
  font-size: 64px;
  font-weight: 200;
  line-height: 1;
}

.upload-lines {
  width: 170px;
  margin: 42px auto 0;
  display: flex;
  gap: 9px;
  justify-content: center;
}

.upload-lines span {
  height: 3px;
  border-radius: 99px;
  background: var(--green);
}

.upload-lines span:nth-child(1) {
  width: 28px;
  opacity: 0.25;
}

.upload-lines span:nth-child(2) {
  width: 72px;
  opacity: 0.85;
}

.upload-lines span:nth-child(3) {
  width: 28px;
  opacity: 0.25;
}

/* Watch illustration */

.watch-screen {
  width: min(280px, 100%);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: #090b09;
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(184, 255, 35, 0.08);
}

.watch-image {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(
      circle at 74% 25%,
      rgba(255, 194, 98, 0.38),
      transparent 25%
    ),
    linear-gradient(
      to bottom,
      #3c4d4c 0%,
      #1d3531 46%,
      #1b552b 47%,
      #0d2c17 100%
    );
}

.watch-image::before {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 0;
  width: 4px;
  height: 58%;
  background: rgba(0, 0, 0, 0.75);
  transform: rotate(8deg);
}

.watch-image::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 52%;
  width: 34px;
  height: 3px;
  background: rgba(0, 0, 0, 0.78);
  transform: rotate(-47deg);
}

.play-symbol {
  position: relative;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-size: 16px;
  backdrop-filter: blur(6px);
}

.watch-controls {
  padding: 14px 4px 4px;
  display: flex;
  gap: 7px;
}

.watch-controls span {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.watch-controls span:nth-child(1) {
  width: 50%;
  background: var(--green);
}

.watch-controls span:nth-child(2) {
  width: 30%;
}

.watch-controls span:nth-child(3) {
  width: 20%;
}

/* ==================================================
   EXPERIENCE BANNER
================================================== */

.experience-banner {
  position: relative;
  min-height: min(820px, 82vh);
  padding: var(--page-padding);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 76% 14%,
      rgba(255, 197, 107, 0.42),
      transparent 22%
    ),
    linear-gradient(
      125deg,
      rgba(2, 11, 8, 0.38),
      rgba(2, 6, 4, 0.2)
    ),
    linear-gradient(
      to bottom,
      #344d4b 0%,
      #243a36 33%,
      #17401f 34%,
      #07140b 100%
    );
}

.experience-banner::before,
.experience-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.76);
}

.experience-banner::before {
  left: 17%;
  width: 15px;
  height: 39%;
  border-radius: 8px 8px 0 0;
  transform: rotate(-2deg);
  box-shadow:
    70px 12px 0 rgba(0, 0, 0, 0.7),
    144px -4px 0 rgba(0, 0, 0, 0.75);
}

.experience-banner::after {
  left: 14%;
  bottom: 36%;
  width: 80px;
  height: 7px;
  border-radius: 10px;
  transform: rotate(-35deg);
  box-shadow:
    75px 22px 0 rgba(0, 0, 0, 0.7),
    150px 4px 0 rgba(0, 0, 0, 0.75);
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(2, 4, 4, 0.98) 0%,
      rgba(2, 4, 4, 0.4) 44%,
      rgba(2, 4, 4, 0.15) 100%
    );
}

.experience-content {
  position: relative;
  z-index: 3;
  width: min(1050px, 100%);
  margin: 0 auto;
  text-align: center;
}

.experience-content blockquote {
  margin-bottom: 30px;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.experience-content > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
}

/* ==================================================
   PRODUCTION CODE
================================================== */

.code-section {
  padding:
    var(--section-space)
    var(--page-padding);

  background:
    linear-gradient(
      180deg,
      #030504,
      #080b09 50%,
      #030504
    );
}

.code-intro {
  width: min(900px, 100%);
  margin: 0 auto clamp(64px, 8vw, 110px);
  text-align: center;
}

.code-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 760;
  letter-spacing: -0.073em;
  line-height: 0.88;
}

.code-intro h2 span {
  color: var(--green);
}

.code-intro > p:last-child {
  max-width: 710px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
}

.code-grid {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.code-card {
  min-height: 570px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.035),
      transparent 40%
    ),
    var(--black-raised);
}

.featured-code-card {
  border-color: var(--green-line);
  background:
    radial-gradient(
      circle at 75% 15%,
      rgba(184, 255, 35, 0.1),
      transparent 32%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.05),
      transparent 40%
    ),
    #0b100d;
  transform: translateY(-20px);
}

.code-card-header {
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.code-card-header p,
.code-index {
  margin: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.code-card-body {
  flex: 1;
  padding-top: clamp(60px, 7vw, 108px);
  display: flex;
  flex-direction: column;
}

.code-card-body h3 {
  margin-bottom: 42px;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1;
}

.code-card-body ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.code-card-body li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.code-mark {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

/* ==================================================
   MULTI-CAMERA
================================================== */

.multicam-section {
  padding:
    var(--section-space)
    var(--page-padding);

  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  background:
    radial-gradient(
      circle at 85% 52%,
      rgba(184, 255, 35, 0.08),
      transparent 28%
    ),
    var(--black);
}

.multicam-copy {
  max-width: 680px;
}

.multicam-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(54px, 7vw, 102px);
  font-weight: 760;
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.multicam-copy h2 span {
  color: var(--green);
}

.multicam-lead {
  margin-bottom: 20px;
  color: var(--white) !important;
  font-size: clamp(21px, 2vw, 28px) !important;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.multicam-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.multicam-points {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.multicam-points span {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.multicam-stage {
  position: relative;
  min-height: 650px;
}

.camera-frame {
  position: absolute;
  width: min(470px, 72%);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: #080a08;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.64);
}

.camera-frame-one {
  top: 0;
  left: 0;
  z-index: 1;
  transform: rotate(-4deg);
}

.camera-frame-two {
  top: 185px;
  right: 0;
  z-index: 3;
  transform: rotate(4deg);
}

.camera-frame-three {
  bottom: 0;
  left: 12%;
  z-index: 2;
  transform: rotate(-1deg);
}

.camera-label {
  display: block;
  padding: 8px 8px 12px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.camera-scene {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 11px;
}

.tee-scene {
  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(255, 200, 107, 0.4),
      transparent 24%
    ),
    linear-gradient(
      to bottom,
      #475b59 0%,
      #233733 47%,
      #1f572c 48%,
      #0b2b16 100%
    );
}

.fairway-scene {
  background:
    linear-gradient(
      to bottom,
      #536663 0%,
      #2b403c 39%,
      #235e32 40%,
      #0d321a 100%
    );
}

.green-scene {
  background:
    radial-gradient(
      circle at 72% 18%,
      rgba(255, 212, 139, 0.44),
      transparent 21%
    ),
    linear-gradient(
      to bottom,
      #4b5e5b 0%,
      #293f39 42%,
      #31743c 43%,
      #0f331a 100%
    );
}

.camera-horizon {
  position: absolute;
  left: -4%;
  bottom: 41%;
  width: 108%;
  height: 12%;
  border-radius: 50%;
  background: rgba(5, 15, 9, 0.54);
}

.camera-golfer {
  position: absolute;
  left: 49%;
  bottom: 19%;
  z-index: 2;
  width: 8px;
  height: 43%;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.76);
}

.camera-golfer::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
}

.camera-golfer::after {
  content: "";
  position: absolute;
  top: 23%;
  left: -27px;
  width: 66px;
  height: 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.78);
  transform: rotate(-48deg);
}

.fairway-target {
  position: absolute;
  left: 50%;
  bottom: 9%;
  z-index: 2;
  width: 36%;
  height: 77%;
  border-left: 2px solid rgba(184, 255, 35, 0.45);
  border-right: 2px solid rgba(184, 255, 35, 0.45);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%) perspective(100px) rotateX(18deg);
}

.green-flag {
  position: absolute;
  left: 58%;
  bottom: 22%;
  z-index: 2;
  width: 3px;
  height: 48%;
  background: rgba(245, 245, 240, 0.9);
}

.green-flag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  width: 28px;
  height: 16px;
  background: var(--green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ==================================================
   GALLERY
================================================== */

.gallery-section {
  padding:
    var(--section-space)
    var(--page-padding);

  background: var(--black-soft);
}

.gallery-heading {
  width: min(var(--content-width), 100%);
  margin: 0 auto clamp(58px, 8vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
}

.gallery-heading h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 750;
  letter-spacing: -0.072em;
  line-height: 0.9;
}

.gallery-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.67;
}

.production-grid {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.production-card {
  grid-column: span 4;
}

.production-card-large {
  grid-column: span 8;
}

.production-card-wide {
  grid-column: span 8;
}

.production-art {
  position: relative;
  min-height: 430px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  transition:
    transform 300ms ease,
    border-color 300ms ease;
}

.production-card-large .production-art,
.production-card-wide .production-art {
  min-height: 520px;
}

.production-art:hover {
  border-color: var(--green-line);
  transform: translateY(-4px);
}

.production-art-desert {
  background:
    radial-gradient(
      circle at 75% 18%,
      rgba(255, 198, 107, 0.52),
      transparent 23%
    ),
    linear-gradient(
      145deg,
      rgba(35, 20, 12, 0.1),
      rgba(5, 22, 12, 0.4)
    ),
    linear-gradient(
      to bottom,
      #5d665f 0%,
      #6f6354 38%,
      #274f2d 39%,
      #0a2814 100%
    );
}

.production-art-coast {
  background:
    radial-gradient(
      circle at 72% 19%,
      rgba(255, 220, 160, 0.35),
      transparent 20%
    ),
    linear-gradient(
      140deg,
      rgba(20, 42, 40, 0.1),
      rgba(5, 12, 11, 0.4)
    ),
    linear-gradient(
      to bottom,
      #6d807f 0%,
      #405d5c 45%,
      #28493a 46%,
      #0b2415 100%
    );
}

.production-art-links {
  background:
    linear-gradient(
      140deg,
      rgba(20, 32, 27, 0.05),
      rgba(5, 10, 8, 0.45)
    ),
    linear-gradient(
      to bottom,
      #53635e 0%,
      #33463f 38%,
      #5c7045 39%,
      #182917 100%
    );
}

.production-art-ocean {
  background:
    radial-gradient(
      circle at 76% 18%,
      rgba(255, 213, 137, 0.38),
      transparent 21%
    ),
    linear-gradient(
      140deg,
      rgba(21, 44, 42, 0.08),
      rgba(5, 13, 11, 0.42)
    ),
    linear-gradient(
      to bottom,
      #647876 0%,
      #3c5c5a 42%,
      #244e38 43%,
      #0a2113 100%
    );
}

.production-art-mountain {
  background:
    radial-gradient(
      circle at 69% 16%,
      rgba(255, 193, 99, 0.46),
      transparent 23%
    ),
    linear-gradient(
      140deg,
      rgba(28, 31, 26, 0.12),
      rgba(5, 12, 8, 0.43)
    ),
    linear-gradient(
      to bottom,
      #685f56 0%,
      #484b43 38%,
      #315a32 39%,
      #0b2612 100%
    );
}

.production-art::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 30%;
  height: 24%;
  border-radius: 50%;
  background: rgba(5, 18, 9, 0.52);
  transform: rotate(-2deg);
}

.production-art::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 26%;
  width: 4px;
  height: 29%;
  background: rgba(245, 245, 240, 0.7);
}

.production-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.86),
      transparent 54%
    );
}

.production-status,
.production-meta {
  position: relative;
  z-index: 3;
}

.production-status {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.production-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(184, 255, 35, 0.6);
}

.production-meta p {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.production-meta h3 {
  margin-bottom: 0;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 690;
  letter-spacing: -0.052em;
}

/* ==================================================
   PACKAGES
================================================== */

.packages-section {
  padding:
    var(--section-space)
    var(--page-padding);

  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(184, 255, 35, 0.07),
      transparent 30%
    ),
    var(--black);
}

.packages-heading {
  width: min(930px, 100%);
  margin: 0 auto clamp(66px, 8vw, 108px);
  text-align: center;
}

.packages-heading h2 {
  margin-bottom: 30px;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 750;
  letter-spacing: -0.072em;
  line-height: 0.9;
}

.packages-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.67;
}

.package-grid {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  position: relative;
  min-height: 650px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.035),
      transparent 42%
    ),
    var(--black-raised);
}

.package-card-featured {
  border-color: var(--green-line);
  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(184, 255, 35, 0.11),
      transparent 30%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.05),
      transparent 42%
    ),
    #0b100d;
  transform: translateY(-18px);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--green);
  color: #050805;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.package-topline {
  margin-bottom: clamp(70px, 8vw, 112px);
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.package-topline p,
.package-topline span {
  margin: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.package-card h3 {
  margin-bottom: 22px;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 1;
}

.package-description {
  min-height: 120px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.package-rule {
  height: 1px;
  margin-bottom: 18px;
  background: var(--line-soft);
}

.package-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding: 11px 0 11px 23px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 8px;
  height: 4px;
  border-bottom: 1px solid var(--green);
  border-left: 1px solid var(--green);
  transform: rotate(-45deg);
}

.package-price {
  margin: auto 0 0;
  padding-top: 38px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* ==================================================
   DOWNLOAD
================================================== */

.download-section {
  position: relative;
  padding:
    var(--section-space)
    var(--page-padding);

  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(
      145deg,
      #080d09,
      #030504 60%
    );
}

.download-glow {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(184, 255, 35, 0.08);
  filter: blur(100px);
}

.download-content {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(70px, 12vw, 190px);
  align-items: center;
}

.download-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 750;
  letter-spacing: -0.072em;
  line-height: 0.89;
}

.download-copy > p {
  max-width: 720px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.67;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 195px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.store-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
}

.store-icon-play {
  padding-left: 3px;
  font-size: 18px;
}

.store-button div {
  display: flex;
  flex-direction: column;
}

.store-button small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.store-button strong {
  margin-top: 2px;
  font-size: 17px;
  font-weight: 650;
}

.qr-panel {
  padding: 28px;
  border: 1px solid var(--green-line);
  border-radius: 26px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.05),
      transparent 45%
    ),
    var(--black-raised);
  text-align: center;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
}

.qr-placeholder {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
  padding: 34px;
  display: grid;
  place-items: center;
  background: #f1f4ec;
}

.qr-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.qr-grid span {
  background: #101510;
}

.qr-grid span:nth-child(2),
.qr-grid span:nth-child(5),
.qr-grid span:nth-child(8),
.qr-grid span:nth-child(11),
.qr-grid span:nth-child(14) {
  opacity: 0;
}

.qr-corner {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 8px solid #101510;
  box-shadow: inset 0 0 0 7px #f1f4ec;
}

.qr-corner::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: #101510;
}

.qr-corner-one {
  top: 14px;
  left: 14px;
}

.qr-corner-two {
  top: 14px;
  right: 14px;
}

.qr-corner-three {
  bottom: 14px;
  left: 14px;
}

.qr-panel > p {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.qr-panel > span {
  color: var(--muted-dark);
  font-size: 12px;
}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
  padding:
    clamp(80px, 9vw, 130px)
    var(--page-padding)
    34px;

  border-top: 1px solid var(--line-soft);
  background: #010202;
  text-align: center;
}

.footer-bird {
  position: relative;
  width: 68px;
  height: 44px;
  margin: 0 auto 22px;
}

.bird-body {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 24px;
  height: 21px;
  border-radius: 50% 50% 45% 45%;
  background: var(--green);
  transform: translateX(-50%);
}

.bird-body::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -10px;
  width: 13px;
  height: 8px;
  background: var(--green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.bird-wing {
  position: absolute;
  top: 4px;
  width: 31px;
  height: 18px;
  border-top: 4px solid var(--green);
}

.bird-wing-left {
  left: 4px;
  border-radius: 100% 0 0 0;
  transform: rotate(-19deg);
}

.bird-wing-right {
  right: 4px;
  border-radius: 0 100% 0 0;
  transform: rotate(19deg);
}

.footer-brand {
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.footer-domain {
  margin-bottom: 38px;
  color: var(--muted-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-links {
  margin-bottom: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.footer-legal {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-dark);
  font-size: 11px;
  text-align: left;
}

.footer-legal p {
  margin-bottom: 0;
}

.footer-legal > div {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--white);
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1100px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-step {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
  }

  .process-number {
    position: absolute;
    top: 28px;
    left: 28px;
  }

  .process-visual {
    height: 290px;
    margin: 24px 0 0;
  }

  .process-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .multicam-section {
    grid-template-columns: 1fr;
  }

  .multicam-copy {
    max-width: 850px;
  }

  .multicam-stage {
    width: min(850px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .intro-layout,
  .gallery-heading,
  .download-content {
    grid-template-columns: 1fr;
  }

  .intro-layout,
  .gallery-heading {
    gap: 42px;
  }

  .intro-copy {
    max-width: 760px;
  }

  .code-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .featured-code-card,
  .package-card-featured {
    transform: none;
  }

  .code-card,
  .package-card {
    min-height: auto;
  }

  .code-card-body {
    padding-top: 60px;
  }

  .package-description {
    min-height: auto;
  }

  .production-card,
  .production-card-large,
  .production-card-wide {
    grid-column: span 6;
  }

  .download-content {
    gap: 64px;
  }

  .qr-panel {
    width: min(340px, 100%);
  }
}

@media (max-width: 680px) {
  :root {
    --page-padding: 18px;
    --section-space: 94px;
  }

  .film-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .film-heading {
    padding: 0 12px;
  }

  .process-step {
    padding: 24px;
    display: block;
  }

  .process-number {
    position: static;
  }

  .process-visual {
    height: 260px;
    margin: 34px 0 24px;
  }

  .experience-banner {
    min-height: 680px;
  }

  .code-card,
  .package-card {
    padding: 24px;
    border-radius: 20px;
  }

  .multicam-stage {
    min-height: 530px;
  }

  .camera-frame {
    width: 82%;
  }

  .camera-frame-two {
    top: 155px;
  }

  .production-card,
  .production-card-large,
  .production-card-wide {
    grid-column: 1 / -1;
  }

  .production-art,
  .production-card-large .production-art,
  .production-card-wide .production-art {
    min-height: 430px;
  }

  .store-buttons {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .section-heading h1,
  .section-heading h2,
  .intro-heading h2,
  .code-intro h2,
  .multicam-copy h2,
  .gallery-heading h2,
  .packages-heading h2,
  .download-copy h2 {
    letter-spacing: -0.055em;
  }

  .multicam-stage {
    min-height: 480px;
  }

  .camera-frame-one {
    left: 0;
  }

  .camera-frame-two {
    top: 145px;
  }

  .camera-frame-three {
    left: 3%;
  }

  .qr-panel {
    padding: 20px;
  }

  .qr-placeholder {
    width: 190px;
    height: 190px;
  }

  .footer-links {
    display: grid;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==================================================
   OFFICIAL BIRDIECAST BIRD MARK
   Replaces the temporary CSS-drawn footer symbol.
================================================== */

.footer-bird {
  display: none;
}

.footer-birdmark {
  display: block;
  width: clamp(92px, 9vw, 138px);
  height: auto;
  margin: 0 auto 24px;
  object-fit: contain;
}


/* ==================================================
   PRODUCTION CODE — READABILITY REDESIGN
================================================== */

.code-section {
  padding:
    clamp(100px, 10vw, 165px)
    var(--page-padding);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(184, 255, 35, 0.055),
      transparent 30%
    ),
    #030605;
}

.code-intro {
  width: min(1040px, 100%);
  margin:
    0 auto
    clamp(64px, 8vw, 106px);

  text-align: center;
}

.code-intro .eyebrow {
  margin-bottom: 22px;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.28em;
}

.code-intro h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.code-period {
  color: var(--green);
}

.code-intro > p:last-child {
  max-width: 780px;
  margin: 0 auto;
  color: #c1c7c1;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.65;
}

.code-grid {
  width: min(1460px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.code-card,
.featured-code-card {
  min-height: 610px;
  padding: clamp(28px, 2.4vw, 38px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      transparent 45%
    ),
    #090d0b;
  transform: none;
}

.code-card:hover {
  border-color: rgba(184, 255, 35, 0.42);
}

.code-card-header {
  min-height: 47px;
  padding-bottom: 26px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.code-card-header p {
  margin: 0;
  color: var(--green);
  font-size: clamp(11px, 0.85vw, 14px);
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

.code-card-body {
  flex: 1;
  padding-top: clamp(58px, 6vw, 104px);
  display: flex;
  flex-direction: column;
}

.code-card-body h3 {
  margin: 0 0 clamp(58px, 6vw, 100px);
  color: var(--white);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.code-card-body ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.code-card-body li {
  min-height: 82px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #e1e5df;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.48;
}

.code-check {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

/* Remove obsolete numbered-card styling. */

.code-index,
.code-mark {
  display: none;
}

/* Official footer bird should be visually important, not microscopic. */

.footer-birdmark {
  width: clamp(230px, 22vw, 360px);
  max-height: 240px;
  margin: 0 auto 30px;
  object-fit: contain;
}

/* ==================================================
   PRODUCTION CODE — TABLET
================================================== */

@media (max-width: 1050px) {
  .code-grid {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
  }

  .code-card,
  .featured-code-card {
    min-height: auto;
  }

  .code-card-body {
    padding-top: 58px;
  }

  .code-card-body h3 {
    margin-bottom: 54px;
  }
}

/* ==================================================
   PRODUCTION CODE — PHONE
================================================== */

@media (max-width: 680px) {
  .code-section {
    padding:
      94px
      18px;
  }

  .code-intro {
    margin-bottom: 58px;
  }

  .code-intro .eyebrow {
    font-size: 11px;
  }

  .code-intro h2 {
    margin-bottom: 25px;
    font-size: clamp(52px, 17vw, 76px);
    line-height: 0.9;
  }

  .code-intro > p:last-child {
    font-size: 19px;
    line-height: 1.6;
  }

  .code-grid {
    gap: 18px;
  }

  .code-card,
  .featured-code-card {
    min-height: auto;
    padding: 26px 23px;
    border-radius: 22px;
  }

  .code-card-header {
    padding-bottom: 22px;
  }

  .code-card-header p {
    font-size: 12px;
    line-height: 1.5;
  }

  .code-card-body {
    padding-top: 48px;
  }

  .code-card-body h3 {
    margin-bottom: 48px;
    font-size: clamp(39px, 12vw, 52px);
    line-height: 1;
  }

  .code-card-body li {
    min-height: 88px;
    padding: 20px 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    font-size: 19px;
    line-height: 1.45;
  }

  .code-check {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .footer-birdmark {
    width: min(290px, 82vw);
    max-height: none;
    margin-bottom: 28px;
  }
}


/* ==================================================
   DOWNLOAD AREA — OFFICIAL STORE-STYLE BUTTONS
================================================== */

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-button {
  min-width: 220px;
  min-height: 72px;
  padding: 12px 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    ),
    #090c0a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.22);
}

.store-brand-icon {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

/* Apple-style coded mark */

.apple-body {
  position: absolute;
  left: 8px;
  bottom: 3px;
  width: 28px;
  height: 29px;
  border-radius: 48% 48% 44% 44% / 56% 56% 42% 42%;
  background: #fff;
  transform: rotate(-4deg);
}

.apple-body::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -4px;
  width: 13px;
  height: 20px;
  border-radius: 50%;
  background: #090c0a;
}

.apple-body::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -4px;
  width: 13px;
  height: 20px;
  border-radius: 50%;
  background: #090c0a;
}

.apple-leaf {
  position: absolute;
  top: 1px;
  left: 23px;
  width: 12px;
  height: 7px;
  border-radius: 100% 0 100% 0;
  background: #fff;
  transform: rotate(-32deg);
}

/* Google Play coded multicolor mark */

.play-icon {
  overflow: hidden;
}

.play-triangle {
  position: absolute;
  inset: 4px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.play-triangle-blue {
  background: #36a9e1;
}

.play-triangle-green {
  background: #40d47e;
  clip-path: polygon(0 0, 48% 50%, 0 100%);
}

.play-triangle-yellow {
  background: #ffd23f;
  clip-path: polygon(48% 50%, 100% 50%, 70% 70%);
}

.play-triangle-red {
  background: #ff5252;
  clip-path: polygon(48% 50%, 70% 30%, 100% 50%);
}

.store-button-copy {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-button-copy small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.store-button-copy strong {
  color: var(--white);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}


/* ==================================================
   DOWNLOAD AREA — CODED QR PLACEHOLDER
================================================== */

.qr-panel {
  padding: 28px;
}

.qr-placeholder {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto 25px;
  padding: 16px;
  background: #f7f8f4;
}

.qr-code-grid {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 46%, #111 46% 54%, transparent 54%),
    linear-gradient(transparent 46%, #111 46% 54%, transparent 54%);
  background-size: 29px 29px;
}

.qr-finder {
  position: absolute;
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 8px solid #111;
  background: #f7f8f4;
}

.qr-finder::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: #111;
}

.qr-finder-top-left {
  top: 0;
  left: 0;
}

.qr-finder-top-right {
  top: 0;
  right: 0;
}

.qr-finder-bottom-left {
  bottom: 0;
  left: 0;
}

.qr-pixel {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  background: #111;
}

.p01 { top: 5px; left: 75px; }
.p02 { top: 5px; left: 104px; }
.p03 { top: 20px; left: 89px; }
.p04 { top: 35px; left: 75px; }
.p05 { top: 49px; left: 103px; }
.p06 { top: 64px; left: 61px; }
.p07 { top: 64px; left: 89px; }
.p08 { top: 64px; right: 18px; }
.p09 { top: 78px; left: 75px; }
.p10 { top: 78px; left: 117px; }
.p11 { top: 92px; left: 61px; }
.p12 { top: 92px; left: 103px; }
.p13 { top: 92px; right: 4px; }
.p14 { top: 106px; left: 75px; }
.p15 { top: 106px; left: 131px; }
.p16 { top: 120px; left: 61px; }
.p17 { top: 120px; left: 103px; }
.p18 { top: 134px; left: 75px; }
.p19 { top: 134px; right: 32px; }
.p20 { bottom: 49px; left: 89px; }
.p21 { bottom: 35px; left: 117px; }
.p22 { bottom: 21px; left: 75px; }
.p23 { bottom: 7px; left: 103px; }
.p24 { bottom: 7px; right: 19px; }


/* ==================================================
   FOOTER — LARGE OFFICIAL BIRDIECAST MARK
================================================== */

.footer-birdmark {
  display: block;
  width: clamp(300px, 27vw, 470px);
  height: auto;
  max-height: none;
  margin: 0 auto 34px;
  object-fit: contain;
}


/* ==================================================
   DOWNLOAD + FOOTER — MOBILE
================================================== */

@media (max-width: 680px) {
  .store-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
    min-width: 0;
    min-height: 78px;
  }

  .store-button-copy small {
    font-size: 9px;
  }

  .store-button-copy strong {
    font-size: 22px;
  }

  .qr-placeholder {
    width: min(230px, 72vw);
    height: min(230px, 72vw);
  }

  .footer-birdmark {
    width: min(390px, 90vw);
    margin-bottom: 30px;
  }
}


/* ==================================================
   REAL COURSE DESTINATION PHOTOGRAPHY
================================================== */

.destination-figure {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #08100b;
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.production-card-large .destination-figure,
.production-card-wide .destination-figure {
  min-height: 520px;
}

.destination-figure:hover {
  border-color: rgba(184, 255, 35, 0.5);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.48),
    0 0 50px rgba(184, 255, 35, 0.055);
  transform: translateY(-5px);
}

.destination-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
  transition:
    transform 700ms cubic-bezier(.2, .65, .3, 1),
    filter 500ms ease;
}

.destination-figure:hover img {
  transform: scale(1.045);
}

.destination-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.48) 35%,
      rgba(0, 0, 0, 0.05) 72%
    );
}

.destination-figure .production-meta {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  z-index: 2;
}

.destination-figure .production-meta p {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.destination-figure .production-meta h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(31px, 3.2vw, 53px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.65);
}

.gallery-credit {
  width: min(var(--content-width), 100%);
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  line-height: 1.55;
  text-align: right;
}

/* Disable obsolete placeholder artwork and Coming Soon elements. */

.destination-card .production-status,
.destination-card .production-art {
  display: none;
}

@media (max-width: 900px) {
  .destination-figure,
  .production-card-large .destination-figure,
  .production-card-wide .destination-figure {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .destination-figure,
  .production-card-large .destination-figure,
  .production-card-wide .destination-figure {
    min-height: 410px;
    border-radius: 20px;
  }

  .destination-figure .production-meta {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .destination-figure .production-meta h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .gallery-credit {
    font-size: 9px;
    text-align: left;
  }
}


/* ==================================================
   COMPLETE BIRDIECAST PRICING EXPERIENCE
================================================== */

.pricing-section {
  padding:
    var(--section-space)
    var(--page-padding);

  background:
    radial-gradient(
      circle at 50% 5%,
      rgba(184, 255, 35, 0.075),
      transparent 28%
    ),
    #030504;
}

.pricing-hero {
  width: min(1080px, 100%);
  margin: 0 auto clamp(100px, 12vw, 175px);
  text-align: center;
}

.pricing-hero h2 {
  margin-bottom: 32px;
  font-size: clamp(56px, 8vw, 116px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.pricing-hero h2 span {
  color: var(--green);
}

.pricing-hero > p:last-child {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.65;
}


/* BirdiePass */

.pass-section {
  width: min(var(--content-width), 100%);
  margin: 0 auto clamp(125px, 14vw, 210px);
  display: grid;
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(55px, 9vw, 145px);
  align-items: start;
}

.pass-intro {
  position: sticky;
  top: 70px;
}

.pass-intro h3,
.broadcast-heading h3,
.group-pricing-heading h3 {
  margin-bottom: 28px;
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.pass-intro h3 span,
.broadcast-heading h3 span,
.group-pricing-heading h3 span {
  color: var(--green);
}

.pass-intro > p:last-child,
.broadcast-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.pass-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pass-card {
  position: relative;
  min-height: 750px;
  padding: clamp(27px, 2.7vw, 39px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.045),
      transparent 42%
    ),
    #090d0b;
}

.annual-pass-card {
  border-color: var(--green-line);
  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(184, 255, 35, 0.12),
      transparent 28%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.055),
      transparent 42%
    ),
    #0b110d;
}

.annual-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #020402;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.pass-card-topline {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.pass-card-topline p,
.pass-card-topline span {
  margin: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.pass-price {
  margin-top: clamp(60px, 7vw, 100px);
  display: flex;
  align-items: flex-start;
  color: var(--white);
}

.price-dollar {
  margin-top: 12px;
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
}

.pass-price strong {
  font-size: clamp(66px, 6vw, 100px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.pass-price small {
  margin: auto 0 7px 8px;
  color: var(--muted);
  font-size: 16px;
}

.pass-price-note {
  min-height: 48px;
  margin: 22px 0 42px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pass-card ul,
.broadcast-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pass-card li,
.broadcast-card li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-top: 1px solid var(--line-soft);
  color: #d7ddd7;
  font-size: 15px;
  line-height: 1.5;
}

.pricing-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.annual-statement {
  margin: auto 0 0;
  padding-top: 35px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Broadcasts */

.broadcast-section {
  width: min(var(--content-width), 100%);
  margin: 0 auto clamp(120px, 14vw, 205px);
}

.broadcast-heading {
  width: min(900px, 100%);
  margin-bottom: clamp(65px, 8vw, 108px);
}

.broadcast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.broadcast-card {
  position: relative;
  min-height: 660px;
  padding: clamp(27px, 2.5vw, 38px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.04),
      transparent 44%
    ),
    #090d0b;
}

.featured-broadcast-card {
  border-color: var(--green-line);
  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(184, 255, 35, 0.11),
      transparent 30%
    ),
    #0b100d;
  transform: translateY(-20px);
}

.broadcast-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #020402;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.broadcast-card-header {
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}

.broadcast-card-header p {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.broadcast-card-header span {
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.broadcast-card-header strong {
  white-space: nowrap;
  font-size: clamp(23px, 2vw, 32px);
  letter-spacing: -0.045em;
}

.broadcast-card h4 {
  margin: clamp(65px, 7vw, 100px) 0 22px;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.broadcast-description {
  min-height: 125px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}


/* Group pricing */

.group-pricing {
  width: min(var(--content-width), 100%);
  margin: 0 auto clamp(120px, 14vw, 200px);
  padding: clamp(35px, 5vw, 74px);
  border: 1px solid var(--green-line);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(184, 255, 35, 0.08),
      transparent 28%
    ),
    #080d09;
}

.group-pricing-heading {
  max-width: 930px;
  margin: 0 auto clamp(60px, 8vw, 100px);
  text-align: center;
}

.group-pricing-flow {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}

.group-pricing-flow article {
  min-height: 225px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.flow-number {
  display: block;
  margin-bottom: 50px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.group-pricing-flow strong {
  display: block;
  margin-bottom: 13px;
  font-size: clamp(21px, 2vw, 28px);
  letter-spacing: -0.035em;
}

.group-pricing-flow p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.flow-arrow {
  color: var(--green);
  font-size: 32px;
}

.group-pricing-result {
  margin: 52px 0 0;
  color: var(--green);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  text-align: center;
}


/* Launch offer */

.launch-pricing-callout {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding-top: clamp(65px, 8vw, 105px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(60px, 10vw, 160px);
  border-top: 1px solid var(--line);
  align-items: end;
}

.launch-pricing-callout h3 {
  margin-bottom: 0;
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 750;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.launch-pricing-callout > div:last-child > p {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.pricing-cta {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding: 16px 22px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.pricing-cta span {
  color: var(--green);
  font-size: 20px;
}

.pricing-cta:hover,
.pricing-cta:focus-visible {
  background: var(--green);
  color: #020402;
}

.pricing-cta:hover span,
.pricing-cta:focus-visible span {
  color: #020402;
}


/* ==================================================
   PRICING RESPONSIVE
================================================== */

@media (max-width: 1100px) {
  .pass-section {
    grid-template-columns: 1fr;
  }

  .pass-intro {
    position: static;
    max-width: 850px;
  }

  .broadcast-grid {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .featured-broadcast-card {
    transform: none;
  }

  .broadcast-card {
    min-height: auto;
  }

  .broadcast-description {
    min-height: auto;
  }

  .group-pricing-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
}

@media (max-width: 820px) {
  .pass-cards {
    grid-template-columns: 1fr;
  }

  .pass-card {
    min-height: auto;
  }

  .launch-pricing-callout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .pricing-section {
    padding:
      96px
      18px;
  }

  .pricing-hero {
    margin-bottom: 105px;
  }

  .pricing-hero h2 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .pass-section,
  .broadcast-section,
  .group-pricing {
    margin-bottom: 110px;
  }

  .pass-intro h3,
  .broadcast-heading h3,
  .group-pricing-heading h3 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .pass-card,
  .broadcast-card {
    padding: 26px 23px;
    border-radius: 22px;
  }

  .pass-price strong {
    font-size: clamp(66px, 20vw, 90px);
  }

  .pass-card li,
  .broadcast-card li {
    padding: 18px 0;
    grid-template-columns: 35px minmax(0, 1fr);
    font-size: 17px;
  }

  .pricing-check {
    width: 27px;
    height: 27px;
    font-size: 13px;
  }

  .broadcast-card-header {
    display: block;
  }

  .broadcast-card-header strong {
    display: block;
    margin-top: 20px;
    font-size: 34px;
  }

  .broadcast-card h4 {
    margin-top: 58px;
    font-size: 42px;
  }

  .group-pricing {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .group-pricing-flow article {
    min-height: auto;
  }

  .launch-pricing-callout h3 {
    font-size: clamp(43px, 13vw, 64px);
  }
}

/* ==================================================
   FINAL APPROVED HERO
================================================== */

.final-hero,
.final-hero-media {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.final-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-flag-bird,
.hero-hotspot,
.hero-hotspot-watch,
.hero-hotspot-discover {
  display: none !important;
}

.final-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.12) 40%,
      transparent 66%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5) 0%,
      transparent 48%
    );
}

.final-hero-copy {
  position: absolute;
  z-index: 4;
  left: clamp(30px, 11vw, 185px);
  bottom: clamp(105px, 11vh, 155px);
  width: min(610px, 44vw);
}

.hero-kicker {
  margin: 0 0 17px;
  color: var(--green);
  font-size: clamp(10px, 0.82vw, 14px);
  font-weight: 900;
  letter-spacing: 0.22em;
}

.final-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 770;
  letter-spacing: -0.075em;
  line-height: 0.87;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.62);
}

.final-hero-copy h1 span {
  color: var(--green);
}

.hero-description {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.55;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.76);
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  right: clamp(30px, 6vw, 96px);
  bottom: clamp(32px, 5vh, 66px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-decoration: none;
}

.hero-scroll-arrow {
  font-size: 32px;
  line-height: 1;
}

@media (max-width: 680px) {
  .final-hero,
  .final-hero-media {
    min-height: 88svh;
  }

  .final-hero-image {
    object-position: 48% center;
  }

  .final-hero-copy {
    right: 22px;
    bottom: 92px;
    left: 22px;
    width: auto;
  }

  .final-hero-copy h1 {
    font-size: clamp(51px, 16vw, 73px);
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-scroll {
    right: 22px;
    bottom: 24px;
  }
}


/* ==================================================
   FINAL HERO OVERRIDES
   Remove old overlay and center Scroll to Begin.
================================================== */

.final-hero-shade {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

.final-hero-copy {
  z-index: 5;
}

/* Center the scroll prompt at the bottom of the hero. */

.hero-scroll {
  right: auto !important;
  left: 50% !important;
  bottom: clamp(24px, 4vh, 52px) !important;
  transform: translateX(-50%);
  align-items: center !important;
  text-align: center;
}

.hero-scroll-arrow {
  padding-right: 0 !important;
}

/* Remove any old hero hotspot or baked-overlay helpers. */

.hero-hotspot,
.hero-hotspot-watch,
.hero-hotspot-discover,
.hero-flag-bird {
  display: none !important;
}

@media (max-width: 680px) {
  .hero-scroll {
    right: auto !important;
    left: 50% !important;
    bottom: 20px !important;
    transform: translateX(-50%);
    align-items: center !important;
  }

  .hero-scroll-arrow {
    padding-right: 0 !important;
  }
}


/* ==================================================
   BIRDIECAST HERO V3 — SINGLE AUTHORITATIVE VERSION
================================================== */

.hero-v3 {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.hero-v3-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
}

/*
  The text is real HTML rather than part of the image.
  Only this single element contains the hero narrative.
*/

.hero-v3-copy {
  position: absolute;
  z-index: 2;
  left: clamp(30px, 9vw, 150px);
  bottom: clamp(112px, 12vh, 165px);
  width: min(610px, 43vw);
  margin: 0;
  padding: 0;
}

.hero-v3-kicker {
  margin: 0 0 17px;
  color: #b8ff23;
  font-size: clamp(10px, 0.8vw, 14px);
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1.4;
}

.hero-v3-copy h1 {
  margin: 0 0 24px;
  padding: 0;
  color: #f7f8f4;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 770;
  letter-spacing: -0.075em;
  line-height: 0.87;
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.55),
    0 8px 30px rgba(0, 0, 0, 0.45);
}

.hero-v3-copy h1 span {
  color: #b8ff23;
}

.hero-v3-description {
  max-width: 590px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.28vw, 22px);
  line-height: 1.55;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.72),
    0 4px 18px rgba(0, 0, 0, 0.48);
}

.hero-v3-scroll {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: clamp(22px, 4vh, 48px);
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  color: #b8ff23;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transform: translateX(-50%);
}

.hero-v3-arrow {
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease;
}

.hero-v3-scroll:hover .hero-v3-arrow,
.hero-v3-scroll:focus-visible .hero-v3-arrow {
  transform: translateY(5px);
}

/*
  Permanently suppress any legacy hero elements that might remain
  elsewhere in old CSS. The current HTML does not use these classes.
*/

.final-hero,
.final-hero-media,
.final-hero-copy,
.final-hero-image,
.final-hero-shade,
.hero-artwork,
.hero-hotspot,
.hero-flag-bird {
  /* Legacy selectors intentionally left without layout authority. */
}


/* ==================================================
   HERO V3 — TABLET
================================================== */

@media (max-width: 960px) {
  .hero-v3-copy {
    left: clamp(25px, 6vw, 64px);
    width: min(650px, 64vw);
  }
}


/* ==================================================
   HERO V3 — PHONE
================================================== */

@media (max-width: 680px) {
  .hero-v3 {
    height: 88svh;
    min-height: 650px;
  }

  .hero-v3-image {
    object-position: 48% center;
  }

  .hero-v3-copy {
    right: 21px;
    bottom: 88px;
    left: 21px;
    width: auto;
  }

  .hero-v3-kicker {
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero-v3-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(50px, 15.5vw, 72px);
    line-height: 0.9;
  }

  .hero-v3-description {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.48;
  }

  .hero-v3-scroll {
    bottom: 18px;
    font-size: 9px;
  }

  .hero-v3-arrow {
    font-size: 29px;
  }
}


/* ==================================================
   HERO IMAGE ALREADY CONTAINS APPROVED NARRATIVE
================================================== */

.hero-v3-copy,
.hero-v3-kicker,
.hero-v3-description,
.hero-v3 > h1,
#hero-v3-title {
  display: none !important;
}

.hero-v3-scroll {
  right: auto !important;
  left: 50% !important;
  bottom: clamp(22px, 4vh, 48px) !important;
  transform: translateX(-50%) !important;
  align-items: center !important;
  text-align: center !important;
}

.hero-v3-arrow {
  padding: 0 !important;
}


/* ==================================================
   BIRDIECAST HERO V4
   AUTHORITATIVE RESPONSIVE IMPLEMENTATION

   Core rule:
   Never crop the approved hero artwork.
================================================== */

.hero-v4 {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.hero-v4-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

/*
  The image determines the hero's height.

  This intentionally replaces the prior 100vh/object-fit:cover
  approach that cropped the flag, headline, ball, or mountains
  depending on the browser's aspect ratio.
*/

.hero-v4-image {
  position: relative;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  display: block;
  object-fit: contain;
}

/*
  Scroll prompt is positioned relative to the artwork itself,
  so it stays centered on ultrawide monitors, laptops, tablets,
  and phones.
*/

.hero-v4-scroll {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: clamp(14px, 3.2vw, 52px);
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(3px, 0.5vw, 8px);
  align-items: center;
  color: #b8ff23;
  font-size: clamp(7px, 0.66vw, 11px);
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transform: translateX(-50%);
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.9),
    0 4px 12px rgba(0, 0, 0, 0.72);
}

.hero-v4-arrow {
  font-size: clamp(20px, 2.1vw, 36px);
  font-weight: 300;
  line-height: 0.9;
  transition: transform 180ms ease;
}

.hero-v4-scroll:hover .hero-v4-arrow,
.hero-v4-scroll:focus-visible .hero-v4-arrow {
  transform: translateY(5px);
}

/*
  Disable all previous hero implementations.
  The current HTML uses only hero-v4.
*/

.hero,
.hero-artwork,
.final-hero,
.final-hero-media,
.hero-v3,
.hero-v3-copy,
.hero-v3-scroll,
.hero-hotspot,
.hero-flag-bird {
  /* Legacy implementations have no effect on hero-v4. */
}


/* ==================================================
   HERO V4 — LARGE / ULTRAWIDE DISPLAYS
================================================== */

@media (min-width: 1800px) {
  .hero-v4-stage {
    /*
      Keep the full composition visible rather than stretching it
      indefinitely on extremely large screens.
    */
    width: min(100%, 2560px);
  }
}


/* ==================================================
   HERO V4 — TABLET
================================================== */

@media (max-width: 900px) {
  .hero-v4-scroll {
    bottom: clamp(10px, 2.8vw, 24px);
    font-size: clamp(6px, 1.05vw, 9px);
  }

  .hero-v4-arrow {
    font-size: clamp(18px, 3.4vw, 28px);
  }
}


/* ==================================================
   HERO V4 — PHONE
================================================== */

@media (max-width: 680px) {
  .hero-v4 {
    background: #000;
  }

  .hero-v4-stage {
    width: 100%;
  }

  .hero-v4-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-v4-scroll {
    bottom: clamp(6px, 2vw, 12px);
    gap: 2px;
    font-size: clamp(5px, 1.55vw, 7px);
    letter-spacing: 0.16em;
  }

  .hero-v4-arrow {
    font-size: clamp(16px, 5vw, 22px);
  }
}


/* ==================================================
   BIRDIECAST INTRODUCTORY BROADCAST PRICING
   BirdieGreen: #b8ff23
================================================== */

.broadcast-card-header {
  position: relative;
  min-height: 88px;
  align-items: flex-start;
}

.broadcast-price-stack {
  position: relative;
  flex: 0 0 clamp(120px, 11vw, 176px);
  min-height: 82px;
  margin-top: -7px;
  text-align: right;
}

/* White professional regular price with a BirdieGreen slash. */

.broadcast-regular-price {
  position: absolute;
  top: 0;
  right: 0;
  color: #f7f8f4;
  font-size: clamp(23px, 2vw, 33px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.broadcast-regular-price::before,
.broadcast-regular-price::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -5%;
  width: 110%;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform-origin: center;
}

.broadcast-regular-price::before {
  top: 48%;
  transform: rotate(-13deg);
}

.broadcast-regular-price::after {
  top: 57%;
  width: 104%;
  opacity: 0.52;
  transform: rotate(-9deg);
}

/*
  Handwritten-style introductory price.

  Uses a broadly available cursive stack without adding or sharing
  external font files.
*/

.broadcast-intro-price {
  position: absolute;
  right: -4px;
  bottom: -4px;
  color: var(--green);
  font-family:
    "Bradley Hand",
    "Segoe Print",
    "Comic Sans MS",
    cursive;
  font-size: clamp(33px, 3.25vw, 54px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.92;
  white-space: nowrap;
  transform: rotate(-6deg);
  text-shadow:
    0 0 12px rgba(184, 255, 35, 0.12),
    0 0 28px rgba(184, 255, 35, 0.07);
}

.broadcast-intro-price::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: -9px;
  width: 106%;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  transform: rotate(-5deg);
}

/* Limited-time handwritten callout below the three cards. */

.broadcast-intro-callout {
  width: min(860px, 100%);
  margin: clamp(44px, 6vw, 78px) auto 0;
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  justify-content: center;
  color: var(--green);
  text-align: center;
}

.broadcast-intro-callout p {
  margin: 0;
  color: var(--green);
  font-family:
    "Bradley Hand",
    "Segoe Print",
    "Comic Sans MS",
    cursive;
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  transform: rotate(-1deg);
}

.intro-spark {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 38px;
}

.intro-spark i {
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.intro-spark-left i {
  right: 0;
  transform-origin: right center;
}

.intro-spark-right i {
  left: 0;
  transform-origin: left center;
}

.intro-spark i:nth-child(1) {
  top: 4px;
}

.intro-spark i:nth-child(2) {
  top: 17px;
}

.intro-spark i:nth-child(3) {
  top: 30px;
}

.intro-spark-left i:nth-child(1) {
  transform: rotate(18deg);
}

.intro-spark-left i:nth-child(2) {
  transform: rotate(2deg);
}

.intro-spark-left i:nth-child(3) {
  transform: rotate(-18deg);
}

.intro-spark-right i:nth-child(1) {
  transform: rotate(-18deg);
}

.intro-spark-right i:nth-child(2) {
  transform: rotate(-2deg);
}

.intro-spark-right i:nth-child(3) {
  transform: rotate(18deg);
}


/* ==================================================
   INTRODUCTORY PRICING — TABLET
================================================== */

@media (max-width: 1100px) {
  .broadcast-card-header {
    min-height: 100px;
  }

  .broadcast-price-stack {
    flex-basis: 165px;
  }

  .broadcast-intro-price {
    font-size: 48px;
  }
}


/* ==================================================
   INTRODUCTORY PRICING — PHONE
================================================== */

@media (max-width: 680px) {
  .broadcast-card-header {
    min-height: 146px;
    display: block;
  }

  .broadcast-price-stack {
    width: min(190px, 72%);
    min-height: 92px;
    margin: 25px 0 0 auto;
  }

  .broadcast-regular-price {
    font-size: 28px;
  }

  .broadcast-intro-price {
    right: 0;
    font-size: clamp(43px, 14vw, 57px);
  }

  .broadcast-intro-callout {
    gap: 10px;
    margin-top: 45px;
  }

  .broadcast-intro-callout p {
    max-width: 260px;
    font-size: clamp(19px, 6vw, 25px);
    line-height: 1.25;
  }

  .intro-spark {
    flex-basis: 29px;
    width: 29px;
  }

  .intro-spark i {
    width: 22px;
    height: 2px;
  }
}


/* ==================================================
   BIRDIECAST BROADCAST PRICING V2
   Single authoritative implementation
================================================== */

.bc-broadcast-v2 {
  width: min(var(--content-width), 100%);
  margin: 0 auto clamp(120px, 14vw, 205px);
}

.bc-broadcast-v2-heading {
  width: min(900px, 100%);
  margin-bottom: clamp(70px, 8vw, 112px);
}

.bc-broadcast-v2-heading h3 {
  margin-bottom: 28px;
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.bc-broadcast-v2-heading h3 span {
  color: var(--green);
}

.bc-broadcast-v2-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.bc-broadcast-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.bc-broadcast-v2-card {
  position: relative;
  min-height: 690px;
  padding: clamp(28px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.045),
      transparent 43%
    ),
    #090d0b;
}

.bc-broadcast-v2-featured {
  border-color: var(--green-line);
  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(184, 255, 35, 0.11),
      transparent 30%
    ),
    #0b100d;
  transform: translateY(-20px);
}

.bc-broadcast-v2-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #020402;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.bc-broadcast-v2-card-header {
  min-height: 118px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}

.bc-broadcast-v2-name p {
  margin: 0 0 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.bc-broadcast-v2-name span {
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bc-broadcast-v2-price {
  position: relative;
  flex: 0 0 clamp(132px, 12vw, 188px);
  min-height: 94px;
  margin-top: -7px;
  text-align: right;
}

/* White regular price */

.bc-price-regular {
  position: absolute;
  top: 0;
  right: 0;
  color: #f7f8f4;
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

/* BirdieGreen hand-drawn strike */

.bc-price-regular::before,
.bc-price-regular::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -7%;
  width: 114%;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform-origin: center;
}

.bc-price-regular::before {
  top: 48%;
  transform: rotate(-14deg);
}

.bc-price-regular::after {
  top: 58%;
  width: 106%;
  opacity: 0.48;
  transform: rotate(-9deg);
}

/* Handwritten BirdieGreen launch price */

.bc-price-intro {
  position: absolute;
  right: -3px;
  bottom: 0;
  color: var(--green);
  font-family:
    "Bradley Hand",
    "Segoe Print",
    "Comic Sans MS",
    cursive;
  font-size: clamp(36px, 3.25vw, 56px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
  white-space: nowrap;
  transform: rotate(-6deg);
  text-shadow:
    0 0 13px rgba(184, 255, 35, 0.13),
    0 0 28px rgba(184, 255, 35, 0.06);
}

.bc-price-intro::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: -10px;
  width: 106%;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  transform: rotate(-5deg);
}

.bc-broadcast-v2-card h4 {
  margin: clamp(62px, 7vw, 98px) 0 22px;
  color: var(--white);
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.bc-broadcast-v2-description {
  min-height: 130px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.bc-broadcast-v2-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.bc-broadcast-v2-card li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-top: 1px solid var(--line-soft);
  color: #d7ddd7;
  font-size: 15px;
  line-height: 1.5;
}

/* Handwritten launch callout */

.bc-broadcast-v2-callout {
  width: min(900px, 100%);
  margin: clamp(50px, 6vw, 82px) auto 0;
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bc-broadcast-v2-callout p {
  margin: 0;
  color: var(--green);
  font-family:
    "Bradley Hand",
    "Segoe Print",
    "Comic Sans MS",
    cursive;
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  transform: rotate(-1deg);
}

.bc-callout-rays {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 38px;
}

.bc-callout-rays i {
  position: absolute;
  display: block;
  width: 29px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.bc-callout-rays-left i {
  right: 0;
  transform-origin: right center;
}

.bc-callout-rays-right i {
  left: 0;
  transform-origin: left center;
}

.bc-callout-rays i:nth-child(1) {
  top: 4px;
}

.bc-callout-rays i:nth-child(2) {
  top: 17px;
}

.bc-callout-rays i:nth-child(3) {
  top: 30px;
}

.bc-callout-rays-left i:nth-child(1) {
  transform: rotate(18deg);
}

.bc-callout-rays-left i:nth-child(2) {
  transform: rotate(2deg);
}

.bc-callout-rays-left i:nth-child(3) {
  transform: rotate(-18deg);
}

.bc-callout-rays-right i:nth-child(1) {
  transform: rotate(-18deg);
}

.bc-callout-rays-right i:nth-child(2) {
  transform: rotate(-2deg);
}

.bc-callout-rays-right i:nth-child(3) {
  transform: rotate(18deg);
}


/* ==================================================
   BROADCAST PRICING V2 — TABLET
================================================== */

@media (max-width: 1100px) {
  .bc-broadcast-v2-grid {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .bc-broadcast-v2-featured {
    transform: none;
  }

  .bc-broadcast-v2-card {
    min-height: auto;
  }

  .bc-broadcast-v2-description {
    min-height: auto;
  }
}


/* ==================================================
   BROADCAST PRICING V2 — PHONE
================================================== */

@media (max-width: 680px) {
  .bc-broadcast-v2-heading h3 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .bc-broadcast-v2-card {
    padding: 26px 23px;
    border-radius: 22px;
  }

  .bc-broadcast-v2-card-header {
    min-height: 168px;
    display: block;
  }

  .bc-broadcast-v2-price {
    width: min(210px, 78%);
    min-height: 103px;
    margin: 28px 0 0 auto;
  }

  .bc-price-regular {
    font-size: 29px;
  }

  .bc-price-intro {
    font-size: clamp(44px, 14vw, 59px);
  }

  .bc-broadcast-v2-card h4 {
    margin-top: 58px;
    font-size: 42px;
  }

  .bc-broadcast-v2-card li {
    grid-template-columns: 35px minmax(0, 1fr);
    font-size: 17px;
  }

  .bc-broadcast-v2-callout {
    gap: 10px;
    margin-top: 48px;
  }

  .bc-broadcast-v2-callout p {
    max-width: 275px;
    font-size: clamp(19px, 6vw, 26px);
    line-height: 1.25;
  }

  .bc-callout-rays {
    flex-basis: 30px;
    width: 30px;
  }

  .bc-callout-rays i {
    width: 22px;
    height: 2px;
  }
}


/* ==================================================
   FINAL LAUNCH PRICE LETTERFORMS
   Preserve handwritten energy while keeping 9s legible.
================================================== */

.bc-price-intro {
  font-family:
    "Marker Felt",
    "Chalkboard SE",
    "Noteworthy",
    "Segoe Print",
    sans-serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.045em;
  transform: rotate(-5deg);
}

.bc-broadcast-v2-callout p {
  font-family:
    "Marker Felt",
    "Chalkboard SE",
    "Noteworthy",
    "Segoe Print",
    sans-serif;
  font-style: italic;
  font-weight: 700;
}

/* Final handwritten launch-price font with clear numeral shapes. */

.bc-price-intro {
  font-family:
    "Marker Felt",
    "Chalkboard SE",
    "Noteworthy",
    "Segoe Print",
    sans-serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.045em;
  transform: rotate(-5deg);
}

.bc-broadcast-v2-callout p {
  font-family:
    "Marker Felt",
    "Chalkboard SE",
    "Noteworthy",
    "Segoe Print",
    sans-serif;
  font-style: italic;
  font-weight: 700;
}

/* Thin handwritten introductory prices */

.bc-price-intro {
  font-family:
    "Marker Felt",
    "Chalkboard SE",
    "Noteworthy",
    "Segoe Print",
    sans-serif;
  font-style: italic;
  font-weight: 300 !important;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 0 transparent;
  text-shadow:
    0 0 8px rgba(184, 255, 35, 0.08);
}

.bc-broadcast-v2-callout p {
  font-weight: 300 !important;
  -webkit-text-stroke: 0 transparent;
}

/* ==================================================
   THIN HANDWRITTEN INTRODUCTORY PRICES
   Authoritative final override
================================================== */

.bc-price-intro {
  font-family:
    "Noteworthy",
    "Bradley Hand",
    "Segoe Print",
    cursive !important;

  font-style: normal !important;
  font-weight: 300 !important;
  letter-spacing: -0.025em !important;

  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;

  transform:
    rotate(-5deg)
    scaleX(0.88) !important;

  transform-origin: right bottom;
}

.bc-broadcast-v2-callout p {
  font-family:
    "Noteworthy",
    "Bradley Hand",
    "Segoe Print",
    cursive !important;

  font-style: normal !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;

  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}


/* =========================================================
   BIRDIECAST FINAL FOOTER — JULY 2026
   ========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 24px 30px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(184, 245, 161, 0.055),
      transparent 30%
    ),
    #020403;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.025),
      transparent
    );
  opacity: 0.6;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-birdmark {
  display: block;
  width: clamp(92px, 13vw, 142px);
  height: auto;
  margin: 0 auto 22px;
  object-fit: contain;
  opacity: 0.96;
}

.footer-brand {
  margin: 0;
  color: #ffffff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  letter-spacing: 0.23em;
  text-indent: 0.23em;
}

.footer-tagline {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.footer-domain {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.055em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin: 48px auto 0;
}

.footer-links a,
.footer-legal a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-links a::after,
.footer-legal a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: #b8f5a1;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #b8f5a1;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-legal a:hover::after,
.footer-legal a:focus-visible::after {
  transform: scaleX(1);
}

.footer-links a:focus-visible,
.footer-legal a:focus-visible,
.footer-contact a:focus-visible {
  outline: 2px solid #b8f5a1;
  outline-offset: 6px;
  border-radius: 2px;
}

.footer-contact {
  width: min(580px, 100%);
  margin: 50px auto 0;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 72px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  line-height: 1.5;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

@media (max-width: 700px) {
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(360px, 100%);
    gap: 14px;
    text-align: center;
  }

  .footer-contact {
    padding: 24px 18px;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal nav {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-links a,
  .footer-legal a,
  .footer-links a::after,
  .footer-legal a::after {
    transition: none;
  }
}


/* BIRDIECAST SINGLE CONTACT LINK */

.footer-contact-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 750;
  line-height: 1.5;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #b8f5a1;
  transform: translateY(-1px);
}

.footer-contact-link:focus-visible {
  outline: 2px solid #b8f5a1;
  outline-offset: 7px;
  border-radius: 3px;
}


/* =========================================================
   FINAL BIRDIECAST FOOTER BRAND LOCKUP
   ========================================================= */

.footer-identity {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(300px, 84vw);
  margin: 0 auto;
}

.footer-brand-lockup .footer-birdmark {
  display: block;
  width: clamp(145px, 17vw, 205px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.footer-brand-lockup .footer-signature-logo {
  display: block;
  width: clamp(165px, 19vw, 225px);
  height: auto;
  margin: -16px auto 0;
  object-fit: contain;
}

.footer-brand,
.footer-tagline,
.footer-domain {
  display: none !important;
}

@media (max-width: 640px) {
  .footer-brand-lockup {
    width: min(260px, 84vw);
  }

  .footer-brand-lockup .footer-birdmark {
    width: 158px;
  }

  .footer-brand-lockup .footer-signature-logo {
    width: 195px;
    margin-top: -14px;
  }
}


/* =========================================================
   FINAL FOOTER SIGNATURE SIZE CORRECTION
   ========================================================= */

.footer-brand-lockup {
  width: min(250px, 78vw) !important;
}

.footer-brand-lockup .footer-birdmark {
  width: clamp(150px, 17vw, 205px) !important;
}

.footer-brand-lockup .footer-signature-logo {
  width: clamp(115px, 12vw, 145px) !important;
  max-width: 72% !important;
  margin: -8px auto 0 !important;
}

@media (max-width: 640px) {
  .footer-brand-lockup {
    width: min(225px, 78vw) !important;
  }

  .footer-brand-lockup .footer-birdmark {
    width: 158px !important;
  }

  .footer-brand-lockup .footer-signature-logo {
    width: 128px !important;
    max-width: 68% !important;
    margin-top: -7px !important;
  }
}


/* =========================================================
   FINAL FOOTER SIGNATURE — QUARTER SIZE
   ========================================================= */

.footer-brand-lockup {
  width: min(220px, 74vw) !important;
}

.footer-brand-lockup .footer-birdmark {
  width: clamp(150px, 17vw, 205px) !important;
}

.footer-brand-lockup .footer-signature-logo {
  width: clamp(72px, 7vw, 92px) !important;
  max-width: 46% !important;
  margin: -2px auto 0 !important;
}

@media (max-width: 640px) {
  .footer-brand-lockup {
    width: min(205px, 74vw) !important;
  }

  .footer-brand-lockup .footer-birdmark {
    width: 158px !important;
  }

  .footer-brand-lockup .footer-signature-logo {
    width: 80px !important;
    max-width: 44% !important;
    margin-top: -2px !important;
  }
}
