/* Shared public experience: black, white and Growlee green. */
:root {
  --public-bg: var(--growlee-white);
  --public-ink: var(--growlee-black);
  --public-muted: var(--growlee-muted);
  --public-surface: var(--growlee-surface);
  --public-line: var(--growlee-line);
  --public-card: var(--growlee-white);
  --public-green: var(--growlee-green);
  --public-green-dark: var(--growlee-green-dark);
  --public-radius: 16px;
  --public-radius-sm: 8px;
  --public-max: 1320px;
  --green: var(--growlee-green);
  --ink: var(--growlee-black);
  --muted: var(--growlee-muted);
  --line: var(--growlee-line);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.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; }

body.landing-page .section[id] {
  scroll-margin-top: 104px;
}

.public-page {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--public-ink);
  background: var(--public-bg);
  font-family: var(--growlee-font);
  -webkit-font-smoothing: antialiased;
}

.public-main {
  width: min(var(--public-max), calc(100% - 64px));
  margin: 0 auto;
}

.public-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 88px 0 64px;
  text-align: center;
}

.public-hero h1,
.partners-page h1,
.contact-shell h1 {
  margin: 18px 0 20px;
  color: var(--public-ink);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 760;
  line-height: .94;
  letter-spacing: -.07em;
}

.public-hero p,
.partner-hero-copy > p,
.contact-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--public-muted);
  font-size: 19px;
  line-height: 1.6;
}

.public-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--public-green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.public-kicker::before {
  width: 22px;
  height: 2px;
  background: var(--public-green);
  content: "";
}

.public-content { padding-bottom: 24px; }
.info-page .public-content {
  width: min(980px, 100%);
  margin: 0 auto 80px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius);
  background: var(--public-surface);
}
.info-page .public-content h2 { margin: 0 0 12px; color: var(--public-ink); font-size: 32px; letter-spacing: -.04em; }
.info-page .public-content p,
.info-page .public-content li { color: var(--public-muted); line-height: 1.65; }
.info-page .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.info-page .mini { padding: 22px; border: 1px solid var(--public-line); border-radius: var(--public-radius-sm); background: var(--public-card); }

/* Shared header */
.public-page .nav-wrap,
.landing-page .nav-wrap {
  position: sticky !important;
  top: 0;
  z-index: 100;
  padding: 0 !important;
  border-bottom: 1px solid var(--public-line) !important;
  background: color-mix(in srgb, var(--public-bg) 94%, transparent) !important;
  backdrop-filter: blur(18px);
}

.public-page .nav-wrap > .wrap,
.landing-page .nav-wrap > .wrap {
  width: min(var(--public-max), calc(100% - 64px)) !important;
  margin: 0 auto;
}

.public-page .nav,
.landing-page .nav {
  min-height: 74px !important;
  height: 74px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.public-page .brand,
.landing-page .brand { display: inline-flex; align-items: center; min-width: 0; }
.public-page .brand-wordmark,
.landing-page .brand-wordmark { width: 112px !important; max-width: none !important; height: auto !important; display: block; }
.public-page .links,
.landing-page .links { display: flex; align-items: center; gap: 4px; margin-left: auto; font-size: 14px; }
.public-page .links > a:not(.btn),
.landing-page .links > a:not(.btn) {
  padding: 10px 12px !important;
  border-radius: var(--public-radius-sm) !important;
  color: var(--public-muted) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-weight: 650 !important;
  transition: background .18s ease, color .18s ease;
}
.public-page .links > a:not(.btn):hover,
.landing-page .links > a:not(.btn):hover { color: var(--public-ink) !important; background: var(--public-surface) !important; transform: none !important; }
.public-page .links > a:not(.btn)::before,
.public-page .links > a:not(.btn)::after,
.landing-page .links > a:not(.btn)::before,
.landing-page .links > a:not(.btn)::after { display: none !important; }

.public-page .theme-toggle,
.landing-page .theme-toggle,
.public-page .nav-hamburger,
.landing-page .nav-hamburger {
  width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border: 1px solid var(--public-line) !important;
  border-radius: var(--public-radius-sm) !important;
  background: var(--public-card) !important;
  color: var(--public-ink) !important;
  box-shadow: none !important;
  cursor: pointer;
}
.public-page .theme-toggle,
.landing-page .theme-toggle { display: inline-grid !important; place-items: center; }
.public-page .theme-toggle svg,
.landing-page .theme-toggle svg { width: 20px; height: 20px; }
.public-page .nav-hamburger,
.landing-page .nav-hamburger { display: none; }
.public-page .nav-hamburger span,
.landing-page .nav-hamburger span { width: 21px; height: 2px; border-radius: 999px; background: var(--public-ink) !important; }

/* Shared buttons */
.public-page .btn,
.landing-page .btn {
  min-height: 48px;
  padding: 0 20px !important;
  border: 1px solid transparent !important;
  border-radius: var(--public-radius-sm) !important;
  background: var(--public-green) !important;
  color: var(--growlee-black) !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 760 !important;
  letter-spacing: -.01em !important;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.public-page .btn:hover,
.landing-page .btn:hover { background: #05ad5c !important; transform: translateY(-1px) !important; }
.public-page .btn.secondary,
.landing-page .btn.secondary {
  border-color: var(--public-line) !important;
  background: var(--public-card) !important;
  color: var(--public-ink) !important;
}
.public-page .btn.secondary:hover,
.landing-page .btn.secondary:hover { border-color: #bdbdbd !important; background: var(--public-surface) !important; }
.public-page .btn.light,
.landing-page .btn.light { background: var(--growlee-white) !important; color: var(--growlee-black) !important; }

/* Landing hero: restore and elevate the customer phone in light mode. */
body.landing-page .human-hero,
html:not([data-theme="dark"]) body.landing-page .human-hero {
  min-height: 720px !important;
  padding: 54px 0 58px !important;
  overflow: hidden;
  background: var(--public-bg) !important;
  background-image: none !important;
}

html:not([data-theme="dark"]) body.landing-page .human-hero::before { display: none !important; }
body.landing-page .human-hero .hero-grid,
html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(470px, .88fr) !important;
  gap: clamp(42px, 6vw, 92px) !important;
  align-items: center !important;
}

body.landing-page .human-hero h1 {
  max-width: 700px !important;
  margin: 22px 0 20px !important;
  color: var(--public-ink) !important;
  font-size: clamp(52px, 4.7vw, 68px) !important;
  font-weight: 700 !important;
  line-height: .98 !important;
  letter-spacing: -.045em !important;
}

html[data-theme="light"] body.landing-page .human-hero h1,
html[data-theme="dark"] body.landing-page .human-hero h1 {
  font-size: clamp(48px, 4.25vw, 58px) !important;
}

body.landing-page .human-hero h1 .grad {
  color: var(--public-ink) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

body.landing-page .section { padding-top: 76px !important; padding-bottom: 76px !important; }

body.landing-page .human-hero .visual,
html:not([data-theme="dark"]) body.landing-page .human-hero .visual {
  position: relative;
  min-height: 660px !important;
  padding: 18px 26px 0;
  border-radius: 24px;
  background: var(--growlee-black) !important;
  display: grid !important;
  place-items: end center !important;
  opacity: 1;
  overflow: hidden;
}

body.landing-page .human-hero .visual::after {
  position: absolute;
  inset: auto -18% -35% 22%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 193, 103, .38), transparent 65%);
  content: "";
  pointer-events: none;
}

.landing-page .hero-device-label {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 4;
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--public-radius-sm);
  background: rgba(11, 11, 11, .92);
  color: var(--growlee-white);
}
.landing-page .hero-device-label span { color: var(--public-green); font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.landing-page .hero-device-label strong { color: var(--growlee-white); font-size: 15px; font-weight: 650; }
.landing-page .human-hero .gw-stage { min-height: 620px !important; align-self: end; z-index: 2; }
.landing-page .human-hero .gw-phone { width: 318px !important; height: 628px !important; border-radius: 46px !important; background: #050505 !important; box-shadow: 0 32px 80px rgba(0, 0, 0, .52), 0 0 0 1px rgba(255, 255, 255, .15) !important; }
.landing-page .human-hero .gw-screen { border-radius: 37px !important; }

html[data-theme="light"] .landing-page .gw-app-landing,
html[data-theme="dark"] .landing-page .gw-app-landing,
.landing-page .gw-app-landing {
  color: var(--growlee-white) !important;
  border-color: rgba(255, 255, 255, .12) !important;
  background: radial-gradient(circle at 80% 4%, rgba(6, 193, 103, .32), transparent 28%), linear-gradient(155deg, #171717 0%, #0b0b0b 56%, #07331f 100%) !important;
}
html[data-theme="light"] .landing-page .gw-app-landing :where(h1,h2,h3,strong,b),
html[data-theme="dark"] .landing-page .gw-app-landing :where(h1,h2,h3,strong,b),
.landing-page .gw-app-landing :where(h1,h2,h3,strong,b) { color: var(--growlee-white) !important; }
html[data-theme="light"] .landing-page .gw-app-landing :where(p,small,span,.gw-kicker),
html[data-theme="dark"] .landing-page .gw-app-landing :where(p,small,span,.gw-kicker),
.landing-page .gw-app-landing :where(p,small,span,.gw-kicker) { color: rgba(255, 255, 255, .74) !important; }
.landing-page .gw-app-landing .gw-primary-cta,
.landing-page .gw-panel-scene .gw-primary-cta { background: var(--public-green) !important; color: var(--growlee-black) !important; }
.landing-page .gw-progress span i { background: var(--public-green) !important; }
.landing-page .gw-wheel-spin > g > path:nth-of-type(8) { fill: #0b0b0b !important; }
.landing-page .gw-panel-icon { background: var(--growlee-mint) !important; color: var(--public-green-dark) !important; }
.landing-page .gw-choice-row .sel { border-color: var(--public-green) !important; background: var(--growlee-mint) !important; }
.landing-page .gw-live { background: var(--public-green) !important; color: var(--growlee-black) !important; }

/* Landing dark mode mirrors light geometry with neutral inverted surfaces. */
html[data-theme="dark"] {
  --public-bg: #0b0b0b;
  --public-ink: #ffffff;
  --public-muted: #b6b6b6;
  --public-surface: #171717;
  --public-line: #303030;
  --public-card: #171717;
  --ink: #ffffff;
  --muted: #b6b6b6;
  --line: #303030;
  color-scheme: dark;
}

html[data-theme="dark"] body.landing-page,
html[data-theme="dark"] body.public-page { background: var(--public-bg) !important; color: var(--public-ink) !important; }
html[data-theme="dark"] body.landing-page .nav-wrap,
html[data-theme="dark"] body.public-page .nav-wrap { border-color: var(--public-line) !important; background: rgba(11, 11, 11, .96) !important; }
html[data-theme="dark"] body.landing-page .nav,
html[data-theme="dark"] body.public-page .nav { background: transparent !important; }
html[data-theme="dark"] .landing-page > .bg,
html[data-theme="dark"] .landing-page > .ambient { display: none !important; }
html[data-theme="dark"] body.landing-page .human-hero { background: var(--public-bg) !important; }
html[data-theme="dark"] body.landing-page .human-hero .visual { border: 1px solid var(--public-line); background: #151515 !important; }
html[data-theme="dark"] .landing-page .hero h1,
html[data-theme="dark"] .landing-page .hero h1 .grad { color: var(--public-ink) !important; background: none !important; -webkit-text-fill-color: currentColor !important; }
html[data-theme="dark"] .landing-page .hero p,
html[data-theme="dark"] .landing-page .lead { color: var(--public-muted) !important; }
html[data-theme="light"] body.landing-page .btn.primary,
html[data-theme="light"] body.landing-page .hero .actions .btn:first-child,
html[data-theme="light"] body.landing-page .nav .links .btn.primary,
html[data-theme="dark"] body.landing-page .btn.primary,
html[data-theme="dark"] body.landing-page .hero .actions .btn:first-child,
html[data-theme="dark"] body.landing-page .nav .links .btn.primary {
  border-color: var(--public-green) !important;
  background: var(--public-green) !important;
  color: var(--growlee-black) !important;
}
html[data-theme="light"] body.landing-page .btn.secondary,
html[data-theme="dark"] body.landing-page .btn.secondary {
  border-color: var(--public-line) !important;
  background: var(--public-card) !important;
  color: var(--public-ink) !important;
}
html[data-theme="light"] body.landing-page .eyebrow,
html[data-theme="dark"] body.landing-page .eyebrow {
  border-color: color-mix(in srgb, var(--public-green) 28%, var(--public-line)) !important;
  background: color-mix(in srgb, var(--public-green) 10%, var(--public-card)) !important;
  color: var(--public-green-dark) !important;
}
html[data-theme="dark"] body.landing-page .eyebrow { color: var(--public-green) !important; }
html[data-theme="dark"] .landing-page :where(.metric,.overview-card,.process-card,.stat-card,.card:not(.dark),.price-card,.timeline-step,.faq-item,.source-stat,.journey-config,.partner-box,.launch-card) {
  border-color: var(--public-line) !important;
  background: var(--public-card) !important;
  color: var(--public-ink) !important;
  box-shadow: none !important;
}
html[data-theme="dark"] .landing-page :where(.overview-card,.process-card,.stat-card,.card:not(.dark),.price-card,.timeline-step,.faq-item,.source-stat,.journey-config,.partner-box,.launch-card) :where(p,li,small,span,em) { color: var(--public-muted) !important; }
html[data-theme="dark"] .landing-page :where(.section,.premium-overview) { background: transparent !important; }
html[data-theme="dark"] .landing-page .gw-panel-scene { background: linear-gradient(180deg, #191919, #111111) !important; border-color: var(--public-line) !important; }
html[data-theme="dark"] .landing-page .gw-panel-scene :where(h1,h2,h3,strong,b) { color: #fff !important; }
html[data-theme="dark"] .landing-page .gw-panel-scene :where(p,small,span,em) { color: #b8b8b8 !important; }

/* Partners */
.partners-info-page .public-main,
.contact-info-page .public-main { width: min(var(--public-max), calc(100% - 64px)); }
.partners-info-page .public-content,
.contact-info-page .public-content { padding: 0; }
.partners-page { min-width: 0; display: grid; gap: 0; }
.partner-hero,
.contact-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .72fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  padding: 76px 0;
  border-bottom: 1px solid var(--public-line);
}
.partner-hero-copy h1 { max-width: 780px; }
.partner-hero-copy > p { margin-bottom: 30px; }
.partner-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.partner-trust { margin: 18px 0 0 !important; color: var(--public-muted) !important; font-size: 13px !important; }
.partner-offer {
  min-height: 470px;
  padding: clamp(34px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--public-radius);
  background: var(--growlee-black);
  color: var(--growlee-white);
}
.partner-offer-label { margin-bottom: auto; color: var(--public-green); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.partner-offer > strong { color: var(--growlee-white); font-size: clamp(88px, 10vw, 146px); line-height: .78; letter-spacing: -.08em; }
.partner-offer > p { max-width: 380px; margin: 30px 0 36px; color: #c9c9c9; font-size: 18px; line-height: 1.55; }
.partner-offer-total { padding-top: 20px; border-top: 1px solid #3a3a3a; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.partner-offer-total span { color: #a9a9a9; font-size: 13px; }
.partner-offer-total b { color: var(--public-green); font-size: 34px; letter-spacing: -.04em; }

.public-section { min-width: 0; padding: 92px 0; border-bottom: 1px solid var(--public-line); }
.public-section-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(260px, .45fr); gap: 20px 80px; align-items: end; }
.public-section-heading .public-kicker { grid-column: 1 / -1; }
.public-section-heading h2,
.partner-section-card h2,
.partner-application-copy h2,
.contact-form-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--public-ink);
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
}
.public-section-heading > p,
.partner-application-copy > p,
.contact-form-heading > p { margin: 0; color: var(--public-muted); font-size: 17px; line-height: 1.6; }

.gain-table-wrap { width: 100%; max-width: 100%; margin-top: 48px; overflow-x: auto; overscroll-behavior-inline: contain; }
.gain-table { width: 100%; border-collapse: collapse; color: var(--public-ink); }
.gain-table th,
.gain-table td { padding: 22px 18px; border-bottom: 1px solid var(--public-line); text-align: left; }
.gain-table thead th { color: var(--public-muted); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.gain-table tbody th { font-size: 18px; }
.gain-table tbody td { color: var(--public-muted); font-size: 17px; }
.gain-table tbody td:last-child strong { color: var(--public-green-dark); font-size: 22px; }
.gain-table tbody tr:hover { background: var(--public-surface); }

.partner-detail-grid { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--public-line); }
.partner-section-card { min-width: 0; padding: 92px clamp(36px, 6vw, 78px) 92px 0; }
.partner-section-card + .partner-section-card { padding-right: 0; padding-left: clamp(36px, 6vw, 78px); border-left: 1px solid var(--public-line); }
.partner-section-card .public-kicker { margin-bottom: 22px; }
.steps-list,
.conditions { display: grid; gap: 0; margin: 38px 0 0; padding: 0; }
.steps-list { counter-reset: partner-step; }
.steps-list li,
.conditions li { position: relative; list-style: none; padding: 20px 0 20px 54px; border-top: 1px solid var(--public-line); color: var(--public-muted); line-height: 1.55; }
.steps-list li::before { position: absolute; left: 0; top: 18px; counter-increment: partner-step; content: "0" counter(partner-step); color: var(--public-green-dark); font-size: 13px; font-weight: 800; }
.steps-list li span { color: var(--public-ink); font-weight: 750; }
.conditions li::before { position: absolute; left: 0; top: 17px; color: var(--public-green); font-size: 20px; font-weight: 900; content: "✓"; }

.partner-application,
.contact-form-section { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 8vw, 120px); align-items: start; }
.partner-application-copy,
.contact-form-heading { position: sticky; top: 120px; }
.partner-application-copy .public-kicker,
.contact-form-heading .public-kicker { margin-bottom: 22px; }
.partner-application-copy > p,
.contact-form-heading > p { margin-top: 24px; }
.application-proof,
.contact-assurance { margin-top: 34px; padding: 20px 0; border-top: 1px solid var(--public-line); display: grid; gap: 6px; }
.application-proof strong,
.contact-assurance strong { color: var(--public-ink); }
.application-proof span,
.contact-assurance span { color: var(--public-muted); font-size: 14px; line-height: 1.5; }
.partner-form-shell,
.contact-form-shell { padding: clamp(26px, 4vw, 48px); border-radius: var(--public-radius); background: var(--public-surface); }
.partner-form,
.contact-form { display: grid; gap: 20px; margin: 0; }
.pf-grid,
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partner-form label,
.field { display: grid; gap: 9px; color: var(--public-ink); font-size: 13px; font-weight: 750; }
.partner-form input,
.partner-form textarea,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid var(--public-line);
  border-radius: var(--public-radius-sm);
  outline: none;
  background: var(--public-card);
  color: var(--public-ink);
  box-shadow: none;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.partner-form textarea,
.field textarea { min-height: 150px; resize: vertical; }
.partner-form input:focus,
.partner-form textarea:focus,
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--public-green); box-shadow: 0 0 0 3px color-mix(in srgb, var(--public-green) 18%, transparent); }
.field .is-invalid { border-color: var(--growlee-danger); }
.field .is-valid { border-color: var(--public-green-dark); }
.partner-form .btn,
.contact-form .btn { width: 100%; }
.partner-form button[disabled],
.contact-form button[disabled] { cursor: not-allowed; opacity: .48; }
.success-message,
.form-status { display: none; margin: 0 0 18px; padding: 16px; border: 1px solid color-mix(in srgb, var(--public-green) 35%, var(--public-line)); border-radius: var(--public-radius-sm); background: var(--growlee-mint); color: var(--public-green-dark); font-weight: 700; }
.success-message.visible { display: block; }
.form-status.error { border-color: #efc6c2; background: #fff0ef; color: #8f1d14; }

/* Contact */
.contact-hero { grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr); }
.contact-copy h1 { max-width: 760px; }
.contact-copy > p { margin-bottom: 28px; }
.contact-email { display: inline-flex; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--public-line); color: var(--public-ink); font-weight: 750; }
.contact-email svg { width: 20px; height: 20px; color: var(--public-green-dark); }
.contact-process { padding: clamp(32px, 5vw, 58px); border-radius: var(--public-radius); background: var(--growlee-black); color: var(--growlee-white); }
.contact-process-heading { display: grid; gap: 14px; padding-bottom: 34px; border-bottom: 1px solid #383838; }
.contact-process-heading span { color: var(--public-green); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-process-heading strong { max-width: 430px; color: var(--growlee-white); font-size: 30px; line-height: 1.08; letter-spacing: -.035em; }
.contact-highlights { display: grid; gap: 0; margin: 0; padding: 0; }
.contact-highlights li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 24px 0; border-bottom: 1px solid #383838; list-style: none; }
.contact-highlights li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-highlights b { color: var(--public-green); font-size: 13px; }
.contact-highlights strong { display: block; color: var(--growlee-white); font-size: 17px; }
.contact-highlights span { display: block; margin-top: 5px; color: #aaa; font-size: 14px; line-height: 1.45; }
.contact-consent { display: flex; align-items: flex-start; gap: 11px; color: var(--public-muted); font-size: 13px; font-weight: 500; line-height: 1.45; }
.contact-consent input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--public-green); }
.spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(0, 0, 0, .25); border-top-color: var(--growlee-black); border-radius: 50%; animation: public-spin .7s linear infinite; }
@keyframes public-spin { to { rotate: 360deg; } }

.contact-options { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 80px; }
.contact-option { min-height: 330px; padding: clamp(34px, 5vw, 58px); display: flex; flex-direction: column; align-items: flex-start; background: var(--public-green); color: var(--growlee-black); }
.contact-option:first-child { border-radius: var(--public-radius) 0 0 var(--public-radius); }
.contact-option:last-child { border-radius: 0 var(--public-radius) var(--public-radius) 0; }
.contact-option-dark { background: var(--growlee-black); color: var(--growlee-white); }
.contact-option > span { font-size: 13px; font-weight: 750; }
.contact-option > strong { max-width: 480px; margin: 18px 0 auto; color: inherit; font-size: clamp(32px, 4vw, 52px); line-height: 1; letter-spacing: -.05em; }
.contact-option .btn { margin-top: 36px; }
.contact-option:not(.contact-option-dark) .btn.secondary { border-color: rgba(0, 0, 0, .22) !important; background: transparent !important; }

#toast-container { position: fixed; right: 24px; bottom: 24px; z-index: 9999; display: grid; gap: 8px; }
.toast { min-width: 280px; max-width: 380px; padding: 14px 16px; border-radius: var(--public-radius-sm); background: var(--growlee-black); color: var(--growlee-white); box-shadow: var(--growlee-shadow-md); display: flex; align-items: center; gap: 12px; opacity: 0; transform: translateY(16px); transition: .2s ease; }
.toast.visible { opacity: 1; transform: none; }
.toast-success { border-left: 4px solid var(--public-green); }
.toast-error { border-left: 4px solid #ef4444; }
.toast button { margin-left: auto; border: 0; background: transparent; color: inherit; font-size: 20px; cursor: pointer; }

/* Shared dark surfaces for public information pages. */
html[data-theme="dark"] .public-page :where(.info-page .public-content,.mini,.partner-form-shell,.contact-form-shell) { border-color: var(--public-line); background: var(--public-surface); color: var(--public-ink); }
html[data-theme="dark"] .public-page :where(input,select,textarea) { border-color: var(--public-line); background: #111; color: var(--public-ink); }
html[data-theme="dark"] .public-page :where(input,textarea)::placeholder { color: #777; }
html[data-theme="dark"] .public-page .gain-table tbody tr:hover { background: #151515; }
html[data-theme="dark"] .public-page .gain-table tbody td:last-child strong { color: var(--public-green); }
html[data-theme="dark"] .public-page .form-status.error { border-color: #72362f; background: #2b1513; color: #ffb4ac; }
html[data-theme="dark"] .public-page .success-message { border-color: #155d39; background: #10291e; color: #8be0b5; }
html[data-theme="dark"] .contact-option:not(.contact-option-dark) { background: var(--public-green); color: var(--growlee-black); }

/* Footer */
.public-page .site-footer,
.landing-page .site-footer {
  margin-top: 72px !important;
  padding: 56px 0 32px !important;
  border-radius: 0 !important;
  background: var(--growlee-black) !important;
  color: var(--growlee-white) !important;
  box-shadow: 0 0 0 100vmax var(--growlee-black) !important;
  clip-path: inset(0 -100vmax);
  text-align: left !important;
}
.public-page .footer-grid,
.landing-page .footer-grid { width: min(var(--public-max), calc(100% - 64px)) !important; margin: 0 auto; display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 32px; }
.public-page .site-footer p,
.landing-page .site-footer p { margin: 0 0 10px; color: #aaa !important; line-height: 1.55; }
.public-page .site-footer a,
.landing-page .site-footer a { display: block; margin: 8px 0; color: #bdbdbd !important; }
.public-page .site-footer a:hover,
.landing-page .site-footer a:hover { color: var(--growlee-white) !important; }
.public-page .site-footer strong,
.landing-page .site-footer strong { display: block; margin-bottom: 12px; color: var(--growlee-white) !important; }
.public-page .footer-bottom,
.landing-page .footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 16px; padding-top: 22px; margin-top: 10px; border-top: 1px solid #343434; color: #8b8b8b; }

@media (max-width: 1100px) {
  body.landing-page .human-hero .hero-grid,
  html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr) !important; gap: 36px !important; }
  .landing-page .human-hero .gw-phone { width: 292px !important; height: 590px !important; }
  .partner-hero,
  .contact-hero { grid-template-columns: 1fr minmax(360px, .78fr); gap: 48px; }
}

@media (max-width: 900px) {
  .public-main,
  .partners-info-page .public-main,
  .contact-info-page .public-main,
  .public-page .nav-wrap > .wrap,
  .landing-page .nav-wrap > .wrap,
  .public-page .footer-grid,
  .landing-page .footer-grid { width: min(100% - 40px, var(--public-max)) !important; }
  body.landing-page .human-hero .hero-grid,
  html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid { grid-template-columns: 1fr !important; }
  body.landing-page .human-hero .visual,
  html:not([data-theme="dark"]) body.landing-page .human-hero .visual { width: 100%; max-width: 620px; margin: 0 auto; }
  .partner-hero,
  .contact-hero { grid-template-columns: 1fr; min-height: 0; }
  .partner-offer { min-height: 410px; }
  .partner-detail-grid { grid-template-columns: 1fr; }
  .partner-section-card,
  .partner-section-card + .partner-section-card { padding: 68px 0; border-left: 0; }
  .partner-section-card + .partner-section-card { border-top: 1px solid var(--public-line); }
  .partner-application,
  .contact-form-section { grid-template-columns: 1fr; }
  .partner-application-copy,
  .contact-form-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 767px) {
  .public-page .nav-wrap > .wrap,
  .landing-page .nav-wrap > .wrap { width: min(100% - 28px, var(--public-max)) !important; }
  .public-page .nav,
  .landing-page .nav { position: relative; height: 66px !important; min-height: 66px !important; }
  .public-page .brand-wordmark,
  .landing-page .brand-wordmark { width: 104px !important; }
  .public-page .nav-hamburger,
  .landing-page .nav-hamburger { display: grid !important; place-items: center; gap: 4px; }
  .public-page .links,
  .landing-page .links,
  .public-page #publicNav,
  .landing-page #publicNav {
    position: fixed !important;
    top: 76px !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 1001 !important;
    max-height: calc(100dvh - 92px) !important;
    margin: 0 !important;
    padding: 12px !important;
    overflow: auto;
    border: 1px solid var(--public-line) !important;
    border-radius: 12px !important;
    background: var(--public-card) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2) !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .public-page .nav.menu-open .links,
  .public-page .nav.menu-open #publicNav,
  .landing-page .nav.menu-open .links,
  .landing-page .nav.menu-open #publicNav { opacity: 1 !important; visibility: visible !important; transform: none !important; pointer-events: auto !important; }
  .public-page .links > a:not(.btn),
  .landing-page .links > a:not(.btn),
  .public-page .links .btn,
  .landing-page .links .btn,
  .public-page .links .theme-toggle,
  .landing-page .links .theme-toggle { width: 100% !important; min-height: 48px !important; justify-content: center; }
  .public-page .links > a:not(.btn),
  .landing-page .links > a:not(.btn) { background: var(--public-surface) !important; color: var(--public-ink) !important; }
  .public-page.public-menu-open,
  .landing-page.public-menu-open { overflow: hidden !important; }
  .public-page .nav.menu-open .nav-hamburger span:nth-child(1),
  .landing-page .nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .public-page .nav.menu-open .nav-hamburger span:nth-child(2),
  .landing-page .nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .public-page .nav.menu-open .nav-hamburger span:nth-child(3),
  .landing-page .nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

@media (max-width: 680px) {
  .public-main,
  .partners-info-page .public-main,
  .contact-info-page .public-main,
  .public-page .footer-grid,
  .landing-page .footer-grid { width: min(100% - 28px, var(--public-max)) !important; }
  .public-hero { padding: 58px 0 42px; text-align: left; }
  .public-hero h1,
  .partners-page h1,
  .contact-shell h1 { margin-top: 16px; font-size: clamp(43px, 13vw, 62px); line-height: .96; }
  .public-hero p,
  .partner-hero-copy > p,
  .contact-copy > p { font-size: 17px; }
  .info-page .public-content { margin-bottom: 42px; padding: 24px; }
  .info-page .grid,
  .pf-grid,
  .form-grid,
  .public-section-heading,
  .contact-options { grid-template-columns: 1fr; }
  .public-section-heading .public-kicker { grid-column: auto; }
  body.landing-page .human-hero,
  html:not([data-theme="dark"]) body.landing-page .human-hero { min-height: 0 !important; padding: 38px 0 42px !important; }
  body.landing-page .human-hero .visual,
  html:not([data-theme="dark"]) body.landing-page .human-hero .visual { min-height: 630px !important; padding-inline: 8px; border-radius: 18px; }
  .landing-page .hero-device-label { top: 20px; left: 20px; }
  .landing-page .hero-device-label strong { font-size: 13px; }
  html[data-theme="light"] body.landing-page .human-hero h1,
  html[data-theme="dark"] body.landing-page .human-hero h1 { font-size: clamp(42px, 12vw, 52px) !important; }
  .landing-page .human-hero .gw-stage { min-height: 580px !important; margin-top: 50px; }
  .landing-page .human-hero .gw-phone { width: min(276px, 82vw) !important; height: 560px !important; }
  .partner-hero,
  .contact-hero { gap: 42px; padding: 54px 0; }
  .partner-actions { display: grid; }
  .partner-offer { min-height: 380px; padding: 28px; }
  .partner-offer > strong { font-size: 96px; }
  .public-section { padding: 64px 0; }
  .public-section-heading h2,
  .partner-section-card h2,
  .partner-application-copy h2,
  .contact-form-heading h2 { font-size: 40px; }
  .gain-table { min-width: 560px; }
  .partner-section-card,
  .partner-section-card + .partner-section-card { padding: 58px 0; }
  .partner-form-shell,
  .contact-form-shell { margin-inline: -14px; padding: 22px 14px; border-radius: 12px; }
  .contact-process { padding: 28px 22px; }
  .contact-options { margin-bottom: 48px; }
  .contact-option { min-height: 280px; padding: 30px 24px; }
  .contact-option:first-child,
  .contact-option:last-child { border-radius: var(--public-radius); }
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; }
  #toast-container { right: 14px; bottom: 14px; left: 14px; }
  .toast { min-width: 0; max-width: none; }
}

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

/* Landing admin-aligned refresh. Keep this block last: older landing styles are intentionally layered. */
body.landing-page {
  --public-bg: #f7f7f5;
  --public-ink: #0a0a0a;
  --public-muted: #5f6368;
  --public-surface: #ffffff;
  --public-soft: #f0f0ee;
  --public-line: #dedede;
  --public-card: #ffffff;
  --public-green: #06c167;
  --public-green-dark: #048848;
  --public-radius: 12px;
  --public-radius-sm: 8px;
  --public-max: 1320px;
  min-width: 0;
  color: var(--public-ink) !important;
  background: var(--public-bg) !important;
  font-family: var(--growlee-font) !important;
}

body.landing-page,
body.landing-page :where(h1, h2, h3, h4, p, a, button, input, textarea, select, span, strong, small, li, label, summary) {
  letter-spacing: 0 !important;
}

body.landing-page :where(button, input, textarea, select) {
  font-family: inherit !important;
}

body.landing-page > main {
  background: var(--public-bg);
}

body.landing-page .reveal,
body.landing-page .animate-on-scroll,
body.landing-page .animate-on-scroll.visible,
body.landing-page .animate-on-scroll.in {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

body.landing-page .wrap,
body.landing-page .nav-wrap > .wrap,
body.landing-page .footer-grid {
  width: min(var(--public-max), calc(100% - 64px)) !important;
}

body.landing-page .nav-wrap {
  border-bottom: 1px solid var(--public-line) !important;
  background: color-mix(in srgb, var(--public-bg) 94%, transparent) !important;
}

body.landing-page .nav {
  min-height: 72px !important;
  height: 72px !important;
}

body.landing-page .brand-wordmark {
  width: 118px !important;
}

body.landing-page .links {
  gap: 6px !important;
}

body.landing-page .links > a:not(.btn) {
  border-radius: 8px !important;
  color: var(--public-muted) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  text-decoration: none !important;
}

body.landing-page .links > a:not(.btn):hover {
  color: var(--public-ink) !important;
  background: var(--public-soft) !important;
}

body.landing-page .btn,
body.landing-page .iso-cta,
body.landing-page .demo-btn {
  min-height: 46px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .14s ease !important;
}

body.landing-page .btn:active,
body.landing-page .iso-cta:active,
body.landing-page .demo-btn:active,
body.landing-page .persona-chip:active,
body.landing-page .faq-question:active {
  transform: scale(.98) !important;
}

body.landing-page .btn.primary,
body.landing-page .btn.magnetic,
body.landing-page .nav .links .btn.primary,
body.landing-page .hero .actions .btn.primary,
body.landing-page .iso-cta,
body.landing-page .demo-btn {
  border-color: var(--public-green) !important;
  background: var(--public-green) !important;
  color: var(--growlee-black) !important;
}

body.landing-page .btn.primary:hover,
body.landing-page .btn.magnetic:hover,
body.landing-page .nav .links .btn.primary:hover,
body.landing-page .hero .actions .btn.primary:hover {
  background: #05ad5c !important;
}

body.landing-page .btn.secondary,
body.landing-page .nav .links .btn.secondary,
body.landing-page .hero .actions .btn.secondary {
  border-color: var(--public-line) !important;
  background: var(--public-card) !important;
  color: var(--public-ink) !important;
}

body.landing-page .btn.secondary:hover {
  border-color: #bdbdbd !important;
  background: var(--public-soft) !important;
}

body.landing-page .theme-toggle,
body.landing-page .nav-hamburger {
  border-radius: 8px !important;
}

body.landing-page .human-hero,
html:not([data-theme="dark"]) body.landing-page .human-hero {
  min-height: 0 !important;
  padding: clamp(42px, 5vw, 72px) 0 clamp(46px, 6vw, 78px) !important;
  border-bottom: 1px solid var(--public-line);
  background: var(--public-bg) !important;
  overflow: visible !important;
}

body.landing-page .human-hero .hero-grid,
html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
  grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr) !important;
  gap: clamp(36px, 5vw, 82px) !important;
  align-items: center !important;
}

body.landing-page .hero-badge-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
}

body.landing-page .eyebrow,
body.landing-page .tag,
body.landing-page .free-badge,
body.landing-page .merchant-story-kicker {
  display: inline-flex !important;
  align-items: center !important;
  width: max-content !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--public-green-dark) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
}

body.landing-page .eyebrow::before {
  width: 18px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: var(--public-green) !important;
  box-shadow: none !important;
}

body.landing-page .live-chip {
  min-height: 28px !important;
  padding: 6px 9px !important;
  border: 1px solid var(--public-line) !important;
  border-radius: 8px !important;
  background: var(--public-card) !important;
  color: var(--public-muted) !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  box-shadow: none !important;
}

body.landing-page .human-hero h1,
html[data-theme="light"] body.landing-page .human-hero h1,
html[data-theme="dark"] body.landing-page .human-hero h1 {
  max-width: 720px !important;
  margin: 0 0 20px !important;
  color: var(--public-ink) !important;
  font-size: clamp(50px, 4.8vw, 72px) !important;
  font-weight: 760 !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

body.landing-page .human-hero h1 .grad {
  color: var(--public-green-dark) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

body.landing-page .human-hero .reveal > p {
  max-width: 650px !important;
  margin: 0 0 28px !important;
  color: var(--public-muted) !important;
  font-size: 18px !important;
  line-height: 1.62 !important;
}

body.landing-page .hero .actions {
  gap: 10px !important;
  margin: 0 0 26px !important;
}

body.landing-page .metrics {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  max-width: 640px !important;
  margin: 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid var(--public-line) !important;
}

body.landing-page .metric {
  min-width: 0 !important;
  padding: 0 18px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
}

body.landing-page .metric + .metric {
  padding-left: 18px !important;
  border-left: 1px solid var(--public-line) !important;
}

body.landing-page .metric strong {
  display: block !important;
  color: var(--public-ink) !important;
  font-size: 18px !important;
  font-weight: 760 !important;
}

body.landing-page .metric small {
  display: block !important;
  margin-top: 5px !important;
  color: var(--public-muted) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

body.landing-page .human-hero .visual,
html:not([data-theme="dark"]) body.landing-page .human-hero .visual {
  min-height: 500px !important;
  padding: 28px !important;
  border: 1px solid #202020 !important;
  border-radius: 12px !important;
  background: radial-gradient(circle at 76% 86%, rgba(6, 193, 103, .24), transparent 30%), #0a0a0a !important;
  box-shadow: none !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

body.landing-page .human-hero .visual::after {
  opacity: .62 !important;
}

body.landing-page .hero-device-label {
  top: 24px !important;
  left: 24px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.landing-page .hero-device-label span {
  color: var(--public-green) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

body.landing-page .hero-device-label strong {
  color: #f7f7f5 !important;
  font-size: 15px !important;
  font-weight: 650 !important;
}

body.landing-page .gw-stage[hidden],
body.landing-page .journey-preview[hidden] {
  display: none !important;
}

body.landing-page .landing-static-preview {
  width: min(100%, 640px);
  margin-top: 58px;
  color: #ffffff;
  display: grid;
  gap: 18px;
}

body.landing-page .landing-static-head {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

body.landing-page .landing-static-head span,
body.landing-page .journey-static-label {
  color: var(--public-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

body.landing-page .landing-static-head strong {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 760;
  line-height: 1.06;
  text-wrap: balance;
}

body.landing-page .landing-static-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.landing-page .landing-static-grid div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
}

body.landing-page .landing-static-grid b {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 760;
}

body.landing-page .landing-static-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.5;
}

body.landing-page .landing-static-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(6, 193, 103, .34);
  border-radius: 999px;
  color: #c9f7de;
  background: rgba(6, 193, 103, .10);
  font-size: 13px;
  font-weight: 760;
}

body.landing-page .landing-static-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--public-green);
}

body.landing-page .human-hero .gw-stage {
  width: min(100%, 430px) !important;
  min-height: 586px !important;
  margin: 0 auto !important;
  animation: none !important;
}

body.landing-page .human-hero .gw-phone {
  width: 300px !important;
  height: 592px !important;
  border-radius: 42px !important;
  transform: none !important;
  animation: none !important;
}

body.landing-page .human-hero .gw-screen {
  border-radius: 34px !important;
}

body.landing-page .gw-scene {
  transform: none !important;
  text-align: left !important;
}

body.landing-page .gw-scene h3 {
  max-width: 240px !important;
  margin-inline: 0 !important;
  font-size: 22px !important;
  line-height: 1.08 !important;
  text-align: left !important;
}

body.landing-page .gw-scene p {
  max-width: 240px !important;
  margin-inline: 0 !important;
  font-size: 12.5px !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

body.landing-page .gw-app-landing p,
body.landing-page .gw-app-landing .gw-kicker,
body.landing-page .gw-app-landing .gw-chips span {
  color: rgba(255, 255, 255, .78) !important;
}

html[data-theme="light"] body.landing-page .gw-app-landing p,
html:not([data-theme="dark"]) body.landing-page .gw-app-landing p,
html[data-theme="dark"] body.landing-page .gw-app-landing p {
  color: rgba(255, 255, 255, .78) !important;
}

body.landing-page .gw-app-landing .gw-kicker,
body.landing-page .gw-app-landing .gw-chips span {
  border-color: rgba(255, 255, 255, .16) !important;
  background: rgba(255, 255, 255, .12) !important;
}

@keyframes gwScene {
  0%, 24% { opacity: 1; transform: none; }
  28%, 100% { opacity: 0; transform: none; }
}

body.landing-page .section {
  padding-top: clamp(62px, 7vw, 96px) !important;
  padding-bottom: clamp(62px, 7vw, 96px) !important;
  border-top: 1px solid var(--public-line);
  background: var(--public-bg) !important;
  box-shadow: none !important;
}

body.landing-page .hero + .section,
body.landing-page main > section:first-child {
  border-top: 0;
}

body.landing-page .section::before,
body.landing-page .section h2::after {
  display: none !important;
}

body.landing-page .section h2,
body.landing-page .overview-head h2,
body.landing-page .partner-copy h2,
body.landing-page .launch-copy h2 {
  color: var(--public-ink) !important;
  font-size: clamp(34px, 4.2vw, 58px) !important;
  font-weight: 760 !important;
  line-height: 1.04 !important;
  text-wrap: balance;
}

body.landing-page .lead,
body.landing-page .overview-head p,
body.landing-page .launch-copy p,
body.landing-page .partner-copy p {
  color: var(--public-muted) !important;
  font-size: 17px !important;
  line-height: 1.66 !important;
}

body.landing-page :where(.card, .overview-card, .process-card, .price-card, .timeline-step, .faq-item, .stat-card, .source-stat, .launch-card, .partner-hero, .partner-revenue-grid > div) {
  border: 1px solid var(--public-line) !important;
  border-radius: 12px !important;
  background: var(--public-card) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.landing-page :where(.card, .overview-card, .process-card, .price-card, .timeline-step, .stat-card, .source-stat, .launch-card)::before,
body.landing-page :where(.card, .overview-card, .process-card, .price-card, .timeline-step, .stat-card, .source-stat, .launch-card)::after {
  display: none !important;
}

body.landing-page :where(.card, .overview-card, .process-card, .price-card, .timeline-step, .stat-card, .launch-card) {
  padding: 24px !important;
}

body.landing-page :where(.card, .overview-card, .process-card, .launch-card) h3 {
  color: var(--public-ink) !important;
  font-size: 21px !important;
  font-weight: 720 !important;
  line-height: 1.22 !important;
}

body.landing-page :where(.card, .overview-card, .process-card, .launch-card) p {
  color: var(--public-muted) !important;
  line-height: 1.58 !important;
}

body.landing-page .icon,
body.landing-page .overview-card > span,
body.landing-page .process-card > b,
body.landing-page .launch-card > span,
body.landing-page .timeline-step > b {
  border: 1px solid color-mix(in srgb, var(--public-green) 30%, var(--public-line)) !important;
  border-radius: 8px !important;
  background: color-mix(in srgb, var(--public-green) 10%, var(--public-card)) !important;
  color: var(--public-green-dark) !important;
  box-shadow: none !important;
}

body.landing-page #parcours {
  display: grid;
  gap: 24px;
}

body.landing-page #parcours > h2,
body.landing-page #parcours > .lead {
  max-width: 920px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

body.landing-page #parcours > .lead {
  margin-bottom: 8px !important;
}

body.landing-page #parcours .process {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  overflow: hidden;
  border: 1px solid var(--public-line);
  border-radius: 12px;
  background: var(--public-card);
}

body.landing-page #parcours .process-card {
  min-height: 210px !important;
  padding: 26px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.landing-page #parcours .process-card + .process-card {
  border-left: 1px solid var(--public-line) !important;
}

body.landing-page #parcours .process-card b {
  width: auto !important;
  height: auto !important;
  padding: 4px 8px !important;
  font-size: 12px !important;
}

body.landing-page #parcours .source-stat {
  width: min(760px, 100%);
  margin: 8px auto 0 !important;
  padding: 24px !important;
  display: grid !important;
  grid-template-columns: 150px minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: center !important;
}

body.landing-page #parcours .source-stat-figure {
  color: var(--public-ink) !important;
  font-size: clamp(44px, 6vw, 68px) !important;
  font-weight: 760 !important;
}

body.landing-page #personnalisation > div:first-child {
  max-width: 920px !important;
  margin: 0 0 34px !important;
  text-align: left !important;
}

body.landing-page #personnalisation > div:first-child .lead {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

body.landing-page .journey-demo {
  display: grid !important;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr) !important;
  gap: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--public-line) !important;
  border-radius: 12px !important;
  background: var(--public-card) !important;
  box-shadow: none !important;
  overflow: hidden !important;
  font-family: var(--growlee-font) !important;
}

body.landing-page .journey-config {
  order: 1 !important;
  padding: 28px !important;
  border: 0 !important;
  border-right: 1px solid var(--public-line) !important;
  border-radius: 0 !important;
  background: var(--public-card) !important;
  box-shadow: none !important;
  font-family: var(--growlee-font) !important;
}

body.landing-page .config-head .tag {
  margin-bottom: 18px !important;
  padding: 0 !important;
  color: var(--public-green-dark) !important;
}

body.landing-page .config-head strong {
  margin: 0 0 10px !important;
  color: var(--public-ink) !important;
  font-family: var(--growlee-font) !important;
  font-size: 26px !important;
  font-weight: 760 !important;
  line-height: 1.16 !important;
  word-spacing: .08em;
}

body.landing-page .config-head p,
body.landing-page .config-note {
  color: var(--public-muted) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

body.landing-page .persona-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.landing-page .persona-chip,
body.landing-page .quick-settings > div,
body.landing-page .module-toggles span,
body.landing-page .journey-steps span {
  border: 1px solid var(--public-line) !important;
  border-radius: 10px !important;
  background: var(--public-card) !important;
  color: var(--public-ink) !important;
  box-shadow: none !important;
  font-family: var(--growlee-font) !important;
}

body.landing-page .persona-chip {
  min-height: 104px !important;
  padding: 12px !important;
}

body.landing-page .persona-chip b,
body.landing-page .quick-settings strong {
  color: var(--public-ink) !important;
  font-family: var(--growlee-font) !important;
  font-weight: 720 !important;
}

body.landing-page .persona-chip small,
body.landing-page .quick-settings small {
  color: var(--public-muted) !important;
}

body.landing-page .persona-chip.is-active,
body.landing-page .module-toggles span.on,
body.landing-page .journey-steps span.is-active {
  border-color: color-mix(in srgb, var(--public-green) 55%, var(--public-line)) !important;
  background: color-mix(in srgb, var(--public-green) 10%, var(--public-card)) !important;
  color: var(--public-green-dark) !important;
}

body.landing-page .journey-preview {
  order: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(284px, 350px) minmax(150px, 220px) !important;
  gap: 22px !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  padding: 28px !important;
  background: var(--public-bg) !important;
  overflow: hidden !important;
}

body.landing-page .journey-static-summary {
  order: 2 !important;
  min-width: 0 !important;
  padding: 28px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-content: center !important;
  background: var(--public-bg) !important;
}

body.landing-page .journey-static-card {
  min-width: 0;
  min-height: 184px;
  padding: 22px;
  border: 1px solid var(--public-line);
  border-radius: 12px;
  background: var(--public-card);
  box-shadow: none;
}

body.landing-page .journey-static-card h3,
body.landing-page .journey-static-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--public-ink);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.12;
}

body.landing-page .journey-static-card p {
  margin: 0;
  color: var(--public-muted);
  font-size: 15px;
  line-height: 1.55;
}

body.landing-page .journey-static-swatches {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

body.landing-page .journey-static-swatches span {
  width: 28px;
  height: 28px;
  border: 1px solid var(--public-line);
  border-radius: 999px;
}

body.landing-page .journey-static-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

body.landing-page .journey-static-tags span {
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--public-green) 30%, var(--public-line));
  border-radius: 999px;
  color: var(--public-green-dark);
  background: color-mix(in srgb, var(--public-green) 10%, var(--public-card));
  font-size: 13px;
  font-weight: 760;
}

body.landing-page .journey-wallet-summary {
  color: #ffffff;
  border-color: #202020;
  background: #0a0a0a;
}

body.landing-page .journey-wallet-summary strong {
  color: #ffffff;
}

body.landing-page .journey-wallet-summary p {
  color: rgba(255, 255, 255, .68);
}

body.landing-page .iso-phone {
  width: min(334px, 100%) !important;
  height: 670px !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  border-width: 8px !important;
  border-radius: 42px !important;
  background: #080a12 !important;
  box-shadow: 0 24px 56px rgba(10, 10, 10, .18) !important;
  transform: none !important;
  overflow: hidden !important;
}

body.landing-page .iso-app,
body.landing-page .iso-screen {
  height: 100% !important;
  min-height: 0 !important;
}

body.landing-page .iso-screen {
  padding: 28px 14px 14px !important;
  overflow: hidden !important;
}

body.landing-page .iso-app,
body.landing-page .iso-panel,
body.landing-page .journey-config,
body.landing-page .journey-steps,
body.landing-page .quick-settings,
body.landing-page .persona-chip {
  font-family: var(--growlee-font) !important;
}

body.landing-page .iso-state {
  min-height: 0 !important;
  overflow: hidden !important;
}

body.landing-page .iso-hero {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 18px !important;
  border-radius: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  color: #ffffff !important;
}

body.landing-page .journey-demo[data-persona] .iso-hero h3,
body.landing-page .iso-hero h3 {
  color: #ffffff !important;
  font-family: var(--growlee-font) !important;
  font-size: 23px !important;
  font-weight: 760 !important;
  line-height: 1.12 !important;
  text-transform: none !important;
  opacity: 1 !important;
}

body.landing-page .iso-hero p {
  color: rgba(255, 255, 255, .78) !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
}

body.landing-page .iso-cta {
  margin-top: auto !important;
}

body.landing-page .iso-signature {
  width: auto !important;
  max-width: 100% !important;
}

body.landing-page .iso-signature b {
  color: rgba(255, 255, 255, .82) !important;
  white-space: normal !important;
}

body.landing-page .iso-quiz-game {
  width: 100% !important;
  max-width: 280px !important;
  margin: 12px auto !important;
}

body.landing-page .iso-quiz-game b,
body.landing-page .iso-quiz-game span {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .12) !important;
}

body.landing-page .iso-quiz-game b {
  font-size: 12px !important;
}

body.landing-page .iso-quiz-game span {
  font-size: 11.5px !important;
}

body.landing-page .iso-panel {
  max-height: none !important;
  margin: 0 !important;
  padding: 18px !important;
  border-radius: 28px !important;
  color: #172033 !important;
  overflow: hidden !important;
}

body.landing-page .iso-panel h3 {
  color: #172033 !important;
  font-family: var(--growlee-font) !important;
  font-size: 21px !important;
  font-weight: 760 !important;
  line-height: 1.12 !important;
  text-transform: none !important;
}

body.landing-page .iso-panel p,
body.landing-page .iso-panel label,
body.landing-page .iso-summary small {
  color: #667085 !important;
}

body.landing-page .journey-steps {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  align-self: center !important;
}

body.landing-page .journey-steps span {
  min-height: 54px !important;
  padding: 11px 12px !important;
  font-size: 15px !important;
  font-weight: 720 !important;
}

body.landing-page .journey-steps span b {
  width: 26px !important;
  height: 26px !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--public-green) 12%, var(--public-card)) !important;
  color: var(--public-green-dark) !important;
}

body.landing-page .journey-benefits {
  gap: 16px !important;
  margin-top: 18px !important;
}

body.landing-page .card.dark,
body.landing-page .demo-card,
body.landing-page .partner-highlight,
body.landing-page .conversion-card,
body.landing-page .band {
  border: 1px solid #202020 !important;
  border-radius: 12px !important;
  background: #0a0a0a !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.landing-page .site-footer {
  margin-top: 0 !important;
  background: #0a0a0a !important;
  box-shadow: 0 0 0 100vmax #0a0a0a !important;
}

html[data-theme="dark"] body.landing-page {
  --public-bg: #0b0b0b;
  --public-ink: #ffffff;
  --public-muted: #b8b8b8;
  --public-surface: #151515;
  --public-soft: #202020;
  --public-line: #303030;
  --public-card: #151515;
  color-scheme: dark;
}

html[data-theme="dark"] body.landing-page .human-hero .visual {
  background: radial-gradient(circle at 76% 86%, rgba(6, 193, 103, .18), transparent 30%), #101010 !important;
}

html[data-theme="dark"] body.landing-page .journey-preview {
  background: #101010 !important;
}

html[data-theme="dark"] body.landing-page .iso-panel {
  background: linear-gradient(180deg, #1c1c1c, #151515) !important;
  color: #ffffff !important;
}

html[data-theme="dark"] body.landing-page .iso-panel h3,
html[data-theme="dark"] body.landing-page .iso-panel strong,
html[data-theme="dark"] body.landing-page .iso-summary strong,
html[data-theme="dark"] body.landing-page .config-head strong,
html[data-theme="dark"] body.landing-page .persona-chip b,
html[data-theme="dark"] body.landing-page .quick-settings strong {
  color: #ffffff !important;
}

html[data-theme="dark"] body.landing-page .iso-panel p,
html[data-theme="dark"] body.landing-page .iso-panel label,
html[data-theme="dark"] body.landing-page .iso-summary small {
  color: #b8b8b8 !important;
}

@media (max-width: 1180px) {
  body.landing-page .human-hero .hero-grid,
  html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(450px, .92fr) !important;
    gap: 36px !important;
  }

  body.landing-page .journey-demo {
    grid-template-columns: 1fr !important;
  }

  body.landing-page .journey-config {
    border-right: 0 !important;
    border-bottom: 1px solid var(--public-line) !important;
  }
}

@media (max-width: 900px) {
  body.landing-page .wrap,
  body.landing-page .nav-wrap > .wrap,
  body.landing-page .footer-grid {
    width: min(100% - 40px, var(--public-max)) !important;
  }

  body.landing-page .human-hero .hero-grid,
  html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
    grid-template-columns: 1fr !important;
  }

  body.landing-page .human-hero .visual,
  html:not([data-theme="dark"]) body.landing-page .human-hero .visual {
    width: 100%;
    max-width: 640px;
    min-height: 0 !important;
    margin: 0 auto !important;
  }

  body.landing-page #parcours .process {
    grid-template-columns: 1fr 1fr !important;
  }

  body.landing-page #parcours .process-card + .process-card {
    border-left: 0 !important;
  }

  body.landing-page #parcours .process-card:nth-child(even) {
    border-left: 1px solid var(--public-line) !important;
  }

  body.landing-page #parcours .process-card:nth-child(n + 3) {
    border-top: 1px solid var(--public-line) !important;
  }

  body.landing-page .journey-preview {
    grid-template-columns: 1fr !important;
  }

  body.landing-page .journey-static-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.landing-page .journey-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
  }

  body.landing-page .journey-steps span {
    display: grid !important;
    place-items: center !important;
    gap: 5px !important;
    min-height: 58px !important;
    padding: 8px 6px !important;
    text-align: center !important;
    font-size: 12px !important;
  }
}

@media (max-width: 680px) {
  body.landing-page .section[id] {
    scroll-margin-top: 82px;
  }

  body.landing-page .wrap,
  body.landing-page .nav-wrap > .wrap,
  body.landing-page .footer-grid {
    width: min(100% - 28px, var(--public-max)) !important;
  }

  body.landing-page .human-hero,
  html:not([data-theme="dark"]) body.landing-page .human-hero {
    padding: 34px 0 42px !important;
  }

  body.landing-page .hero-badge-row {
    display: grid !important;
    justify-items: start !important;
    gap: 8px !important;
  }

  body.landing-page .human-hero h1,
  html[data-theme="light"] body.landing-page .human-hero h1,
  html[data-theme="dark"] body.landing-page .human-hero h1 {
    font-size: clamp(39px, 11vw, 52px) !important;
    line-height: 1.02 !important;
  }

  body.landing-page .human-hero .reveal > p {
    font-size: 16px !important;
  }

  body.landing-page .hero .actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.landing-page .hero .actions .btn {
    width: 100% !important;
  }

  body.landing-page .metrics {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding-top: 16px !important;
  }

  body.landing-page .metric,
  body.landing-page .metric + .metric {
    padding: 0 !important;
    border-left: 0 !important;
  }

  body.landing-page .human-hero .visual,
  html:not([data-theme="dark"]) body.landing-page .human-hero .visual {
    min-height: 0 !important;
    padding: 18px 10px 0 !important;
    border-radius: 12px !important;
  }

  body.landing-page .hero-device-label {
    top: 18px !important;
    left: 18px !important;
  }

  body.landing-page .hero-device-label strong {
    font-size: 13px !important;
  }

  body.landing-page .human-hero .gw-stage {
    min-height: 530px !important;
    margin-top: 34px !important;
  }

  body.landing-page .human-hero .gw-phone {
    width: min(256px, 76vw) !important;
    height: 512px !important;
  }

  body.landing-page .gw-scene h3 {
    font-size: 19px !important;
  }

  body.landing-page .gw-scene p {
    font-size: 11px !important;
  }

  body.landing-page .section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  body.landing-page .section h2,
  body.landing-page .overview-head h2,
  body.landing-page .partner-copy h2,
  body.landing-page .launch-copy h2 {
    font-size: clamp(31px, 9vw, 40px) !important;
    text-align: left !important;
  }

  body.landing-page .lead,
  body.landing-page .overview-head p,
  body.landing-page .launch-copy p,
  body.landing-page .partner-copy p {
    font-size: 15.5px !important;
    text-align: left !important;
  }

  body.landing-page #parcours .process {
    grid-template-columns: 1fr !important;
  }

  body.landing-page #parcours .process-card {
    min-height: 0 !important;
  }

  body.landing-page #parcours .process-card:nth-child(even) {
    border-left: 0 !important;
  }

  body.landing-page #parcours .process-card + .process-card {
    border-top: 1px solid var(--public-line) !important;
  }

  body.landing-page #parcours .source-stat {
    grid-template-columns: 1fr !important;
  }

  body.landing-page #personnalisation > div:first-child {
    margin-bottom: 22px !important;
  }

  body.landing-page .journey-config {
    padding: 20px !important;
  }

  body.landing-page .journey-preview {
    padding: 18px 12px !important;
  }

  body.landing-page .landing-static-preview {
    margin-top: 54px;
  }

  body.landing-page .landing-static-grid,
  body.landing-page .journey-static-summary {
    grid-template-columns: 1fr !important;
  }

  body.landing-page .landing-static-grid div,
  body.landing-page .journey-static-card {
    min-height: 0;
  }

  body.landing-page .journey-static-summary {
    padding: 18px 12px !important;
  }

  body.landing-page .persona-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  body.landing-page .persona-chip {
    min-height: 86px !important;
    justify-items: center !important;
    text-align: center !important;
  }

  body.landing-page .persona-chip b {
    font-size: 13px !important;
  }

  body.landing-page .persona-chip small {
    font-size: 11px !important;
  }

  body.landing-page .quick-settings,
  body.landing-page .config-note,
  body.landing-page .module-toggles {
    display: none !important;
  }

  body.landing-page .iso-phone {
    width: min(278px, 82vw) !important;
    height: 568px !important;
    border-radius: 36px !important;
  }

  body.landing-page .iso-screen {
    padding: 26px 10px 10px !important;
  }

  body.landing-page .iso-top {
    transform: scale(.92) !important;
    transform-origin: center top !important;
    margin-bottom: 6px !important;
  }

  body.landing-page .iso-labels {
    display: none !important;
  }

  body.landing-page .iso-hero,
  body.landing-page .iso-panel {
    padding: 13px !important;
    border-radius: 22px !important;
  }

  body.landing-page .journey-demo[data-persona] .iso-hero h3,
  body.landing-page .iso-hero h3 {
    font-size: 20px !important;
  }

  body.landing-page .iso-hero p {
    font-size: 11.5px !important;
  }

  body.landing-page .iso-quiz-game b,
  body.landing-page .iso-quiz-game span {
    padding: 8px !important;
    font-size: 10.5px !important;
  }

  body.landing-page .journey-steps {
    gap: 6px !important;
  }

  body.landing-page .journey-steps span {
    min-height: 48px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 390px) {
  body.landing-page .human-hero .gw-phone {
    width: min(236px, 78vw) !important;
    height: 482px !important;
  }

  body.landing-page .iso-phone {
    width: min(252px, 84vw) !important;
    height: 518px !important;
  }

  body.landing-page .persona-grid {
    grid-template-columns: 1fr !important;
  }

  body.landing-page .journey-steps {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Myli x Uber Eats inspired landing pass. */
body.landing-page .hero-copy {
  min-width: 0;
}

body.landing-page .human-hero .product-visual,
html:not([data-theme="dark"]) body.landing-page .human-hero .product-visual {
  min-height: 506px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

body.landing-page .product-canvas {
  position: relative;
  width: min(100%, 740px);
  min-height: 506px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid #171717;
  border-radius: 8px;
  background: #070707;
  color: #ffffff;
  box-shadow: none;
  isolation: isolate;
}

body.landing-page .product-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 34%);
  pointer-events: none;
}

body.landing-page .admin-preview {
  position: relative;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 382px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #0d0d0d;
  overflow: hidden;
}

body.landing-page .admin-preview-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, .10);
  background: #070707;
}

body.landing-page .admin-preview-sidebar img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

body.landing-page .admin-preview-sidebar span {
  margin: -38px 0 14px 38px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 760;
}

body.landing-page .admin-preview-sidebar b {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 650;
}

body.landing-page .admin-preview-sidebar b:first-of-type {
  color: #ffffff;
  background: rgba(6, 193, 103, .14);
}

body.landing-page .admin-preview-main {
  display: grid;
  grid-template-rows: auto auto minmax(110px, 1fr) auto;
  gap: 18px;
  padding: 22px;
}

body.landing-page .admin-preview-top,
body.landing-page .admin-preview-kpis,
body.landing-page .admin-preview-list {
  min-width: 0;
}

body.landing-page .admin-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.landing-page .admin-preview-top strong {
  color: #ffffff;
  font-size: 20px;
  font-weight: 760;
}

body.landing-page .admin-preview-top span {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  color: rgba(255,255,255,.70);
  font-size: 11px;
}

body.landing-page .admin-preview-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.landing-page .admin-preview-kpis div,
body.landing-page .admin-preview-list,
body.landing-page .review-mini-card,
body.landing-page .wallet-mini-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

body.landing-page .admin-preview-kpis div {
  min-height: 94px;
  padding: 14px;
}

body.landing-page .admin-preview-kpis span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  line-height: 1.3;
}

body.landing-page .admin-preview-kpis strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 760;
}

body.landing-page .admin-preview-kpis em {
  color: var(--public-green);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

body.landing-page .admin-preview-chart {
  display: flex;
  align-items: end;
  gap: 16px;
  min-height: 120px;
  padding: 22px 26px 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

body.landing-page .admin-preview-chart span {
  flex: 1;
  min-width: 18px;
  border-radius: 4px 4px 0 0;
  background: var(--public-green);
}

body.landing-page .admin-preview-chart span:nth-child(1) { height: 46%; }
body.landing-page .admin-preview-chart span:nth-child(2) { height: 66%; }
body.landing-page .admin-preview-chart span:nth-child(3) { height: 54%; }
body.landing-page .admin-preview-chart span:nth-child(4) { height: 74%; }
body.landing-page .admin-preview-chart span:nth-child(5) { height: 92%; }

body.landing-page .admin-preview-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

body.landing-page .admin-preview-list span {
  padding: 10px 12px;
  color: rgba(255,255,255,.72);
  font-size: 11.5px;
}

body.landing-page .admin-preview-list span + span {
  border-top: 1px solid rgba(255,255,255,.08);
}

body.landing-page .customer-phone {
  position: absolute;
  right: 56px;
  bottom: 52px;
  z-index: 3;
  width: 150px;
  min-height: 270px;
  padding: 16px 12px;
  border: 7px solid #0a0a0a;
  border-radius: 32px;
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 18px 42px rgba(0,0,0,.38);
  text-align: center;
}

body.landing-page .phone-status {
  margin-bottom: 20px;
  color: #111111;
  font-size: 10px;
  font-weight: 760;
  text-align: left;
}

body.landing-page .customer-phone strong {
  display: block;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 760;
}

body.landing-page .customer-phone p {
  margin: 4px 0 14px;
  color: #4f4f4f;
  font-size: 11px;
}

body.landing-page .reward-tile {
  display: grid;
  place-items: center;
  min-height: 82px;
  margin-bottom: 14px;
  border: 1px solid rgba(6,193,103,.42);
  border-radius: 8px;
  color: #047a42;
  background: rgba(6,193,103,.08);
  font-size: 12px;
  font-weight: 760;
}

body.landing-page .customer-phone a {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 8px;
  color: #0a0a0a;
  background: var(--public-green);
  font-size: 11px;
  font-weight: 760;
}

body.landing-page .wallet-mini-card {
  position: absolute;
  right: 8px;
  bottom: 74px;
  z-index: 2;
  width: 134px;
  min-height: 188px;
  padding: 16px;
  color: #ffffff;
  background: #111111;
}

body.landing-page .wallet-mini-card strong,
body.landing-page .wallet-mini-card span,
body.landing-page .wallet-mini-card b {
  display: block;
}

body.landing-page .wallet-mini-card strong {
  color: var(--public-green);
  font-size: 16px;
  font-weight: 760;
}

body.landing-page .wallet-mini-card span {
  margin: 6px 0 16px;
  color: rgba(255,255,255,.74);
  font-size: 11px;
}

body.landing-page .wallet-mini-card b {
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
}

body.landing-page .mini-qr {
  width: 72px;
  height: 72px;
  margin-top: 18px;
  border: 7px solid #ffffff;
  background:
    linear-gradient(90deg, #111 50%, transparent 0) 0 0 / 14px 14px,
    linear-gradient(#111 50%, transparent 0) 0 0 / 14px 14px,
    #ffffff;
}

body.landing-page .review-mini-card {
  position: absolute;
  right: 50px;
  bottom: -18px;
  z-index: 4;
  width: 190px;
  padding: 14px 16px;
  color: #0a0a0a;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
}

body.landing-page .review-mini-card strong {
  display: block;
  color: #0a0a0a;
  font-size: 12px;
}

body.landing-page .review-mini-card span {
  display: block;
  margin: 8px 0;
  color: #f4b400;
  letter-spacing: 2px !important;
}

body.landing-page .review-mini-card b {
  color: var(--public-green-dark);
  font-size: 11px;
}

body.landing-page .landing-compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-top: 1px solid var(--public-line);
  border-bottom: 1px solid var(--public-line);
  background: var(--public-bg);
}

body.landing-page .compare-pane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  min-height: 284px;
  padding: clamp(34px, 5vw, 58px) clamp(28px, 5vw, 72px);
}

body.landing-page .compare-before {
  border-right: 1px solid var(--public-line);
}

body.landing-page .compare-pane h3 {
  margin: 0 0 8px;
  color: var(--public-ink);
  font-size: 28px;
  font-weight: 760;
  line-height: 1.1;
}

body.landing-page .compare-after h3 {
  color: var(--public-green-dark);
}

body.landing-page .compare-pane p {
  margin: 0 0 24px;
  color: var(--public-muted);
  font-size: 15px;
  line-height: 1.5;
}

body.landing-page .compare-pane ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.landing-page .compare-pane li {
  position: relative;
  padding-left: 32px;
  color: var(--public-muted);
  font-size: 14px;
  line-height: 1.45;
}

body.landing-page .compare-pane li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  content: "×";
  color: #ffffff;
  background: #5f6368;
  font-size: 13px;
  font-weight: 800;
}

body.landing-page .compare-after li::before {
  content: "✓";
  background: var(--public-green);
  color: #0a0a0a;
}

body.landing-page .compare-arrow {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 -26px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--public-green-dark);
  font-size: 24px;
  font-weight: 760;
}

body.landing-page .compare-shop {
  position: relative;
  width: 190px;
  height: 148px;
  justify-self: center;
}

body.landing-page .compare-shop::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 92px;
  border: 3px solid currentColor;
  border-top: 0;
  color: #9aa0a6;
}

body.landing-page .compare-shop::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 12px;
  height: 38px;
  border: 3px solid currentColor;
  border-radius: 10px 10px 22px 22px;
  color: #9aa0a6;
  background: linear-gradient(90deg, transparent 0 20%, currentColor 20% 22%, transparent 22% 42%, currentColor 42% 44%, transparent 44% 64%, currentColor 64% 66%, transparent 66%);
}

body.landing-page .compare-shop span {
  position: absolute;
  left: 76px;
  bottom: 0;
  width: 36px;
  height: 54px;
  border: 3px solid currentColor;
  border-bottom: 0;
  color: #9aa0a6;
}

body.landing-page .compare-shop.is-active {
  color: var(--public-green);
}

body.landing-page .compare-shop.is-active::before,
body.landing-page .compare-shop.is-active::after,
body.landing-page .compare-shop.is-active span {
  color: var(--public-green);
}

body.landing-page .compare-shop.is-active::before {
  box-shadow: 0 0 0 18px rgba(6,193,103,.08);
}

body.landing-page .module-section > .section-label {
  margin-inline: auto !important;
}

body.landing-page .module-strip {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 34px;
  border-top: 1px solid var(--public-line);
  border-bottom: 1px solid var(--public-line);
}

body.landing-page .module-strip .card {
  min-height: 246px;
  padding: 28px !important;
  border: 0 !important;
  border-right: 1px solid var(--public-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: center;
}

body.landing-page .module-strip .card:last-child {
  border-right: 0 !important;
}

body.landing-page .module-strip .card.is-active {
  border-radius: 8px !important;
  background: #0a0a0a !important;
  color: #ffffff !important;
}

body.landing-page .module-strip .card.is-active h3 {
  color: #ffffff !important;
}

body.landing-page .module-strip .card.is-active p {
  color: rgba(255,255,255,.72) !important;
}

body.landing-page .module-strip .icon {
  margin: 0 auto 20px;
}

body.landing-page .module-strip .card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--public-green-dark);
  font-size: 14px;
  font-weight: 760;
}

body.landing-page .module-strip .card.is-active a {
  color: var(--public-green);
}

body.landing-page .pricing-simple {
  text-align: center;
}

body.landing-page .pricing-simple .section-label {
  margin: 0 auto 18px !important;
}

body.landing-page .pricing-simple .lead {
  margin-bottom: 46px !important;
  text-align: center !important;
}

body.landing-page .pricing-simple .pricing-steps {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  max-width: 1040px;
  margin: 0 auto !important;
  border: 0 !important;
}

body.landing-page .pricing-simple .pricing-steps::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 25px;
  height: 3px;
  background: var(--public-green);
}

body.landing-page .pricing-simple .timeline-step {
  position: relative;
  min-height: 230px;
  padding: 0 32px !important;
  border: 0 !important;
  border-right: 1px solid var(--public-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: center;
}

body.landing-page .pricing-simple .timeline-step:last-child {
  border-right: 0 !important;
}

body.landing-page .pricing-simple .timeline-step b {
  display: grid;
  place-items: center;
  width: 52px !important;
  height: 52px !important;
  margin: 0 auto 48px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: var(--public-green-dark) !important;
  font-size: 19px !important;
}

body.landing-page .pricing-simple .timeline-step strong {
  display: block;
  color: var(--public-ink);
  font-size: clamp(32px, 4.2vw, 54px) !important;
  font-weight: 780 !important;
  line-height: .98 !important;
}

body.landing-page .pricing-simple .timeline-step span {
  display: block;
  max-width: 250px;
  margin: 16px auto 0;
  color: var(--public-muted);
  font-size: 15px;
  line-height: 1.45;
}

body.landing-page .pricing-action {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 28px;
}

body.landing-page .pricing-action .btn {
  min-width: 278px;
}

body.landing-page .pricing-action p {
  margin: 0;
  color: var(--public-muted);
  font-size: 14px;
}

body.landing-page .band {
  align-items: center !important;
}

body.landing-page .band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

body.landing-page .band-actions .btn {
  min-width: 188px;
}

body.landing-page .eyebrow::before,
body.landing-page .tag::before,
body.landing-page .free-badge::before,
body.landing-page .merchant-story-kicker::before,
body.landing-page .section-label::before {
  display: none !important;
  content: none !important;
}

body.landing-page .section-label {
  display: flex !important;
  justify-content: center !important;
  gap: 0 !important;
  width: max-content !important;
}

body.landing-page .module-section > .section-label,
body.landing-page .pricing-simple > .section-label {
  margin: 0 auto 18px !important;
}

@media (max-width: 1180px) {
  body.landing-page .admin-preview {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  body.landing-page .customer-phone {
    right: 38px;
  }

  body.landing-page .wallet-mini-card {
    display: none;
  }
}

@media (max-width: 900px) {
  body.landing-page .product-canvas {
    margin-inline: auto;
  }

  body.landing-page .landing-compare {
    grid-template-columns: 1fr;
  }

  body.landing-page .compare-before {
    border-right: 0;
    border-bottom: 1px solid var(--public-line);
  }

  body.landing-page .compare-arrow {
    margin: -26px auto;
    transform: rotate(90deg);
  }

  body.landing-page .module-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border: 1px solid var(--public-line);
  }

  body.landing-page .module-strip .card {
    border-right: 1px solid var(--public-line) !important;
    border-bottom: 1px solid var(--public-line) !important;
  }

  body.landing-page .module-strip .card:nth-child(even) {
    border-right: 0 !important;
  }

  body.landing-page .module-strip .card:nth-child(n + 3) {
    border-bottom: 0 !important;
  }
}

@media (max-width: 680px) {
  body.landing-page .human-hero .product-visual,
  html:not([data-theme="dark"]) body.landing-page .human-hero .product-visual {
    max-width: none !important;
    padding: 0 !important;
  }

  body.landing-page .product-canvas {
    min-height: 0;
    padding: 12px;
  }

  body.landing-page .admin-preview {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.landing-page .admin-preview-sidebar {
    display: none;
  }

  body.landing-page .admin-preview-main {
    padding: 16px;
  }

  body.landing-page .admin-preview-kpis {
    grid-template-columns: 1fr;
  }

  body.landing-page .admin-preview-chart {
    min-height: 90px;
    padding: 18px 14px 0;
  }

  body.landing-page .customer-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(220px, 72vw);
    min-height: 240px;
    margin: 14px auto 0;
  }

  body.landing-page .review-mini-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 12px;
  }

  body.landing-page .compare-pane {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 20px;
  }

  body.landing-page .compare-shop {
    width: 160px;
    height: 128px;
  }

  body.landing-page .module-strip {
    grid-template-columns: 1fr !important;
  }

  body.landing-page .module-strip .card,
  body.landing-page .module-strip .card:nth-child(even),
  body.landing-page .module-strip .card:nth-child(n + 3) {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--public-line) !important;
  }

  body.landing-page .module-strip .card:last-child {
    border-bottom: 0 !important;
  }

  body.landing-page .pricing-simple .pricing-steps {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  body.landing-page .pricing-simple .pricing-steps::before {
    display: none;
  }

  body.landing-page .pricing-simple .timeline-step,
  body.landing-page .pricing-simple .timeline-step:last-child {
    min-height: 0;
    padding: 22px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--public-line) !important;
  }

  body.landing-page .pricing-simple .timeline-step:last-child {
    border-bottom: 0 !important;
  }

  body.landing-page .pricing-simple .timeline-step b {
    margin-bottom: 18px !important;
  }

  body.landing-page .pricing-action .btn {
    width: 100%;
    min-width: 0;
  }

  body.landing-page .band-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  body.landing-page .band-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Myli-aligned Growlee refinement. */
body.landing-page {
  --myli-line: #dde4df;
  --myli-mint: #eafff4;
  --myli-panel: #ffffff;
  background: #ffffff !important;
}

body.landing-page .ambient,
body.landing-page .ambient.two {
  display: none !important;
}

body.landing-page .human-hero,
html:not([data-theme="dark"]) body.landing-page .human-hero {
  min-height: 720px !important;
  padding: 84px 0 48px !important;
  background: #ffffff !important;
}

body.landing-page .human-hero .hero-grid,
html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
  grid-template-columns: minmax(420px, .82fr) minmax(560px, 1.18fr) !important;
  align-items: center !important;
  gap: 64px !important;
}

body.landing-page .hero-copy {
  max-width: 650px;
}

body.landing-page .human-hero h1,
html[data-theme="light"] body.landing-page .human-hero h1,
html[data-theme="dark"] body.landing-page .human-hero h1 {
  max-width: 650px !important;
  color: #050505 !important;
  font-size: 72px !important;
  font-weight: 820 !important;
  line-height: .96 !important;
  letter-spacing: 0 !important;
}

body.landing-page .human-hero h1 .grad {
  display: inline;
  color: #050505 !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

body.landing-page .human-hero .reveal > p:not(.hero-proofline) {
  max-width: 520px !important;
  margin-top: 24px !important;
  color: #1f2723 !important;
  font-size: 17px !important;
  line-height: 1.62 !important;
}

body.landing-page .human-hero .actions {
  margin-top: 30px !important;
}

body.landing-page .hero-proofline {
  max-width: 520px;
  margin: 24px 0 0 !important;
  color: #5b625e !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

body.landing-page .human-hero .btn,
body.landing-page .nav .btn {
  border-radius: 6px !important;
}

body.landing-page .product-canvas {
  width: min(100%, 760px) !important;
  min-height: 506px !important;
  padding: 0 !important;
  border: 1px solid #101010 !important;
  border-radius: 8px !important;
  background: #101010 !important;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .12) !important;
}

body.landing-page .product-canvas::before {
  display: none !important;
}

body.landing-page .admin-preview.myli-product-board {
  grid-template-columns: 156px minmax(0, 1fr);
  min-height: 506px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
}

body.landing-page .myli-product-board .admin-preview-sidebar {
  gap: 10px;
  padding: 22px 14px;
  background: #121212;
}

body.landing-page .myli-product-board .admin-preview-sidebar b {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

body.landing-page .myli-product-board .admin-preview-sidebar b:first-of-type {
  color: var(--public-green);
  background: rgba(6, 193, 103, .12);
}

body.landing-page .myli-board-main {
  grid-template-rows: auto auto 1fr !important;
  gap: 18px !important;
  padding: 24px 154px 24px 24px !important;
  background: #ffffff;
}

body.landing-page .myli-board-main .admin-preview-top strong {
  color: #111111;
}

body.landing-page .myli-board-main .admin-preview-top span {
  border-color: #d9dfda;
  color: #505751;
  background: #ffffff;
}

body.landing-page .myli-board-main .admin-preview-kpis div {
  border-color: #dfe5e1;
  background: #ffffff;
}

body.landing-page .myli-board-main .admin-preview-kpis span {
  color: #4f5a53;
}

body.landing-page .myli-board-main .admin-preview-kpis strong {
  color: #111111;
  font-size: 24px;
}

body.landing-page .myli-board-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #dfe5e1;
  border-radius: 8px;
  background: #ffffff;
}

body.landing-page .myli-board-compare > div {
  display: grid;
  gap: 13px;
  min-width: 0;
  padding: 20px;
}

body.landing-page .myli-board-compare > div + div {
  border-left: 1px solid #dfe5e1;
  background: #f5fff9;
}

body.landing-page .myli-board-compare strong {
  color: #101010;
  font-size: 15px;
  font-weight: 760;
}

body.landing-page .myli-board-compare div + div strong {
  color: var(--public-green-dark);
}

body.landing-page .myli-board-compare span {
  position: relative;
  padding-left: 26px;
  color: #535d56;
  font-size: 12px;
  line-height: 1.35;
}

body.landing-page .myli-board-compare span::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid #9aa29c;
  border-radius: 999px;
  color: #5f6862;
  font-size: 11px;
  font-weight: 760;
}

body.landing-page .myli-board-compare div + div span::before {
  content: "✓";
  border-color: var(--public-green);
  color: #ffffff;
  background: var(--public-green);
}

body.landing-page .customer-phone {
  right: 18px !important;
  bottom: 24px !important;
  width: 118px !important;
  min-height: 238px !important;
  padding: 14px 10px !important;
  border-width: 6px !important;
  border-radius: 28px !important;
}

body.landing-page .customer-phone .phone-qr {
  width: 58px;
  height: 58px;
  margin: 12px auto;
  border-width: 5px;
}

body.landing-page .customer-phone .reward-tile {
  min-height: 64px;
  padding: 7px;
  font-size: 10px;
}

body.landing-page .wallet-mini-card {
  display: none !important;
}

body.landing-page .review-mini-card {
  display: none !important;
}

body.landing-page .landing-compare {
  border-color: var(--myli-line) !important;
  background: #ffffff !important;
}

body.landing-page .compare-after {
  background: linear-gradient(90deg, #f3fff8, #ffffff);
}

body.landing-page .compare-pane {
  min-height: 310px;
}

body.landing-page .module-section h2,
body.landing-page .myli-sectors h2 {
  max-width: 940px;
  margin-inline: auto;
  color: #070707;
  font-size: 42px !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

body.landing-page .module-section .lead {
  max-width: 720px;
  margin-inline: auto;
  color: #5a625d;
}

body.landing-page .myli-tool-strip {
  gap: 28px !important;
  border: 0 !important;
}

body.landing-page .myli-tool-strip .card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 360px;
  padding: 28px 26px !important;
  border: 1px solid var(--myli-line) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  text-align: left !important;
}

body.landing-page .myli-tool-strip .card.is-active {
  border-color: #111111 !important;
  background: #111111 !important;
}

body.landing-page .myli-tool-strip .icon {
  margin: 0 0 24px !important;
  color: var(--public-green-dark) !important;
  background: #eafff4 !important;
  border: 1px solid rgba(6, 193, 103, .22) !important;
}

body.landing-page .myli-tool-strip .icon .svg-icon {
  color: currentColor !important;
  stroke: currentColor !important;
}

body.landing-page .myli-tool-strip .card h3 {
  margin-bottom: 10px;
  color: #0d0d0d;
  font-size: 22px;
}

body.landing-page .myli-tool-strip .card p {
  color: #555f59;
  font-size: 14px;
  line-height: 1.55;
}

body.landing-page .module-mini {
  align-self: end;
  display: grid;
  gap: 8px;
  min-height: 118px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid var(--myli-line);
  border-radius: 8px;
  background: #ffffff;
}

body.landing-page .module-mini strong,
body.landing-page .module-mini span,
body.landing-page .module-mini small {
  display: block;
}

body.landing-page .module-mini strong {
  color: #0f1512;
  font-size: 12px;
}

body.landing-page .module-mini span {
  color: var(--public-green-dark);
  font-size: 19px;
  font-weight: 800;
}

body.landing-page .module-mini small {
  color: #626b65;
  font-size: 11px;
  line-height: 1.35;
}

body.landing-page .module-review span {
  color: #f4b400 !important;
  letter-spacing: 2px !important;
}

body.landing-page .module-wallet {
  color: #ffffff;
  border-color: #222222;
  background: #111111;
}

body.landing-page .module-wallet strong,
body.landing-page .module-wallet span,
body.landing-page .module-wallet small {
  color: #ffffff !important;
}

body.landing-page .myli-sectors {
  text-align: center;
}

body.landing-page .myli-sector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--myli-line);
  border-bottom: 1px solid var(--myli-line);
}

body.landing-page .myli-sector-grid article {
  min-height: 162px;
  padding: 38px 24px;
  border-right: 1px solid var(--myli-line);
}

body.landing-page .myli-sector-grid article:last-child {
  border-right: 0;
}

body.landing-page .myli-sector-grid span {
  display: block;
  color: #101010;
  font-size: 15px;
  font-weight: 780;
}

body.landing-page .myli-sector-grid p {
  margin: 14px auto 0;
  color: #5d655f;
  font-size: 13px;
  line-height: 1.5;
}

body.landing-page .myli-impact {
  display: grid;
  grid-template-columns: minmax(380px, .72fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

body.landing-page .myli-impact h2 {
  max-width: 520px;
  margin: 0;
  text-align: left;
  color: #070707;
  font-size: 44px !important;
  line-height: 1.05 !important;
}

body.landing-page .myli-impact-copy p {
  max-width: 430px;
  color: #555f58;
  font-size: 16px;
  line-height: 1.65;
}

body.landing-page .myli-impact-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

body.landing-page .myli-impact-copy li {
  position: relative;
  padding-left: 28px;
  color: #303934;
  font-size: 14px;
}

body.landing-page .myli-impact-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--public-green);
  font-size: 12px;
  font-weight: 800;
}

body.landing-page .myli-support-board {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  min-height: 286px;
  border: 1px solid var(--myli-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(9, 19, 14, .07);
}

body.landing-page .support-list {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--myli-line);
  background: #fbfdfb;
}

body.landing-page .support-list span {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid var(--myli-line);
}

body.landing-page .support-list span.is-active {
  background: #eafff4;
  box-shadow: inset 3px 0 0 var(--public-green);
}

body.landing-page .support-list strong,
body.landing-page .support-list small {
  display: block;
}

body.landing-page .support-list strong {
  color: #111111;
  font-size: 13px;
}

body.landing-page .support-list small {
  color: #677069;
  font-size: 12px;
}

body.landing-page .support-chat {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
}

body.landing-page .chat-message {
  width: fit-content;
  max-width: min(100%, 410px);
  padding: 12px 14px;
  border: 1px solid var(--myli-line);
  border-radius: 8px;
  color: #24302a;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.45;
}

body.landing-page .chat-message.is-user {
  justify-self: end;
  color: #ffffff;
  border-color: var(--public-green);
  background: var(--public-green);
}

body.landing-page .chat-input {
  margin-top: 8px;
  padding: 14px;
  border: 1px solid var(--myli-line);
  border-radius: 8px;
  color: #8a928c;
  font-size: 13px;
}

@media (max-width: 1180px) {
  body.landing-page .human-hero .hero-grid,
  html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }

  body.landing-page .hero-copy {
    max-width: 760px;
  }

  body.landing-page .product-canvas {
    margin: 0 auto !important;
  }

  body.landing-page .myli-sector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.landing-page .myli-sector-grid article:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  body.landing-page .human-hero h1,
  html[data-theme="light"] body.landing-page .human-hero h1,
  html[data-theme="dark"] body.landing-page .human-hero h1 {
    font-size: 58px !important;
  }

  body.landing-page .admin-preview.myli-product-board {
    grid-template-columns: 1fr;
  }

  body.landing-page .myli-product-board .admin-preview-sidebar {
    display: none;
  }

  body.landing-page .wallet-mini-card,
  body.landing-page .review-mini-card {
    display: none;
  }

  body.landing-page .customer-phone {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin: 14px auto 0 !important;
  }

  body.landing-page .myli-impact {
    grid-template-columns: 1fr;
  }

  body.landing-page .myli-support-board {
    grid-template-columns: 1fr;
  }

  body.landing-page .support-list {
    display: none;
  }
}

@media (max-width: 680px) {
  body.landing-page .human-hero,
  html:not([data-theme="dark"]) body.landing-page .human-hero {
    padding: 42px 0 36px !important;
  }

  body.landing-page .human-hero h1,
  html[data-theme="light"] body.landing-page .human-hero h1,
  html[data-theme="dark"] body.landing-page .human-hero h1 {
    font-size: 44px !important;
    line-height: 1.02 !important;
  }

  body.landing-page .human-hero .actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.landing-page .product-canvas {
    min-height: 0 !important;
  }

  body.landing-page .myli-board-main {
    padding: 16px !important;
  }

  body.landing-page .myli-board-main .admin-preview-kpis,
  body.landing-page .myli-board-compare,
  body.landing-page .myli-sector-grid {
    grid-template-columns: 1fr !important;
  }

  body.landing-page .myli-board-compare > div + div,
  body.landing-page .myli-sector-grid article,
  body.landing-page .myli-sector-grid article:nth-child(3n) {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--myli-line);
  }

  body.landing-page .module-section h2,
  body.landing-page .myli-sectors h2,
  body.landing-page .myli-impact h2 {
    font-size: 34px !important;
  }

  body.landing-page .myli-tool-strip {
    gap: 14px !important;
  }

  body.landing-page .myli-tool-strip .card {
    min-height: 0 !important;
  }
}

/* Landing product preview aligned with the real merchant admin. */
body.landing-page .human-hero,
html:not([data-theme="dark"]) body.landing-page .human-hero {
  min-height: 720px !important;
  padding: 82px 0 46px !important;
}

body.landing-page .human-hero .hero-grid,
html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
  grid-template-columns: minmax(390px, .68fr) minmax(700px, 1.32fr) !important;
  gap: 56px !important;
}

body.landing-page .admin-product-canvas {
  width: min(100%, 920px) !important;
  min-height: 560px !important;
  border: 1px solid #d8deda !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 30px 80px rgba(9, 17, 13, .10) !important;
}

body.landing-page .landing-admin-preview {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  color: #0b0b0b;
  font-family: var(--growlee-font);
}

body.landing-page .landing-admin-sidebar {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 26px;
  min-width: 0;
  padding: 28px 16px 18px;
  border-right: 1px solid #e5e9e6;
  background: #ffffff;
}

body.landing-page .landing-admin-sidebar img {
  display: block;
  width: 112px;
  height: auto;
}

body.landing-page .landing-sidebar-context {
  display: grid;
  gap: 7px;
}

body.landing-page .landing-sidebar-context span {
  color: #626861;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

body.landing-page .landing-sidebar-context strong {
  overflow: hidden;
  color: #101010;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.landing-page .landing-admin-nav {
  display: grid;
  align-content: start;
  gap: 5px;
  min-width: 0;
}

body.landing-page .landing-admin-nav span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: #5c625e;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

body.landing-page .landing-admin-nav span.is-active {
  color: #0c120f;
  background: #f2f4f3;
}

body.landing-page .landing-admin-nav i {
  width: 18px;
  color: var(--growlee-green-dark);
  font-style: normal;
  text-align: center;
}

body.landing-page .landing-admin-account {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  background: #f4f5f4;
}

body.landing-page .landing-admin-account > b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  color: #ffffff;
  background: #0b0b0b;
  font-size: 12px;
  font-weight: 800;
}

body.landing-page .landing-admin-account span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

body.landing-page .landing-admin-account strong,
body.landing-page .landing-admin-account small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.landing-page .landing-admin-account strong {
  color: #101010;
  font-size: 12px;
  font-weight: 800;
}

body.landing-page .landing-admin-account small {
  color: #6b716c;
  font-size: 11px;
}

body.landing-page .landing-admin-main {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 40px 34px 30px;
  background: #ffffff;
}

body.landing-page .landing-admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

body.landing-page .landing-admin-head div {
  display: grid;
  gap: 8px;
}

body.landing-page .landing-admin-head strong {
  color: #080808;
  font-size: 34px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
}

body.landing-page .landing-admin-head span {
  color: #666d68;
  font-size: 13px;
}

body.landing-page .landing-admin-head button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #dfe4e0;
  border-radius: 8px;
  color: #111111;
  background: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

body.landing-page .landing-status-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 18px 20px;
  border-radius: 8px;
  background: #f4f5f4;
}

body.landing-page .landing-icon-box,
body.landing-page .landing-dashboard-grid h3 span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  color: var(--growlee-green-dark);
  background: #e7f8ef;
  font-size: 15px;
  font-weight: 800;
}

body.landing-page .landing-status-card div {
  display: grid;
  gap: 7px;
  min-width: 0;
}

body.landing-page .landing-status-card small {
  color: var(--growlee-green-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.landing-page .landing-status-card strong {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #111111;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 760;
}

body.landing-page .landing-status-card strong i,
body.landing-page .landing-module-list b i {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: var(--growlee-green);
}

body.landing-page .landing-status-card span:not(.landing-icon-box) {
  color: #54705f;
  font-size: 12px;
}

body.landing-page .landing-status-card > b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #d9dfda;
  border-radius: 8px;
  color: #111111;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

body.landing-page .landing-cash-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border-radius: 8px;
  color: #ffffff;
  background: #0b0b0b;
  font-size: 15px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

body.landing-page .landing-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  min-width: 0;
}

body.landing-page .landing-kpi-grid div {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 116px;
}

body.landing-page .landing-kpi-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #111111;
  font-size: 12px;
  font-weight: 760;
}

body.landing-page .landing-kpi-grid i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 4px;
  color: var(--growlee-green-dark);
  background: #e7f8ef;
  font-style: normal;
  font-size: 12px;
}

body.landing-page .landing-kpi-grid strong {
  color: #050505;
  font-size: 46px;
  line-height: .9;
  font-weight: 650;
}

body.landing-page .landing-kpi-grid small {
  color: #6b6f6b;
  font-size: 11px;
  line-height: 1.25;
}

body.landing-page .landing-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .9fr);
  gap: 34px;
  min-width: 0;
}

body.landing-page .landing-dashboard-grid section {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

body.landing-page .landing-dashboard-grid h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #111111;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

body.landing-page .landing-module-list,
body.landing-page .landing-activity-list {
  display: grid;
  gap: 7px;
  min-width: 0;
}

body.landing-page .landing-module-list div,
body.landing-page .landing-activity-list div {
  display: grid;
  align-items: center;
  min-width: 0;
  min-height: 54px;
  padding: 11px 14px;
  border-radius: 8px;
  background: #f4f5f4;
}

body.landing-page .landing-module-list div {
  grid-template-columns: minmax(88px, 1fr) auto auto;
  gap: 12px;
}

body.landing-page .landing-module-list span,
body.landing-page .landing-activity-list span {
  overflow: hidden;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.landing-page .landing-module-list b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #dce2de;
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

body.landing-page .landing-module-list small {
  color: #111111;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

body.landing-page .landing-activity-list div {
  grid-template-columns: minmax(0, 1fr) minmax(120px, .82fr);
  gap: 16px;
  background: transparent;
}

body.landing-page .landing-activity-list small {
  overflow: hidden;
  color: #777d78;
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  body.landing-page .landing-admin-head button,
  body.landing-page .landing-status-card > b {
    transition: transform 150ms cubic-bezier(.23, 1, .32, 1), background-color 150ms ease;
  }

  body.landing-page .landing-admin-head button:hover,
  body.landing-page .landing-status-card > b:hover {
    background: #f6f6f6;
  }

  body.landing-page .landing-admin-head button:active,
  body.landing-page .landing-status-card > b:active {
    transform: scale(.98);
  }
}

@media (max-width: 1280px) {
  body.landing-page .human-hero .hero-grid,
  html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
    grid-template-columns: minmax(360px, .74fr) minmax(620px, 1.26fr) !important;
    gap: 42px !important;
  }

  body.landing-page .admin-product-canvas {
    width: min(100%, 800px) !important;
  }

  body.landing-page .landing-admin-preview {
    grid-template-columns: 168px minmax(0, 1fr);
  }

  body.landing-page .landing-admin-main {
    padding: 34px 26px 26px;
  }

  body.landing-page .landing-dashboard-grid {
    gap: 24px;
  }
}

@media (max-width: 1180px) {
  body.landing-page .human-hero .hero-grid,
  html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
    grid-template-columns: 1fr !important;
  }

  body.landing-page .admin-product-canvas {
    width: min(100%, 920px) !important;
  }
}

@media (max-width: 900px) {
  body.landing-page .admin-product-canvas {
    min-height: 0 !important;
  }

  body.landing-page .landing-admin-preview {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.landing-page .landing-admin-sidebar {
    display: none;
  }

  body.landing-page .landing-admin-main {
    padding: 26px;
  }

  body.landing-page .landing-admin-head strong {
    font-size: 30px;
  }

  body.landing-page .landing-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body.landing-page .landing-admin-main {
    gap: 14px;
    padding: 18px;
  }

  body.landing-page .landing-admin-head {
    display: grid;
  }

  body.landing-page .landing-admin-head button,
  body.landing-page .landing-status-card > b,
  body.landing-page .landing-activity-list {
    display: none;
  }

  body.landing-page .landing-status-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 14px;
  }

  body.landing-page .landing-status-card strong {
    font-size: 13px;
  }

  body.landing-page .landing-kpi-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.landing-page .landing-kpi-grid div {
    min-height: 0;
  }

  body.landing-page .landing-kpi-grid strong {
    font-size: 38px;
  }

  body.landing-page .landing-module-list div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.landing-page .landing-module-list small {
    display: none;
  }
}

body.landing-page .admin-product-canvas[data-scroll-product] {
  --hero-shift: 0px;
  --hero-scale: 1;
  --hero-shadow: .10;
  --hero-sidebar-shift: 0px;
  --hero-status-shift: 0px;
  --hero-cash-shift: 0px;
  --hero-kpi-shift: 0px;
  --hero-panel-shift: 0px;
  --hero-panel-opacity: 1;
  transform: translate3d(0, var(--hero-shift), 0) scale(var(--hero-scale));
  transform-origin: center top;
  will-change: transform;
  box-shadow: 0 34px 88px rgba(9, 17, 13, var(--hero-shadow)) !important;
}

body.landing-page .admin-product-canvas[data-scroll-product] .landing-admin-sidebar,
body.landing-page .admin-product-canvas[data-scroll-product] .landing-status-card,
body.landing-page .admin-product-canvas[data-scroll-product] .landing-cash-cta,
body.landing-page .admin-product-canvas[data-scroll-product] .landing-kpi-grid,
body.landing-page .admin-product-canvas[data-scroll-product] .landing-dashboard-grid {
  will-change: transform;
}

body.landing-page .admin-product-canvas[data-scroll-product] .landing-admin-sidebar {
  transform: translate3d(0, var(--hero-sidebar-shift), 0);
}

body.landing-page .admin-product-canvas[data-scroll-product] .landing-status-card {
  transform: translate3d(0, var(--hero-status-shift), 0);
}

body.landing-page .admin-product-canvas[data-scroll-product] .landing-cash-cta {
  transform: translate3d(0, var(--hero-cash-shift), 0);
}

body.landing-page .admin-product-canvas[data-scroll-product] .landing-kpi-grid {
  transform: translate3d(0, var(--hero-kpi-shift), 0);
}

body.landing-page .admin-product-canvas[data-scroll-product] .landing-dashboard-grid {
  transform: translate3d(0, var(--hero-panel-shift), 0);
  opacity: var(--hero-panel-opacity);
}

body.landing-page .landing-compare[data-scroll-compare] {
  --compare-offset: 180px;
  --compare-opacity: .12;
  --compare-arrow-y: 64px;
  --compare-arrow-scale: .72;
  --compare-shop-scale: .86;
  overflow: hidden;
}

body.landing-page .landing-compare[data-scroll-compare] .compare-pane,
body.landing-page .landing-compare[data-scroll-compare] .compare-arrow {
  will-change: transform, opacity;
}

body.landing-page .landing-compare[data-scroll-compare] .compare-before {
  opacity: var(--compare-opacity);
  transform: translate3d(calc(var(--compare-offset) * -1), 0, 0);
}

body.landing-page .landing-compare[data-scroll-compare] .compare-after {
  opacity: var(--compare-opacity);
  transform: translate3d(var(--compare-offset), 0, 0);
}

body.landing-page .landing-compare[data-scroll-compare] .compare-arrow {
  transform: translate3d(0, var(--compare-arrow-y), 0) scale(var(--compare-arrow-scale));
}

body.landing-page .landing-compare[data-scroll-compare] .compare-shop {
  transform: scale(var(--compare-shop-scale));
  transform-origin: center;
}

@media (max-width: 900px) {
  body.landing-page .landing-compare[data-scroll-compare] .compare-arrow {
    transform: rotate(90deg) translate3d(var(--compare-arrow-y), 0, 0) scale(var(--compare-arrow-scale));
  }
}

@media (prefers-reduced-motion: reduce) {
  body.landing-page .admin-product-canvas[data-scroll-product],
  body.landing-page .admin-product-canvas[data-scroll-product] .landing-admin-sidebar,
  body.landing-page .admin-product-canvas[data-scroll-product] .landing-status-card,
  body.landing-page .admin-product-canvas[data-scroll-product] .landing-cash-cta,
  body.landing-page .admin-product-canvas[data-scroll-product] .landing-kpi-grid,
  body.landing-page .admin-product-canvas[data-scroll-product] .landing-dashboard-grid,
  body.landing-page .landing-compare[data-scroll-compare] .compare-pane,
  body.landing-page .landing-compare[data-scroll-compare] .compare-arrow {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

@media (min-width: 1181px) {
  body.landing-page .human-hero,
  html:not([data-theme="dark"]) body.landing-page .human-hero {
    align-items: start !important;
    min-height: 1400px !important;
    padding-bottom: 0 !important;
  }

  body.landing-page .human-hero .hero-grid,
  html:not([data-theme="dark"]) body.landing-page .human-hero .hero-grid {
    grid-template-columns: minmax(450px, .76fr) minmax(0, 1.24fr) !important;
    align-items: start !important;
    gap: 46px !important;
    min-height: 1280px !important;
  }

  body.landing-page .hero-copy {
    position: relative;
    top: auto;
    max-width: 560px;
    padding-top: 0;
  }

  body.landing-page .human-hero .visual,
  html:not([data-theme="dark"]) body.landing-page .human-hero .visual {
    position: sticky !important;
    top: 88px;
    align-self: start !important;
    align-items: start !important;
    height: auto !important;
    min-height: 560px !important;
    padding-top: 0 !important;
  }

  body.landing-page .admin-product-canvas {
    height: auto !important;
  }

  body.landing-page .human-hero h1,
  html[data-theme="light"] body.landing-page .human-hero h1,
  html[data-theme="dark"] body.landing-page .human-hero h1 {
    max-width: 560px !important;
    font-size: clamp(56px, 4.35vw, 66px) !important;
    line-height: 1 !important;
  }
}

body.landing-page .landing-activity-list div {
  grid-template-columns: minmax(0, .9fr) minmax(128px, .82fr);
  gap: 12px;
  padding-inline: 0;
  background: transparent;
}

body.landing-page .landing-activity-list span,
body.landing-page .landing-activity-list small {
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
}

body.landing-page .landing-activity-list span {
  font-size: 11px;
  line-height: 1.25;
}

body.landing-page .landing-activity-list small {
  font-size: 10.5px;
  line-height: 1.25;
}

body.landing-page .landing-dashboard-grid h3 {
  font-size: 20px;
  line-height: 1.08;
}

body.landing-page .landing-dashboard-grid {
  grid-template-columns: minmax(280px, 1.15fr) minmax(230px, .85fr);
}

body.landing-page .landing-module-list div {
  grid-template-columns: minmax(78px, 1fr) auto auto;
  gap: 8px;
}

body.landing-page .landing-module-list b {
  padding-inline: 8px;
}

@media (max-width: 680px) {
  body.landing-page .human-hero h1,
  html[data-theme="light"] body.landing-page .human-hero h1,
  html[data-theme="dark"] body.landing-page .human-hero h1 {
    font-size: 42px !important;
  }
}
