:root {
  --bg: #f6f8ef;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-muted: rgba(246, 250, 239, 0.9);
  --ink: #101828;
  --muted: #667085;
  --line: rgba(19, 37, 54, 0.1);
  --accent: #93d72b;
  --accent-strong: #6eb814;
  --accent-soft: #eef9dd;
  --accent-wash: rgba(154, 218, 67, 0.22);
  --navy: #151d27;
  --navy-soft: #25313e;
  --shadow-soft: 0 24px 80px rgba(35, 43, 53, 0.08);
  --shadow-card: 0 16px 40px rgba(16, 24, 40, 0.08);
  --container: min(1760px, calc(100% - 52px));
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 36%),
    linear-gradient(180deg, #f9faf5 0%, #f7f9f1 38%, #f4f7ec 100%);
}

body.landing-loader-active {
  overflow: hidden;
  padding-right: var(--landing-scrollbar-compensation, 0px);
}

html.landing-loader-suppressed .landing-site-loader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

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

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

svg {
  width: 100%;
  height: 100%;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.landing-scale-shell {
  position: relative;
  width: 100%;
}

.landing-scale-stage {
  position: relative;
  width: 100%;
}

body:not(.landing-mobile-layout) .landing-scale-stage {
  --landing-stage-scale: 1;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  transform-origin: top center;
  transform: translateX(-50%) scale(var(--landing-stage-scale));
}

.landing-site-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: max(1.25rem, env(safe-area-inset-top)) 1.25rem max(1.25rem, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 18% 18%, rgba(141, 214, 44, 0.14), transparent 16rem),
    radial-gradient(circle at 82% 20%, rgba(141, 214, 44, 0.1), transparent 14rem),
    linear-gradient(180deg, #fefdfe 0%, #f7faef 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

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

.landing-site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.landing-site-loader .site-page-loader-card {
  display: grid;
  place-items: center;
  width: min(64vw, 19.5rem);
  aspect-ratio: 1;
  min-width: 15rem;
  border: 1px solid rgba(141, 214, 44, 0.24);
  border-radius: clamp(2rem, 7vw, 3.5rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 244, 0.98));
  box-shadow: 0 28px 90px rgba(86, 93, 98, 0.16);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  animation: siteLoaderCardIn 0.5s ease both;
}

.landing-site-loader .mobile-loading-orbit {
  position: relative;
  width: clamp(8.5rem, 30vw, 11rem);
  height: clamp(8.5rem, 30vw, 11rem);
  display: grid;
  place-items: center;
}

.landing-site-loader .mobile-loading-orbit::before,
.landing-site-loader .mobile-loading-orbit::after,
.landing-site-loader .mobile-loading-orbit > span {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 50%;
}

.landing-site-loader .mobile-loading-orbit::before {
  border-top-color: rgba(141, 214, 44, 0.96);
  border-right-color: rgba(141, 214, 44, 0.28);
  animation: mobileLoaderSpin 1.15s linear infinite;
}

.landing-site-loader .mobile-loading-orbit::after {
  inset: 0.75rem;
  border-bottom-color: rgba(124, 201, 34, 0.92);
  border-left-color: rgba(141, 214, 44, 0.24);
  animation: mobileLoaderSpin 1.7s linear infinite reverse;
}

.landing-site-loader .mobile-loading-orbit > span:nth-child(1) {
  inset: 1.55rem;
  border-top-color: rgba(95, 152, 36, 0.38);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  background: none;
  animation: mobileLoaderPulse 1.6s ease-in-out infinite;
}

.landing-site-loader .mobile-loading-orbit > span:nth-child(2) {
  inset: -0.35rem;
  border-right-color: rgba(141, 214, 44, 0.22);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  background: none;
  animation: mobileLoaderPulse 1.9s ease-in-out infinite 0.18s;
}

.landing-site-loader .mobile-loading-orbit > span:nth-child(3) {
  inset: 2.25rem;
  border-color: rgba(141, 214, 44, 0.16);
  background: radial-gradient(circle, rgba(141, 214, 44, 0.12), transparent 68%);
  animation: mobileLoaderGlow 1.45s ease-in-out infinite alternate;
}

.landing-site-loader .mobile-loading-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(4.2rem, 15vw, 5.35rem);
  height: clamp(4.2rem, 15vw, 5.35rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(141, 214, 44, 0.38);
  border-radius: clamp(1.25rem, 4vw, 1.65rem);
  background: linear-gradient(180deg, #9fdf4c 0%, #78bb24 100%);
  box-shadow: 0 18px 42px rgba(141, 214, 44, 0.28);
  animation: mobileLoaderMark 1.8s ease-in-out infinite;
}

.landing-site-loader .mobile-loading-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero-card > *,
.feature-grid > *,
.benefit-strip > *,
.module-grid > *,
.founder-section > *,
.founder-card > * {
  min-width: 0;
}

.ambient {
  position: absolute;
  pointer-events: none;
  filter: blur(8px);
}

.ambient--lime {
  inset: -8% -16% auto auto;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(154, 218, 67, 0.34), transparent 44%),
    radial-gradient(circle at 64% 48%, rgba(150, 210, 60, 0.9), rgba(144, 203, 57, 0.24) 44%, transparent 65%);
  opacity: 0.95;
}

.ambient--white {
  inset: -18% auto auto -14%;
  width: 980px;
  height: 980px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.12) 62%, transparent 74%);
}

.ambient--ring {
  top: 320px;
  left: 45%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(153, 207, 80, 0.16);
  background: transparent;
  filter: none;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 16px;
}

.topbar,
.benefit-strip,
.modules-section,
.section-divider,
.founder-section {
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
}

.topbar {
  animation-delay: 0.02s;
}

.benefit-strip {
  animation-delay: 0.46s;
}

.modules-section {
  animation-delay: 0.58s;
}

.section-divider {
  animation-delay: 0.68s;
}

.founder-section {
  animation-delay: 0.78s;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: none;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-title {
  color: #101828;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-domain {
  font-size: 14px;
  color: #737d86;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(118, 179, 28, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #101828;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(146, 190, 45, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.header-link:hover {
  transform: translateY(-2px);
  border-color: rgba(118, 179, 28, 0.4);
  box-shadow: 0 16px 28px rgba(146, 190, 45, 0.16);
}

.hero-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 61.44px;
  align-items: center;
  padding: 36px 0 28px;
}

.hero-copy > * {
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.19s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.26s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.33s; }
.hero-copy > *:nth-child(6) { animation-delay: 0.4s; }

.eyebrow {
  margin: 0 0 14px;
  color: #6e8c39;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: 78.08px;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 680px;
  font-size: 26.88px;
  line-height: 1.45;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 22px 0 0;
}

.feature-item {
  min-height: auto;
  padding: 14px 16px 12px;
  border: 1px solid rgba(157, 191, 118, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 242, 0.64));
  box-shadow:
    0 14px 28px rgba(16, 24, 40, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.benefit-strip > *,
.module-grid > *,
.founder-card > * {
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
}

.benefit-strip > *:nth-child(1) { animation-delay: 0.54s; }
.benefit-strip > *:nth-child(2) { animation-delay: 0.62s; }
.benefit-strip > *:nth-child(3) { animation-delay: 0.7s; }
.benefit-strip > *:nth-child(4) { animation-delay: 0.78s; }

.module-grid > *:nth-child(1) { animation-delay: 0.66s; }
.module-grid > *:nth-child(2) { animation-delay: 0.74s; }
.module-grid > *:nth-child(3) { animation-delay: 0.82s; }

.founder-card > *:nth-child(1) { animation-delay: 0.88s; }
.founder-card > *:nth-child(2) { animation-delay: 0.96s; }

.feature-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(239, 249, 220, 0.92), rgba(255, 255, 255, 0.88));
  color: var(--accent-strong);
  box-shadow:
    0 10px 24px rgba(118, 191, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.feature-icon svg {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h2 {
  margin: 14px 0 0;
  max-width: 10ch;
  font-size: 1.02rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.feature-item p {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 66px;
  padding: 0 30px;
  border-radius: 22px;
  white-space: nowrap;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #8fd52b 0%, #76bf19 100%);
  box-shadow: 0 18px 34px rgba(118, 191, 25, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(118, 191, 25, 0.34);
}

.button-secondary {
  min-height: 58px;
  padding-inline: 24px;
  color: #24350b;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(118, 179, 28, 0.2);
}

.trust-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #667085;
  font-size: 1.05rem;
}

.trust-icon {
  width: 26px;
  height: 26px;
  color: var(--accent-strong);
}

.trust-icon svg {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  grid-column: 1 / -1;
  justify-self: center;
  margin: -42px auto 0;
  border: 1px solid rgba(133, 181, 53, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  color: #6cae19;
  opacity: 0;
  box-shadow:
    0 14px 28px rgba(118, 191, 25, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  animation: fade-up 0.8s 0.34s ease forwards;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scroll-down:hover {
  transform: translateY(3px);
  border-color: rgba(118, 179, 28, 0.34);
  box-shadow: 0 20px 36px rgba(118, 191, 25, 0.14);
}

.scroll-down svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  --device-transform: perspective(1600px) rotateY(-11deg) rotateX(7deg) rotateZ(-3deg);
  --device-lift: 10px;
  opacity: 0;
  animation: fade-up 1s 0.2s ease forwards;
}

.stage-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(149, 204, 67, 0.18);
}

.stage-ring--one {
  width: 340px;
  height: 340px;
  top: 236px;
  left: -28px;
}

.stage-ring--two {
  width: 560px;
  height: 560px;
  top: 8px;
  right: -34px;
  border-color: rgba(149, 204, 67, 0.12);
}

.tablet-stage {
  position: absolute;
  inset: 52px 50px 46px 62px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: translateX(-16px);
  z-index: 2;
}

.tablet-shell {
  position: relative;
  width: min(100%, 688px);
  padding: 15px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, #2c3742 0%, #151d27 58%, #0c1117 100%);
  box-shadow:
    0 34px 70px rgba(15, 18, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -14px 22px rgba(3, 5, 8, 0.3);
  transform: var(--device-transform);
  transform-style: preserve-3d;
  animation: device-float 8s ease-in-out infinite;
}

.tablet-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 31px;
  pointer-events: none;
}

.tablet-shell::after {
  content: "";
  position: absolute;
  inset: auto 14% -20px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 15, 22, 0.32) 0%, rgba(10, 15, 22, 0) 72%);
  filter: blur(8px);
  z-index: -1;
}

.tablet-camera {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 60px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0d1217 0%, #222c36 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  z-index: 3;
}

.tablet-screen {
  overflow: hidden;
  border-radius: 30px;
  background: #eef2f5;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(9, 12, 18, 0.18);
}

.tablet-screen img {
  width: 120%;
  max-width: none;
  aspect-ratio: 1898 / 1080;
  object-fit: cover;
  object-position: center top;
  transform: translateX(-8%) scaleX(0.84);
  transform-origin: center top;
}

.visual-badge,
.visual-chip {
  display: none !important;
}

.visual-badge,
.visual-chip {
  position: absolute;
  z-index: 4;
  backdrop-filter: blur(16px);
  animation: badge-float 7s ease-in-out infinite;
}

.visual-badge {
  top: 66px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 14px;
  border: 1px solid rgba(138, 182, 76, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 42px rgba(18, 24, 40, 0.1);
}

.visual-badge-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  padding: 8px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 246, 219, 0.84));
  box-shadow:
    0 16px 30px rgba(116, 169, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.visual-badge-icon img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.visual-badge-copy {
  display: grid;
  gap: 6px;
}

.visual-badge-copy strong {
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.visual-badge-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.visual-chip {
  max-width: 280px;
  padding: 16px 18px;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.16);
}

.visual-chip--top {
  top: 214px;
  right: 0;
  background: rgba(19, 27, 36, 0.88);
  color: #f8fafc;
  animation-delay: 0.4s;
}

.visual-chip--bottom {
  left: 40px;
  bottom: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(137, 177, 85, 0.18);
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(18, 24, 40, 0.08);
  animation-delay: 1s;
}

.visual-chip-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-chip--top .visual-chip-label {
  color: rgba(226, 232, 240, 0.72);
}

.visual-chip--bottom .visual-chip-label {
  color: #6e8c39;
}

.visual-chip strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.benefit-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 0;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(154, 195, 94, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(245, 249, 239, 0.94), rgba(254, 255, 252, 0.96));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.benefit-card {
  display: flex;
  align-items: center;
  min-height: 130px;
  padding: 18px 28px;
}

.benefit-card + .benefit-card {
  border-left: 1px solid rgba(135, 172, 58, 0.24);
}

.benefit-card h2 {
  margin: 0;
  font-size: 23.104px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.benefit-card--accent {
  gap: 18px;
}

.benefit-shield {
  flex: none;
  width: 64px;
  height: 64px;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  color: var(--accent-strong);
  box-shadow: 0 10px 26px rgba(124, 172, 33, 0.12);
}

.benefit-shield svg {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modules-section {
  position: relative;
  z-index: 2;
}

.modules-section {
  padding: 86px 0 28px;
}

.section-divider {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 1px;
  margin: 12px 0 8px;
  background:
    linear-gradient(90deg,
      rgba(101, 113, 124, 0) 0%,
      rgba(101, 113, 124, 0.12) 16%,
      rgba(101, 113, 124, 0.24) 50%,
      rgba(101, 113, 124, 0.12) 84%,
      rgba(101, 113, 124, 0) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

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

.section-heading h2 {
  margin: 0;
  font-size: 52.64px;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.module-card {
  min-height: 248px;
  padding: 24px;
  border: 1px solid rgba(18, 24, 40, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 244, 0.96));
  box-shadow: var(--shadow-card);
}

.module-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #5a8b12;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.module-card h3 {
  margin: 18px 0 12px;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.founder-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 470px);
  gap: 20px;
  align-items: stretch;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 28px 0 24px;
}

.founder-card,
.founder-cta {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.founder-card {
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 24px 24px;
  border: 1px solid rgba(18, 24, 40, 0.08);
  background:
    radial-gradient(circle at top left, rgba(159, 214, 72, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 237, 0.98));
  box-shadow: var(--shadow-soft);
}

.founder-card::after {
  content: "";
  position: absolute;
  inset: auto -9% -30% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 210, 63, 0.22), rgba(151, 210, 63, 0) 70%);
  pointer-events: none;
}

.founder-profile {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.founder-photo-halo {
  display: grid;
  place-items: center;
  width: 204px;
  height: 204px;
  padding: 10px;
  border: 1px solid rgba(144, 188, 63, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(241, 248, 228, 0.78)),
    linear-gradient(180deg, rgba(252, 254, 249, 0.98), rgba(234, 244, 219, 0.92));
  box-shadow:
    0 20px 44px rgba(118, 191, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.founder-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: auto;
  border-radius: 50%;
  overflow: hidden;
  background: #d8e2ce;
  box-shadow:
    0 16px 32px rgba(18, 24, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.founder-identity {
  display: grid;
  gap: 5px;
  text-align: center;
}

.founder-identity strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.founder-identity span {
  color: var(--muted);
  font-size: 0.94rem;
}

.founder-note {
  position: relative;
  padding: 26px 26px 24px;
  border: 1px solid rgba(136, 177, 85, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.06);
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #5d8e15;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-quote {
  display: block;
  margin: 18px 0 0;
  padding: 0;
  font-size: 22.08px;
  line-height: 1.62;
  letter-spacing: -0.035em;
  color: #1b2430;
}

.founder-quote::before,
.founder-quote::after {
  content: none;
}

.founder-quote-mark {
  display: none;
}

.founder-quote-mark--end {
  margin: 0;
}

.founder-quote-text {
  display: inline;
}

.founder-quote-text::before,
.founder-quote-text::after {
  color: rgba(118, 191, 25, 0.68);
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 0;
  vertical-align: -0.08em;
}

.founder-quote-text::before {
  content: "«";
  margin-right: 0.14em;
}

.founder-quote-text::after {
  content: "»";
  margin-left: 0.02em;
}

.founder-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  justify-self: end;
  width: min(100%, 470px);
  min-height: 100%;
  padding: 34px 32px;
  background:
    radial-gradient(circle at top right, rgba(157, 215, 67, 0.28), transparent 28%),
    linear-gradient(150deg, #16212c 0%, #101821 58%, #18280e 120%);
  color: #f8fafc;
  box-shadow: 0 26px 54px rgba(16, 24, 40, 0.18);
}

.founder-cta::before {
  content: "";
  position: absolute;
  inset: auto auto -90px -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 215, 43, 0.22), rgba(147, 215, 43, 0) 70%);
  pointer-events: none;
}

.founder-cta .eyebrow {
  margin-bottom: 18px;
  color: rgba(189, 233, 119, 0.92);
}

.founder-cta h2 {
  margin: 0;
  font-size: 43.2px;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.founder-cta p {
  margin: 18px 0 28px;
  color: rgba(240, 245, 250, 0.78);
  font-size: 1rem;
  line-height: 1.58;
}

.button-founder {
  align-self: flex-start;
  min-height: 64px;
  padding-inline: 28px;
  box-shadow: 0 22px 40px rgba(118, 191, 25, 0.22);
}

.button-founder:hover {
  box-shadow: 0 24px 46px rgba(118, 191, 25, 0.3);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mobileLoaderPulse {
  0%, 100% {
    transform: scale(0.94);
    opacity: 0.34;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.82;
  }
}

@keyframes mobileLoaderGlow {
  from {
    transform: scale(0.9);
    opacity: 0.35;
  }
  to {
    transform: scale(1.12);
    opacity: 0.85;
  }
}

@keyframes mobileLoaderMark {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.04);
  }
}

@keyframes siteLoaderCardIn {
  from {
    transform: translateY(1rem) scale(0.97);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes device-float {
  0%, 100% {
    transform: var(--device-transform) translateY(0);
  }
  50% {
    transform: var(--device-transform) translateY(calc(var(--device-lift) * -1));
  }
}

@keyframes badge-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 992px) {
  .landing-site-loader .site-page-loader-card {
    width: 20rem;
    min-width: 20rem;
    border-radius: 2.8rem;
  }

  .landing-site-loader .mobile-loading-orbit {
    width: 10rem;
    height: 10rem;
  }
}

@media (max-width: 640px) {
  .hero-card {
    grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
    gap: clamp(24px, 2.8vw, 40px);
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 2.15rem + 2vw, 4.35rem);
  }

  .hero-lead {
    max-width: 620px;
    font-size: clamp(1.02rem, 0.96rem + 0.32vw, 1.22rem);
  }

  .tablet-stage {
    inset: 62px 22px 40px 16px;
    transform: translateX(-12px);
  }

  .tablet-shell {
    width: min(100%, 648px);
  }

  .benefit-card {
    padding: 18px 22px;
  }

  .module-card {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .hero-card {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-visual {
    min-height: 620px;
    margin-top: 18px;
  }

  .tablet-stage {
    inset: 62px 28px 42px 8px;
    transform: translateX(-10px);
  }

  .tablet-shell {
    width: min(100%, 688px);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100% - 36px));
  }

  .topbar {
    padding-top: 22px;
  }

  .feature-grid,
  .module-grid,
  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-section {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 24px;
  }

  .founder-card {
    max-width: none;
    grid-template-columns: 208px minmax(0, 1fr);
  }

  .founder-cta {
    justify-self: stretch;
    width: 100%;
    min-height: auto;
  }

  .benefit-card + .benefit-card {
    border-left: none;
  }

  .benefit-card {
    border-top: 1px solid rgba(135, 172, 58, 0.18);
  }

  .benefit-card:nth-child(-n+2) {
    border-top: none;
  }

  .benefit-card:nth-child(2n) {
    border-left: 1px solid rgba(135, 172, 58, 0.18);
  }

}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    padding-top: 22px;
  }

  .founder-card {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .founder-profile {
    width: 100%;
  }

  .founder-photo-halo {
    width: 200px;
    height: 200px;
  }

  .hero-visual {
    min-height: 520px;
    --device-transform: perspective(1400px) rotateY(-8deg) rotateX(5deg) rotateZ(-2deg);
    --device-lift: 7px;
  }

  .tablet-stage {
    inset: 68px 18px 36px 0;
    transform: translateX(-8px);
  }

  .tablet-shell {
    width: min(100%, 584px);
    padding: 12px;
    border-radius: 30px;
  }

  .tablet-shell::before {
    inset: 9px;
    border-radius: 22px;
  }

  .tablet-camera {
    top: 10px;
    width: 48px;
    height: 6px;
  }

  .tablet-screen {
    border-radius: 22px;
  }

  .modules-section {
    padding-top: 70px;
  }
}

@media (max-width: 520px) {
  :root {
    --container: calc(100% - 24px);
    --radius-xl: 28px;
  }

  .brand {
    gap: 12px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-title {
    font-size: clamp(1.08rem, 6.8vw, 1.45rem);
  }

  .brand-domain {
    font-size: 0.82rem;
  }

  .founder-section {
    padding-bottom: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 10vw, 3.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .module-grid,
  .benefit-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-item,
  .module-card,
  .benefit-card {
    min-height: auto;
  }

  .feature-item h2 {
    max-width: none;
    font-size: 0.98rem;
  }

  .founder-card,
  .founder-cta {
    border-radius: 28px;
  }

  .founder-card {
    padding: 16px;
    gap: 18px;
  }

  .founder-photo-halo {
    width: 160px;
    height: 160px;
    padding: 8px;
  }

  .founder-photo-wrap {
    border-radius: 50%;
  }

  .founder-identity strong {
    font-size: 0.98rem;
  }

  .founder-identity span {
    font-size: 0.88rem;
  }

  .founder-note {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .founder-quote {
    margin: 16px 0 22px;
    padding: 0;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .founder-quote-text::before,
  .founder-quote-text::after {
    font-size: 1.48rem;
  }

  .founder-quote-text::before {
    margin-right: 0.1em;
  }

  .founder-quote-text::after {
    margin-left: 0;
  }

  .founder-cta {
    padding: 28px 22px;
  }

  .founder-cta h2 {
    max-width: none;
  }

  .founder-cta p {
    margin-bottom: 26px;
    font-size: 0.98rem;
  }

  .benefit-card {
    padding-inline: 18px;
  }

  .benefit-card:nth-child(2n) {
    border-left: none;
  }

  .benefit-card:not(:first-child) {
    border-top: 1px solid rgba(135, 172, 58, 0.18);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .button-founder {
    align-self: stretch;
  }

  .scroll-down {
    width: 54px;
    height: 54px;
    margin: -18px auto 0;
  }

  .trust-line {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 400px;
    --device-transform: perspective(1200px) rotateY(-5deg) rotateX(4deg) rotateZ(-1.4deg);
    --device-lift: 5px;
  }

  .stage-ring--one {
    width: 170px;
    height: 170px;
    top: 174px;
    left: -8px;
  }

  .stage-ring--two {
    width: 270px;
    height: 270px;
    top: 30px;
    right: -28px;
  }

  .tablet-stage {
    inset: 82px 14px 24px 0;
    transform: translateX(-6px);
  }

  .tablet-shell {
    width: min(100%, 378px);
    padding: 10px;
    border-radius: 24px;
  }

  .tablet-shell::before {
    inset: 8px;
    border-radius: 16px;
  }

  .tablet-camera {
    top: 8px;
    width: 42px;
    height: 5px;
  }

  .tablet-screen {
    border-radius: 16px;
  }

}

@media (max-width: 420px) {
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-divider {
    margin: 8px 0 4px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(736px, calc(100% - 56px));
  }

  .page-shell {
    min-height: auto;
    padding-bottom: 34px;
  }

  .ambient--lime {
    inset: -4% -24% auto auto;
    width: 720px;
    height: 720px;
    opacity: 0.84;
  }

  .ambient--white {
    inset: -12% auto auto -28%;
    width: 860px;
    height: 860px;
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 44px 0 30px;
  }

  .brand {
    gap: 18px;
  }

  .brand-copy {
    gap: 6px;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .brand-title {
    font-size: 31px;
    line-height: 1;
  }

  .brand-domain {
    font-size: 18px;
    line-height: 1.2;
  }

  .header-link {
    min-height: 74px;
    padding: 0 32px;
    border-radius: 28px;
    background: rgba(248, 250, 245, 0.94);
    box-shadow: 0 16px 34px rgba(146, 190, 45, 0.08);
    font-size: 18px;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 18px 0 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 26px;
    font-size: 14px;
    letter-spacing: 0.18em;
  }

  .hero-copy h1 {
    max-width: 680px;
    font-size: 82px;
    line-height: 0.94;
  }

  .hero-lead {
    max-width: 668px;
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.52;
    color: #98a1b3;
  }

  .feature-grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 46px;
  }

  .feature-item {
    min-height: 232px;
    padding: 30px 28px 26px;
    border-radius: 34px;
    box-shadow:
      0 20px 38px rgba(16, 24, 40, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .feature-icon {
    width: 68px;
    height: 68px;
    padding: 14px;
    border-radius: 22px;
  }

  .feature-item h2 {
    margin-top: 34px;
    max-width: 10ch;
    font-size: 26px;
    line-height: 1.18;
  }

  .hero-actions {
    display: grid;
    gap: 28px;
    margin-top: 38px;
  }

  .button {
    width: 100%;
    min-height: 102px;
    padding: 0 34px;
    border-radius: 32px;
    font-size: 24px;
  }

  .trust-line {
    justify-content: center;
    gap: 16px;
    font-size: 19px;
    color: #98a1b3;
  }

  .trust-icon {
    width: 30px;
    height: 30px;
  }

  .hero-visual,
  .scroll-down,
  .benefit-strip,
  .modules-section,
  .section-divider,
  .founder-cta {
    display: none !important;
  }

  .founder-section {
    display: block;
    width: 100%;
    max-width: none;
    margin: 48px 0 0;
    padding: 0;
  }

  .founder-card {
    grid-template-columns: 200px minmax(0, 1fr);
    justify-items: stretch;
    gap: 34px;
    align-items: start;
    padding: 36px 32px 34px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 251, 245, 0.98));
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.07);
  }

  .founder-card::after {
    display: none;
  }

  .founder-profile {
    justify-items: start;
    gap: 18px;
  }

  .founder-photo-halo {
    width: 182px;
    height: 182px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .founder-photo-wrap {
    box-shadow: 0 16px 30px rgba(16, 24, 40, 0.12);
  }

  .founder-identity {
    gap: 0;
    text-align: left;
  }

  .founder-identity strong {
    font-size: 16px;
    line-height: 1.35;
  }

  .founder-identity span {
    display: none;
  }

  .founder-note {
    padding: 12px 0 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .founder-tag {
    min-height: 40px;
    padding: 0 18px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .founder-quote {
    margin-top: 24px;
    font-size: 19px;
    line-height: 1.72;
  }

  .founder-quote-text::before,
  .founder-quote-text::after {
    color: #82d629;
    font-size: 1.72rem;
    vertical-align: -0.1em;
  }

  .founder-quote-text::before {
    margin-right: 0.12em;
  }

  .founder-quote-text::after {
    margin-left: 0.06em;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 32px);
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 24px;
  }

  .brand {
    gap: 12px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .brand-title {
    font-size: 24px;
  }

  .brand-domain {
    font-size: 14px;
  }

  .header-link {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 22px;
    font-size: 16px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .feature-grid {
    gap: 16px;
    margin-top: 32px;
  }

  .feature-item {
    min-height: 176px;
    padding: 20px 18px 18px;
    border-radius: 26px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    padding: 10px;
    border-radius: 17px;
  }

  .feature-item h2 {
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 28px;
  }

  .button {
    min-height: 76px;
    border-radius: 24px;
    font-size: 18px;
  }

  .trust-line {
    gap: 12px;
    font-size: 15px;
  }

  .trust-icon {
    width: 24px;
    height: 24px;
  }

  .founder-section {
    margin-top: 34px;
  }

  .founder-card {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 22px;
    padding: 24px 20px;
    border-radius: 28px;
  }

  .founder-photo-halo {
    width: 132px;
    height: 132px;
  }

  .founder-identity strong {
    font-size: 14px;
  }

  .founder-tag {
    min-height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .founder-quote {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.64;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .feature-item {
    min-height: 158px;
    padding: 18px 16px 16px;
    border-radius: 24px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    padding: 9px;
    border-radius: 16px;
  }

  .feature-item h2 {
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-actions {
    gap: 18px;
  }

  .founder-section {
    margin-top: 28px;
  }

  .founder-card {
    grid-template-columns: 152px minmax(0, 1fr);
    gap: 20px;
    padding: 22px 18px 20px;
  }

  .founder-profile {
    gap: 14px;
  }

  .founder-photo-halo {
    width: 144px;
    height: 144px;
  }

  .founder-identity strong {
    font-size: 13px;
  }

  .founder-quote {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.62;
  }

  .founder-quote-text::before,
  .founder-quote-text::after {
    font-size: 1.34rem;
  }
}

@media (max-width: 520px) {
  :root {
    --container: calc(100% - 24px);
  }

  .topbar {
    gap: 14px;
    padding: 20px 0 18px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .brand-title {
    font-size: 21px;
  }

  .brand-domain {
    font-size: 13px;
  }

  .header-link {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.58;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-item {
    min-height: 150px;
    padding: 16px 14px 14px;
    border-radius: 22px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    padding: 8px;
    border-radius: 14px;
  }

  .feature-item h2 {
    margin-top: 16px;
    font-size: 15px;
  }

  .button {
    min-height: 68px;
    font-size: 17px;
  }

  .trust-line {
    font-size: 14px;
  }

  .founder-card {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 16px;
  }

  .founder-profile {
    justify-items: start;
  }

  .founder-identity {
    text-align: left;
  }

  .founder-photo-halo {
    width: 120px;
    height: 120px;
  }

  .founder-tag {
    min-height: 30px;
    padding: 0 12px;
    font-size: 9px;
  }

  .founder-quote {
    font-size: 13px;
    line-height: 1.58;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: 40px;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .founder-profile {
    justify-items: center;
  }

  .founder-identity {
    text-align: center;
  }

  .founder-photo-halo {
    width: 148px;
    height: 148px;
  }
}

body.landing-mobile-layout {
  --container: calc(100% - 24px);
  --radius-xl: 28px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body.landing-mobile-layout .page-shell {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  height: auto;
  padding-bottom: max(0.35rem, calc(env(safe-area-inset-bottom) * 0.42));
  overflow-x: hidden;
  overflow-y: visible;
}

body.landing-mobile-layout .landing-scale-shell {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 100vh;
  min-height: calc(100svh - max(0.35rem, calc(env(safe-area-inset-bottom) * 0.42)));
  min-height: calc(100dvh - max(0.35rem, calc(env(safe-area-inset-bottom) * 0.42)));
  overflow: visible;
}

body.landing-mobile-layout .landing-scale-stage {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  min-width: 0;
  transform: none;
}

@media (orientation: landscape) and (hover: none) and (pointer: coarse) {
  html.landing-real-phone-device body.landing-mobile-landscape-locked {
    overflow: hidden;
  }

  html.landing-real-phone-device body.landing-mobile-landscape-locked .page-shell,
  html.landing-real-phone-device body.landing-mobile-landscape-locked .landing-scale-shell {
    width: min(100vw, 27rem);
    max-width: 27rem;
    margin-left: auto;
    margin-right: auto;
  }

  html.landing-real-phone-device body.landing-mobile-landscape-locked .landing-scale-stage {
    left: auto;
    width: 100%;
    transform: none;
  }
}

body.landing-mobile-layout .topbar {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0 18px;
}

body.landing-mobile-layout .topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background:
    linear-gradient(90deg,
      rgba(101, 113, 124, 0) 0%,
      rgba(101, 113, 124, 0.12) 16%,
      rgba(101, 113, 124, 0.24) 50%,
      rgba(101, 113, 124, 0.12) 84%,
      rgba(101, 113, 124, 0) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

body.landing-mobile-layout .brand {
  gap: 12px;
}

body.landing-mobile-layout .brand-copy {
  gap: 4px;
}

body.landing-mobile-layout .brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

body.landing-mobile-layout .brand-title {
  font-size: 21px;
}

body.landing-mobile-layout .brand-domain {
  font-size: 12px;
}

body.landing-mobile-layout .header-link {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 17px;
  font-size: 14px;
}

body.landing-mobile-layout .hero-card {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 8px 0 0;
}

body.landing-mobile-layout .hero-copy {
  max-width: 100%;
}

body.landing-mobile-layout .eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

body.landing-mobile-layout .hero-copy h1 {
  max-width: 100%;
  font-size: 58px;
  line-height: 0.94;
}

body.landing-mobile-layout .hero-lead {
  max-width: 100%;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #98a1b3;
}

body.landing-mobile-layout .feature-grid {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

body.landing-mobile-layout .feature-item {
  min-height: 154px;
  padding: 16px 16px 14px;
  border-radius: 24px;
}

body.landing-mobile-layout .feature-icon {
  width: 46px;
  height: 46px;
  padding: 9px;
  border-radius: 15px;
}

body.landing-mobile-layout .feature-item h2 {
  margin-top: 16px;
  max-width: 9ch;
  font-size: 16px;
  line-height: 1.22;
}

body.landing-mobile-layout .hero-actions {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

body.landing-mobile-layout .button {
  width: 100%;
  min-height: 70px;
  border-radius: 24px;
  font-size: 18px;
}

body.landing-mobile-layout .trust-line {
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

body.landing-mobile-layout .trust-icon {
  width: 22px;
  height: 22px;
}

body.landing-mobile-layout .hero-visual,
body.landing-mobile-layout .scroll-down,
body.landing-mobile-layout .benefit-strip,
body.landing-mobile-layout .modules-section,
body.landing-mobile-layout .section-divider,
body.landing-mobile-layout .founder-cta {
  display: none !important;
}

body.landing-mobile-layout .founder-section {
  display: block;
  width: 100%;
  max-width: none;
  margin: 24px 0 0;
  padding: 0;
}

body.landing-mobile-layout .founder-card {
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 18px 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 251, 245, 0.98));
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.07);
}

body.landing-mobile-layout .founder-card::after {
  display: none;
}

body.landing-mobile-layout .founder-profile {
  justify-items: start;
  gap: 10px;
}

body.landing-mobile-layout .founder-photo-halo {
  width: 118px;
  height: 118px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

body.landing-mobile-layout .founder-photo-wrap {
  box-shadow: 0 14px 26px rgba(16, 24, 40, 0.12);
}

body.landing-mobile-layout .founder-identity {
  gap: 0;
  text-align: left;
}

body.landing-mobile-layout .founder-identity strong {
  font-size: 11.5px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

body.landing-mobile-layout .founder-identity span {
  display: none;
}

body.landing-mobile-layout .founder-note {
  padding: 4px 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.landing-mobile-layout .founder-tag {
  min-height: 30px;
  padding: 0 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

body.landing-mobile-layout .founder-quote {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.58;
}

body.landing-mobile-layout .founder-quote-text::before,
body.landing-mobile-layout .founder-quote-text::after {
  font-size: 1.28rem;
  vertical-align: -0.08em;
}

/* v20260711: normalize all supported touch phones and tablets to one compact shell,
   visually close to iPhone 14 Pro Max instead of stretching to each device width. */
:root {
  --landing-touch-shell-max-width: 27rem;
  --landing-touch-shell-gutter: .94rem;
}

html.landing-touch-profile-phone-compact {
  --landing-touch-shell-max-width: 25.75rem;
  --landing-touch-shell-gutter: .82rem;
}

html.landing-touch-profile-phone-standard {
  --landing-touch-shell-max-width: 27rem;
  --landing-touch-shell-gutter: .94rem;
}

html.landing-touch-profile-phone-large {
  --landing-touch-shell-max-width: 28.5rem;
  --landing-touch-shell-gutter: 1.02rem;
}

html.landing-touch-profile-tablet-portrait {
  --landing-touch-shell-max-width: 29.75rem;
  --landing-touch-shell-gutter: 1.08rem;
}

html.landing-touch-profile-tablet-landscape {
  --landing-touch-shell-max-width: 31rem;
  --landing-touch-shell-gutter: 1.14rem;
}

body.landing-touch-compact-shell {
  --container: min(calc(100% - (var(--landing-touch-shell-gutter) * 2)), var(--landing-touch-shell-max-width));
}

body.landing-touch-compact-shell .page-shell {
  max-width: calc(var(--landing-touch-shell-max-width) + (var(--landing-touch-shell-gutter) * 2));
  margin-left: auto;
  margin-right: auto;
}

/* v20260711-compact-fold: keep the complete promise line inside the first mobile viewport. */
@media (max-width: 767.98px) and (max-height: 950px) {
  body.landing-mobile-layout .topbar {
    padding-top: 11px;
    padding-bottom: 12px;
  }

  body.landing-mobile-layout .hero-card {
    padding-top: 4px;
  }

  body.landing-mobile-layout .eyebrow {
    margin-bottom: 7px;
  }

  body.landing-mobile-layout .hero-copy h1 {
    font-size: clamp(48px, 13.5vw, 54px);
    line-height: .92;
  }

  body.landing-mobile-layout .hero-lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.38;
  }

  body.landing-mobile-layout .feature-grid {
    gap: 10px;
    margin-top: 19px;
  }

  body.landing-mobile-layout .feature-item {
    min-height: 137px;
    padding: 13px 14px 12px;
    border-radius: 22px;
  }

  body.landing-mobile-layout .feature-icon {
    width: 42px;
    height: 42px;
    padding: 8px;
    border-radius: 14px;
  }

  body.landing-mobile-layout .feature-item h2 {
    margin-top: 12px;
    font-size: 15px;
  }

  body.landing-mobile-layout .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  body.landing-mobile-layout .button {
    min-height: 59px;
    border-radius: 21px;
    font-size: 17px;
  }

  body.landing-mobile-layout .trust-line {
    min-height: 24px;
    font-size: 13px;
    line-height: 1.25;
  }

  body.landing-mobile-layout .trust-icon {
    width: 20px;
    height: 20px;
  }
}

/* v20260711-first-fold: finish every touch/mobile first screen on the trust line. */
@media (max-width: 1366px) {
  body.landing-mobile-layout .hero-card {
    min-height: calc(100dvh - 84px);
  }

  body.landing-mobile-layout .hero-copy {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 88px);
  }

  body.landing-mobile-layout .feature-grid {
    flex: 1 1 auto;
    grid-template-rows: repeat(2, minmax(137px, 1fr));
  }

  body.landing-mobile-layout .hero-actions {
    flex: 0 0 auto;
    margin-top: 18px;
    padding-top: 0;
  }

  body.landing-mobile-layout .trust-line {
    margin-bottom: max(4px, calc(env(safe-area-inset-bottom) * .12));
  }

  body.landing-mobile-layout .founder-section {
    margin-top: 18px;
  }
}

.landing-portrait-guard {
  display: none;
}

@media (orientation: landscape) and (hover: none) and (pointer: coarse) {
  html.landing-mobile-landscape-locked,
  html.landing-mobile-landscape-locked body {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  html.landing-mobile-landscape-locked body > :not(.landing-portrait-guard) {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  html.landing-mobile-landscape-locked .landing-portrait-guard {
    position: fixed;
    z-index: 2147483647;
    inset: 0;
    display: grid;
    place-items: center;
    padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    visibility: visible !important;
    pointer-events: auto !important;
    background:
      radial-gradient(circle at 50% 20%, rgba(141, 214, 44, .2), transparent 38%),
      linear-gradient(145deg, #202a32, #11181e);
  }

  .landing-portrait-guard-card {
    display: grid;
    justify-items: center;
    gap: .45rem;
    width: min(100%, 24rem);
    padding: 1.15rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .landing-portrait-phone {
    color: #8dd62c;
    font-size: 2.25rem;
    line-height: 1;
    transform: rotate(-90deg);
  }

  .landing-portrait-guard-card strong {
    font-size: 1.05rem;
  }

  .landing-portrait-guard-card > span:last-child {
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
