:root {
  --bg: #070806;
  --surface: #0c0e0b;
  --surface-2: #12140f;
  --ink: #f6f3e8;
  --muted: #a7aa9e;
  --cream: #f1f4ed;
  --gold: #7fca6c;
  --line: rgba(126, 202, 108, 0.18);
  --line-strong: rgba(126, 202, 108, 0.38);
  --blue: #3f913e;
  --blue-2: #69b957;
  --green: #7fca6c;
  --max: 1180px;
  --narrow: 980px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -8%, rgba(98, 174, 79, 0.12), transparent 27rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, summary { font: inherit; }

.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.shell.narrow { width: min(calc(100% - 40px), var(--narrow)); }
.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 20px;
  background: #285f2c;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand img { width: 116px; height: auto; }
.brand { display: inline-flex; }
.availability { color: #bbbdb4; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.availability span { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(143,207,120,.08), 0 0 12px rgba(143,207,120,.7); }

.hero { padding-block: 76px 92px; text-align: center; }
.eyebrow, .kicker { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; gap: 16px; align-items: center; justify-content: center; }
.eyebrow::before, .eyebrow::after { content: ""; width: 38px; height: 1px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.04em; line-height: 1.04; }
h1 { max-width: 850px; margin: 20px auto 22px; font-size: clamp(42px, 6.4vw, 72px); font-weight: 800; line-height: 1.08; }
h1 > span { display: block; color: var(--green); font: inherit; }
.hero h1 > span { margin: 11px 0 0; color: #88dd72; font-size: .74em; line-height: 1.18; letter-spacing: -.025em; text-shadow: 0 0 20px rgba(127,202,108,.16); }
.mobile-break { display: none; }
.hero-copy { max-width: 665px; margin: 0 auto; color: #c7c9c1; font-size: clamp(17px, 2vw, 21px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin: 30px 0 48px; color: #d2d3cd; font-size: 13px; font-weight: 650; }
.trust-row i { margin-right: 5px; color: var(--green); font-style: normal; }

.booking-card {
  padding: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(126,202,108,.09), rgba(126,202,108,.02));
  box-shadow: 0 30px 90px rgba(0,0,0,.38), 0 0 60px rgba(98,174,79,.06);
  text-align: left;
}
.calendar-shell { position: relative; min-height: 700px; overflow: hidden; border-radius: 15px; background: #050605; }
.calendar-shell iframe { position: relative; z-index: 1; width: 100%; min-height: 700px; border: 0; overflow: hidden; opacity: 1; transition: opacity .35s ease; }
.calendar-shell.is-loading iframe { opacity: 0; }
.calendar-loader { position: absolute; inset: 0; z-index: 2; display: none; place-content: center; justify-items: center; gap: 16px; color: #e5e9e2; background: #050605; font-size: 14px; }
.is-loading .calendar-loader { display: grid; }
.loader-ring { width: 42px; height: 42px; border: 3px solid rgba(127,202,108,.18); border-top-color: var(--green); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.section { position: relative; padding-block: 105px; border-top: 1px solid rgba(255,255,255,.065); }
.section-heading { max-width: 660px; margin: 0 auto 58px; text-align: center; }
.section-heading h2 { margin: 8px 0 18px; font-size: clamp(38px, 5.5vw, 62px); }
.section-heading h2 span { color: var(--green); font: inherit; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 17px; }

.how-it-works { background: radial-gradient(circle at 0 35%, rgba(86,108,55,.08), transparent 32rem); }
.process-card { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(28px, 6vw, 78px); align-items: center; margin-bottom: 100px; }
.process-card.reverse { grid-template-columns: 1.05fr .95fr; }
.process-card.reverse .process-copy { order: 2; }
.process-copy { text-align: left; }
.step-pill { display: inline-flex; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.process-copy h3 { margin: 19px 0 17px; font-size: clamp(30px, 4vw, 45px); }
.process-copy > p { color: var(--muted); font-size: 16px; }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; color: #d9dad4; font-size: 14px; font-weight: 650; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 10px; border-radius: 50%; color: #0b1309; background: var(--green); font-size: 11px; font-weight: 900; }

.facebook-post { overflow: hidden; border: 1px solid #343933; border-radius: 13px; background: #fff; color: #1c1e21; box-shadow: 0 28px 70px rgba(0,0,0,.38); font-family: Arial, sans-serif; }
.fb-head { display: flex; align-items: center; padding: 14px; }
.company-avatar { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; color: #fff; background: #173d2e; font-weight: 800; }
.company-avatar svg { width: 28px; height: 28px; fill: #b9efaa; }
.fb-author { display: grid; margin-left: 10px; }
.fb-author strong { font-size: 15px; }
.fb-author span { color: #65676b; font-size: 12px; }
.fb-menu { margin-left: auto; color: #65676b; font-weight: 800; letter-spacing: 2px; }
.fb-copy { margin: 0; padding: 0 14px 14px; font-size: 14px; line-height: 1.35; }
.ad-creative { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #000; }
.ad-link-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 14px; background: #f0f2f5; }
.ad-link-row div { display: grid; }
.ad-link-row span { color: #65676b; font-size: 9px; }
.ad-link-row strong { font-size: 13px; }
.ad-link-row button { padding: 7px 13px; border: 0; border-radius: 6px; background: #d8dadf; color: #333; font-size: 12px; font-weight: 700; }
.fb-stats, .fb-actions { display: flex; align-items: center; justify-content: space-between; margin-inline: 14px; color: #65676b; font-size: 12px; }
.fb-stats { padding-block: 8px; border-bottom: 1px solid #dddfe2; }
.fb-actions { padding-block: 9px; font-size: 13px; font-weight: 650; }

.calendar-proof { margin: 0; overflow: hidden; padding: 6px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: #11130f; box-shadow: 0 28px 70px rgba(0,0,0,.35); }
.calendar-proof img { width: 100%; border-radius: 10px; }
.calendar-proof figcaption { padding: 15px 12px 9px; color: #d9dad4; font-size: 13px; font-weight: 700; }
.calendar-proof figcaption span { margin-right: 8px; color: var(--green); text-shadow: 0 0 12px var(--green); }

.proof-section { background: linear-gradient(180deg, #090a08, #060705); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.video-card, .result-card, .message-card { margin: 0; border: 1px solid var(--line); border-radius: 14px; background: #0b0d0a; }
.video-card { padding: 12px; }
.card-label { display: flex; justify-content: space-between; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-label b { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid var(--line); border-radius: 50%; }
.video-card video { width: 100%; aspect-ratio: 16/10; border: 1px solid var(--line-strong); border-radius: 9px; background: #000; object-fit: cover; }
.video-shell { position: relative; overflow: hidden; border-radius: 9px; }
.video-shell:not(.is-playing) video { filter: brightness(.48); }
.watch-video { position: absolute; inset: 0; z-index: 2; display: grid; place-content: center; justify-items: center; gap: 5px; width: 100%; border: 0; color: #fff; background: transparent; cursor: pointer; text-transform: uppercase; }
.watch-video > span { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 4px; padding-left: 4px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; color: #071006; background: var(--green); box-shadow: 0 0 0 8px rgba(127,202,108,.13), 0 10px 30px rgba(0,0,0,.5); font-size: 20px; }
.watch-video strong { font-size: 15px; letter-spacing: .08em; }
.watch-video small { color: #d7ded4; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.video-shell.is-playing .watch-video { display: none; }
.video-shell video { transition: filter .25s ease; }
.proof-divider { display: flex; align-items: center; gap: 15px; margin: 58px 0 22px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.proof-divider::before, .proof-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; width: min(100%, 760px); margin-inline: auto; }
.result-card { display: flex; overflow: hidden; min-width: 0; padding: 6px; flex-direction: column; }
.result-card.wide { grid-column: 1 / -1; }
.result-card figcaption { min-height: 36px; padding: 4px 5px 7px; color: var(--cream); font-size: 12px; font-weight: 800; line-height: 1.2; }
.result-card img { width: 100%; height: auto; border-radius: 8px; object-fit: contain; }
.messages-grid { columns: 2; column-gap: 12px; margin-top: 12px; }
.message-card { break-inside: avoid; margin-bottom: 12px; overflow: hidden; padding: 6px; }
.message-card img { width: 100%; border-radius: 8px; }
.disclaimer { max-width: 650px; margin: 22px auto 0; color: #6f7269; font-size: 10px; text-align: center; }

.final-cta { padding-block: 76px; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(28px, 6vw, 64px); border: 1px solid var(--line-strong); border-radius: 20px; background: radial-gradient(circle at 100% 100%, rgba(98,174,79,.17), transparent 45%), linear-gradient(145deg, #151710, #0c0e0b); }
.cta-card h2 { max-width: 560px; margin: 7px 0 10px; font-size: clamp(32px, 5vw, 50px); }
.cta-card p:last-child { max-width: 570px; margin: 0; color: var(--muted); }
.primary-button { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 22px; padding: 18px 20px; border: 1px solid #85d174; border-radius: 10px; color: #fff; background: linear-gradient(180deg, var(--blue-2), var(--blue)); box-shadow: 0 0 0 4px rgba(98,174,79,.12), 0 12px 35px rgba(98,174,79,.25); font-size: 14px; font-weight: 800; text-decoration: none; }
.primary-button span { font-size: 20px; transition: transform .2s ease; }
.primary-button:hover span { transform: translateX(3px); }
.site-footer { display: flex; align-items: center; justify-content: space-between; min-height: 125px; border-top: 1px solid rgba(255,255,255,.06); }
.site-footer img { width: 95px; }
.site-footer p { margin: 0; color: #6f7269; font-size: 10px; }

/* Thank-you page */
.thanks-hero { padding-block: 80px 100px; text-align: center; }
.success-mark { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 30px; border: 1px solid rgba(143,207,120,.5); border-radius: 50%; color: var(--green); background: rgba(143,207,120,.07); box-shadow: 0 0 45px rgba(143,207,120,.13); font-size: 31px; }
.thanks-hero h1 { max-width: 820px; font-size: clamp(43px, 6.5vw, 74px); }
.thanks-hero > p:not(.kicker) { max-width: 660px; margin: 0 auto; color: var(--ink); font-size: 19px; font-weight: 650; }
.confirmation-callout { padding: 22px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(127,202,108,.08); }
.next-step-note { display: grid; grid-template-columns: 38px 1fr; gap: 14px; max-width: 650px; margin: 10px auto; padding: 17px 18px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.018); text-align: left; }
.next-step-note > span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 10px; font-weight: 800; }
.next-step-note p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.next-step-note strong { color: var(--ink); }
.three-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mini-step { padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(232,221,187,.045), rgba(232,221,187,.01)); }
.mini-step > span { color: var(--gold); font-size: 10px; font-weight: 800; }
.mini-step h3 { margin: 35px 0 12px; font-size: 24px; }
.mini-step p { margin: 0; color: var(--muted); font-size: 14px; }
.faq-shell { width: min(calc(100% - 40px), 850px); }
.faq-list { display: grid; gap: 10px; }
.faq-section { background: #050705; }
.faq-item { border: 1px solid rgba(127,202,108,.3); border-radius: 13px; background: #10150f; transition: border-color .2s ease, background .2s ease; }
.faq-item[open] { border-color: rgba(127,202,108,.6); background: #151c13; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 24px; cursor: pointer; font-weight: 750; line-height: 1.35; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--gold); font-size: 22px; font-weight: 300; transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { max-width: 720px; margin: 0; padding: 0 64px 24px 24px; color: #d8ddd5; font-size: 15px; }

.founder-section { padding-block: 85px; }
.founder-card { max-width: 540px; margin-inline: auto; padding: clamp(26px, 6vw, 42px); border: 1px solid var(--line-strong); border-radius: 18px; background: linear-gradient(145deg, #141a12, #090b08); text-align: center; }
.founder-photo { width: 118px; height: 118px; margin: 0 auto 20px; border: 3px solid rgba(127,202,108,.5); border-radius: 50%; object-fit: cover; }
.founder-card h2 { margin: 7px 0 12px; font-size: clamp(34px, 5vw, 48px); }
.founder-card h3 { max-width: 430px; margin: 0 auto 15px; font-size: clamp(18px, 3vw, 23px); line-height: 1.3; }
.founder-card > p:not(.kicker) { max-width: 450px; margin: 0 auto 28px; color: #d1d5ce; }
.founder-proof { display: grid; gap: 12px; }
.founder-proof figure { margin: 0; padding: 9px; border: 1px solid var(--line); border-radius: 12px; background: #080a07; text-align: left; }
.founder-proof figcaption { padding: 2px 2px 9px; color: var(--cream); font-size: 13px; font-weight: 800; }
.founder-proof img { width: 100%; border-radius: 8px; }

.sticky-book { position: fixed; left: 50%; bottom: max(14px, env(safe-area-inset-bottom)); z-index: 90; display: flex; align-items: center; justify-content: center; width: min(calc(100% - 28px), 430px); min-height: 58px; padding: 14px 20px; border: 1px solid #94dc82; border-radius: 12px; color: #fff; background: linear-gradient(180deg, #70c45d, #3c8c3a); box-shadow: 0 0 0 4px rgba(98,174,79,.15), 0 14px 38px rgba(52,127,50,.45); text-decoration: none; transform: translate(-50%, 130%); opacity: 0; pointer-events: none; transition: transform .35s ease, opacity .35s ease; animation: ctaPulse 1.8s ease-in-out infinite; }
.sticky-book.visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.pointing-finger { position: absolute; left: 50%; top: -36px; font-size: 29px; filter: drop-shadow(0 3px 6px rgba(0,0,0,.65)); animation: fingerBounce .85s ease-in-out infinite alternate; }
@keyframes ctaPulse { 50% { box-shadow: 0 0 0 9px rgba(98,174,79,.06), 0 14px 42px rgba(52,127,50,.58); } }
@keyframes fingerBounce { to { transform: translateY(7px); } }

.visual-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.visual-step { margin: 0; overflow: hidden; padding: 10px; border: 1px solid var(--line-strong); border-radius: 15px; background: #0d110c; }
.visual-step > span { display: block; padding: 6px 8px 0; color: var(--green); font-size: 10px; font-weight: 800; }
.visual-step h3 { margin: 5px 8px 14px; font-size: 26px; }
.visual-step img, .visual-step video { width: 100%; border-radius: 9px; }
.visual-step video { aspect-ratio: 16/9; object-fit: contain; background: #000; }
.visual-step .facebook-post { border-radius: 10px; box-shadow: none; }
.confirmation-callout a { color: #fff; text-decoration-color: var(--green); text-underline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .hero { padding-block: 62px 78px; }
  .process-card, .process-card.reverse { grid-template-columns: 1fr; gap: 34px; }
  .process-card.reverse .process-copy { order: 0; }
  .process-copy { max-width: 620px; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .three-steps { grid-template-columns: 1fr; }
  .visual-steps { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shell, .shell.narrow, .faq-shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 68px; }
  .brand img { width: 94px; }
  .availability { font-size: 9px; }
  .availability span { width: 6px; height: 6px; margin-right: 5px; }
  .hero { padding-block: 28px 48px; }
  .eyebrow, .kicker { font-size: 10px; }
  .eyebrow { gap: 10px; }
  .eyebrow::before, .eyebrow::after { width: 24px; }
  h1 { max-width: 350px; margin-top: 12px; margin-bottom: 15px; font-size: clamp(30px, 8.5vw, 35px); line-height: 1.08; }
  .mobile-break { display: initial; }
  h1 > span { margin-top: 5px; }
  .hero-copy { max-width: 310px; margin-bottom: 24px; font-size: 14px; }
  .booking-card { padding: 5px; border-radius: 17px; }
  .calendar-shell, .calendar-shell iframe { min-height: 720px; }
  .calendar-loader { place-content: start center; padding-top: 58px; }
  .section { padding-block: 65px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { margin-top: 5px; font-size: 38px; }
  .section-heading > p:last-child { font-size: 15px; }
  .process-card { gap: 23px; margin-bottom: 62px; }
  .process-copy h3 { margin: 13px 0 11px; font-size: 31px; }
  .process-copy > p { margin-bottom: 0; font-size: 14px; }
  .facebook-post { max-width: 460px; margin-inline: auto; }
  .process-card.reverse { gap: 18px; }
  .process-card.reverse .process-copy h3 { font-size: 29px; }
  .calendar-proof { width: calc(100% + 8px); margin-left: -4px; padding: 4px; }
  .calendar-proof figcaption { padding: 13px 10px 8px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card { padding: 8px; }
  .watch-video > span { width: 52px; height: 52px; font-size: 18px; }
  .results-grid { gap: 8px; }
  .result-card { padding: 3px; border-radius: 9px; }
  .result-card figcaption { min-height: 34px; padding: 5px 4px 6px; font-size: 11px; }
  .messages-grid { columns: 1; }
  .cta-card { gap: 28px; padding: 28px 22px; }
  .primary-button { width: 100%; justify-content: space-between; }
  .site-footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; }
  .site-footer p { max-width: 290px; }
  .thanks-hero { padding-block: 50px 62px; }
  .thanks-hero h1 { max-width: 350px; font-size: clamp(30px, 8.5vw, 35px); }
  .thanks-hero > p:not(.kicker) { font-size: 16px; }
  .confirmation-callout { padding: 18px 16px; }
  .next-step-note { padding: 14px; }
  .mini-step h3 { margin-top: 24px; }
  .faq-item summary { padding: 19px 17px; font-size: 15px; }
  .faq-item p { padding: 0 46px 20px 17px; font-size: 14px; }
  .visual-step h3 { font-size: 24px; }
  .founder-section { padding-block: 65px 95px; }
  .founder-card { padding: 28px 12px 12px; }
  .founder-card > p:not(.kicker) { font-size: 14px; }
  .founder-card h3 { font-size: 18px; }
  .founder-proof figure { padding: 7px; }
  .founder-photo { width: 96px; height: 96px; }
  .sticky-book { bottom: max(26px, calc(env(safe-area-inset-bottom) + 14px)); width: min(calc(100% - 24px), 430px); min-height: 48px; padding: 9px 16px; font-size: 16px; }
  .pointing-finger { top: -31px; font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sticky-book, .pointing-finger { animation: none; }
}
