:root {
  --brand-black: #000000;
  --brand-green-dark: #004d39;
  --hero-green-dark: #003c2c;
  --hero-green-dark-rgb: 0, 60, 44;
  --brand-green: #007956;
  --brand-gold-1: #d1a656;
  --brand-gold-2: #b8892a;
  --brand-black-rgb: 0, 0, 0;
  --brand-green-dark-rgb: 0, 77, 57;
  --brand-green-rgb: 0, 121, 86;
  --brand-gold-1-rgb: 209, 166, 86;
  --brand-gold-2-rgb: 184, 137, 42;
  --om-green-950: var(--brand-black);
  --om-green-900: var(--brand-green-dark);
  --om-green-800: var(--brand-green-dark);
  --om-green-700: var(--brand-green);
  --om-gold-600: var(--brand-gold-2);
  --om-gold-500: var(--brand-gold-1);
  --om-gold-300: var(--brand-gold-1);
  --paper: #ffffff;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --line: rgba(var(--brand-gold-1-rgb), 0.34);
  --shadow: 0 30px 90px rgba(var(--brand-black-rgb), 0.38);
  --font-primary: "Gotham", "Segoe UI", Arial, sans-serif;
  font-family: var(--font-primary);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--brand-green-dark);
  font-family: inherit;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: transparent;
  pointer-events: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(var(--brand-gold-1-rgb), 0.18);
  background: var(--brand-green-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand picture {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(146px, 11vw, 170px);
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-primary);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--om-gold-300);
}

.header-cta,
.button,
.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
  font-family: var(--font-primary);
  font-weight: 700;
}

.header-cta,
.button.primary,
.sticky-cta {
  color: var(--brand-green-dark);
  background: var(--brand-gold-2);
  box-shadow: 0 16px 40px rgba(var(--brand-gold-2-rgb), 0.24);
}

.button.secondary {
  color: var(--paper);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.header-cta:hover,
.button:hover,
.sticky-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(24px, 4vw, 74px);
  align-items: center;
  min-height: min(820px, calc(100vh - 72px));
  padding: clamp(42px, 5.5vw, 76px) clamp(18px, 5vw, 72px) clamp(32px, 4vw, 46px);
  background: var(--hero-green-dark);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--om-gold-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--om-gold-300);
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: 0.84;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 700;
}

.hero-lead {
  max-width: 550px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.5rem, 2.7vw, 2.55rem);
  line-height: 1.12;
  font-weight: 700;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  min-height: clamp(470px, 64vh, 620px);
}

.hero-showcase::before {
  position: absolute;
  inset: 14% 3% 5% 9%;
  content: "";
  border: 1px solid rgba(var(--brand-gold-1-rgb), 0.24);
  background: var(--hero-green-dark);
  box-shadow: var(--shadow);
  transform: skewX(-7deg);
}

.product-fan {
  position: relative;
  z-index: 2;
  min-height: clamp(450px, 62vh, 590px);
}

.album-backdrop {
  position: absolute;
  left: 50%;
  bottom: clamp(44px, 6vh, 68px);
  z-index: 1;
  width: min(700px, 52vw);
  max-height: min(480px, 56vh);
  object-fit: contain;
  opacity: 1;
  filter: saturate(1.16) brightness(1.14) contrast(1.04) drop-shadow(0 34px 54px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 28px rgba(var(--brand-gold-1-rgb), 0.22));
  transform: translateX(-48%) translateY(-26px) rotate(-2deg) scale(1.02);
  transform-origin: center bottom;
  pointer-events: none;
}

.fan-card {
  position: absolute;
  left: 50%;
  bottom: clamp(32px, 5vh, 56px);
  width: min(305px, 23vw);
  height: auto;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.48));
  transform-origin: 50% 86%;
}

.fan-card-1 {
  transform: translateX(-164%) rotate(-18deg) scale(0.78);
  z-index: 1;
}

.fan-card-2 {
  transform: translateX(-126%) rotate(-12deg) scale(0.84);
  z-index: 2;
}

.fan-card-3 {
  transform: translateX(-88%) rotate(-6deg) scale(0.9);
  z-index: 3;
}

.fan-card-4 {
  transform: translateX(-12%) rotate(5deg) scale(0.88);
  z-index: 3;
}

.fan-card-5 {
  transform: translateX(26%) rotate(11deg) scale(0.84);
  z-index: 2;
}

.fan-card-6 {
  transform: translateX(64%) rotate(17deg) scale(0.78);
  z-index: 1;
}

.fan-card-highlight {
  width: min(325px, 24vw);
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.52)) drop-shadow(0 0 22px rgba(var(--brand-gold-1-rgb), 0.28));
}

.fan-card-7 {
  transform: translateX(-50%) rotate(0deg) scale(1.04);
  z-index: 8;
}

.showcase-badge {
  position: absolute;
  right: 4%;
  bottom: clamp(28px, 5vh, 46px);
  z-index: 7;
  width: min(240px, 24vw);
  padding: 15px 17px;
  border: 1px solid rgba(var(--brand-gold-1-rgb), 0.44);
  color: var(--white);
  background: rgba(var(--hero-green-dark-rgb), 0.36);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.showcase-badge strong {
  display: block;
}

.showcase-badge strong {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.18;
  text-transform: none;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 460px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(38px, 5vw, 60px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(var(--brand-gold-1-rgb), 0.18);
  border-bottom: 1px solid rgba(var(--brand-gold-1-rgb), 0.18);
  background: var(--hero-green-dark);
}

.about-content {
  max-width: 960px;
}

.about-heading {
  max-width: 520px;
  margin-bottom: 18px;
}

.about-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

.about-heading h2 span {
  display: block;
}

.about-copy {
  max-width: 980px;
}

.about-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-cta {
  margin-top: 12px;
}

.about-visual {
  align-self: center;
  justify-self: end;
  width: min(100%, 460px);
  margin: 0;
}

.about-visual img {
  width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 56px rgba(0, 0, 0, 0.28));
}

.audience-section {
  padding: clamp(36px, 4.5vw, 58px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.audience-section .eyebrow,
.audience-section .audience-list article::before {
  color: var(--brand-gold-2);
}

.audience-section h2 {
  color: var(--brand-green-dark);
}

.audience-section .section-heading {
  margin-bottom: 24px;
}

.audience-section .section-heading p:not(.eyebrow),
.audience-section .audience-list p {
  color: rgba(var(--brand-green-dark-rgb), 0.74);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 42px;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.audience-list article {
  position: relative;
  padding-left: 30px;
}

.audience-list article::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2713";
  color: var(--om-gold-300);
  font-size: 1rem;
  font-weight: 700;
}

.audience-list span {
  display: block;
  color: var(--brand-green-dark);
  font-size: 1.02rem;
  font-weight: 700;
}

.audience-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.rules-section {
  padding: clamp(36px, 4.5vw, 58px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(var(--brand-green-dark-rgb), 0.12);
  background: var(--white);
}

.rules-section .eyebrow,
.rules-list li::before {
  color: var(--brand-gold-2);
}

.rules-section h2 {
  color: var(--brand-green-dark);
}

.rules-section .section-heading {
  margin-bottom: 24px;
}

.rules-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 42px;
  max-width: 1120px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.rules-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(var(--brand-green-dark-rgb), 0.76);
  font-size: 1.02rem;
  line-height: 1.5;
}

.rules-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2713";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.campaign-banner {
  padding: clamp(28px, 4vw, 48px) clamp(18px, 5vw, 72px);
  background: var(--hero-green-dark);
}

.campaign-banner-frame {
  position: relative;
  width: min(100%, 1460px);
  display: block;
  margin: 0 auto;
}

.campaign-banner-frame picture {
  display: block;
}

.campaign-banner img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(var(--brand-gold-1-rgb), 0.24);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.campaign-banner-cta {
  position: absolute;
  top: 68.2%;
  left: 6.6%;
  z-index: 2;
  width: 8.2%;
  height: 7.5%;
  border-radius: 999px;
  cursor: pointer;
}

.campaign-banner-cta:focus-visible {
  outline: 3px solid var(--brand-gold-1);
  outline-offset: 4px;
}

.faq-section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(var(--brand-gold-1-rgb), 0.14);
  border-bottom: 1px solid rgba(var(--brand-gold-1-rgb), 0.18);
}

.faq-list {
  display: grid;
  max-width: none;
}

.faq-list details {
  border-bottom: 1px solid rgba(var(--brand-gold-1-rgb), 0.24);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--white);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  list-style: none;
}

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

.faq-list summary::after {
  content: none;
}

.faq-list summary::before {
  display: inline-block;
  margin-right: 14px;
  content: "\25B6";
  color: var(--om-gold-300);
  font-size: 0.84em;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::before {
  transform: rotate(90deg);
}

.faq-list p {
  margin: 0;
  padding: 0 0 18px 30px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.premium-section,
.conversion-section {
  padding: clamp(42px, 5.5vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.collection-section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--hero-green-dark);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow),
.premium-copy p,
.conversion-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.cards-carousel {
  position: relative;
}

.cards-viewport {
  overflow: hidden;
  padding: 6px 0;
}

.cards-grid {
  --carousel-gap: clamp(14px, 1.8vw, 22px);
  --card-width: clamp(280px, 22vw, 350px);
  display: flex;
  gap: var(--carousel-gap);
  align-items: stretch;
  transition: transform 420ms ease;
  will-change: transform;
}

.cards-grid.is-moving {
  pointer-events: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(var(--brand-gold-1-rgb), 0.42);
  border-radius: 999px;
  color: var(--om-gold-300);
  background: rgba(var(--brand-green-dark-rgb), 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.carousel-arrow:hover {
  border-color: rgba(var(--brand-gold-1-rgb), 0.72);
  background: rgba(var(--brand-green-dark-rgb), 0.96);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow--prev {
  left: -24px;
}

.carousel-arrow--next {
  right: -24px;
}

.product-card {
  position: relative;
  display: grid;
  flex: 0 0 var(--card-width);
  grid-template-rows: auto minmax(270px, 300px) auto auto;
  gap: 12px;
  align-content: start;
  min-height: 470px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(var(--brand-gold-1-rgb), 0.2);
  border-radius: 28px;
  background: rgba(var(--brand-green-dark-rgb), 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card::before {
  position: absolute;
  inset: -42%;
  z-index: 0;
  content: "";
  opacity: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translate3d(-18%, 18%, 0) scale(0.88);
  transition: opacity 220ms ease, transform 420ms ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--brand-gold-1-rgb), 0.48);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3);
}

.product-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.product-card.featured {
  border-color: rgba(var(--brand-gold-1-rgb), 0.45);
  background: rgba(var(--brand-green-dark-rgb), 0.74);
}

.card-picture {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: stretch;
  justify-self: stretch;
  place-items: center;
  min-height: 0;
}

.product-card img {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(100%, 300px);
  height: auto;
  min-height: 0;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.35));
  transition: transform 220ms ease, filter 220ms ease;
  transform: scale(1.02);
}

.product-card:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.42));
}

.product-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--om-gold-300);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.18;
}

.stock-note {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: center;
}

.card-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--brand-green-dark);
  background: var(--brand-gold-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--brand-gold-2-rgb), 0.22);
}

.premium-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  background: var(--brand-green-dark);
}

.album-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.album-visual picture {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.album-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72%, 500px);
  height: min(46%, 300px);
  content: "";
  opacity: 0.42;
  border-radius: 999px;
  background: rgba(var(--brand-green-rgb), 0.42);
  filter: blur(36px);
  transform: translate(-50%, -44%) scale(0.92);
  transition: opacity 220ms ease, transform 260ms ease;
  pointer-events: none;
}

.album-visual:hover::before {
  opacity: 0.56;
  transform: translate(-50%, -46%) scale(1);
}

.album-cover {
  position: relative;
  z-index: 1;
  display: block;
  width: min(620px, 94vw);
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(28px 34px 48px rgba(0, 0, 0, 0.34));
  transition: transform 240ms ease, filter 240ms ease;
}

.album-visual:hover .album-cover {
  transform: translateY(-8px) rotate(-1deg) scale(1.025);
  filter: drop-shadow(32px 40px 56px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 24px rgba(var(--brand-gold-1-rgb), 0.2));
}

.premium-cta {
  margin-top: 18px;
}

.conversion-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 440px);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.rd-form-slot {
  width: 100%;
  max-width: 100%;
  min-height: 420px;
}

.rd-form-slot > * {
  max-width: 100%;
}

.conversion-section .eyebrow {
  color: var(--brand-gold-2);
}

.conversion-section h2 {
  color: var(--brand-green-dark);
}

.conversion-copy p {
  color: rgba(var(--brand-green-dark-rgb), 0.74);
}

.trust-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 13px 16px;
  border-left: 2px solid var(--brand-gold-2);
  color: var(--brand-green-dark);
  background: rgba(var(--brand-green-dark-rgb), 0.06);
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(var(--brand-gold-1-rgb), 0.34);
  border-top: 5px solid var(--brand-gold-2);
  border-radius: 8px;
  background: var(--hero-green-dark);
  box-shadow: 0 24px 58px rgba(var(--brand-black-rgb), 0.22);
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(var(--brand-gold-1-rgb), 0.22);
  border-radius: 6px;
  color: var(--brand-green-dark);
  background: #ffffff;
  font: inherit;
  font-weight: 400;
}

.lead-form textarea {
  min-height: 92px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--om-gold-500);
  outline-offset: 2px;
}

.lead-form .form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.form-modal[hidden] {
  display: none;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: clamp(14px, 3vh, 26px) clamp(14px, 4vw, 36px);
  overflow-y: auto;
}

.form-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.form-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(var(--brand-gold-1-rgb), 0.32);
  border-top: 5px solid var(--brand-gold-2);
  border-radius: 12px;
  background: var(--brand-green-dark);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  overflow: visible;
}

.form-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--brand-gold-1-rgb), 0.35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.form-modal__heading {
  padding-right: 44px;
  margin-bottom: 10px;
}

.form-modal__heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.form-modal__body .rd-form-slot {
  min-height: 0;
  background: var(--brand-green-dark);
}

.form-modal__body form,
.form-modal__body iframe,
.form-modal__body .bricks-form,
.form-modal__body .rdstation-popup-js-floating-button,
.form-modal__body [class*="bricks-form"] {
  max-width: 100%;
}

.form-modal__body [class*="bricks-form"] input,
.form-modal__body [class*="bricks-form"] select,
.form-modal__body [class*="bricks-form"] textarea {
  background-color: var(--white) !important;
}

.form-modal__privacy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.form-modal__privacy a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.is-modal-open {
  overflow: hidden;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(var(--brand-gold-1-rgb), 0.18);
  background: var(--brand-green-dark);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer span {
  width: 100%;
  text-align: center;
}

.site-footer a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-page {
  background: var(--white);
  color: var(--brand-green-dark);
}

.privacy-hero {
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 56px);
  background: var(--hero-green-dark);
  color: var(--white);
}

.privacy-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
  color: var(--om-gold-300);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.92;
}

.privacy-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.privacy-hero span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.privacy-content {
  display: grid;
  gap: 0;
  max-width: 980px;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 72px);
  margin: 0 auto;
}

.privacy-content article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(var(--brand-green-dark-rgb), 0.12);
}

.privacy-content article:first-child {
  padding-top: 0;
}

.privacy-content article:last-child {
  border-bottom: 0;
}

.privacy-content h2 {
  margin-bottom: 12px;
  color: var(--brand-green-dark);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.privacy-content p {
  margin-bottom: 12px;
  color: rgba(var(--brand-green-dark-rgb), 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1440px) {
  .hero {
    grid-template-columns: minmax(0, 0.76fr) minmax(500px, 1.24fr);
    gap: clamp(20px, 2.8vw, 48px);
    min-height: min(760px, calc(100vh - 72px));
    padding-top: clamp(34px, 4vw, 58px);
  }

  .hero-copy {
    max-width: 590px;
  }

  .hero-showcase {
    min-height: clamp(430px, 58vh, 520px);
  }

  .product-fan {
    min-height: clamp(410px, 56vh, 500px);
  }

  .album-backdrop {
    bottom: clamp(42px, 6vh, 62px);
    width: min(590px, 46vw);
    max-height: min(410px, 50vh);
    transform: translateX(-44%) translateY(-18px) rotate(-2deg) scale(0.98);
  }

  .fan-card {
    bottom: clamp(34px, 5vh, 54px);
    width: min(250px, 19vw);
  }

  .fan-card-highlight {
    width: min(270px, 20.5vw);
  }

  .fan-card-1 {
    transform: translateX(-144%) rotate(-17deg) scale(0.76);
  }

  .fan-card-2 {
    transform: translateX(-112%) rotate(-11deg) scale(0.82);
  }

  .fan-card-3 {
    transform: translateX(-80%) rotate(-5deg) scale(0.88);
  }

  .fan-card-4 {
    transform: translateX(-8%) rotate(5deg) scale(0.86);
  }

  .fan-card-5 {
    transform: translateX(26%) rotate(11deg) scale(0.82);
  }

  .fan-card-6 {
    transform: translateX(60%) rotate(16deg) scale(0.76);
  }

  .showcase-badge {
    right: 3%;
    bottom: clamp(30px, 5vh, 48px);
    width: min(220px, 20vw);
    padding: 12px 14px;
  }

  .showcase-badge strong {
    font-size: 0.92rem;
  }
}

@media (max-width: 1280px) {
  .cards-grid {
    --card-width: clamp(270px, 30vw, 330px);
  }
}

@media (max-height: 850px) and (min-width: 1081px) {
  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .product-fan {
    min-height: 410px;
  }

  .album-backdrop {
    bottom: 50px;
    width: min(560px, 43vw);
    max-height: min(380px, 46vh);
  }

  .fan-card {
    bottom: 42px;
    width: min(235px, 18vw);
  }

  .fan-card-highlight {
    width: min(255px, 19.5vw);
  }

  .showcase-badge {
    bottom: 34px;
    width: min(205px, 18vw);
    padding: 11px 13px;
  }

  .showcase-badge strong {
    font-size: 0.88rem;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 14px;
  }

  .brand img {
    width: clamp(132px, 12vw, 154px);
  }

  .header-nav {
    gap: clamp(10px, 1.2vw, 18px);
    font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  }

  .header-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.72rem;
  }
}

@media (max-width: 1080px) {
  .hero,
  .about-section,
  .premium-section,
  .conversion-section {
    grid-template-columns: 1fr;
  }

  .about-visual {
    justify-self: center;
    width: min(100%, 480px);
  }

  .conversion-section {
    gap: 28px;
  }

  .rd-form-slot {
    width: min(100%, 620px);
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    min-height: 570px;
  }

  .fan-card {
    width: min(300px, 38vw);
  }

  .fan-card-highlight {
    width: min(315px, 41vw);
  }

}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
    padding: 10px 16px;
  }

  .brand {
    width: 140px;
  }

  .brand img {
    width: 140px;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 3rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-showcase {
    min-height: 400px;
    margin-top: 0;
  }

  .hero-showcase::before {
    inset: 24% 1% 8% 1%;
  }

  .product-fan {
    min-height: 370px;
  }

  .album-backdrop {
    bottom: 52px;
    width: min(380px, 86vw);
    max-height: 300px;
    opacity: 1;
    transform: translateX(-50%) translateY(-10px) rotate(-2deg) scale(1);
  }

  .fan-card {
    width: min(156px, 36vw);
  }

  .fan-card-highlight {
    width: min(172px, 40vw);
  }

  .fan-card-1 {
    transform: translateX(-136%) rotate(-16deg) scale(0.72);
  }

  .fan-card-2 {
    transform: translateX(-106%) rotate(-10deg) scale(0.78);
  }

  .fan-card-3 {
    transform: translateX(-76%) rotate(-5deg) scale(0.84);
  }

  .fan-card-4 {
    transform: translateX(-10%) rotate(5deg) scale(0.82);
  }

  .fan-card-5 {
    transform: translateX(20%) rotate(10deg) scale(0.78);
  }

  .fan-card-6 {
    transform: translateX(50%) rotate(16deg) scale(0.72);
  }

  .fan-card-7 {
    transform: translateX(-50%) rotate(0deg) scale(0.98);
  }

  .showcase-badge {
    right: 5%;
    bottom: 2%;
    width: min(190px, 54vw);
    padding: 10px 12px;
  }

  .showcase-badge strong {
    font-size: 0.82rem;
  }

  .cards-grid {
    --card-width: min(82vw, 320px);
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .rules-list {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }

  .carousel-arrow--prev {
    left: -8px;
  }

  .carousel-arrow--next {
    right: -8px;
  }

  .product-card {
    border-radius: 24px;
    grid-template-rows: auto minmax(245px, 255px) auto auto;
    gap: 10px;
    min-height: 465px;
    padding: 20px;
  }

  .product-card img {
    width: min(100%, 245px);
    max-height: 255px;
  }

  .stock-note {
    min-height: 18px;
  }

  .album-visual {
    min-height: 420px;
  }

  .album-cover {
    width: min(540px, 96vw);
    max-height: 460px;
  }

  .sticky-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .site-footer {
    padding-bottom: 28px;
    text-align: center;
  }

  .site-footer span {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-showcase {
    min-height: 360px;
  }

  .product-fan {
    min-height: 335px;
  }

  .product-card {
    grid-template-rows: auto minmax(225px, 235px) auto auto;
    min-height: 440px;
    padding: 18px;
  }

  .product-card img {
    width: min(100%, 225px);
    max-height: 235px;
  }

  .album-backdrop {
    bottom: 48px;
    width: min(330px, 82vw);
    max-height: 260px;
  }

  .fan-card {
    width: min(138px, 34vw);
  }

  .fan-card-highlight {
    width: min(152px, 38vw);
  }

  .showcase-badge {
    width: min(170px, 52vw);
    padding: 9px 11px;
  }

  .showcase-badge strong {
    font-size: 0.76rem;
  }

  .form-modal {
    padding: 10px;
  }

  .form-modal__dialog {
    padding: 16px 12px;
  }

  .form-modal__heading {
    padding-right: 38px;
    margin-bottom: 8px;
  }

  .form-modal__heading h2 {
    font-size: 1.55rem;
  }
}
