:root {
  --bg: #06110d;
  --bg-2: #0a1812;
  --panel: #0e1d16;
  --panel-2: #13261c;
  --gold: #c9912f;
  --gold-2: #efc166;
  --amber: #d56f1d;
  --bone: #f0e6d2;
  --muted: #b7ac97;
  --line: rgba(239, 193, 102, 0.22);
  --shadow: rgba(0, 0, 0, 0.48);
  --wolf-x: 0px;
  --wolf-y: 0px;
  --scroll-lift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 145, 47, 0.12), transparent 34rem),
    radial-gradient(circle at 8% 20%, rgba(213, 111, 29, 0.08), transparent 25rem),
    linear-gradient(180deg, #061812 0%, #050b09 100%);
  color: var(--bone);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(239, 193, 102, 0.12);
  background: rgba(5, 12, 9, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.topbar nav a:last-child {
  color: var(--gold-2);
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(239, 193, 102, 0.42);
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
  color: #150f07;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  place-items: center;
  padding: 104px clamp(20px, 5vw, 80px) 46px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(239, 193, 102, 0.12), transparent 27rem),
    radial-gradient(circle at 50% 56%, rgba(0, 0, 0, 0.34), transparent 25rem),
    linear-gradient(180deg, #061812 0%, rgba(6, 24, 18, 0.98) 54%, rgba(6, 17, 13, 0.95) 100%);
  z-index: -2;
}

.hero-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: -1;
}

.wolf-mark {
  width: min(68vw, 720px);
  max-height: 66svh;
  object-fit: contain;
  opacity: 0.78;
  filter: saturate(0.92) drop-shadow(0 34px 48px var(--shadow));
  transform: translate3d(var(--wolf-x), calc(-8vh + var(--wolf-y) - var(--scroll-lift)), 0);
  transition: transform 180ms ease-out, filter 180ms ease-out;
}

.forest-line {
  position: absolute;
  inset: auto 0 0;
  height: 44vh;
  opacity: 0.26;
  background:
    linear-gradient(to top, #020504 0%, transparent 100%),
    repeating-linear-gradient(88deg, transparent 0 34px, rgba(239, 193, 102, 0.06) 35px 36px);
}

.hero-copy {
  width: min(980px, 100%);
  text-align: center;
  margin-top: 22svh;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.62);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(56px, 11vw, 132px);
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 6vw, 76px);
  text-wrap: balance;
}

h3 {
  font-size: 24px;
}

p {
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.65;
}

.lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: #e4d8bf;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  color: #150f07;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 42px rgba(201, 145, 47, 0.22);
}

.button.secondary {
  color: var(--bone);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid rgba(239, 193, 102, 0.12);
}

.split,
.columns,
.process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.copy-stack p:first-child {
  margin-top: 0;
}

.definition {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(201, 145, 47, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(14, 29, 22, 0.9), rgba(6, 17, 13, 0.2));
}

.statement {
  max-width: 1040px;
}

.statement p:last-child {
  max-width: 780px;
  color: #d9ccb3;
}

.not-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1040px;
  margin-top: 36px;
  border: 1px solid rgba(239, 193, 102, 0.16);
  background: rgba(239, 193, 102, 0.16);
}

.not-list span {
  padding: 22px;
  background: rgba(5, 12, 9, 0.88);
  color: var(--muted);
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.chips button {
  appearance: none;
  cursor: pointer;
  border: 1px solid rgba(239, 193, 102, 0.24);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.035);
  color: #e7dbc3;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.chips button:hover,
.chips button:focus-visible,
.chips button.is-active {
  transform: translateY(-2px);
  border-color: rgba(239, 193, 102, 0.72);
  background: rgba(239, 193, 102, 0.14);
  color: var(--bone);
  outline: none;
}

.practice-detail {
  min-height: 78px;
  max-width: 760px;
  margin: 28px 0 0;
  padding: 20px 22px;
  border-left: 2px solid var(--gold-2);
  background: linear-gradient(90deg, rgba(239, 193, 102, 0.1), rgba(255, 255, 255, 0.025));
  color: var(--bone);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.practice-detail.pulse {
  animation: detailPulse 360ms ease;
}

.cycle-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
}

.cycle-copy p:last-child {
  max-width: 760px;
  color: #dacdb6;
}

.cycle-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(239, 193, 102, 0.24);
  background:
    linear-gradient(135deg, rgba(239, 193, 102, 0.13), rgba(255, 255, 255, 0.025)),
    rgba(8, 18, 13, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.cycle-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cycle-card strong {
  display: block;
  color: var(--bone);
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.cycle-card p {
  margin: 16px 0 22px;
  font-size: 15px;
}

.cycle-card .button {
  width: 100%;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(239, 193, 102, 0.14);
  background: rgba(239, 193, 102, 0.14);
}

.format-grid article {
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(19, 38, 28, 0.92), rgba(8, 18, 13, 0.95));
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.format-grid article:hover,
.format-grid article:focus-visible,
.format-grid article.is-open {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(34, 54, 35, 0.96), rgba(10, 23, 16, 0.98));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  outline: none;
}

.format-grid article p {
  max-height: 4.8em;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.format-grid article.is-open p,
.format-grid article:hover p,
.format-grid article:focus-visible p {
  max-height: 12em;
}

.format-grid span,
.steps span {
  color: var(--gold-2);
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.format-grid h3 {
  margin-top: 30px;
}

.format-grid p {
  font-size: 15px;
}

.dark-panel {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(201, 145, 47, 0.1), transparent),
    var(--panel);
  border: 1px solid rgba(239, 193, 102, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.dark-panel strong {
  display: block;
  margin-top: 26px;
  color: var(--bone);
  font-size: 22px;
  line-height: 1.35;
}

.process {
  align-items: center;
}

.whatsapp-note {
  grid-column: 2;
  margin-top: 12px;
  padding: 24px;
  border: 1px solid rgba(239, 193, 102, 0.22);
  background:
    linear-gradient(135deg, rgba(239, 193, 102, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(8, 18, 13, 0.9);
}

.whatsapp-note strong {
  display: block;
  color: var(--bone);
  font-size: 20px;
}

.whatsapp-note p {
  margin: 10px 0 18px;
  font-size: 15px;
}

.whatsapp-note .button {
  width: fit-content;
}

.micro-flow {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 0;
  border: 1px solid rgba(239, 193, 102, 0.16);
  background: rgba(239, 193, 102, 0.16);
}

.micro-flow span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #e7dbc3;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  border: 1px solid rgba(239, 193, 102, 0.16);
}

.steps li {
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(239, 193, 102, 0.14);
}

.steps li:last-child {
  border-bottom: 0;
}

.steps strong {
  display: block;
  margin-top: 8px;
  color: var(--bone);
  font-size: 20px;
}

.steps p {
  margin: 8px 0 0;
  font-size: 15px;
}

.proof {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(5, 12, 9, 0.08), rgba(14, 29, 22, 0.72) 48%, rgba(5, 12, 9, 0.12)),
    radial-gradient(circle at 18% 24%, rgba(239, 193, 102, 0.1), transparent 24rem);
}

.proof-copy {
  max-width: 960px;
}

.proof-copy p:last-child {
  max-width: 760px;
  color: #dacdb6;
}

.proof-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 1px;
  margin-top: 30px;
  border: 1px solid rgba(239, 193, 102, 0.16);
  background: rgba(239, 193, 102, 0.16);
}

.proof-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #061812;
}

.proof-card-large {
  min-height: 460px;
}

.proof-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 700ms ease, filter 700ms ease;
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(3, 7, 6, 0.72) 100%),
    linear-gradient(90deg, rgba(3, 7, 6, 0.22), transparent 38%);
}

.proof-card figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #efe3cb;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card:hover img {
  transform: scale(1.025);
  filter: saturate(0.98) contrast(1.08);
}

.final-cta {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
  min-height: 500px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  border: 1px solid rgba(239, 193, 102, 0.18);
  background:
    radial-gradient(circle at 50% 36%, rgba(239, 193, 102, 0.15), transparent 28rem),
    linear-gradient(180deg, #0d1c15, #040807);
}

.final-cta img {
  position: absolute;
  width: min(76vw, 680px);
  opacity: 0.18;
  filter: saturate(0.8);
}

.final-cta h2,
.final-cta p,
.final-cta a {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta p {
  margin: 24px 0 30px;
  color: #e6dac4;
}

body.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes detailPulse {
  0% {
    transform: translateY(4px);
    opacity: 0.72;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 82px;
  }

  .topbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 10px 14px 9px;
    background: linear-gradient(180deg, rgba(5, 12, 9, 0.96), rgba(5, 12, 9, 0.76));
  }

  .topbar nav {
    display: flex;
    flex: 1 1 100%;
    min-width: 0;
    justify-content: space-between;
    gap: 8px;
    overflow: visible;
    padding: 0;
    scrollbar-width: none;
    white-space: nowrap;
    color: #d7c9ae;
    font-size: 10px;
    opacity: 1;
  }

  .topbar nav a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    border: 1px solid rgba(239, 193, 102, 0.14);
    background: rgba(255, 255, 255, 0.035);
  }

  .topbar nav a:last-child {
    display: none;
  }

  .topbar nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    display: grid;
    min-height: 88svh;
    place-items: center;
    padding-top: 112px;
    padding-bottom: 86px;
  }

  .hero-art {
    position: absolute;
    inset: 0;
    height: auto;
    width: auto;
    margin-top: 0;
    display: grid;
    place-items: center;
  }

  .wolf-mark {
    width: min(84vw, 440px);
    height: auto;
    max-height: 38svh;
    opacity: 0.26;
    object-fit: contain;
    transform: translateY(-11vh);
    filter: saturate(0.82) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
  }

  .hero-copy {
    position: relative;
    z-index: 1;
    margin-top: 24svh;
    padding: 0;
  }

  .split,
  .columns,
  .process,
  .cycle-download {
    grid-template-columns: 1fr;
  }

  .not-list,
  .format-grid,
  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .format-grid article,
  .proof-card,
  .proof-card-large {
    min-height: auto;
  }

  .proof-card {
    aspect-ratio: 4 / 3;
  }

  .proof-card img {
    filter: saturate(0.74) contrast(1.02) brightness(0.9);
  }

  .whatsapp-note {
    grid-column: auto;
  }

  .micro-flow {
    grid-column: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-inline: 18px;
    padding-top: 118px;
    padding-bottom: 74px;
  }

  .brand span {
    font-size: 13px;
  }

  .wolf-mark {
    width: 82vw;
    height: auto;
    max-height: 36svh;
    max-width: none;
  }

  .hero-copy {
    margin-top: 25svh;
  }

  h1 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1;
  }

  .eyebrow,
  .section-kicker {
    font-size: 11px;
    line-height: 1.35;
  }

  .lead {
    max-width: 340px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-actions {
    display: none;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: auto;
    min-height: 46px;
    font-size: 11px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  }

  .whatsapp-note .button {
    width: 100%;
  }

  .micro-flow span {
    min-height: 48px;
    font-size: 11px;
  }

  .section,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 54px 0;
  }

  .cycle-download {
    padding-bottom: 96px;
  }

  .proof {
    width: 100%;
    padding-inline: 14px;
  }

  .proof-gallery {
    margin-top: 22px;
  }

  .proof-card figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 12px;
  }

  .final-cta {
    min-height: 420px;
    padding: 48px 18px;
  }
}
