:root {
  --carbon: #050706;
  --asphalt: #080c0b;
  --graphite: #0d1110;
  --steel: #171d1b;
  --panel: #101614;
  --panel-green: #0a2418;
  --line: rgba(226, 232, 224, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --cream: #f4f0df;
  --hero-title: #eee7d0;
  --muted: #b5baad;
  --green: #087235;
  --green-deep: #053f24;
  --yellow: #ffd333;
  --chrome: #d9e2da;
  --focus: #fff2a3;
  --max: 1180px;

  /*
    Reveal original, para reverter se quiser:
    --reveal-y: 28px;
    --reveal-scale: 1;
    --reveal-blur: 0px;
    --reveal-duration: 650ms;
  */
  --reveal-y: 74px;
  --reveal-scale: 0.94;
  --reveal-blur: 9px;
  --reveal-duration: 860ms;
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 211, 51, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--carbon);
  background-size: 92px 92px, 92px 92px, auto;
  color: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(8, 114, 53, 0.18), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(255, 211, 51, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(5, 7, 6, 0), rgba(5, 7, 6, 0.88));
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 34vw;
  aspect-ratio: 1;
  pointer-events: none;
  filter: blur(58px);
  opacity: 0.28;
  transform: translate3d(0, var(--float, 0px), 0);
  transition: transform 120ms linear;
}

.ambient--one {
  top: 18vh;
  left: -14vw;
  background: var(--green);
}

.ambient--two {
  right: -15vw;
  bottom: 12vh;
  background: var(--yellow);
  opacity: 0.16;
}

body::selection {
  background: var(--yellow);
  color: var(--carbon);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  overflow: clip;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(8, 114, 53, 0.34), transparent 38%),
    var(--carbon);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 42%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 58% 88%, rgba(255, 211, 51, 0.2), transparent 36%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12) 48%, rgba(8, 114, 53, 0.18));
  mix-blend-mode: screen;
  opacity: 0.64;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6vw;
  bottom: 8vh;
  z-index: -1;
  width: min(560px, 44vw);
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 0;
  opacity: 0.72;
  transform: skewX(-18deg);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 55%;
  filter: saturate(1.04) contrast(1.04);
  transform: translate3d(0, calc(var(--scroll-progress, 0) * 48px), 0) scale(calc(1 + var(--scroll-progress, 0) * 0.055));
  transition: transform 80ms linear, filter 220ms ease;
}

.hero:hover .hero__image {
  filter:
    saturate(1.12)
    contrast(1.08)
    drop-shadow(0 0 26px rgba(255, 211, 51, 0.16))
    drop-shadow(0 0 42px rgba(8, 114, 53, 0.18));
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.86) 0%, rgba(5, 7, 6, 0.48) 28%, rgba(5, 7, 6, 0.04) 60%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.72) 0%, rgba(5, 7, 6, 0.02) 28%, rgba(5, 7, 6, 0.52) 100%);
}

.speed-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.speed-lines span {
  position: absolute;
  left: -8vw;
  width: min(42vw, 620px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--green), transparent);
  opacity: 0.74;
  transform: translateX(calc(var(--scroll-progress, 0) * 120px)) skewX(-18deg);
}

.speed-lines span:nth-child(1) {
  top: 23%;
}

.speed-lines span:nth-child(2) {
  top: 70%;
  left: auto;
  right: -12vw;
  width: min(34vw, 520px);
}

.speed-lines span:nth-child(3) {
  bottom: 0;
  left: 8vw;
  width: min(28vw, 380px);
  height: 4px;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__brand::before {
  content: "";
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  box-shadow: 0 0 18px rgba(255, 211, 51, 0.32);
}

.nav__links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav__links a:hover {
  color: var(--cream);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 11vh, 126px) 0 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 15px;
  color: var(--yellow);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.15vw, 4rem);
  line-height: 1.03;
  color: var(--hero-title);
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--chrome);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin: 0 0 20px;
}

.hero__proof span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 211, 51, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 211, 51, 0.12), rgba(5, 7, 6, 0.78) 42%),
    rgba(5, 7, 6, 0.82);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

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

.hero__microcopy {
  max-width: 460px;
  margin: 12px 0 0;
  color: rgba(217, 226, 218, 0.78);
  font-size: 0.88rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent 42%),
    var(--yellow);
  color: var(--carbon);
  box-shadow: 0 16px 36px rgba(255, 211, 51, 0.18);
}

.hero__actions .button--primary,
.festival__actions .button--primary,
.offer__card .button--primary {
  min-width: 228px;
  min-height: 56px;
  box-shadow: 0 22px 50px rgba(255, 211, 51, 0.24);
}

.button--secondary {
  border-color: var(--line-strong);
  background: rgba(5, 7, 6, 0.34);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.button--secondary:hover {
  border-color: var(--yellow);
}

.button--dark {
  border-color: rgba(5, 7, 6, 0.28);
  background: var(--carbon);
  color: var(--cream);
  box-shadow: 0 16px 32px rgba(5, 7, 6, 0.2);
}

.button--dark:hover {
  border-color: rgba(5, 7, 6, 0.54);
  background: #101311;
}

.button--accent {
  border-color: rgba(255, 211, 51, 0.5);
  background: rgba(255, 211, 51, 0.1);
  color: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(255, 211, 51, 0.12);
}

.button--accent:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--carbon);
}

.hero__plate {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(22px, 5vw, 66px);
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(5, 7, 6, 0.5);
  color: var(--chrome);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero__plate strong {
  color: var(--yellow);
}

.section {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--carbon);
  overflow: clip;
}

.festival,
.highlights,
.gallery,
.offer,
.voices,
.specs,
.final-cta {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: max(20px, calc((100% - var(--max)) / 2));
  width: min(220px, 42vw);
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.section__inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 116px) 0;
}

.conversion-strip {
  border-top: 1px solid rgba(255, 211, 51, 0.24);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 211, 51, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(8, 114, 53, 0.34), rgba(5, 7, 6, 0.96)),
    var(--asphalt);
}

.conversion-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px) 0;
}

.conversion-strip__inner div {
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(5, 7, 6, 0.42);
}

.conversion-strip__inner span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversion-strip__inner strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 1.05rem;
}

.conversion-strip__inner p {
  margin-bottom: 0;
  color: var(--chrome);
}

.section--green {
  background:
    linear-gradient(110deg, rgba(8, 114, 53, 0.54), rgba(8, 12, 11, 0.92) 52%),
    var(--panel-green);
}

.section--green::after {
  content: "";
  position: absolute;
  top: 22%;
  right: -8vw;
  width: 42vw;
  height: 18vw;
  border: 1px solid rgba(255, 211, 51, 0.22);
  transform: skewX(-18deg);
}

.identity__grid,
.gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.specs__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.identity__copy {
  color: var(--chrome);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.identity__copy {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 211, 51, 0.09), transparent 42%),
    rgba(5, 7, 6, 0.42);
  backdrop-filter: blur(10px);
}

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

.section__heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.story-strip {
  position: relative;
  overflow: clip;
  padding: clamp(28px, 4vw, 54px) 0;
  background:
    linear-gradient(90deg, rgba(8, 114, 53, 0.72), rgba(8, 12, 11, 0.94) 38%, rgba(255, 211, 51, 0.12)),
    var(--panel-green);
  color: var(--cream);
}

.story-strip::before,
.story-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.story-strip::before {
  background:
    repeating-linear-gradient(115deg, rgba(255, 211, 51, 0.12) 0 1px, transparent 1px 34px),
    linear-gradient(90deg, rgba(255, 211, 51, 0.1), transparent 24%, rgba(8, 114, 53, 0.24));
  opacity: 0.72;
}

.story-strip::after {
  inset: auto auto 0 0;
  width: min(520px, 42vw);
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: none;
}

.story-strip__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.story-strip__item {
  position: relative;
  min-height: 138px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 211, 51, 0.12), transparent 36%),
    rgba(5, 7, 6, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.story-strip__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -52px;
  width: 130px;
  height: 100%;
  background: var(--yellow);
  opacity: 0.92;
  transform: skewX(-18deg);
}

.story-strip__item::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.story-strip__item span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: clamp(2.3rem, 4.8vw, 4.9rem);
  font-weight: 900;
  line-height: 0.86;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.story-strip__item strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 190px;
  color: var(--chrome);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.festival {
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 211, 51, 0.14), transparent 27%),
    linear-gradient(105deg, rgba(8, 114, 53, 0.42), rgba(8, 12, 11, 0.96) 42%, rgba(5, 7, 6, 0.98)),
    var(--carbon);
  color: var(--cream);
}

.festival::before {
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.festival::after {
  content: "";
  position: absolute;
  left: -6vw;
  right: -6vw;
  bottom: -92px;
  height: 190px;
  background: rgba(255, 211, 51, 0.18);
  border-radius: 50% 50% 0 0 / 52% 52% 0 0;
  opacity: 0.22;
}

.festival__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.festival .section-kicker {
  color: var(--green);
}

.festival__intro h2 {
  max-width: 720px;
  color: var(--cream);
}

.festival__intro p {
  max-width: 620px;
  margin-top: 22px;
  color: var(--chrome);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.festival__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.festival__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 211, 51, 0.35);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 211, 51, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(8, 114, 53, 0.34), rgba(5, 7, 6, 0.96) 48%),
    var(--graphite);
  color: var(--cream);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.festival__panel::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -18%;
  width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 211, 51, 0.18);
}

.festival__tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--carbon);
  position: relative;
  margin-bottom: 22px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.festival__panel h3 {
  position: relative;
  max-width: 360px;
  margin-bottom: 22px;
  color: var(--cream);
  font-size: clamp(1.9rem, 2.5vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.festival__line {
  height: 1px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, rgba(255, 211, 51, 0.6), rgba(8, 114, 53, 0.2));
}

.festival__list {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.festival__list li {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.festival__list strong {
  color: var(--cream);
  font-size: 1rem;
}

.festival__list span {
  max-width: 340px;
  color: var(--chrome);
}

.voices {
  background:
    linear-gradient(90deg, rgba(255, 211, 51, 0.08), transparent 35%),
    radial-gradient(circle at 82% 24%, rgba(8, 114, 53, 0.24), transparent 28%),
    var(--asphalt);
}

.voices__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 4.8vw, 68px);
  align-items: center;
}

.voices__intro p {
  max-width: 440px;
  margin-top: 22px;
  color: var(--chrome);
  font-size: 1.08rem;
}

.voices__intro h2 {
  max-width: 620px;
  font-size: clamp(2.25rem, 4.7vw, 4.25rem);
  line-height: 1.03;
}

.voices__controls {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.voice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.voice-button::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.voice-button[data-voice-prev]::before {
  transform: translateX(2px) rotate(-135deg);
}

.voice-button[data-voice-next]::before {
  transform: translateX(-2px) rotate(45deg);
}

.voice-button:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: rgba(255, 211, 51, 0.12);
}

.voices__carousel {
  position: relative;
  min-height: 420px;
  margin-left: clamp(18px, 3vw, 46px);
}

.voice-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(230px, 0.58fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 211, 51, 0.12), transparent 36%),
    rgba(5, 7, 6, 0.68);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateX(28px) scale(0.98);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.voice-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.voice-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.voice-card div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 36px);
}

.voice-card p {
  color: var(--cream);
  font-size: clamp(1.08rem, 1.68vw, 1.72rem);
  font-weight: 800;
  line-height: 1.12;
}

.voice-card strong {
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature {
  min-height: 238px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 211, 51, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0)),
    var(--graphite);
  transform-origin: center bottom;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease,
    opacity 260ms ease;
}

.feature-grid:hover .feature,
.feature-grid:focus-within .feature {
  opacity: 0.78;
  transform: translateY(10px) scale(0.98);
}

.feature:hover,
.feature:focus-within {
  z-index: 2;
  opacity: 1 !important;
  color: var(--carbon);
  border-color: rgba(255, 211, 51, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #f5d545, #e6bd2f);
  box-shadow: 0 22px 48px rgba(255, 211, 51, 0.14), 0 14px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(-18px) scale(1.03) rotateX(0.001deg) !important;
}

.feature__mark {
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 36px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  transition: color 260ms ease;
}

.feature:hover .feature__mark,
.feature:focus-within .feature__mark {
  background: linear-gradient(90deg, var(--green), var(--carbon));
}

.feature:hover p,
.feature:focus-within p {
  color: rgba(5, 7, 6, 0.78);
}

.gallery {
  background:
    linear-gradient(90deg, rgba(255, 211, 51, 0.08), transparent 28%),
    radial-gradient(circle at 12% 8%, rgba(8, 114, 53, 0.38), transparent 30%),
    var(--asphalt);
}

.gallery__media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--graphite);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  height: clamp(520px, 46vw, 668px);
}

.gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 41% 52%;
  transform: none;
}

.gallery__content p:not(.section-kicker) {
  color: var(--chrome);
  font-size: 1.08rem;
}

.gallery__content h2 {
  max-width: 650px;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 1.02;
}

.gallery__content h2 span {
  display: block;
}

.offer {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 211, 51, 0.12), transparent 28%),
    linear-gradient(110deg, rgba(5, 7, 6, 0.98), rgba(8, 114, 53, 0.36)),
    var(--carbon);
}

.offer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.offer__grid > div > p {
  max-width: 640px;
  margin-top: 22px;
  color: var(--chrome);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.offer__card {
  padding: clamp(24px, 3.6vw, 38px);
  border: 1px solid rgba(255, 211, 51, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 211, 51, 0.12), transparent 40%),
    rgba(5, 7, 6, 0.66);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.offer__badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--carbon);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer__card h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.offer__card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
  color: var(--chrome);
}

.offer__card li {
  padding-left: 18px;
  border-left: 3px solid var(--yellow);
}

.offer__card .text-link {
  margin-top: 12px;
}

.specs .section__heading {
  max-width: 680px;
}

.specs .section__heading h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.75rem);
  line-height: 1.04;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 211, 51, 0.5);
  border-radius: 3px;
  background: rgba(255, 211, 51, 0.06);
  color: var(--yellow);
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.text-link:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--carbon);
  transform: translateY(-1px);
}

.text-link::after {
  content: "";
  width: 42px;
  height: 2px;
  margin-left: 12px;
  background: currentColor;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.specs {
  background:
    linear-gradient(180deg, rgba(8, 114, 53, 0.2), transparent 34%),
    var(--carbon);
}

.spec-list dt {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--chrome);
}

.final-cta {
  background:
    linear-gradient(105deg, rgba(8, 114, 53, 0.92), rgba(255, 211, 51, 0.2) 58%, rgba(5, 7, 6, 0.88)),
    var(--green-deep);
  position: relative;
  overflow: clip;
}

.final-cta::after {
  content: "OPALA";
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(5rem, 20vw, 18rem);
  font-weight: 900;
  line-height: 1;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal {
  opacity: 0;
  filter: blur(var(--reveal-blur));
  transform: translateY(var(--reveal-y)) scale(var(--reveal-scale));
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    filter var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  will-change: opacity, filter, transform;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.motion-ready .reveal-voice-copy,
.motion-ready .reveal-voice-card {
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity 920ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 920ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .reveal-voice-copy {
  transform: translateX(-96px) translateY(34px) rotate(-2deg);
}

.motion-ready .reveal-voice-card {
  transform: translateX(126px) translateY(42px) scale(0.9) rotate(2deg);
  transition-delay: 140ms;
}

.motion-ready .reveal-voice-copy.is-visible,
.motion-ready .reveal-voice-card.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) translateY(0) scale(1) rotate(0);
}

.feature.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.feature.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.feature.reveal:nth-child(4) {
  transition-delay: 270ms;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 28px;
}

@media (max-width: 920px) {
  .hero {
    min-height: 90svh;
  }

  .hero__image {
    object-position: 67% 52%;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 6, 0.84) 0%, rgba(5, 7, 6, 0.28) 58%, rgba(5, 7, 6, 0.04) 100%),
      linear-gradient(180deg, rgba(5, 7, 6, 0.74) 0%, rgba(5, 7, 6, 0.04) 42%, rgba(5, 7, 6, 0.82) 100%);
  }

  .nav__links {
    display: none;
  }

  .identity__grid,
  .gallery__grid,
  .specs__grid,
  .offer__grid,
  .festival__grid,
  .voices__grid {
    grid-template-columns: 1fr;
  }

  .conversion-strip__inner {
    grid-template-columns: 1fr;
  }

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

  .hero__plate {
    display: none;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero__content,
  .section__inner,
  .final-cta__inner {
    width: min(100% - 28px, 362px);
    margin-left: 14px;
    margin-right: auto;
  }

  .hero {
    min-height: 88svh;
  }

  .hero__image {
    height: 36%;
    top: 12%;
    bottom: auto;
    object-fit: cover;
    object-position: 61% 52%;
    transform: none;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 6, 0.78) 0%, rgba(5, 7, 6, 0.12) 30%, rgba(5, 7, 6, 0.08) 55%, rgba(5, 7, 6, 0.94) 86%),
      linear-gradient(90deg, rgba(5, 7, 6, 0.48), rgba(5, 7, 6, 0));
  }

  .hero__content {
    padding: calc(36svh + 42px) 0 28px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  h1 {
    max-width: 340px;
    margin-bottom: 12px;
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__lead {
    max-width: 360px;
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero__proof {
    gap: 6px;
    margin-bottom: 18px;
  }

  .hero__proof span {
    width: 100%;
    min-height: 32px;
    font-size: 0.78rem;
  }

  .hero__actions {
    display: flex;
    width: 100%;
  }

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

  .festival__panel {
    padding: 24px 20px;
  }

  .conversion-strip__inner {
    width: min(100% - 28px, 362px);
    margin-left: 14px;
    margin-right: auto;
  }

  .conversion-strip__inner div {
    min-height: auto;
    padding: 20px;
  }

  .offer__card {
    padding: 22px 20px;
  }

  .voices__carousel {
    min-height: 610px;
  }

  .voice-card {
    grid-template-columns: 1fr;
  }

  .voice-card img {
    min-height: 320px;
    height: 320px;
  }

  .button {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    padding-inline: 12px;
    font-size: 0.88rem;
    line-height: 1.12;
    white-space: normal;
    text-align: center;
  }

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

  .story-strip__inner {
    width: min(100% - 28px, 362px);
    margin-left: 14px;
    margin-right: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-strip__item {
    min-height: 112px;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .story-strip::after {
    width: 60vw;
  }

  .story-strip__item::before {
    width: 104px;
    right: -62px;
  }

  .story-strip__item span {
    font-size: 3rem;
  }

  .feature {
    min-height: auto;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

  .hero__image,
  .gallery__media,
  .gallery__media img,
  .ambient,
  .speed-lines span {
    transform: none !important;
  }
}
