:root {
  color-scheme: dark;
  --black: #0d0d0c;
  --black-soft: #171715;
  --cream: #f0e9dc;
  --paper: #f8f5ee;
  --ink: #171713;
  --muted: #77746d;
  --muted-dark: #aaa69c;
  --ember: #ef4a24;
  --ember-dark: #c93518;
  --gold: #d6a951;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(23, 23, 19, 0.14);
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--ember), var(--gold));
}

button,
a {
  font: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 3px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #211f1c;
}

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

.brand > span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.header-cta:hover {
  border-color: var(--ember);
  background: var(--ember);
}

.section-dark,
.section-light,
.section-cream,
.section-ember {
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--black);
  color: #fff;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
}

.section-ember {
  background: var(--ember);
  color: #fff;
}

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  color: #c7c2b7;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--ember);
}

.eyebrow-dark {
  color: #6c685f;
}

.eyebrow-ember {
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow-ember span {
  background: #fff;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7.4vw, 7.25rem);
  line-height: 0.9;
}

h1 em,
h2 em {
  color: var(--ember);
  font-weight: inherit;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.3vw, 5.2rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  line-height: 1.66;
}

.hero {
  display: grid;
  min-height: 880px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 92px;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -27%;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  top: 8%;
  left: 5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 74, 36, 0.13), transparent 67%);
  filter: blur(16px);
}

.hero-copy,
.hero-proof {
  position: relative;
  z-index: 1;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #c7c2b7;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  transition: 180ms ease;
}

.button-primary {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 15px 35px rgba(239, 74, 36, 0.22);
}

.button-primary:hover {
  background: #ff5831;
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.button-ghost:hover {
  border-color: #fff;
}

.button-full {
  width: 100%;
}

.hero-facts {
  display: grid;
  max-width: 690px;
  grid-template-columns: repeat(3, 1fr);
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 2px;
  padding: 22px 18px 0 0;
}

.hero-facts li + li {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.hero-facts strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 500;
}

.hero-facts span {
  color: var(--muted-dark);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero-proof {
  align-self: stretch;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
}

.hero-shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #262623;
  box-shadow: var(--shadow);
}

.proof-intro {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.proof-intro span {
  color: var(--ember);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-intro strong {
  max-width: 520px;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.12;
}

.browser-bar {
  display: none;
}

.hero-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(13, 13, 12, 0.74));
}

.hero-shot img {
  width: 190%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 73% center;
  filter: saturate(0.86) contrast(1.06);
}

.proof-caption {
  position: absolute;
  right: 22px;
  bottom: 34px;
  left: 22px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(13, 13, 12, 0.82);
  backdrop-filter: blur(12px);
}

/* Capturas de interface precisam permanecer legíveis no hero do desktop. */
@media (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  }

  .hero-proof {
    width: 100%;
    max-width: 540px;
    min-height: 0;
    align-self: start;
    justify-self: end;
    margin-top: 70px;
  }

  .hero-shot {
    display: grid;
    aspect-ratio: auto;
    background: #f5f4f1;
  }

  .browser-bar {
    display: grid;
    height: 34px;
    grid-template-columns: 8px 8px 8px 1fr;
    gap: 7px;
    align-items: center;
    padding: 0 12px;
    border-bottom: 1px solid #dedbd5;
    background: #eceae6;
  }

  .browser-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b9b5ae;
  }

  .browser-bar span {
    justify-self: center;
    color: #5e5a54;
    font-size: 0.68rem;
    font-weight: 750;
  }

  .hero-shot img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .hero-shot::after {
    display: none;
  }

  .proof-caption {
    display: none;
  }
}

.proof-caption span:nth-child(2) {
  color: var(--muted-dark);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.proof-caption strong {
  grid-column: 2;
  font-family: Georgia, serif;
  font-size: 1.08rem;
}

.mentor-avatar {
  width: 42px;
  height: 42px;
  grid-row: 1 / 3;
  border: 2px solid var(--ember);
  border-radius: 50%;
  object-fit: cover;
}

.recognition,
.community,
.pillars,
.faq {
  padding: clamp(88px, 11vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: 860px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.recognition-card {
  min-height: 300px;
  padding: 34px 34px 34px 0;
}

.recognition-card + .recognition-card {
  padding-left: 34px;
  border-left: 1px solid var(--line-light);
}

.recognition-card > span,
.pillar > span {
  display: block;
  margin-bottom: 72px;
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recognition-card h3 {
  max-width: 260px;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.recognition-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.recognition-close {
  max-width: 760px;
  margin: 48px 0 0 auto;
  font-family: Georgia, serif;
  font-size: clamp(1.65rem, 2.9vw, 2.6rem);
  line-height: 1.2;
}

.monday {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px, 9vw, 120px);
  padding: clamp(90px, 11vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
}

.monday-intro {
  align-self: start;
  position: sticky;
  top: 40px;
}

.monday-intro > p:last-child {
  max-width: 500px;
  color: var(--muted-dark);
  font-size: 1.02rem;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 26px;
  padding: 38px 0 42px;
  border-top: 1px solid var(--line-dark);
}

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

.timeline-time {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.timeline-body span {
  color: var(--ember);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-body h3 {
  margin: 8px 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
}

.timeline-body p {
  margin: 0;
  color: var(--muted-dark);
}

.sos {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  padding: clamp(80px, 9vw, 125px) max(24px, calc((100vw - var(--max)) / 2));
}

.sos-icon {
  display: grid;
  width: min(390px, 80vw);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: -0.08em;
}

.sos-copy {
  max-width: 660px;
}

.sos-copy p {
  font-size: 1.06rem;
}

.sos-copy small {
  display: block;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.community-heading {
  max-width: 900px;
}

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

.community-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #fff;
  box-shadow: 0 18px 50px rgba(35, 30, 22, 0.08);
}

.community-card-wide {
  grid-column: 1 / -1;
}

.community-viewport {
  overflow: hidden;
  aspect-ratio: 16 / 8.4;
  background: #e7e5e1;
}

.community-viewport img {
  width: 141%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translateX(-28.5%);
}

.crop-protocols img {
  object-position: center 42%;
}

.community-card figcaption {
  display: flex;
  gap: 18px;
  padding: 22px;
  align-items: flex-start;
}

.community-card figcaption > span {
  color: var(--ember);
  font-size: 0.7rem;
  font-weight: 900;
}

.community-card figcaption div {
  display: grid;
  gap: 4px;
}

.community-card figcaption strong {
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.community-card figcaption small {
  color: var(--muted);
  line-height: 1.45;
}

.image-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
}

.pillar {
  min-height: 330px;
  padding: 38px 42px 38px 0;
  border-bottom: 1px solid var(--line-dark);
}

.pillar:nth-child(even) {
  padding-right: 0;
  padding-left: 42px;
  border-left: 1px solid var(--line-dark);
}

.pillar > span {
  margin-bottom: 84px;
}

.pillar h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3.1vw, 2.7rem);
  font-weight: 500;
}

.pillar p {
  max-width: 430px;
  margin: 0;
  color: var(--muted-dark);
}

.testimonial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding: clamp(90px, 11vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
}

.testimonial-card {
  position: relative;
  padding: clamp(34px, 5vw, 68px);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.quote-mark {
  display: block;
  height: 70px;
  color: var(--ember);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.testimonial-card blockquote {
  margin: 18px 0 32px;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.testimonial-card footer {
  display: grid;
  gap: 3px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.testimonial-card footer span {
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.testimonial-proof p:last-child {
  color: var(--muted);
}

.offer {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.72fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding: clamp(90px, 11vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
}

.offer-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.04rem;
}

.offer-copy ul,
.price-card ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.offer-copy li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-top: 1px solid var(--line-light);
  font-weight: 720;
}

.offer-copy li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  content: "";
}

.price-card {
  padding: clamp(30px, 4vw, 48px);
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow);
}

.price-label {
  color: var(--muted-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  margin: 22px 0 2px;
}

.price small {
  align-self: flex-start;
  margin: 12px 4px 0 0;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
}

.price strong {
  font-family: Georgia, serif;
  font-size: clamp(4.6rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.price > span {
  margin-left: 7px;
  color: var(--muted-dark);
}

.price-card > p {
  margin-bottom: 28px;
  color: var(--muted-dark);
}

.payment-note {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-left: 3px solid var(--ember);
  background: rgba(255, 255, 255, 0.06);
}

.payment-note span {
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 30px;
  color: #ddd9cf;
  font-size: 0.86rem;
}

.price-card li::before {
  margin-right: 8px;
  color: var(--ember);
  content: "✓";
  font-weight: 900;
}

.cta-hint {
  display: block;
  margin-top: 12px;
  color: var(--muted-dark);
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: center;
}

.faq {
  padding-top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq details {
  border-bottom: 1px solid var(--line-light);
}

.faq summary {
  position: relative;
  padding: 26px 58px 26px 0;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  content: "+";
  color: var(--ember);
  font-family: system-ui, sans-serif;
  font-size: 1.7rem;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  padding-bottom: 26px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(100px, 13vw, 175px) max(24px, calc((100vw - var(--max)) / 2));
  text-align: center;
}

.final-cta-inner {
  max-width: 920px;
  margin: 0 auto;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta p:not(.eyebrow) {
  max-width: 660px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: var(--muted-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line-dark);
  background: var(--black);
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.site-footer strong {
  color: #fff;
  font-family: Georgia, serif;
}

.site-footer small {
  justify-self: end;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  max-width: min(380px, calc(100vw - 44px));
  padding: 14px 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 180ms ease;
}

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

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: translateY(8px);
  transition: transform 360ms ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero,
  .monday,
  .sos,
  .testimonial,
  .offer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-proof {
    min-height: 0;
  }

  .hero-shot {
    display: grid;
    aspect-ratio: auto;
    background: #f5f4f1;
  }

  .hero-shot img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .hero-shot::after,
  .proof-caption {
    display: none;
  }

  .monday-intro {
    position: static;
  }

  .sos-icon {
    width: min(300px, 70vw);
  }

  .testimonial-proof {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 76px;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.25rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-facts li,
  .hero-facts li + li {
    grid-template-columns: 70px 1fr;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .recognition-grid,
  .pillar-grid,
  .community-gallery {
    grid-template-columns: 1fr;
  }

  .recognition-card,
  .recognition-card + .recognition-card {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .recognition-card > span,
  .pillar > span {
    margin-bottom: 34px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline-time {
    font-size: 1rem;
  }

  .sos {
    justify-items: center;
  }

  .community-card-wide {
    grid-column: auto;
  }

  .community-viewport {
    aspect-ratio: auto;
  }

  .community-viewport img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .crop-protocols img {
    object-position: center;
  }

  .pillar,
  .pillar:nth-child(even) {
    min-height: 0;
    padding: 34px 0;
    border-left: 0;
  }

  .offer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .offer-copy {
    padding: 0 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-bottom: 32px;
  }

  .site-footer small {
    justify-self: start;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(13, 13, 12, 0.94);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--ember);
    color: #fff;
    font-weight: 850;
  }

  .toast {
    right: 14px;
    bottom: 82px;
    left: 14px;
    max-width: none;
  }
}
