:root {
  --graphite: #303438;
  --graphite-deep: #202326;
  --black: #111111;
  --white: #ffffff;
  --off-white: #f3f4f2;
  --green: #79e000;
  --green-deep: #5eb400;
  --muted: #62686d;
  --line: #dfe2de;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 64px rgba(17, 17, 17, 0.12);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

html.intro-pending,
html.intro-pending body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--black);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2,
h3,
strong {
  letter-spacing: -0.035em;
}

h1,
h2,
h3 {
  line-height: 1.06;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 5vw, 4.25rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

button,
a,
summary {
  touch-action: manipulation;
}

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite-deep);
  transform: translate3d(0, 0, 0);
}

.intro-pending .intro-loader {
  display: grid;
}

.intro-loader[hidden] {
  display: none !important;
}

.intro-loader::before,
.intro-loader::after {
  position: absolute;
  border: 1px solid rgba(121, 224, 0, 0.18);
  content: "";
  transform: rotate(45deg);
}

.intro-loader::before {
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
}

.intro-loader::after {
  bottom: -120px;
  left: -90px;
  width: 280px;
  height: 280px;
}

.intro-loader__content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 340px);
  justify-items: center;
  text-align: center;
  animation: intro-content-in 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.intro-loader__content img {
  width: min(230px, 68vw);
  height: auto;
}

.intro-loader__content p {
  margin: 1rem 0 1.6rem;
  color: #cfd4cf;
  font-size: 0.8rem;
  font-weight: 680;
  letter-spacing: 0.04em;
}

.intro-loader__track {
  width: 170px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.intro-loader__track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(121, 224, 0, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  animation: intro-progress 1.1s cubic-bezier(0.65, 0, 0.35, 1) 100ms both;
}

.intro-loader.is-leaving {
  transform: translate3d(0, -105%, 0);
  transition: transform 760ms cubic-bezier(0.65, 0, 0.35, 1);
}

html.intro-pending:not(.intro-revealing) .hero-word > span,
html.intro-pending:not(.intro-revealing) .hero-copy > .eyebrow,
html.intro-pending:not(.intro-revealing) .hero-lead,
html.intro-pending:not(.intro-revealing) .hero-actions,
html.intro-pending:not(.intro-revealing) .hero-points,
html.intro-pending:not(.intro-revealing) .hero-visual {
  animation-play-state: paused;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(48, 52, 56, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  width: 154px;
  height: auto;
}

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

.desktop-nav {
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  color: #3f4448;
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.mobile-nav {
  position: relative;
}

.mobile-nav summary {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.mobile-nav summary svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  display: grid;
  width: min(78vw, 290px);
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.mobile-nav nav > a:not(.button) {
  padding: 0.7rem 0.75rem;
  font-weight: 700;
}

.mobile-nav nav .button {
  margin-top: 0.45rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.3rem;
  color: var(--black);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: #8dfa16;
  border-color: #8dfa16;
  transform: translateY(-2px);
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button .whatsapp-logo {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  padding: 2px;
  background: var(--white);
  border-radius: 50%;
  object-fit: contain;
}

.button--compact {
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.button--outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.button--outline:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button--dark:hover {
  color: var(--green);
  background: var(--graphite);
  border-color: var(--graphite);
}

.button--ghost-dark {
  color: var(--black);
  background: transparent;
  border-color: rgba(17, 17, 17, 0.5);
}

.button--ghost-dark:hover {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -18%;
  width: 58%;
  height: 100%;
  background: linear-gradient(145deg, rgba(121, 224, 0, 0.16), transparent 62%);
  content: "";
}

.hero::after {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(121, 224, 0, 0.22);
  content: "";
  transform: rotate(45deg);
}

.hero-accent {
  position: absolute;
  top: 16%;
  right: 7%;
  width: 10px;
  height: 10px;
  background: var(--green);
  box-shadow: 22px 0 0 rgba(121, 224, 0, 0.58), 44px 0 0 rgba(121, 224, 0, 0.2);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.8rem;
  padding-block: clamp(4.5rem, 9vw, 8rem) 0;
}

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

.hero-copy > .eyebrow,
.hero-lead,
.hero-actions,
.hero-points {
  animation: hero-fade-up 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy > .eyebrow {
  animation-delay: 80ms;
}

.hero-lead {
  animation-delay: 540ms;
}

.hero-actions {
  animation-delay: 630ms;
}

.hero-points {
  animation-delay: 710ms;
}

.eyebrow,
.section-kicker,
.card-label {
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #e5e9e3;
}

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

.hero h1 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.2em;
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.9rem, 8.2vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
}

.hero-word {
  display: inline-flex;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  overflow: hidden;
}

.hero-word > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(115%);
  animation: hero-word-in 950ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(100ms + var(--word-index) * 85ms);
}

.hero-word--accent {
  color: var(--green);
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 2rem;
  color: #dce0dc;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 2rem 0 0;
  padding: 0;
  color: #d1d5d1;
  font-size: 0.84rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-points li::before {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  width: min(100%, 550px);
  margin: 0 auto;
  align-self: end;
  animation: hero-visual-in 980ms cubic-bezier(0.16, 1, 0.3, 1) 240ms both;
}

.hero-frame {
  position: relative;
  min-height: 450px;
  padding: 1.5rem 1rem 0;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  border-radius: 180px 180px 0 0;
}

.hero-frame::before {
  position: absolute;
  inset: 12% 7% 0;
  border: 1px solid rgba(121, 224, 0, 0.38);
  border-bottom: 0;
  border-radius: 160px 160px 0 0;
  content: "";
}

.hero-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 610px;
  object-fit: contain;
  object-position: center bottom;
}

.hero-frame picture {
  display: block;
  transform: translate3d(0, var(--hero-parallax, 0), 0);
  will-change: transform;
}

.hero-frame figcaption {
  position: absolute;
  right: 0.5rem;
  bottom: 1.2rem;
  z-index: 2;
  display: grid;
  padding: 0.75rem 0.9rem;
  color: var(--black);
  background: var(--green);
  border-radius: 10px 0 0 10px;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.2);
}

.hero-frame figcaption span {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-frame figcaption strong {
  font-size: 0.87rem;
  letter-spacing: -0.01em;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-heading {
  max-width: 660px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child,
.process-intro > p,
.places-copy > p,
.faq .section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

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

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

.section-kicker--dark {
  color: var(--black);
}

.audience {
  background: var(--white);
}

.audience-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.audience-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.65rem, 4vw, 3rem);
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-card--dark {
  color: var(--white);
  background: var(--graphite);
}

.audience-card--dark::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 170px;
  height: 170px;
  border: 26px solid rgba(121, 224, 0, 0.12);
  border-radius: 50%;
  content: "";
}

.audience-card--light {
  background: var(--off-white);
  border: 1px solid var(--line);
}

.card-number {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  color: rgba(121, 224, 0, 0.8);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
}

.audience-card--light .card-number {
  color: #bddf98;
}

.card-label {
  position: relative;
  z-index: 1;
  color: var(--green);
}

.audience-card--light .card-label {
  color: var(--green-deep);
}

.audience-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 1.1rem;
}

.audience-card > p:not(.card-label) {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-bottom: 1.5rem;
  color: #daddda;
}

.audience-card--light > p:not(.card-label) {
  color: var(--muted);
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.check-list li::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 0.5rem;
  background: var(--green);
  content: "";
  transform: rotate(45deg);
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: auto;
  color: var(--green);
  font-weight: 850;
}

.audience-card--light .text-link {
  color: #3b7200;
}

.text-link svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

.plans-band {
  padding-block: 0 clamp(4.5rem, 9vw, 8rem);
  background: var(--white);
}

.plans-card {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
  border-radius: var(--radius-lg);
}

.plans-card::before {
  position: absolute;
  top: -90px;
  right: 18%;
  width: 260px;
  height: 260px;
  border: 38px solid rgba(121, 224, 0, 0.1);
  border-radius: 50%;
  content: "";
}

.plans-copy,
.plans-offer {
  position: relative;
  z-index: 1;
}

.plans-copy h2 {
  max-width: 720px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.plans-copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: #daddda;
  font-size: 1.05rem;
}

.plans-offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  color: var(--black);
  background: var(--green);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 50px rgba(17, 17, 17, 0.22);
}

.plans-offer > span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plans-price {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-block: 0.35rem 1.25rem;
  font-size: clamp(3.5rem, 8vw, 5.6rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.075em;
}

.plans-price small {
  margin-top: 0.55em;
  font-size: 0.25em;
  letter-spacing: -0.02em;
}

.button--plans {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button--plans:hover {
  color: var(--green);
  background: var(--graphite);
  border-color: var(--graphite);
}

.plans-offer > small:last-child {
  margin-top: 0.8rem;
  color: #273019;
  font-size: 0.73rem;
}

.process {
  background: var(--off-white);
}

.process-intro {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.process-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.process-intro > p {
  max-width: 480px;
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
}

.process-column {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-column--accent {
  border-top: 5px solid var(--green);
}

.process-column h3 {
  margin-bottom: 2rem;
  font-size: 1.35rem;
}

.steps-list {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.steps-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 900;
}

.steps-list strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1.03rem;
  letter-spacing: -0.015em;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.places {
  background: var(--white);
}

.places-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.places-copy h2 {
  max-width: 600px;
}

.places-copy > p {
  max-width: 640px;
}

.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.place-tags span {
  padding: 0.52rem 0.78rem;
  color: #3e4448;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
}

.network-note {
  position: relative;
  padding: clamp(1.6rem, 4vw, 3rem);
  overflow: hidden;
  background: var(--green);
  border-radius: var(--radius-lg);
}

.network-note::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 140px;
  height: 140px;
  border: 22px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
  content: "";
}

.network-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 1.5rem;
  place-items: center;
  color: var(--green);
  background: var(--black);
  border-radius: 16px;
}

.network-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.network-note .card-label {
  color: var(--black);
}

.network-note h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.network-note p:not(.card-label) {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.network-note .button {
  position: relative;
  z-index: 1;
}

.founders {
  padding-bottom: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite-deep);
}

.founders-grid {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

.founders-photo {
  position: relative;
  width: min(100%, 580px);
  margin: 0 auto;
  align-self: end;
}

.founders-photo::before {
  position: absolute;
  inset: 12% 5% 0;
  background: var(--green);
  border-radius: 220px 220px 0 0;
  content: "";
}

.founders-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  object-position: center bottom;
}

.founders-copy {
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
}

.founders-copy h2 {
  max-width: 650px;
}

.founders-lead {
  max-width: 620px;
  color: #d4d8d4;
  font-size: 1.08rem;
}

.founder-names {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.founder-names div {
  display: grid;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.055);
}

.founder-names strong {
  font-size: 1.03rem;
}

.founder-names span {
  color: #adb3ae;
  font-size: 0.82rem;
}

.founders-note {
  margin: 1.75rem 0 0;
  color: var(--green);
  font-weight: 780;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  list-style: none;
  cursor: pointer;
  font-weight: 820;
  line-height: 1.35;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--off-white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 400;
  transition: background-color 180ms ease, transform 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--green);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -0.2rem 0 1.4rem;
  padding-right: 2.5rem;
  color: var(--muted);
}

.final-cta {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--green);
}

.final-cta-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 1rem;
}

.final-cta p:last-child {
  max-width: 680px;
  margin-bottom: 0;
}

.site-footer {
  padding-block: 3.5rem 1.5rem;
  color: var(--white);
  background: var(--black);
}

.footer-main {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.footer-brand img {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin-bottom: 0;
  color: #adb3ae;
}

.footer-contact {
  display: grid;
}

.footer-contact span {
  color: #8e9690;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  width: fit-content;
  color: var(--green);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  color: #858b87;
  border-top: 1px solid #2a2c2b;
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
}

.footer-credit img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 5px;
}

.footer-credit strong {
  color: #b8beba;
  font-weight: 750;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: var(--graphite-deep);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.28);
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--black);
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.motion-ready [data-reveal="scale"] {
  transform: translate3d(0, 22px, 0) scale(0.97);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@keyframes hero-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-content-in {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
}

@keyframes intro-progress {
  to {
    transform: scaleX(1);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.98);
  }
}

@media (min-width: 580px) {
  .hero-actions,
  .final-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .button,
  .final-actions .button {
    width: auto;
  }

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

  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 760px) {
  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .brand img {
    width: 174px;
  }

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

  .plans-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
    align-items: center;
  }

  .process-intro {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }

  .places-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  }

  .faq-grid {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-contact {
    text-align: right;
  }

  .footer-contact a {
    justify-self: end;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .audience-card:hover,
  .process-column:hover,
  .motion-ready [data-reveal].audience-card.is-visible:hover,
  .motion-ready [data-reveal].process-column.is-visible:hover {
    z-index: 2;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.13);
    transform: translate3d(0, -7px, 0) scale(1);
  }

  .plans-card:hover .plans-offer {
    transform: rotate(-1deg) translateY(-4px);
  }

  .plans-offer {
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@media (min-width: 920px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    gap: 2rem;
    align-items: end;
    padding-bottom: 0;
  }

  .hero-copy {
    align-self: center;
    padding-bottom: clamp(4.5rem, 8vw, 7rem);
  }

  .hero-frame {
    min-height: 610px;
  }

  .founders-grid {
    grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.12fr);
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1.25fr) auto;
  }

  .final-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 5.9rem;
  }

  .hero-frame figcaption {
    right: -1.2rem;
    bottom: 2.5rem;
    border-radius: 10px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .hero-frame {
    min-height: 390px;
  }

  .hero-frame figcaption {
    right: 0;
    bottom: 0.75rem;
  }

  .card-number {
    font-size: 2.45rem;
  }
}

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

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

  .hero-word > span,
  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-copy > .eyebrow,
  .hero-lead,
  .hero-actions,
  .hero-points,
  .hero-visual {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-frame picture {
    transform: none;
  }

  .intro-loader__content,
  .intro-loader__track span {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
