:root {
  --ink: #080b08;
  --ink-soft: #101510;
  --ink-card: #151b16;
  --green: #5acd05;
  --green-bright: #6bf20b;
  --green-pale: #c8ff9f;
  --paper: #f3f1e9;
  --paper-deep: #e6e3d8;
  --white: #ffffff;
  --muted: #aeb7ae;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(8, 11, 8, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow-green: 10px 10px 0 var(--green);
  --shell: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--green);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1100;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--green);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 8, 0.88);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 148px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(90, 205, 5, 0.02), transparent 35%),
    url("assets/jungle-pattern.svg") center top / 1380px auto no-repeat,
    var(--ink);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, var(--ink));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  padding-bottom: 90px;
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: #2f5f0f;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 {
  max-width: 690px;
  font-size: clamp(4.1rem, 7.15vw, 7rem);
}

h2 {
  font-size: clamp(3.25rem, 5.5vw, 5.7rem);
}

h1 em,
h2 em {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: #c8d0c8;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-bright);
}

.button-quiet {
  border-color: var(--line-dark);
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.button-arrow {
  font-size: 1.2rem;
}

.proof-row {
  display: flex;
  margin: 32px 0 0;
  padding: 0;
  gap: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  list-style: none;
  flex-wrap: wrap;
}

.proof-row li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.proof-mark {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(90, 205, 5, 0.5);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 7px solid #171b17;
  border-radius: 42px;
  background: #f2f2f0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.phone img {
  width: 100%;
  height: auto;
}

.phone-main {
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 306px;
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-top {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 4;
  width: 84px;
  height: 21px;
  border-radius: 999px;
  background: #151915;
  transform: translateX(-50%);
}

.phone-top span {
  position: absolute;
  top: 7px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2a332c;
}

.phone-back {
  z-index: 1;
  top: 108px;
  width: 218px;
  opacity: 0.54;
  filter: saturate(0.35) contrast(0.92);
}

.phone-left {
  left: -6px;
  transform: rotate(-10deg);
}

.phone-right {
  right: -6px;
  transform: rotate(10deg);
}

.hero-note {
  position: absolute;
  z-index: 5;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.2;
  transform: rotate(3deg);
}

.note-one {
  top: 72px;
  right: -2px;
}

.hero-stamp {
  position: absolute;
  right: 8px;
  bottom: 58px;
  z-index: 5;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(90, 205, 5, 0.6);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.hero-stamp strong {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  filter: blur(1px);
  opacity: 0.07;
}

.hero-orb-one {
  top: -190px;
  right: -180px;
  width: 620px;
  height: 620px;
}

.hero-orb-two {
  bottom: 80px;
  left: -260px;
  width: 520px;
  height: 520px;
}

.moment-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid rgba(90, 205, 5, 0.35);
  background: rgba(90, 205, 5, 0.07);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 58px;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ticker 30s linear infinite;
}

.ticker-track i {
  color: var(--green);
  font-size: 0.55rem;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.practice-section,
.situations-section,
.faq-section {
  color: var(--ink);
  background: var(--paper);
}

.practice-section {
  position: relative;
  padding: 142px 0 150px;
  overflow: hidden;
}

.practice-section::before {
  position: absolute;
  top: -90px;
  left: -70px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(8, 11, 8, 0.12);
  border-radius: 45% 55% 62% 38%;
  transform: rotate(24deg);
}

.practice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: 84px;
}

.section-intro h2 {
  max-width: 520px;
}

.section-intro h2 em,
.situations-title h2 em,
.faq-heading h2 em {
  color: #386d13;
}

.section-intro > p:not(.eyebrow),
.situations-title > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: #4f584f;
  font-size: 1.08rem;
  line-height: 1.7;
}

.scribble {
  width: max-content;
  margin: 36px 0 0 18px;
  color: #386d13;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
  transform: rotate(-5deg);
}

.scenario-card {
  position: relative;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-green);
}

.scenario-card::after {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 70px;
  height: 70px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,.65) 0 3px, transparent 4px);
}

.scenario-header {
  display: flex;
  padding-bottom: 22px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
}

.scenario-kicker {
  color: #657065;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-header h3 {
  margin: 5px 0 0;
  font-size: 1.62rem;
  letter-spacing: -0.03em;
}

.scenario-timer {
  display: inline-flex;
  min-width: 63px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.scenario-scene {
  position: relative;
  margin: 24px 0;
  padding: 22px 22px 22px 76px;
  border-radius: 18px;
  color: var(--white);
  background: #242a25;
}

.scenario-scene p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}

.scenario-scene > span {
  display: block;
  margin-top: 9px;
  color: #b7c0b8;
  font-size: 0.8rem;
}

.avatar {
  position: absolute;
  top: 22px;
  left: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.scenario-choices {
  display: grid;
  padding: 0;
  gap: 10px;
  border: 0;
}

.scenario-choices legend {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-choices button {
  display: grid;
  width: 100%;
  min-height: 62px;
  padding: 10px 15px 10px 11px;
  grid-template-columns: 37px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid #c8cec8;
  border-radius: 14px;
  color: #273027;
  background: #f8f8f5;
  text-align: left;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.scenario-choices button:hover {
  border-color: #5b6b5c;
  background: #ffffff;
  transform: translateX(3px);
}

.scenario-choices button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--green-pale);
}

/* The app marks one authored correct answer per question; the preview shows the
   same distinction rather than treating every option as equally good. */
.scenario-choices button.is-weaker {
  background: #f1efe6;
}

.scenario-choices button span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.scenario-feedback {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid #8a8676;
  border-radius: 14px;
  background: #f3f1e9;
}

.scenario-feedback.is-best {
  border-color: #315b14;
  background: #e7f9d8;
}

.scenario-feedback[hidden] {
  display: none;
}

.feedback-label {
  color: #5c5744;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scenario-feedback.is-best .feedback-label,
.scenario-feedback.is-best .scenario-reset {
  color: #315b14;
}

.scenario-feedback p {
  margin: 7px 0 0;
  color: #23331a;
  font-size: 0.9rem;
}

.scenario-reset {
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #5c5744;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 900;
  cursor: pointer;
}

.scenario-footer {
  display: flex;
  margin-top: 24px;
  /* Right inset keeps the link clear of the decorative circle that overhangs
     the card's bottom-right corner. */
  padding: 17px 30px 0 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-light);
  font-size: 0.72rem;
}

.scenario-footer > span {
  color: #747d74;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scenario-footer a {
  font-weight: 900;
  text-decoration: none;
}

.how-section,
.product-section,
.trust-section {
  position: relative;
  padding: 140px 0;
}

.how-section {
  background: #0b0e0b;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.4fr);
  align-items: end;
  gap: 60px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading p:not(.eyebrow) {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.04rem;
}

.steps-grid {
  display: grid;
  margin-top: 72px;
  /* Four steps now — auto-fit keeps them on one row on desktop and folds to
     2-up on mid widths before the single-column rule at 980px takes over. */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps-note {
  max-width: 760px;
  margin: 44px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: center;
}

.step-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-card);
}

.step-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.step-card-green {
  color: var(--ink);
  background: var(--green);
}

.step-card-green::after {
  border-color: rgba(8, 11, 8, 0.15);
}

.step-number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: rgba(255, 255, 255, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
}

.step-card-green .step-number {
  color: rgba(8, 11, 8, 0.45);
}

.step-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-top: 26px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.step-icon svg {
  width: 42px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.step-card-green .step-icon {
  border-color: rgba(8, 11, 8, 0.28);
}

.step-card-green .step-icon svg {
  stroke: var(--ink);
}

.step-card h3 {
  margin: 38px 0 10px;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.step-card-green p {
  color: rgba(8, 11, 8, 0.75);
}

.situations-section {
  padding: 140px 0;
}

.situations-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: 100px;
}

.situations-title {
  position: sticky;
  top: 140px;
  height: max-content;
}

.situations-list {
  border-top: 2px solid var(--ink);
}

.situation-row {
  display: grid;
  min-height: 154px;
  padding: 30px 0;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(8, 11, 8, 0.28);
}

.situation-id {
  align-self: flex-start;
  color: #5e675e;
  font-family: Georgia, serif;
  font-style: italic;
}

.situation-row h3 {
  margin: 0 0 7px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.035em;
}

.situation-row p {
  margin: 0;
  color: #5f675f;
}

.situation-tag {
  padding: 7px 11px;
  border: 1px solid rgba(8, 11, 8, 0.25);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--ink);
  background: var(--green);
}

.voice-section::after {
  position: absolute;
  top: -190px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(8, 11, 8, 0.2);
  border-radius: 50%;
  content: "";
}

.voice-leaf {
  position: absolute;
  bottom: -120px;
  left: -75px;
  width: 300px;
  height: 440px;
  border: 3px solid rgba(8, 11, 8, 0.24);
  border-radius: 100% 0 100% 0;
  transform: rotate(28deg);
}

.voice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.voice-intro > p:last-child {
  max-width: 240px;
  margin: 26px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.voice-figure {
  margin: 0;
}

.voice-figure blockquote {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.voice-figure blockquote em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.voice-figure figcaption {
  display: grid;
  grid-template-columns: auto auto minmax(200px, 1fr);
  margin-top: 48px;
  padding-top: 24px;
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(8, 11, 8, 0.3);
}

.voice-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.2rem;
  font-weight: 900;
}

.voice-person {
  display: grid;
  line-height: 1.2;
}

.voice-person strong {
  font-size: 0.95rem;
}

.voice-person small {
  margin-top: 4px;
  font-size: 0.76rem;
}

.voice-disclosure {
  justify-self: end;
  color: rgba(8, 11, 8, 0.67);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(90, 205, 5, 0.14), transparent 27%),
    url("assets/jungle-pattern.svg") center bottom / 1500px auto no-repeat,
    var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 100px;
}

.product-phone {
  position: relative;
  min-height: 680px;
}

.phone-feature {
  top: 0;
  left: 50%;
  width: 330px;
  transform: translateX(-50%) rotate(3deg);
}

.product-callout {
  position: absolute;
  z-index: 4;
  padding: 13px 16px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--green);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.2;
}

.callout-top {
  top: 80px;
  right: 0;
  transform: rotate(4deg);
}

.callout-bottom {
  bottom: 95px;
  left: 0;
  transform: rotate(-5deg);
}

.product-copy h2 {
  max-width: 650px;
}

.product-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.feature-list {
  margin: 45px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.feature-list li {
  display: grid;
  padding: 22px 0;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.feature-list li > span {
  color: var(--green);
  font-family: Georgia, serif;
  font-style: italic;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  font-size: 1.02rem;
}

.feature-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.87rem;
}

/* ---------------------------------------------------------------------------
   Founders' video message (#founders)

   Sits on paper between two dark sections (.product-section and
   .trust-section) on purpose: the light band breaks a long dark run, and a
   dark video frame on paper reads as a physical object on the page rather
   than a hole in it.
   --------------------------------------------------------------------------- */

.founders-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  color: var(--ink);
  background: var(--paper);
}

/* Same leaf motif as .voice-section, mirrored, so the new band is obviously
   part of the same family and not a bolted-on block. */
.founders-leaf {
  position: absolute;
  top: -140px;
  right: -90px;
  width: 280px;
  height: 420px;
  border: 3px solid rgba(8, 11, 8, 0.14);
  border-radius: 100% 0 100% 0;
  transform: rotate(-22deg);
}

.founders-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.founders-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(2.3rem, 3.6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.founders-copy h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.founders-copy > p:not(.eyebrow) {
  max-width: 46ch;
  margin: 24px 0 0;
  font-size: 1.03rem;
  line-height: 1.62;
}

.founders-jump {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.founders-jump:hover {
  color: #3c8a04;
  border-bottom-color: #3c8a04;
}

.founders-figure {
  margin: 0;
}

/* The frame carries the site's signature hard green offset shadow, the same
   device used on the phone mockups. */
.founders-player {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--ink);
  box-shadow: var(--shadow-green);
  aspect-ratio: 16 / 9;
}

.founders-poster,
.founders-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Once playback starts the poster is removed from the flow, not just hidden,
   so it cannot sit on top of the native controls. */
.founders-player.is-playing .founders-poster,
.founders-player.is-playing .founders-play {
  display: none;
}

/* The scrim is shaped, not flat: it stays almost clear across the middle third
   where the speaker's face is, and deepens sharply at the bottom so the label
   has something solid to sit on. A flat overlay either dulls the face or leaves
   white text stranded on skin tone - both were visible once the real poster
   frame replaced the placeholder. */
.founders-play {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 8, 0.06) 0%,
    rgba(8, 11, 8, 0) 30%,
    rgba(8, 11, 8, 0) 52%,
    rgba(8, 11, 8, 0.78) 100%
  );
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s ease;
}

.founders-play:hover {
  background: linear-gradient(
    180deg,
    rgba(8, 11, 8, 0.16) 0%,
    rgba(8, 11, 8, 0.1) 30%,
    rgba(8, 11, 8, 0.12) 52%,
    rgba(8, 11, 8, 0.82) 100%
  );
}

/* Disc centred - the expected affordance for "this is a video" - while the
   wording moves out of the subject's face and down onto the scrim. */
.founders-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

/* Play triangle, drawn in CSS so the button needs no extra asset. */
.founders-play-icon::after {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid var(--ink);
  transform: translate(-50%, -50%);
  content: "";
}

.founders-play:hover .founders-play-icon {
  transform: translate(-50%, -50%) scale(1.07);
}

.founders-play-text {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: grid;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: left;
  text-shadow: 0 1px 12px rgba(8, 11, 8, 0.6);
}

.founders-play-text small {
  margin-top: 4px;
  color: var(--green-pale);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founders-figure figcaption {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.founders-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  font-size: 1.15rem;
  font-weight: 900;
}

.founders-person {
  display: grid;
  line-height: 1.25;
}

.founders-person small {
  color: rgba(8, 11, 8, 0.6);
  font-size: 0.86rem;
  font-weight: 600;
}

.trust-section {
  background: #111611;
}

.trust-heading {
  max-width: 930px;
}

.trust-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.principles-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.principle > span {
  color: var(--green);
  font-family: Georgia, serif;
  font-style: italic;
}

.principle h3 {
  margin: 62px 0 12px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.team-panel {
  margin-top: 24px;
  padding: 38px;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--green);
}

.team-intro {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 28px;
}

.team-mark {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 4rem;
  font-weight: 950;
  line-height: 1;
}

.team-panel .eyebrow {
  margin-bottom: 10px;
  color: var(--ink);
}

.team-panel h3 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.team-list {
  display: grid;
  margin-top: 34px;
  padding-top: 26px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(8, 11, 8, 0.3);
}

.team-list strong,
.team-list span {
  display: block;
}

.team-list strong {
  font-size: 0.92rem;
}

.team-list span {
  margin-top: 3px;
  color: rgba(8, 11, 8, 0.67);
  font-size: 0.76rem;
}

.faq-section {
  padding: 140px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 140px;
  height: max-content;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid rgba(8, 11, 8, 0.3);
}

.faq-list summary {
  display: grid;
  min-height: 94px;
  padding: 22px 0;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(8, 11, 8, 0.35);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--green);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -8px 55px 28px 0;
  color: #515a51;
  line-height: 1.7;
}

.download-section {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background: var(--green);
  color: var(--ink);
}

.download-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.13;
  background: url("assets/jungle-pattern.svg") center / 1420px auto no-repeat;
  filter: invert(1);
}

.download-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.download-inner .eyebrow {
  justify-content: center;
  color: var(--ink);
}

.download-inner h2 em {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.download-inner > p:not(.eyebrow) {
  margin: 28px auto 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.store-grid {
  display: flex;
  margin-top: 38px;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.store-card {
  display: grid;
  padding: 22px 20px 18px;
  justify-items: center;
  gap: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
}

/* Fixed, identical box for both badges. 190x56 is wide enough that the wider
   Google Play pill (3.36:1) is height-constrained too, so both logos render at
   exactly 56px tall and share the same footprint. */
.store-badge {
  display: grid;
  width: 190px;
  height: 56px;
  place-items: center;
  transition: transform 150ms ease;
}

.store-badge:hover {
  transform: translateY(-3px);
}

/* Height is pinned, width follows each badge's own ratio — that is what makes
   the two pills identical in height inside the shared 190x56 box. */
.store-badge img {
  width: auto;
  height: 56px;
  max-width: 100%;
}

.store-qr {
  padding: 8px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: var(--white);
}

/* Vector QR — scales sharp at any size. 132px keeps every module >= 3.5px,
   comfortably above what a phone camera needs. Both codes decode to the same
   store URLs used by the badge links above them (verified at build time). */
.store-qr img {
  width: 132px;
  height: 132px;
}

.store-scan {
  color: #4f584f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.download-inner small {
  display: block;
  margin-top: 20px;
  color: rgba(8, 11, 8, 0.66);
  font-size: 0.76rem;
  font-weight: 750;
}

.site-footer {
  padding: 58px 0 42px;
  border-top: 1px solid var(--line-dark);
  background: #070907;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.footer-brand img {
  width: 122px;
}

.footer-grid > p:not(.footer-note) {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-note {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #6f786f;
  font-size: 0.7rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-delay,
.reveal-delay-long {
  transition-delay: 0ms;
}

.reveal-delay-short {
  transition-delay: 0ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
    gap: 24px;
  }

  .hero-visual {
    transform: scale(0.9);
    transform-origin: center;
  }

  .practice-grid,
  .product-grid,
  .situations-shell,
  .faq-grid {
    gap: 58px;
  }

  .team-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Four steps no longer fit on one row below ~1080px — fold to 2x2 before the
     900px rule drops them to a single column. */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card {
    min-height: 340px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid,
  .practice-grid,
  .product-grid,
  .situations-shell,
  .voice-grid,
  .founders-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid > *,
  .practice-grid > *,
  .product-grid > *,
  .situations-shell > *,
  .voice-grid > *,
  .founders-grid > *,
  .faq-grid > * {
    min-width: 0;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .hero-visual {
    min-height: 670px;
    transform: none;
  }

  .practice-grid {
    gap: 54px;
  }

  .steps-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 310px;
  }

  .step-card h3 {
    margin-top: 34px;
  }

  .situations-title,
  .faq-heading {
    position: static;
  }

  .product-grid {
    gap: 30px;
  }

  .voice-grid {
    gap: 40px;
  }

  .voice-intro > p:last-child {
    max-width: 520px;
  }

  .product-phone {
    order: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --radius-md: 20px;
  }

  .founders-section {
    padding: 96px 0;
  }

  /* Phone: the frame is short, so the disc rides a little higher to stay clear
     of the label sitting on the bottom scrim. */
  .founders-play-icon {
    width: 58px;
    height: 58px;
    top: 44%;
  }

  .founders-play-text {
    right: 16px;
    bottom: 14px;
    left: 16px;
    font-size: 0.98rem;
  }

  /* The 10px hard shadow overflows a narrow viewport; shrink it rather than
     letting the section scroll sideways. */
  .founders-player {
    box-shadow: 6px 6px 0 var(--green);
  }

  html {
    scroll-padding-top: 78px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 124px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    padding: 98px 20px 28px;
    gap: 0;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(8, 11, 8, 0.98);
    transform: translateY(-120%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-nav a:not(.nav-cta) {
    display: block;
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.95rem;
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    justify-content: center;
    border-bottom: 1px solid var(--green);
  }

  .hero {
    min-height: 0;
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(3.35rem, 15vw, 5.2rem);
  }

  h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 580px;
    margin: 15px -20px 45px;
    transform: scale(0.82);
    transform-origin: top center;
  }

  .phone-main {
    width: 300px;
  }

  .phone-back {
    width: 190px;
  }

  .note-one {
    right: 10px;
  }

  .hero-stamp {
    right: 16px;
    bottom: 2px;
  }

  .practice-section,
  .how-section,
  .situations-section,
  .voice-section,
  .product-section,
  .trust-section,
  .faq-section,
  .download-section {
    padding: 96px 0;
  }

  .voice-figure blockquote {
    font-size: clamp(2.15rem, 10.5vw, 3.7rem);
  }

  .voice-figure figcaption {
    grid-template-columns: auto 1fr;
  }

  .voice-disclosure {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading .eyebrow {
    margin-bottom: -4px;
  }

  .scenario-card {
    padding: 20px;
    box-shadow: 7px 7px 0 var(--green);
  }

  .scenario-scene {
    padding-left: 66px;
  }

  .scenario-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .step-card {
    min-height: 300px;
  }

  .situation-row {
    grid-template-columns: 34px 1fr;
  }

  .situation-tag {
    grid-column: 2;
    width: max-content;
  }

  .product-phone {
    min-height: 610px;
    margin-inline: -10px;
  }

  .phone-feature {
    width: 294px;
  }

  .callout-top {
    right: -4px;
  }

  .callout-bottom {
    left: -4px;
  }

  .principle {
    min-height: 245px;
  }

  .principle h3 {
    margin-top: 42px;
  }

  .team-panel {
    padding: 26px;
  }

  .team-intro {
    grid-template-columns: 1fr;
  }

  .team-mark {
    width: 74px;
    height: 74px;
    font-size: 3rem;
  }

  .team-list {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 0.96rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-note {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Consent banner -----------------------------------------------------------
   Injected by analytics.js only when a Measurement ID is configured and the
   visitor has not already decided. Deliberately a bar, not a modal: it does not
   cover the page, does not trap focus, and the site is fully usable while it is
   open — a visitor who ignores it is treated as having consented to nothing. */
.consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 60;
  /* viewport-fit=cover is set on this site, so keep clear of the home indicator */
  padding-bottom: env(safe-area-inset-bottom, 0px);
  animation: consent-in 240ms ease both;
}

.consent-inner {
  display: flex;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 20px 24px;
  gap: 20px 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  color: var(--white);
  /* Solid, not translucent: this sits over both the dark hero and the paper
     sections, and text over a blurred backdrop fails contrast on the light one. */
  background: var(--ink-card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.consent-copy {
  flex: 1 1 340px;
}

.consent-copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.consent-copy p + p {
  margin-top: 6px;
}

.consent-copy strong {
  color: var(--white);
}

.consent-copy a {
  color: var(--green-pale);
}

.consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Both choices are one click and comparable weight. The accept button carries
   the brand green because it is the affirmative action, but "No thanks" is a
   full-size button in the same row — never a link, never hidden behind
   "settings". An unequal banner is not valid consent. */
.consent-actions .button {
  min-height: 48px;
  padding: 0 22px;
  gap: 0;
  font-size: 0.85rem;
}

@keyframes consent-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .consent-inner {
    padding: 18px;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-actions .button {
    flex: 1 1 auto;
  }
}

@media print {
  .site-header,
  .moment-ticker,
  .hero-actions,
  .consent,
  .menu-toggle {
    display: none;
  }

  body,
  .hero,
  .how-section,
  .voice-section,
  .product-section,
  .trust-section,
  .site-footer {
    color: #000;
    background: #fff;
  }
}
