:root {
  --bg: #efe7db;
  --bg-soft: #f6f1e8;
  --bg-deep: #11231c;
  --bg-deeper: #0b1712;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --ink: #152019;
  --ink-soft: rgba(21, 32, 25, 0.72);
  --text-on-dark: #f7f2e8;
  --text-on-dark-soft: rgba(247, 242, 232, 0.72);
  --accent: #cb714d;
  --accent-soft: rgba(203, 113, 77, 0.16);
  --line: rgba(21, 32, 25, 0.12);
  --line-light: rgba(247, 242, 232, 0.16);
  --shadow: 0 30px 80px rgba(6, 14, 10, 0.24);
  --radius: 28px;
  --max-width: 1240px;
  --header-height: 84px;
  --hero-shift: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(203, 113, 77, 0.14), transparent 32%),
    linear-gradient(180deg, #f2ebdf 0%, #efe7db 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

main {
  overflow: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 20px;
  transition:
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(11, 23, 18, 0.72);
  border-bottom: 1px solid var(--line-light);
}

.header-shell,
.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-on-dark);
}

.brand__eyebrow,
.eyebrow,
.support__label,
.review-spec__label,
.brand__name {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand__eyebrow,
.brand__name,
.eyebrow,
.support__label,
.review-spec__label {
  font-size: 0.72rem;
}

.brand__name {
  letter-spacing: 0.08em;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-on-dark);
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  color: var(--text-on-dark-soft);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-on-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--text-on-dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 52px) 0 28px;
  color: var(--text-on-dark);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: translateY(var(--hero-shift)) scale(1.06);
  transition: transform 80ms linear;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(11, 23, 18, 0.85) 0%, rgba(11, 23, 18, 0.6) 42%, rgba(11, 23, 18, 0.22) 68%, rgba(11, 23, 18, 0.12) 100%),
    linear-gradient(180deg, rgba(11, 23, 18, 0.25) 0%, rgba(11, 23, 18, 0.42) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  max-width: 1240px;
}

.hero__content > * {
  max-width: 720px;
}

.eyebrow,
.support__label,
.review-spec__label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow--warm {
  color: rgba(247, 242, 232, 0.74);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 6.6vw, 6.2rem);
}

h2 {
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
}

h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

p {
  margin: 0;
  line-height: 1.7;
}

.hero__lead,
.section__intro p,
.support__copy p,
.criterion p,
.reviews__summary p,
.pitch__content p {
  font-size: 1.02rem;
}

.hero__lead {
  margin-top: 24px;
  max-width: 560px;
  color: var(--text-on-dark-soft);
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--text-on-dark);
  background: var(--accent);
}

.button--ghost {
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero__signals li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: rgba(247, 242, 232, 0.88);
}

.hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 26px;
  padding: 16px 30px;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  background: rgba(11, 23, 18, 0.48);
  backdrop-filter: blur(12px);
  color: rgba(247, 242, 232, 0.72);
  white-space: nowrap;
}

.hero__ticker span {
  position: relative;
  padding-right: 26px;
}

.hero__ticker span::after {
  content: "•";
  position: absolute;
  right: 8px;
  color: rgba(247, 242, 232, 0.38);
}

.section {
  padding: 120px 0;
}

.section__intro {
  max-width: 700px;
  margin-bottom: 56px;
}

.section__intro h2 {
  margin-bottom: 18px;
  color: var(--ink);
}

.section__intro p {
  color: var(--ink-soft);
}

.support__grid {
  display: grid;
  gap: 34px;
}

.support__feature,
.support__social,
.reviews__stage,
.pitch__shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow);
}

.support__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  overflow: hidden;
}

.support__feature--reverse {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
}

.support__feature--reverse .support__copy {
  order: 2;
}

.support__feature--reverse .support__image {
  order: 1;
}

.support__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.support__copy .support__label {
  margin-bottom: 18px;
  color: rgba(21, 32, 25, 0.56);
}

.support__copy h3 {
  margin-bottom: 16px;
}

.support__copy p {
  color: var(--ink-soft);
}

.support__copy a {
  margin-top: 22px;
  color: var(--accent);
  font-weight: 700;
}

.support__image {
  min-height: 360px;
}

.support__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support__social {
  display: grid;
  gap: 28px;
  padding: 42px;
}

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

.channel-list li {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.channel-list a {
  display: grid;
  gap: 6px;
}

.channel-list__name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.channel-list__meta {
  color: var(--ink-soft);
}

.section--deep {
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at top left, rgba(203, 113, 77, 0.22), transparent 26%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deeper) 100%);
}

.section--deep .eyebrow,
.section--deep .criterion p {
  color: var(--text-on-dark-soft);
}

.story__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: start;
}

.story__intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.story__intro h2 {
  margin-bottom: 18px;
  color: var(--text-on-dark);
}

.story__criteria {
  display: grid;
}

.criterion {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
}

.criterion:last-child {
  border-bottom: 1px solid var(--line-light);
}

.criterion__index {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: rgba(247, 242, 232, 0.52);
}

.criterion h3 {
  margin-bottom: 8px;
  color: var(--text-on-dark);
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
}

.story__band {
  display: flex;
  gap: 24px;
  padding: 20px 30px 0;
  color: rgba(247, 242, 232, 0.44);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  overflow: hidden;
  white-space: nowrap;
}

.reviews {
  background:
    radial-gradient(circle at top right, rgba(203, 113, 77, 0.12), transparent 28%),
    linear-gradient(180deg, #efe7db 0%, #eadfce 100%);
}

.reviews__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.reviews__tab {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55);
}

.reviews__tab.is-active {
  color: var(--text-on-dark);
  background: var(--bg-deep);
  border-color: var(--bg-deep);
}

.reviews__stage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(203, 113, 77, 0.18), transparent 38%),
    linear-gradient(160deg, #13261e 0%, #0f1d18 100%);
  color: var(--text-on-dark);
  border-color: rgba(17, 35, 28, 0.78);
}

.reviews__summary h3 {
  margin-bottom: 16px;
}

.reviews__summary p {
  color: var(--text-on-dark-soft);
}

.reviews__disclaimer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

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

.review-spec {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-spec ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.review-spec li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 242, 232, 0.82);
  line-height: 1.6;
}

.review-spec li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section--warm {
  background:
    radial-gradient(circle at top left, rgba(203, 113, 77, 0.18), transparent 30%),
    linear-gradient(180deg, #e7d7c6 0%, #e1cfbb 100%);
}

.pitch__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 30px;
  padding: 38px;
}

.pitch__content h2 {
  margin-bottom: 18px;
}

.pitch__content p {
  color: var(--ink-soft);
}

.pitch__list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pitch__list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.pitch__list li:last-child {
  border-bottom: 1px solid var(--line);
}

.section--final {
  background:
    linear-gradient(180deg, var(--bg-soft) 0%, #f8f4ee 100%);
}

.cta__shell {
  text-align: center;
  max-width: 860px;
}

.cta__shell h2 {
  margin-bottom: 18px;
}

.cta__actions {
  justify-content: center;
}

.section--final .button--primary {
  color: var(--text-on-dark);
}

.section--final .button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.site-footer {
  padding: 28px 20px 40px;
  text-align: center;
  color: rgba(21, 32, 25, 0.58);
  font-size: 0.88rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__content > * {
    max-width: 640px;
  }

  .story__shell,
  .reviews__stage,
  .pitch__shell {
    grid-template-columns: 1fr;
  }

  .story__intro {
    position: static;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .header-shell,
  .section-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line-light);
    border-radius: 24px;
    background: rgba(11, 23, 18, 0.92);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(11, 23, 18, 0.38) 0%, rgba(11, 23, 18, 0.82) 42%, rgba(11, 23, 18, 0.92) 100%);
  }

  .hero__media img {
    object-position: center top;
  }

  .hero__content {
    padding-bottom: 72px;
  }

  .support__feature,
  .support__feature--reverse {
    grid-template-columns: 1fr;
  }

  .support__feature--reverse .support__copy,
  .support__feature--reverse .support__image {
    order: initial;
  }

  .support__copy,
  .support__social,
  .reviews__stage,
  .pitch__shell {
    padding: 24px;
  }

  .support__image {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 92px 0;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .criterion {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__ticker,
  .story__band {
    font-size: 0.68rem;
  }
}

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

  .hero__media img,
  [data-reveal],
  .site-nav,
  .button,
  .site-header {
    transition: none;
  }
}
