:root {
  --ink: #04372f;
  --green: #00443c;
  --green-2: #176646;
  --gold: #d89a1b;
  --gold-2: #f1c96b;
  --ivory: #fbf7ef;
  --ivory-2: #fffdf8;
  --muted: #746b5e;
  --line: rgba(190, 154, 94, 0.32);
  --shadow: 0 22px 60px rgba(36, 29, 19, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 154, 27, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(13, 68, 46, 0.08), transparent 28%),
    var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 40px rgba(43, 34, 20, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 31%;
  box-shadow:
    inset 0 0 0 1px rgba(241, 201, 107, 0.55),
    0 8px 18px rgba(0, 68, 60, 0.18);
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.84);
  color: var(--green);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.app-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  padding: 0 16px;
}

.app-link:hover {
  border-color: rgba(216, 154, 27, 0.56);
  color: var(--gold);
}

.header-cta,
.button,
.email-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  cursor: pointer;
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  background: linear-gradient(135deg, #efbc42, #c98610);
  color: white;
  box-shadow: 0 12px 24px rgba(201, 134, 16, 0.24);
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 25;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #efbc42, #c98610);
  color: white;
  font-size: 14px;
  font-weight: 800;
  padding: 0 18px;
  box-shadow: 0 16px 34px rgba(201, 134, 16, 0.3);
}

.section-shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 58px;
  min-height: calc(100vh - 78px);
  padding: 98px 0 42px;
  align-items: center;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(64px, 8vw, 118px);
  line-height: 0.88;
  font-weight: 700;
}

h2 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 700;
}

h3 {
  font-size: 34px;
  line-height: 1;
}

.hero p,
.section-heading p,
.academy-copy p,
.culture-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero p {
  max-width: 620px;
  margin: 30px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 0;
}

.button {
  min-height: 58px;
  padding: 0 24px;
  gap: 10px;
  font-size: 16px;
}

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

.button-primary {
  background: linear-gradient(135deg, #efbc42, #c98610);
  color: white;
  box-shadow: 0 18px 34px rgba(201, 134, 16, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
  color: var(--green);
}

.button-app {
  border: 1px solid rgba(0, 68, 60, 0.18);
  background: rgba(0, 68, 60, 0.08);
  color: var(--green);
}

.signup-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
}

.hero-signup {
  max-width: 620px;
  margin-top: 34px;
  padding: 18px;
}

.signup-card label {
  display: block;
  margin: 0 0 10px 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.email-row {
  display: flex;
  gap: 10px;
}

.email-row input {
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 1px solid rgba(190, 154, 94, 0.38);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font: 600 16px var(--sans);
  outline: none;
  padding: 0 20px;
}

.email-row input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 154, 27, 0.14);
}

.email-row button {
  min-width: 136px;
  padding: 0 22px;
  background: var(--green);
  color: white;
  font-size: 15px;
}

.signup-card p {
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.signup-card.is-success {
  border-color: rgba(13, 68, 46, 0.5);
}

.platform-note {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.platform-note > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  min-width: 174px;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(241, 201, 107, 0.36);
  border-radius: 16px;
  background: linear-gradient(135deg, #063d35, #00342e);
  color: white;
  padding: 9px 14px;
  box-shadow: 0 16px 34px rgba(0, 68, 60, 0.18);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.store-badge:first-child svg {
  fill: var(--gold-2);
  stroke: none;
}

.store-badge span {
  display: grid;
  gap: 1px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.05;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-product {
  min-height: 620px;
}

.phone-stack {
  position: relative;
  height: min(760px, 78vh);
  min-height: 620px;
}

.phone {
  position: absolute;
  width: min(330px, 42vw);
  border-radius: 42px;
  box-shadow: 0 34px 90px rgba(29, 24, 15, 0.24);
}

.phone-front {
  right: 10px;
  top: 10px;
  z-index: 2;
}

.phone-back {
  left: 6px;
  top: 96px;
  z-index: 1;
  transform: rotate(-6deg);
  opacity: 0.9;
}

.mandala {
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
}

.mandala::before,
.mandala::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 154, 27, 0.45);
  border-radius: 44% 56% 48% 52%;
}

.mandala::after {
  transform: rotate(45deg) scale(0.74);
}

.mandala-hero {
  top: 80px;
  right: -88px;
  width: 360px;
  height: 360px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto 116px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--line);
  box-shadow: 0 18px 52px rgba(43, 34, 20, 0.08);
}

.trust-row div {
  display: grid;
  gap: 4px;
  padding: 28px 18px;
  background: rgba(255, 253, 248, 0.82);
  text-align: center;
}

.trust-row strong {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: var(--green);
}

.trust-row span {
  color: var(--muted);
  font-weight: 600;
}

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

.section-heading p {
  margin: 20px 0 0;
}

.beginner-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 126px;
  border: 1px solid rgba(190, 154, 94, 0.34);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(248, 240, 226, 0.62)),
    var(--ivory-2);
  box-shadow: var(--shadow);
  padding: 44px;
}

.beginner-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.beginner-points {
  display: grid;
  gap: 12px;
}

.beginner-points span {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--green);
  font-weight: 800;
  padding: 15px 18px 15px 44px;
}

.beginner-points span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(216, 154, 27, 0.14);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.path-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  padding: 34px;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.08;
}

.path-card.gold {
  color: var(--gold);
}

.path-card.violet {
  color: #7656b7;
}

.path-card.green {
  color: var(--green-2);
}

.path-icon {
  display: grid;
  width: 94px;
  height: 94px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
}

.path-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.academy,
.culture {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: center;
  padding-top: 128px;
}

.academy-copy p,
.culture-copy p {
  margin: 24px 0 0;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.mini-list span {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--green);
  font-weight: 700;
  padding: 12px 18px;
}

.screen-frame {
  justify-self: center;
  width: min(340px, 100%);
  border-radius: 46px;
  padding: 8px;
  background: linear-gradient(145deg, rgba(216, 154, 27, 0.45), rgba(255, 253, 248, 0.8));
  box-shadow: 0 34px 90px rgba(29, 24, 15, 0.18);
}

.screen-frame img {
  border-radius: 38px;
}

.culture {
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 0.85fr);
}

.culture-screen {
  width: min(360px, 100%);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 800;
}

.about {
  padding-top: 128px;
}

.about-heading {
  position: relative;
  margin-bottom: 34px;
}

.about-heading::after {
  content: "";
  position: absolute;
  right: 2%;
  top: -48px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(216, 154, 27, 0.18);
  border-radius: 44% 56% 48% 52%;
  opacity: 0.55;
  transform: rotate(35deg);
}

.about-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 22px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.9fr);
  overflow: hidden;
  border: 1px solid rgba(190, 154, 94, 0.38);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(250, 244, 234, 0.72)),
    var(--ivory-2);
  box-shadow: var(--shadow);
}

.founder-copy {
  position: relative;
  z-index: 1;
  padding: 58px 54px;
}

.founder-symbol {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.82);
  color: var(--gold);
  font-size: 30px;
  box-shadow: 0 14px 34px rgba(43, 34, 20, 0.08);
}

.founder-copy h3 {
  margin-top: 34px;
  font-size: clamp(62px, 7vw, 96px);
}

.founder-role {
  margin: 6px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
}

.founder-divider {
  width: min(100%, 420px);
  height: 1px;
  margin: 30px 0;
  background:
    linear-gradient(90deg, var(--gold), transparent 40%),
    linear-gradient(270deg, var(--gold), transparent 40%);
}

.founder-story {
  max-width: 460px;
  margin: 0;
  color: #23201b;
  font-size: 21px;
  line-height: 1.75;
}

.founder-photo {
  min-height: 620px;
  align-self: stretch;
  background: rgba(255, 253, 248, 0.42);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.founder-quote {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 52px rgba(43, 34, 20, 0.08);
  padding: 28px 42px;
}

.founder-quote span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 104px;
  line-height: 0.8;
}

.founder-quote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.05;
}

.philosophy-panel {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
  padding: 34px;
}

.philosophy-panel > h3 {
  font-size: 40px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 26px;
}

.philosophy-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.78);
  padding: 28px;
  text-align: center;
}

.philosophy-grid span {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 34px;
}

.philosophy-grid h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.philosophy-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.about-journey {
  display: grid;
  grid-template-columns: 74px minmax(0, 0.28fr) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  border: 1px solid rgba(241, 201, 107, 0.6);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 68, 60, 0.96), rgba(4, 55, 47, 0.98)),
    var(--green);
  color: white;
  padding: 14px 26px 14px 14px;
  box-shadow: 0 18px 52px rgba(0, 68, 60, 0.2);
}

.about-journey span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 26px;
}

.about-journey strong {
  font-family: var(--serif);
  font-size: 32px;
}

.about-journey small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.35;
}

.beta {
  padding-top: 128px;
}

.beta-benefits {
  margin-bottom: 116px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.benefit-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 52px rgba(43, 34, 20, 0.08);
  padding: 28px;
}

.benefit-grid span {
  color: var(--gold);
  font-weight: 900;
}

.benefit-grid h3 {
  margin-top: 42px;
  font-size: 38px;
}

.benefit-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 46px;
}

.roadmap-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 28px;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(190, 154, 94, 0.38);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
  padding: 30px;
}

.roadmap-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid currentColor;
  border-radius: 46% 54% 50% 50%;
  opacity: 0.08;
  transform: rotate(32deg);
}

.roadmap-card-beta {
  color: var(--gold);
}

.roadmap-card-live {
  color: var(--green);
}

.roadmap-date {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 150px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.88), rgba(255, 253, 248, 0.58)),
    rgba(255, 253, 248, 0.76);
}

.roadmap-date span {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.85;
  font-weight: 700;
}

.roadmap-date strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.roadmap-card h3 {
  margin-top: 22px;
  color: var(--ink);
  font-size: 46px;
}

.roadmap-card p {
  max-width: 410px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.roadmap-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-weight: 900;
}

.roadmap-rail {
  display: grid;
  place-items: center;
}

.roadmap-rail span {
  position: relative;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.roadmap-rail span::before,
.roadmap-rail span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.roadmap-rail span::before {
  left: -6px;
}

.roadmap-rail span::after {
  right: -6px;
  background: var(--green);
}

.roadmap-note {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  padding: 10px 18px 10px 12px;
}

.roadmap-note span {
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
}

.roadmap-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
  padding-top: 126px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 14px 40px rgba(43, 34, 20, 0.07);
  padding: 0 22px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 22px;
}

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

.faq-list details p {
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: center;
  margin-top: 122px;
  margin-bottom: 44px;
  overflow: hidden;
  border: 1px solid rgba(216, 154, 27, 0.42);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(13, 68, 46, 0.96), rgba(10, 47, 37, 0.98)),
    var(--green);
  color: white;
  padding: 54px;
  box-shadow: 0 28px 80px rgba(13, 68, 46, 0.28);
}

.cta-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border: 1px solid rgba(241, 201, 107, 0.48);
  border-radius: 26px;
  object-fit: cover;
  object-position: 50% 48%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta p {
  max-width: 640px;
  opacity: 0.78;
}

.final-signup {
  position: relative;
  z-index: 1;
  background: rgba(255, 253, 248, 0.96);
  padding: 18px;
}

.signup-app-link {
  display: inline-flex;
  margin: 14px 4px 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.store-badges-compact {
  margin-top: 14px;
}

.store-badges-compact .store-badge {
  min-width: 136px;
  min-height: 52px;
  flex: 1 1 136px;
  border-color: rgba(0, 68, 60, 0.12);
  background: rgba(0, 68, 60, 0.08);
  color: var(--green);
  box-shadow: none;
}

.store-badges-compact .store-badge span {
  font-size: 15px;
}

.store-badges-compact .store-badge small {
  color: var(--muted);
}

.mandala-final {
  right: -80px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  opacity: 0.14;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 38px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 31%;
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.menu-open .site-header {
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .desktop-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    color: var(--green);
    opacity: 0;
    padding: 0;
    transition: max-height 220ms ease, opacity 160ms ease, padding 220ms ease;
  }

  body.menu-open .desktop-nav {
    max-height: 420px;
    opacity: 1;
    padding: 8px 0 4px;
  }

  .desktop-nav a {
    border: 1px solid rgba(190, 154, 94, 0.26);
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.78);
    padding: 13px 16px;
    font-size: 16px;
  }

  .hero,
  .academy,
  .culture,
  .founder-card,
  .beginner-focus,
  .faq,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 20px;
    padding-top: 72px;
  }

  .hero-product {
    min-height: 560px;
  }

  .phone-stack {
    height: 560px;
    min-height: 560px;
  }

  .phone {
    width: min(300px, 52vw);
  }

  .phone-front {
    right: 12%;
  }

  .phone-back {
    left: 10%;
  }

  .path-grid,
  .philosophy-grid,
  .benefit-grid,
  .roadmap,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .roadmap {
    gap: 18px;
  }

  .roadmap-rail {
    min-height: 42px;
  }

  .roadmap-rail span {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--green));
  }

  .roadmap-rail span::before,
  .roadmap-rail span::after {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
  }

  .roadmap-rail span::before {
    top: -6px;
  }

  .roadmap-rail span::after {
    right: auto;
    bottom: -6px;
  }

  .culture .culture-copy {
    order: -1;
  }

  .founder-photo {
    min-height: 520px;
    order: -1;
  }

  .about-journey {
    grid-template-columns: 60px minmax(0, 1fr);
    border-radius: 30px;
  }

  .about-journey small {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .brand {
    font-size: 24px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .header-actions {
    display: none;
  }

  .mobile-sticky-cta {
    display: none;
  }

  body.has-scrolled .mobile-sticky-cta {
    display: inline-flex;
  }

  .section-shell,
  .trust-row,
  .site-footer {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .hero p,
  .section-heading p,
  .academy-copy p,
  .culture-copy p,
  .final-cta p {
    font-size: 17px;
  }

  .email-row {
    flex-direction: column;
  }

  .email-row button {
    height: 54px;
  }

  .store-badge {
    flex: 1 1 100%;
  }

  .hero-product {
    min-height: 470px;
  }

  .phone-stack {
    height: 470px;
    min-height: 470px;
  }

  .phone {
    width: min(245px, 70vw);
    border-radius: 34px;
  }

  .phone-front {
    right: 0;
  }

  .phone-back {
    left: 8px;
    top: 72px;
  }

  .mandala-hero,
  .mandala-final {
    display: none;
  }

  .academy,
  .culture,
  .about,
  .beta {
    padding-top: 92px;
  }

  .path-card {
    min-height: 260px;
    padding: 28px;
  }

  .beginner-focus {
    margin-bottom: 92px;
    padding: 28px;
  }

  .benefit-grid article {
    min-height: 0;
  }

  .roadmap-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
  }

  .roadmap-date {
    width: 126px;
    min-height: 126px;
  }

  .roadmap-card h3 {
    margin-top: 0;
    font-size: 34px;
  }

  .roadmap-note {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 26px;
  }

  .about-heading::after {
    display: none;
  }

  .about-heading p {
    font-size: 18px;
  }

  .founder-copy {
    padding: 30px 24px 34px;
  }

  .founder-symbol {
    width: 58px;
    height: 58px;
  }

  .founder-copy h3 {
    margin-top: 24px;
    font-size: 58px;
  }

  .founder-role {
    font-size: 27px;
  }

  .founder-story {
    font-size: 18px;
  }

  .founder-photo {
    min-height: 420px;
  }

  .founder-quote {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 26px;
  }

  .founder-quote span {
    font-size: 72px;
  }

  .philosophy-panel {
    padding: 24px;
  }

  .philosophy-grid article {
    min-height: 0;
  }

  .faq {
    padding-top: 92px;
  }

  .faq-list summary {
    font-size: 23px;
  }

  .final-cta {
    margin-top: 88px;
    padding: 32px 18px;
    border-radius: 28px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 98px;
  }
}
