:root {
  --ink: #151918;
  --ink-soft: #2b312f;
  --paper: #f4f1e8;
  --paper-2: #ebe6d8;
  --white: #fffef9;
  --green: #70d064;
  --green-dark: #1f5f42;
  --green-deep: #0b372a;
  --purple: #5a27e8;
  --muted: #6f7773;
  --line: rgba(21, 25, 24, .14);
  --dark-line: rgba(255,255,255,.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(16, 28, 22, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 920px); margin: 0 auto; }
.section { padding: 112px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18,22,21,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img { width: 185px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--white); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(112,208,100,.5); outline-offset: 4px; }
.button-small { min-height: 42px; padding: 0 18px; background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.14); }
.button-primary { background: var(--green); color: #102016; box-shadow: 0 12px 30px rgba(112,208,100,.18); }
.button-primary:hover { background: #80dd74; box-shadow: 0 16px 34px rgba(112,208,100,.24); }
.button-secondary { border-color: var(--line); background: transparent; color: var(--ink); }
.button-secondary:hover { border-color: var(--ink); }
.button-full { width: 100%; }
.button-whatsapp { background: #1f8a57; color: #fff; }

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--green-dark); }

.hero {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 42%, rgba(90,39,232,.16), transparent 32%),
    radial-gradient(circle at 72% 10%, rgba(112,208,100,.12), transparent 26%),
    #121615;
  color: var(--white);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-grid {
  position: relative;
  min-height: 704px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 74px;
  padding-top: 68px;
  padding-bottom: 68px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 span { color: var(--green); }
.hero-lead { max-width: 720px; margin: 30px 0 0; color: rgba(255,255,255,.76); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.text-link { color: rgba(255,255,255,.82); font-weight: 750; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); padding: 8px 0 5px; }
.text-link:hover { color: white; border-color: white; }
.dark-link { color: var(--ink); border-color: var(--line); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 26px; list-style: none; padding: 0; margin: 34px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.hero-trust li::before { content: "✓"; color: var(--green); margin-right: 8px; font-weight: 900; }
.hero-art { position: relative; z-index: 1; }
.hero-art > img { width: min(100%, 510px); margin: 0 auto; object-fit: contain; filter: drop-shadow(0 40px 55px rgba(0,0,0,.42)); }
.hero-art > p { position: absolute; right: -20px; bottom: 12px; margin: 0; width: 250px; padding: 18px 20px; background: rgba(18,22,21,.88); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.45; backdrop-filter: blur(12px); }
.hero-art > p strong { color: white; font-size: 15px; }
.orbit { position: absolute; border: 1px solid rgba(112,208,100,.26); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 112%; height: 54%; left: -6%; top: 23%; transform: rotate(-18deg); }
.orbit-two { width: 72%; height: 114%; left: 14%; top: -7%; transform: rotate(25deg); border-color: rgba(90,39,232,.22); }

.proof-strip { padding: 34px 0 28px; color: white; background: var(--green-deep); border-top: 1px solid rgba(255,255,255,.08); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.proof-grid div { display: flex; flex-direction: column; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.16); }
.proof-grid strong { font-size: 32px; line-height: 1; letter-spacing: -.04em; }
.proof-grid span { margin-top: 7px; color: rgba(255,255,255,.68); font-size: 13px; }
.proof-note { margin: 18px auto 0; text-align: center; font-size: 11px; color: rgba(255,255,255,.44); }

.tension { background: var(--paper); }
.tension h2, .section-heading h2, .pathways h2, .ritual h2, .audience h2, .voices h2, .founder h2, .plans h2, .faq h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.tension h2 { max-width: 900px; }
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; color: var(--ink-soft); font-size: 18px; }
.editorial-grid p { margin: 0; }
.statement { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px 16px; margin-top: 70px; padding-top: 34px; border-top: 1px solid var(--line); }
.statement span { color: var(--muted); font-size: 18px; }
.statement strong { color: var(--purple); font-size: clamp(32px, 5vw, 56px); letter-spacing: -.05em; }

.ecosystem { color: white; background: #151a18; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; margin-bottom: 58px; }
.section-heading > p { margin: 0; color: rgba(255,255,255,.62); font-size: 18px; }
.section-heading.centered { display: block; max-width: 850px; margin-left: auto; margin-right: auto; text-align: center; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar { position: relative; min-height: 430px; padding: 34px; overflow: hidden; background: #1d2320; border: 1px solid var(--dark-line); border-radius: var(--radius-lg); }
.pillar::after { content: ""; position: absolute; right: -80px; bottom: -90px; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.featured-pillar { background: var(--green); color: #132018; }
.pillar-index { font-size: 12px; font-weight: 900; letter-spacing: .12em; opacity: .6; }
.pillar h3 { margin: 62px 0 14px; font-size: 28px; line-height: 1.08; letter-spacing: -.035em; }
.pillar p { color: rgba(255,255,255,.64); }
.featured-pillar p { color: rgba(19,32,24,.72); }
.pillar ul { list-style: none; padding: 0; margin: 28px 0 0; }
.pillar li { padding: 10px 0; border-top: 1px solid rgba(255,255,255,.11); font-size: 14px; }
.featured-pillar li { border-color: rgba(19,32,24,.15); }

.pathways { background: var(--white); }
.pathways-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.pathways-intro { position: sticky; top: 120px; align-self: start; }
.pathways-intro > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); font-size: 18px; }
.pathway-list { border-top: 1px solid var(--line); }
.pathway-list article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.pathway-list article > span { color: var(--green-dark); font-weight: 900; font-size: 12px; letter-spacing: .1em; }
.pathway-list h3 { margin: 0 0 10px; font-size: 26px; letter-spacing: -.03em; }
.pathway-list p { margin: 0; color: var(--muted); }

.ritual { color: white; background: var(--purple); overflow: hidden; }
.ritual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.community-visual { position: relative; margin: 0; aspect-ratio: 1600 / 905; border-radius: 28px; overflow: hidden; transform: rotate(-2deg); box-shadow: 0 40px 100px rgba(20,8,70,.28); border: 1px solid rgba(255,255,255,.18); }
.community-visual img { width: 100%; height: 100%; object-fit: cover; }
.community-visual figcaption { position: absolute; left: 14px; bottom: 12px; padding: 7px 10px; color: rgba(255,255,255,.82); background: rgba(12,15,14,.78); border-radius: 8px; font-size: 11px; backdrop-filter: blur(8px); }
.ritual-copy > p:not(.eyebrow) { margin: 28px 0; max-width: 660px; color: rgba(255,255,255,.76); font-size: 18px; }
.quote-block { margin: 36px 0; padding: 24px 0 24px 28px; border-left: 3px solid var(--green); }
.quote-block p { margin: 0; font-size: 22px; line-height: 1.4; }
.clean-list { list-style: none; padding: 0; margin: 0; }
.clean-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.clean-list li::before { content: "✓"; color: var(--green); margin-right: 12px; font-weight: 900; }

.audience { background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 58px; }
.audience-grid article { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.yes-card { background: var(--green-deep); color: white; }
.no-card { background: var(--paper-2); }
.card-label { margin: 0 0 30px; font-weight: 850; font-size: 22px; letter-spacing: -.02em; }
.audience ul { list-style: none; padding: 0; margin: 0; }
.audience li { position: relative; padding: 15px 0 15px 32px; border-top: 1px solid rgba(255,255,255,.13); }
.no-card li { border-color: var(--line); }
.audience li::before { position: absolute; left: 0; content: "✓"; color: var(--green); font-weight: 900; }
.no-card li::before { content: "—"; color: var(--muted); }

.voices { color: white; background: #151a18; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-card { display: flex; flex-direction: column; text-decoration: none; }
.video-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; background: #0d100f; border-radius: 16px; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .74; transition: transform .4s ease, opacity .4s ease; }
.video-thumb i { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; display: grid; place-items: center; background: var(--green); color: #102016; border-radius: 50%; font-style: normal; padding-left: 3px; }
.video-card:hover .video-thumb img { transform: scale(1.03); opacity: .92; }
.video-card strong { margin-top: 18px; font-size: 19px; }
.video-card > span:last-child { color: rgba(255,255,255,.58); font-size: 14px; }

.founder { color: white; background: var(--green-deep); overflow: hidden; }
.founder-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.founder-photo { position: relative; min-height: 620px; align-self: stretch; overflow: hidden; border-radius: 32px; box-shadow: 0 34px 80px rgba(0,0,0,.24); }
.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; z-index: 2; }
.founder-orbit { position: absolute; width: 500px; height: 210px; left: 50%; top: 52%; transform: translate(-50%,-50%) rotate(-13deg); border: 2px solid rgba(112,208,100,.35); border-radius: 50%; }
.founder-copy { padding: 50px 0; }
.founder-role { color: var(--green); font-size: 20px; font-weight: 750; }
.founder-copy > p:not(.eyebrow):not(.founder-role) { color: rgba(255,255,255,.72); font-size: 18px; }
.founder blockquote { margin: 36px 0 0; padding: 22px 0 22px 24px; border-left: 3px solid var(--green); font-size: 19px; font-weight: 720; }

.plans { background: var(--paper); }
.plans-heading { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.plans-heading > p:last-child { color: var(--muted); font-size: 18px; }
.main-plan { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; padding: 54px; color: white; background: #161b19; border-radius: 30px; box-shadow: var(--shadow); }
.plan-badge { position: absolute; left: 40px; top: -15px; padding: 7px 15px; border-radius: 99px; background: var(--green); color: var(--ink); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.plan-kicker { margin: 0 0 10px; color: var(--green-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.main-plan .plan-kicker { color: var(--green); }
.main-plan h3, .plan-card h3 { margin: 0; font-size: 32px; line-height: 1.1; letter-spacing: -.04em; }
.main-plan-copy > p:not(.plan-kicker) { color: rgba(255,255,255,.65); }
.plan-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; list-style: none; padding: 0; margin: 28px 0 0; }
.plan-features li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.11); font-size: 14px; }
.plan-features li::before { content: "✓"; color: var(--green); margin-right: 9px; font-weight: 900; }
.main-plan-price { display: flex; flex-direction: column; justify-content: center; padding: 36px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; }
.installment { margin: 0; font-size: 18px; }
.installment strong { display: block; font-size: 48px; line-height: 1.05; letter-spacing: -.05em; }
.cash { margin: 7px 0 26px; color: rgba(255,255,255,.58); }
.main-plan-price small, .plan-card small { display: block; margin-top: 14px; text-align: center; color: rgba(255,255,255,.45); }
.alternative-title { display: flex; align-items: center; gap: 18px; margin: 50px 0 22px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .11em; font-weight: 850; }
.alternative-title::before, .alternative-title::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.alternative-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plan-card { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.plan-card > p:not(.plan-kicker):not(.small-price) { color: var(--muted); min-height: 54px; }
.small-price { margin: 28px 0; font-size: 18px; line-height: 1.25; }
.small-price strong { font-size: 34px; letter-spacing: -.04em; }
.small-price span { color: var(--muted); font-size: 14px; }
.plan-card small { color: var(--muted); }
.guarantee { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 38px; margin-top: 50px; padding: 42px; background: var(--paper-2); border-radius: 22px; }
.guarantee-number { display: grid; place-items: center; width: 120px; height: 120px; border: 2px solid var(--green-dark); border-radius: 50%; color: var(--green-dark); font-size: 64px; line-height: 1; font-weight: 900; letter-spacing: -.08em; }
.guarantee h3 { margin: 0; font-size: 28px; line-height: 1.2; letter-spacing: -.03em; }
.guarantee p:last-child { margin-bottom: 0; color: var(--muted); }
.legal-note { max-width: 920px; margin: 36px auto 0; text-align: center; color: var(--muted); font-size: 12px; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-grid > div:first-child { position: sticky; top: 120px; align-self: start; }
.faq-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 25px 44px 25px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 20px; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
details[open] summary::after { content: "−"; }
details p { margin: -8px 0 24px; color: var(--muted); }

.final-cta { padding: 100px 0; color: white; background: #151a18; overflow: hidden; }
.final-cta-inner { position: relative; display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: center; }
.final-cta img { width: 280px; filter: drop-shadow(0 30px 50px rgba(0,0,0,.25)); }
.final-cta h2 { max-width: 800px; }
.final-cta p:not(.eyebrow) { color: rgba(255,255,255,.62); font-size: 18px; }
.final-cta .button { margin-top: 10px; }

.site-footer { padding: 60px 0 110px; color: rgba(255,255,255,.62); background: #0c0f0e; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.footer-grid img { width: 190px; margin-bottom: 16px; }
.footer-grid strong { display: block; color: white; margin-bottom: 12px; }
.footer-grid a { display: block; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-grid p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 12px; }
.mobile-cta { display: none; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 850px; }
  .hero-art { width: min(74vw, 560px); margin: 0 auto; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: auto; }
  .pillar h3 { margin-top: 38px; }
  .pathways-grid, .ritual-grid, .founder-grid, .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .pathways-intro, .faq-grid > div:first-child { position: static; }
  .community-visual { width: min(100%, 760px); margin: 0 auto; }
  .founder-photo { min-height: 600px; }
  .main-plan { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 64px; }
  .brand img { width: 150px; }
  .site-header .button-small { display: none; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 72px; padding-bottom: 76px; gap: 52px; }
  .hero h1 { font-size: clamp(42px, 12.4vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-trust { display: grid; gap: 10px; }
  .hero-art { width: 90%; }
  .hero-art > p { right: -8px; bottom: -16px; width: 220px; }
  .proof-grid { gap: 24px 8px; }
  .proof-grid div { padding-left: 14px; }
  .proof-grid strong { font-size: 27px; }
  .editorial-grid, .section-heading, .audience-grid, .video-grid, .alternative-plans, .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading > p { font-size: 16px; }
  .statement { margin-top: 48px; }
  .pillar { padding: 28px; }
  .pathways-grid { gap: 48px; }
  .community-visual { border-radius: 20px; transform: none; }
  .audience-grid article { padding: 30px 24px; }
  .founder-photo { min-height: 430px; }
  .founder-orbit { width: 370px; }
  .founder-copy { padding-top: 0; }
  .main-plan { padding: 42px 22px 24px; gap: 32px; }
  .plan-features { grid-template-columns: 1fr; }
  .main-plan-price, .plan-card { padding: 26px 20px; }
  .installment strong { font-size: 42px; }
  .guarantee { grid-template-columns: 1fr; padding: 30px 22px; }
  .guarantee-number { width: 100px; height: 100px; font-size: 52px; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta img { width: 210px; margin: 0 auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block; padding: 10px 14px max(10px, env(safe-area-inset-bottom)); background: rgba(12,15,14,.94); border-top: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px); }
  .mobile-cta .button { width: 100%; min-height: 48px; }
  .site-footer { padding-bottom: 120px; }
}

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