/* =========================================================================
   KipperFit — Landing Page styles & animations  (web-only, self-contained)
   Identity: app's own design system (royal blue #081095, Spline Sans, white
   cards, soft rounded geometry). Structure & motion adapted from the spec.

   STATIC BUILD NOTE: this is the GitHub Pages build of the landing-page route.
   --font-display is defined here (it came from the app's global.css in the RN
   project). Spline Sans is loaded via Google Fonts in each page's <head>.
   ========================================================================= */

:root {
  --font-display:
    'Spline Sans', Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI',
    Roboto, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  --lp-primary: #081095;
  --lp-primary-light: #1a3cb8;
  --lp-primary-bg: #eef0fc;
  --lp-ink: #0a0e2a;
  --lp-panel: #f5f6f9;
  --lp-card: #ffffff;
  --lp-border: #e2e4ed;
  --lp-text-dark: #1c1c2e;
  --lp-text-mid: #3a3d56;
  --lp-text-soft: #5a5e7a;
  --lp-text-muted: #8b8fa6;
  --lp-green: #10b981;
  --lp-orange: #f97316;
  --lp-radius-xl: 40px;
  --lp-radius-lg: 28px;
  --lp-radius-md: 18px;
  --lp-shadow-soft: 0 24px 60px -20px rgba(8, 16, 149, 0.28);
  --lp-shadow-card: 0 12px 32px -12px rgba(20, 24, 60, 0.18);
}

html, body {
  margin: 0;
  padding: 0;
  background: #06081f;
}

/* ---- landing root = the scroll container ----
   Expo Router nests the screen in a chain of flex:1 / height:0 wrappers and RNW
   locks body to overflow:hidden, so the document never scrolls. Rather than fight
   that, .lp-root is itself the scroll container (full viewport height, scrolls Y).
   position:sticky resolves against it, and the JS scroll handlers listen on it
   (see useRootScroll / CasesSection). overflow-x:hidden clips decorative blobs. */
.lp-root {
  font-family: var(--font-display);
  color: var(--lp-text-dark);
  background: var(--lp-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
}
.lp-root *,
.lp-root *::before,
.lp-root *::after {
  box-sizing: border-box;
}
.lp-root button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
/* no underlines on any link across the landing (incl. hover/focus) */
.lp-root a,
.lp-root a:hover,
.lp-root a:focus,
.lp-root a:visited {
  text-decoration: none;
}

/* =========================================================================
   PAGE SHELL — framed floating panel on near-black background
   ========================================================================= */
.lp-shell {
  min-height: 100vh;
  padding: 8px; /* thin frame on desktop — panel sits close to the edges */
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(26, 60, 184, 0.25), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(8, 16, 149, 0.22), transparent 55%),
    #06081f;
}
.lp-panel {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--lp-radius-xl);
  overflow: hidden;
  background: var(--lp-panel);
  box-shadow: var(--lp-shadow-soft);
}
/* breathing room between the floating nav and the first panel — matches the
   gap the saiba-mais page has between its nav and the .lp-more-page surface.
   The first panel always follows the mobile-menu div in the markup. */
.lp-mobile-menu + .lp-panel { margin-top: 14px; }
.lp-section {
  padding: clamp(20px, 4vw, 56px);
}

/* =========================================================================
   NAV BAR
   ========================================================================= */
.lp-nav {
  position: sticky;
  top: 8px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px clamp(8px, 2vw, 16px) 0;
  padding: 12px 14px 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px -12px rgba(20, 24, 60, 0.25);
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--lp-primary);
}
.lp-brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.lp-brand .thin {
  font-weight: 400;
  color: var(--lp-text-mid);
  margin-left: 4px;
}
.lp-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--lp-text-mid);
  transition: color 0.2s ease;
}
.lp-nav-links a:hover {
  color: var(--lp-primary);
}
/* current page indicator — keeps the nav legible about where you are */
.lp-nav-links a[aria-current="page"] {
  color: var(--lp-primary);
  font-weight: 700;
}
.lp-mobile-menu a[aria-current="page"] {
  background: var(--lp-primary-bg);
  color: var(--lp-primary);
}
.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--lp-primary);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.lp-nav-cta:hover {
  transform: translateY(-2px);
  background: var(--lp-primary-light);
  box-shadow: 0 12px 24px -10px rgba(8, 16, 149, 0.6);
}
.lp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.lp-burger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--lp-primary);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.lp-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger.open span:nth-child(2) { opacity: 0; }
.lp-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile dropdown menu (hidden on desktop, revealed by the burger) */
.lp-mobile-menu {
  display: none;
  position: sticky;
  top: 76px;
  z-index: 49;
  margin: 8px clamp(10px, 3vw, 28px) 0;
  padding: 10px;
  flex-direction: column;
  gap: 2px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 36px -14px rgba(20, 24, 60, 0.3);
  /* collapsed state */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
}
.lp-mobile-menu.open {
  max-height: 360px;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.lp-mobile-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lp-text-mid);
  padding: 13px 14px;
  border-radius: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.lp-mobile-menu a:hover { background: var(--lp-primary-bg); color: var(--lp-primary); }
.lp-mobile-menu-cta {
  margin-top: 4px;
  text-align: center;
  background: var(--lp-primary);
  color: #fff !important;
  letter-spacing: 0.02em !important;
}
.lp-mobile-menu-cta:hover { background: var(--lp-primary-light) !important; color: #fff !important; }

/* =========================================================================
   HERO
   ========================================================================= */
.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  /* breathing room below the floating nav before the hero starts */
  padding-top: clamp(48px, 7vw, 96px);
}
.lp-hero-left {
  max-width: 620px;
  min-width: 0; /* allow grid item to shrink below content width (prevents clip) */
}
.lp-hero-right {
  min-width: 0;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--lp-primary-bg);
  color: var(--lp-primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.lp-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}
/* decorative cluster of blue dots that fade out — a soft accent near a title.
   Built from a repeating radial-gradient masked by a linear fade. */
.lp-dots {
  position: absolute;
  width: 150px;
  height: 90px;
  background-image: radial-gradient(var(--lp-primary) 1.7px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(115deg, #000 0%, transparent 72%);
  mask-image: linear-gradient(115deg, #000 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
/* hero: dots sit above the headline, to the right, fading toward the text */
.lp-hero-left { position: relative; }
.lp-dots.hero {
  top: 56px;
  right: 4%;
  opacity: 0.4;
}
@media (max-width: 920px) { .lp-dots.hero { display: none; } }
.lp-h1 {
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--lp-ink);
  overflow-wrap: break-word; /* last-resort: never let a long word clip */
}
.lp-h1 .accent {
  color: var(--lp-primary);
  position: relative;
}
.lp-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--lp-text-soft);
  margin: 0 0 22px;
  max-width: 520px;
}
/* hero highlight bullets — key features surfaced up top */
.lp-hero-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  max-width: 520px;
}
.lp-hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text-mid);
}
.lp-hero-points li svg { width: 20px; height: 20px; color: var(--lp-primary); flex-shrink: 0; }
@media (max-width: 560px) {
  .lp-hero-points { grid-template-columns: 1fr; gap: 9px; }
}

/* per-character reveal */
.lp-reveal-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  filter: blur(8px);
  animation: lpCharIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.lp-reveal-word {
  display: inline-block;
  white-space: nowrap;
}
@keyframes lpCharIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* scroll-triggered per-character reveal (fade + slide + blur) — like the hero,
   but fired when it enters view via .in (used in the "app" section titles).
   The .lp-reveal span also carries .lp-fade so the observer flips .in on it;
   neutralise the container's own fade so only the characters animate. */
.lp-reveal.lp-fade { opacity: 1; transform: none; }
.lp-rt-word { display: inline-block; white-space: nowrap; }
.lp-rt-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  filter: blur(8px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-reveal.in .lp-rt-char {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.lp-reveal.accent .lp-rt-char { color: #7ea0ff; }

/* fade-up utility used across sections (IntersectionObserver toggles .in) */
.lp-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-fade.in {
  opacity: 1;
  transform: none;
}
.lp-fade.d1 { transition-delay: 0.08s; }
.lp-fade.d2 { transition-delay: 0.16s; }
.lp-fade.d3 { transition-delay: 0.24s; }
.lp-fade.d4 { transition-delay: 0.32s; }

/* ---- store buttons ---- */
.lp-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px 12px 16px;
  border-radius: 16px;
  background: var(--lp-ink);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.lp-store-btn:hover {
  transform: translateY(-3px);
  background: #14183a;
  box-shadow: 0 16px 30px -12px rgba(10, 14, 42, 0.55);
}
.lp-store-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.lp-store-btn .lp-store-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.lp-store-btn .lp-store-small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.8;
}
.lp-store-btn .lp-store-big {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lp-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.lp-trust-stat {
  display: flex;
  flex-direction: column;
}
.lp-trust-stat b {
  font-size: 22px;
  font-weight: 800;
  color: var(--lp-ink);
  letter-spacing: -0.02em;
}
.lp-trust-stat span {
  font-size: 12px;
  color: var(--lp-text-muted);
  font-weight: 500;
}
.lp-trust-divider {
  width: 1px;
  height: 34px;
  background: var(--lp-border);
}

/* =========================================================================
   HERO RIGHT — phone stage
   ========================================================================= */
.lp-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border-radius: var(--lp-radius-lg);
  background:
    radial-gradient(120% 120% at 50% 0%, #1a3cb8 0%, #081095 55%, #050a4d 100%);
  overflow: hidden;
  padding: 40px;
}
/* drifting blobs */
.lp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
  pointer-events: none;
}
.lp-blob.b1 {
  width: 260px; height: 260px;
  top: -40px; left: -50px;
  background: radial-gradient(circle at 30% 30%, #4f7cff, transparent 70%);
  animation: lpBlob1 14s ease-in-out infinite;
}
.lp-blob.b2 {
  width: 220px; height: 220px;
  bottom: -30px; right: -40px;
  background: radial-gradient(circle at 60% 40%, #6f5cff, transparent 70%);
  animation: lpBlob2 18s ease-in-out infinite;
}
.lp-blob.b3 {
  width: 160px; height: 160px;
  bottom: 60px; left: 30px;
  background: radial-gradient(circle at 50% 50%, #00d4ff, transparent 70%);
  opacity: 0.32;
  animation: lpBlob1 16s ease-in-out infinite reverse;
}
@keyframes lpBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 24px) scale(1.08); }
}
@keyframes lpBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, -20px) scale(1.1); }
}

/* phone frame */
.lp-phone {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 580px;
  border-radius: 44px;
  background: #0b0d10;
  padding: 12px;
  box-shadow:
    0 40px 80px -24px rgba(0, 0, 0, 0.6),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  animation: lpPhoneFloat 6s ease-in-out infinite;
}
@keyframes lpPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.lp-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #0b0d10;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.lp-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: var(--lp-panel);
}

/* the auto-cycling screen track */
.lp-screen-cycle {
  position: absolute;
  inset: 0;
}
.lp-screen-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.lp-screen-slide.active {
  opacity: 1;
  transform: none;
}

/* floating social / feature chips around the phone */
.lp-chip {
  position: absolute;
  z-index: 4;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.4);
  color: var(--lp-primary);
}
.lp-chip svg { width: 24px; height: 24px; }
.lp-chip.c1 { top: 8%; left: 4%; animation: lpFloat 5s ease-in-out infinite; }
.lp-chip.c2 { top: 4%; right: 6%; animation: lpFloat 6.5s ease-in-out infinite 0.4s; }
.lp-chip.c3 { top: 44%; left: -2%; animation: lpFloat 5.8s ease-in-out infinite 0.9s; }
.lp-chip.c4 { top: 50%; right: -2%; animation: lpFloat 6.2s ease-in-out infinite 0.2s; }
.lp-chip.c5 { bottom: 10%; left: 6%; animation: lpFloat 5.4s ease-in-out infinite 1.1s; }
@keyframes lpFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-10px) translateX(4px); }
  66% { transform: translateY(6px) translateX(-4px); }
}

/* =========================================================================
   RECREATED APP SCREEN (inside phone) — authentic KipperFit UI
   ========================================================================= */
.appui {
  width: 100%;
  height: 100%;
  background: var(--lp-panel);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: var(--lp-text-dark);
  padding-top: 34px;
}
.appui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid #ebebf0;
}
.appui-brand { display: flex; align-items: center; gap: 6px; font-weight: 800; font-size: 13px; color: var(--lp-primary); letter-spacing: -0.02em; }
.appui-brand img { width: 22px; height: 22px; border-radius: 6px; }
.appui-brand .thin { font-weight: 400; color: var(--lp-text-mid); font-size: 9px; margin-left: 3px; }
.appui-bell { position: relative; width: 26px; height: 26px; display: grid; place-items: center; color: var(--lp-text-mid); }
.appui-bell .bdot { position: absolute; top: 4px; right: 4px; width: 7px; height: 7px; border-radius: 50%; background: var(--lp-orange); border: 1.5px solid #fff; }
/* extra bottom padding leaves room for the floating overlay nav */
.appui-body { flex: 1; overflow: hidden; padding: 12px 12px 76px; display: flex; flex-direction: column; gap: 10px; }

.appui-greet { display: flex; align-items: center; gap: 9px; }
.appui-avatar { width: 34px; height: 34px; border-radius: 12px; background: var(--lp-primary); display: grid; place-items: center; color: #fff; font-weight: 700; }
.appui-greet .hi { font-size: 9px; color: var(--lp-text-muted); }
.appui-greet .nm { font-size: 14px; font-weight: 700; color: var(--lp-ink); }

.appui-metrics { display: flex; align-items: center; background: #fff; border: 1px solid var(--lp-border); border-radius: 14px; padding: 12px 8px; }
.appui-metric { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.appui-metric .mdot { width: 7px; height: 7px; border-radius: 50%; margin-bottom: 2px; }
.appui-metric .mn { font-size: 16px; font-weight: 800; color: var(--lp-ink); }
.appui-metric .ml { font-size: 8px; color: var(--lp-text-muted); font-weight: 500; }
.appui-mdiv { width: 1px; height: 28px; background: var(--lp-border); }

.appui-pills { display: flex; gap: 7px; }
.appui-pill { display: inline-flex; align-items: center; gap: 5px; padding: 8px 11px; border-radius: 999px; background: var(--lp-primary-bg); color: var(--lp-primary); font-weight: 600; font-size: 9px; white-space: nowrap; }
.appui-pill svg { width: 12px; height: 12px; }

.appui-card { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--lp-border); border-radius: 14px; padding: 12px; }
.appui-card .ci { width: 36px; height: 36px; border-radius: 11px; background: var(--lp-primary-bg); display: grid; place-items: center; color: var(--lp-primary); flex-shrink: 0; }
.appui-card .ci svg { width: 18px; height: 18px; }
.appui-card .ct { font-size: 12px; font-weight: 700; color: var(--lp-ink); }
.appui-card .cs { font-size: 9px; color: var(--lp-text-muted); margin-top: 1px; }
.appui-card .cgo { margin-left: auto; color: var(--lp-primary); display: grid; place-items: center; }
.appui-card.solid { background: var(--lp-primary); border-color: var(--lp-primary); }
.appui-card.solid .ci { background: rgba(255,255,255,0.16); color: #fff; }
.appui-card.solid .ct { color: #fff; }
.appui-card.solid .cs { color: rgba(255,255,255,0.7); }
.appui-card.solid .cgo { color: rgba(255,255,255,0.7); }

.appui-label { font-size: 12px; font-weight: 800; color: var(--lp-ink); margin-top: 2px; letter-spacing: -0.01em; }
.appui-pilltag { margin-left: auto; font-size: 9px; font-weight: 700; color: var(--lp-primary); background: var(--lp-primary-bg); padding: 3px 8px; border-radius: 999px; flex-shrink: 0; }

/* student rows */
.appui-list { background: #fff; border: 1px solid var(--lp-border); border-radius: 14px; overflow: hidden; }
.appui-srow { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-bottom: 1px solid #f0f1f5; }
.appui-srow:last-child { border-bottom: none; }
.appui-sav { position: relative; width: 32px; height: 32px; border-radius: 50%; background: var(--lp-primary-bg); display: grid; place-items: center; color: var(--lp-primary); font-weight: 700; font-size: 11px; }
.appui-sav .sdot { position: absolute; bottom: -1px; right: -1px; width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff; }
.appui-sinfo { flex: 1; min-width: 0; }
.appui-sname { font-size: 12px; font-weight: 600; color: var(--lp-text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appui-sbadge { display: inline-block; margin-top: 3px; padding: 2px 7px; border-radius: 6px; background: var(--lp-panel); font-size: 8px; color: var(--lp-text-soft); font-weight: 600; }
.appui-wa { width: 26px; height: 26px; border-radius: 8px; background: #eafaf0; display: grid; place-items: center; color: #22c55e; }
.appui-wa svg { width: 15px; height: 15px; }

/* progress chart */
.appui-chartcard { background: #fff; border: 1px solid var(--lp-border); border-radius: 14px; padding: 14px; }
.appui-chartcard .cct { font-size: 11px; font-weight: 700; color: var(--lp-ink); margin-bottom: 2px; }
.appui-chartcard .ccs { font-size: 8px; color: var(--lp-text-muted); margin-bottom: 12px; }
.appui-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; }
.appui-bar { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--lp-primary-light), var(--lp-primary)); position: relative; }
.appui-bar.muted { background: var(--lp-primary-bg); }
.appui-bars-x { display: flex; gap: 8px; margin-top: 6px; }
.appui-bars-x span { flex: 1; text-align: center; font-size: 7px; color: var(--lp-text-muted); }

/* workout exercise rows */
.appui-exrow { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--lp-border); border-radius: 12px; padding: 10px 11px; }
.appui-exidx { width: 24px; height: 24px; border-radius: 8px; background: var(--lp-primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 10px; }
.appui-exinfo { flex: 1; }
.appui-exname { font-size: 11px; font-weight: 600; color: var(--lp-text-dark); }
.appui-exmeta { font-size: 8px; color: var(--lp-text-muted); margin-top: 1px; }
.appui-exsets { font-size: 9px; font-weight: 700; color: var(--lp-primary); }

/* bottom nav inside the app */
/* floating bottom nav (overlay on the phone screen), with an animated indicator */
.appui-nav {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 8px 6px;
  box-shadow: 0 10px 24px -8px rgba(8, 16, 149, 0.22);
}
.appui-navitem {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--lp-primary);
  transition: color 0.25s ease;
}
.appui-navitem.active { color: #fff; }
.appui-navitem svg { width: 18px; height: 18px; }
/* static blue bubble behind the active icon (no pinch animation) */
.appui-nav-ind {
  position: absolute;
  z-index: 0;
  top: 50%;
  width: 40px;
  height: 34px;
  margin-left: -20px; /* center on the left% anchor */
  border-radius: 14px;
  background: var(--lp-primary);
  transform: translateY(-50%);
}

/* =========================================================================
   SERVICES / FEATURES
   ========================================================================= */
.lp-feat {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.lp-section-head .kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--lp-primary);
  text-transform: uppercase;
}
.lp-section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 12px 0 18px;
  color: var(--lp-ink);
}
.lp-section-head p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--lp-text-soft);
  max-width: 380px;
  margin: 0 0 24px;
}
.lp-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--lp-ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(10, 14, 42, 0.5);
}
.lp-pill-btn svg { width: 16px; height: 16px; }

.lp-feat-list { display: flex; flex-direction: column; }
.lp-feat-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--lp-border);
}
.lp-feat-item:first-child { border-top: none; padding-top: 0; }
.lp-feat-ico {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--lp-primary-bg);
  color: var(--lp-primary);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-feat-item:hover .lp-feat-ico {
  transform: rotate(-6deg) scale(1.06);
}
.lp-feat-ico svg { width: 26px; height: 26px; }
.lp-feat-ico.alt { background: #fff5ed; color: var(--lp-orange); }
.lp-feat-ico.alt2 { background: #eafaf0; color: var(--lp-green); }
.lp-feat-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 4px 0 6px;
  color: var(--lp-ink);
  letter-spacing: -0.01em;
}
.lp-feat-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--lp-text-soft);
  margin: 0;
}

/* =========================================================================
   "TUDO EM UM SÓ APP" — section header + stacked story blocks (text + phone)
   ========================================================================= */
.lp-cases {
  position: relative;
  isolation: isolate;
  margin: 14px 0 0;
  border-radius: var(--lp-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(120% 80% at 50% -16%, rgba(61, 103, 255, 0.5), transparent 58%),
    linear-gradient(180deg, #07116a 0%, #070b42 54%, #050827 100%);
  padding: clamp(40px, 7vw, 110px) clamp(20px, 5vw, 80px);
  overflow: hidden;
}
.lp-cases::before,
.lp-cases::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.lp-cases::before {
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 1px, transparent 1.8px);
  background-size: 42px 42px;
  opacity: 0.13;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
}
.lp-cases::after {
  inset: -12% -10% auto;
  height: 55%;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(111, 221, 255, 0.18), transparent 44%),
    radial-gradient(ellipse at 78% 8%, rgba(126, 160, 255, 0.24), transparent 48%);
  opacity: 0.85;
}

/* header */
.lp-cases-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 6vw, 80px);
}
.lp-cases-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.lp-cases-kicker .mark { width: 26px; height: 26px; border-radius: 8px; }
.lp-cases-head h2 {
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 18px;
}
.lp-cases-head h2 .sep { color: rgba(255, 255, 255, 0.35); font-weight: 400; margin: 0 4px; }
.lp-cases-head p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

/* stacked story rows */
.lp-stories {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 9vw, 130px);
  max-width: 1080px;
  margin: 0 auto;
}
.lp-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
}
.lp-story.rev .lp-story-text { order: 2; }      /* alternate sides */
.lp-story.rev .lp-story-phonewrap { order: 1; }

/* the .lp-story itself carries .lp-fade (so the observer toggles .in on it), but
   the actual entrance is animated on its children — neutralize the container's
   own fade transform so it doesn't double up */
.lp-story.lp-fade { opacity: 1; transform: none; }

/* entrance animation: text and phone slide in from opposite sides + fade up,
   revealed when the block enters the viewport (.in toggled by IntersectionObserver) */
.lp-story .lp-story-text,
.lp-story .lp-story-phonewrap {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-story .lp-story-text { transform: translateX(-32px); }
.lp-story .lp-story-phonewrap { transform: translateY(40px); transition-delay: 0.1s; }
.lp-story.rev .lp-story-text { transform: translateX(32px); }
.lp-story.in .lp-story-text,
.lp-story.in .lp-story-phonewrap { opacity: 1; transform: none; }
.lp-story .lp-story-kicker,
.lp-story .lp-story-text p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-story .lp-story-kicker { transition-delay: 0.08s; }
.lp-story .lp-story-text p { transition-delay: 0.18s; }
.lp-story.in .lp-story-kicker,
.lp-story.in .lp-story-text p {
  opacity: 1;
  transform: none;
}
.lp-story-text {
  position: relative;
  max-width: 440px;
  padding: 24px 0;
}
.lp-story-text::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -24px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(126, 160, 255, 0.9), transparent);
}
.lp-story.rev .lp-story-text::before {
  left: auto;
  right: -24px;
}
.lp-story-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #7ea0ff;
  text-transform: uppercase;
}
.lp-story-text h3 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 12px 0 14px;
}
.lp-story-text p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* phone */
.lp-story-phonewrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 58vw, 660px);
  --story-accent: #7ea0ff;
  --story-warm: #10b981;
  width: 100%;
  perspective: 1200px;
  isolation: isolate;
}
.lp-story-phonewrap.students { --story-accent: #7ea0ff; --story-warm: #10b981; }
.lp-story-phonewrap.workout { --story-accent: #6fddff; --story-warm: #f97316; }
.lp-story-phonewrap.assessments { --story-accent: #a7b7ff; --story-warm: #f6c453; }
.lp-story-phonewrap.progress { --story-accent: #61e5b0; --story-warm: #7ea0ff; }

.lp-story-backdrop {
  position: absolute;
  inset: 5% -2%;
  pointer-events: none;
  z-index: 0;
}
.lp-story-backdrop::before {
  content: '';
  position: absolute;
  inset: 18% 12%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(126, 160, 255, 0.18), transparent 62%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: rotate(-9deg);
}
.lp-story-backdrop::after {
  content: '';
  position: absolute;
  left: 14%;
  right: 12%;
  bottom: 10%;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45), transparent 68%);
  filter: blur(18px);
  transform: rotate(-4deg);
}
.lp-story-plate {
  position: absolute;
  display: block;
}
.lp-story-plate {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, color-mix(in srgb, var(--story-accent) 22%, transparent), transparent 70%);
}
.lp-story-plate.p1 {
  width: 56%;
  height: 46%;
  top: 8%;
  left: 4%;
  transform: rotate(12deg);
}
.lp-story-plate.p2 {
  width: 48%;
  height: 36%;
  right: 6%;
  bottom: 14%;
  transform: rotate(-15deg);
}
.lp-story-float {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.88);
  color: var(--lp-ink);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 18px 36px -22px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.lp-story-float.metric {
  top: 14%;
  left: 2%;
  min-width: 132px;
  padding: 12px 14px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: lpStoryDrift 6s ease-in-out infinite;
}
.lp-story-float.metric strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lp-primary);
}
.lp-story-float.metric span {
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-text-soft);
}
.lp-story-float.note {
  right: 1%;
  bottom: 17%;
  max-width: 176px;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  animation: lpStoryDrift 7s ease-in-out infinite 0.5s;
}
.lp-story-token {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--lp-primary);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px -18px rgba(0, 0, 0, 0.65);
  animation: lpStoryDrift 7.5s ease-in-out infinite 0.2s;
}
.lp-story-token svg {
  width: 24px;
  height: 24px;
}
.lp-story-token.token-main {
  top: 10%;
  right: 14%;
  width: 56px;
  height: 56px;
  color: var(--story-accent);
}
.lp-story-token.token-dot {
  left: 16%;
  bottom: 12%;
  width: 44px;
  height: 44px;
  color: #fff;
  background: color-mix(in srgb, var(--story-warm) 74%, rgba(255, 255, 255, 0.18));
  border-radius: 15px;
}
@keyframes lpStoryDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

/* CSS device frame with the app screen rendered inside */
.lp-story-phone {
  position: relative;
  z-index: 1;
  width: clamp(220px, 23vw, 270px);
  height: clamp(440px, 49vw, 540px);
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, #050608 0%, #131a29 46%, #050608 100%);
  padding: 9px;
  box-shadow:
    0 42px 78px -30px rgba(0, 0, 0, 0.75),
    0 18px 38px -24px color-mix(in srgb, var(--story-accent) 70%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.lp-story-phone::before {
  content: '';
  position: absolute;
  inset: 5px;
  z-index: 3;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.lp-story-phone::after {
  content: '';
  position: absolute;
  inset: 10px 12px auto;
  z-index: 4;
  height: 38%;
  border-radius: 30px 30px 42px 42px;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.14), transparent 38%);
  pointer-events: none;
}
.lp-story-phone-main {
  z-index: 3;
  transform: none;
}
.lp-story-phone-mini {
  position: absolute;
  z-index: 2;
  right: 3%;
  top: 16%;
  width: clamp(168px, 17vw, 206px);
  height: clamp(336px, 37vw, 412px);
  opacity: 0.58;
  transform: translateX(48%) rotate(9deg) scale(0.95);
  filter: saturate(0.9) contrast(0.95);
  pointer-events: none;
}
.lp-story-phone-screen,
.lp-story-device-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--lp-panel);
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.lp-story-device-top {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 6;
  width: 38%;
  height: 22px;
  transform: translateX(-50%);
  background: #050608;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.lp-story-device-top .speaker {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 42%;
  height: 3px;
  border-radius: 999px;
  background: #1e2430;
  transform: translateX(-50%);
}
.lp-story-device-top .camera {
  position: absolute;
  top: 7px;
  left: 14%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.lp-story-device-top .camera span {
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: rgba(82, 136, 255, 0.45);
}
.lp-story-btn {
  position: absolute;
  z-index: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #08090c, #2a2f3b 45%, #08090c);
}
.lp-story-btn.btn1 {
  top: 30%;
  right: -4px;
  height: 52px;
}
.lp-story-btn.btn2,
.lp-story-btn.btn3 {
  left: -4px;
  height: 34px;
}
.lp-story-btn.btn2 { top: 25%; }
.lp-story-btn.btn3 { top: 35%; }
.lp-story-phone-mini .lp-story-device-top {
  height: 18px;
  top: 8px;
}
.lp-story-phone-mini .lp-story-device-screen {
  border-radius: 30px;
}

/* closing "saiba mais" link */
.lp-cases-more {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: clamp(48px, 8vw, 100px);
}
.lp-cases-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--lp-primary);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-cases-more-link svg { width: 17px; height: 17px; transition: transform 0.25s ease; }
.lp-cases-more-link:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.4); }
.lp-cases-more-link:hover svg { transform: translateX(4px); }

/* student-side wrap-up — a wider, centered note before the "saiba mais" link */
.lp-cases-aluno {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: clamp(56px, 9vw, 120px) auto 0;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--lp-radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-cases-aluno .lp-cases-kicker {
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
}
.lp-cases-aluno .lp-cases-kicker svg { width: 15px; height: 15px; }
.lp-cases-aluno h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 14px;
}
.lp-cases-aluno p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 540px;
}

/* =========================================================================
   CLOSING CTA + FOOTER
   ========================================================================= */
.lp-cta {
  text-align: center;
  padding-top: clamp(48px, 7vw, 96px);
  /* extra bottom room so the store buttons never touch the footer (which is
     pulled up by margin-top:-24px) */
  padding-bottom: clamp(80px, 9vw, 132px);
}
.lp-cta h2 {
  font-size: clamp(34px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 auto 14px;
  max-width: 14ch;
  color: var(--lp-ink);
}
.lp-cta p {
  font-size: 17px;
  color: var(--lp-text-soft);
  margin: 0 auto 32px;
  max-width: 460px;
  line-height: 1.5;
}
.lp-cta-stores { justify-content: center; }

.lp-footer {
  background: var(--lp-ink);
  color: #fff;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 56px);
  border-radius: var(--lp-radius-xl) var(--lp-radius-xl) 0 0;
  margin-top: -24px;
}
.lp-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lp-footer-brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.lp-footer-brand img { width: 40px; height: 40px; border-radius: 11px; }
.lp-footer-brand .thin { font-weight: 400; color: rgba(255,255,255,0.6); margin-left: 5px; }
.lp-footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.lp-footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.lp-footer-links a:hover { color: #fff; }
.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}
.lp-footer-bottom .lp-stores { gap: 10px; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 920px) {
  .lp-hero { grid-template-columns: 1fr; }
  .lp-hero-left { max-width: none; }
  .lp-stage { min-height: 520px; }
  .lp-feat { grid-template-columns: 1fr; }
  .lp-nav-links { display: none; }
  .lp-burger { display: flex; }
  .lp-mobile-menu { display: flex; }
  /* story blocks stack vertically (text over phone), no side alternation */
  .lp-story,
  .lp-story.rev { grid-template-columns: 1fr; gap: 28px; }
  .lp-story .lp-story-text,
  .lp-story.rev .lp-story-text { order: 1; text-align: center; max-width: none; margin: 0 auto; }
  .lp-story .lp-story-phonewrap,
  .lp-story.rev .lp-story-phonewrap { order: 2; }
  /* no horizontal slide-in on stacked layout — just fade up */
  .lp-story .lp-story-text,
  .lp-story.rev .lp-story-text { transform: translateY(24px); }
  .lp-story-text::before,
  .lp-story.rev .lp-story-text::before { display: none; }
  .lp-story-phonewrap {
    min-height: 590px;
    max-width: 620px;
    margin: 0 auto;
  }
  .lp-story-phone { width: clamp(220px, 54vw, 280px); height: clamp(440px, 108vw, 560px); }
  .lp-story-phone-mini {
    right: 13%;
    top: 18%;
    opacity: 0.42;
    transform: translateX(42%) rotate(9deg) scale(0.9);
  }
  .lp-story-float.metric { left: 3%; top: 12%; }
  .lp-story-float.note { right: 2%; bottom: 14%; }
  .lp-story-token.token-main { right: 10%; }
  .lp-story-token.token-dot { left: 11%; }
}
@media (max-width: 640px) {
  .lp-shell { padding: 10px; }
  .lp-panel { border-radius: 30px; }
  /* roomier vertical rhythm on mobile (the earlier, more generous padding) */
  .lp-section { padding: 40px 22px; }
  .lp-hero { padding-top: 40px; }
  .lp-nav { margin: 10px; padding: 9px 9px 9px 14px; }
  /* hide the text CTA in the bar — the burger drives navigation on mobile */
  .lp-nav-cta { display: none; }
  .lp-h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .lp-sub { font-size: 15px; max-width: none; }
  /* stack the store buttons so neither is clipped on narrow screens */
  .lp-stores { width: 100%; flex-direction: column; }
  .lp-store-btn { width: 100%; justify-content: center; }
  .lp-trust { gap: 14px; }
  .lp-trust-stat b { font-size: 19px; }
  .lp-footer-top { flex-direction: column; align-items: flex-start; }
  .lp-footer-bottom { flex-direction: column; align-items: flex-start; }
  .lp-footer-bottom .lp-stores { flex-direction: column; }
  .lp-cases { padding-left: 22px; padding-right: 22px; }
  .lp-story-phonewrap {
    min-height: 530px;
    overflow: visible;
  }
  .lp-story-phone { width: clamp(208px, 68vw, 252px); height: clamp(416px, 136vw, 504px); }
  .lp-story-phone-mini,
  .lp-story-float.note,
  .lp-story-token.token-dot { display: none; }
  .lp-story-float.metric {
    top: 5%;
    left: 50%;
    min-width: 118px;
    padding: 10px 12px;
    transform: translateX(-118%);
    animation: none;
  }
  .lp-story-float.metric strong { font-size: 20px; }
  .lp-story-token.token-main {
    top: 8%;
    right: 50%;
    width: 48px;
    height: 48px;
    transform: translateX(128%);
    animation: none;
  }
  .lp-story-backdrop { inset: 9% -10%; }
  /* keep generous vertical room on the closing CTA so the store buttons don't
     touch the footer (the generic .lp-section padding above would shrink it) */
  .lp-cta { padding: 56px 20px 88px; }
  .lp-footer { margin-top: 0; padding-top: 44px; }
  /* a touch more separation between the cases block and the CTA panel on mobile */
  .lp-cases { margin-top: 10px; }
}
@media (max-width: 400px) {
  .lp-h1 { font-size: 27px; }
  .lp-brand { font-size: 16px; }
  .lp-brand img { width: 30px; height: 30px; }
  /* allow long words to wrap rather than clip on very narrow screens */
  .lp-reveal-word { white-space: normal; overflow-wrap: break-word; }
  .lp-story-phonewrap { min-height: 500px; }
  .lp-story-phone { width: 206px; height: 412px; }
  .lp-story-float.metric {
    top: 4%;
    transform: translateX(-104%);
  }
  .lp-story-token.token-main { transform: translateX(118%); }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp-root *,
  .lp-root *::before,
  .lp-root *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .lp-reveal-char,
  .lp-rt-char { opacity: 1; transform: none; filter: none; }
  .lp-fade { opacity: 1; transform: none; }
  .lp-story-kicker,
  .lp-story-text p { opacity: 1; transform: none; }
}

/* =========================================================================
   SAIBA MAIS — sub-page (/landing-page/saiba-mais).
   Light panel surface (matches the landing) with a soft blue brand wash, and
   FROSTED-WHITE GLASS cards on top — harmonic glassmorphism on a light bg.
   Reuses the shared nav, footer, reveal motion and store badges.
   ========================================================================= */
/* ---- light page surface with a subtle blue brand wash + faint dot grid ---- */
.lp-more-page {
  position: relative;
  isolation: isolate;
  margin: 14px auto 0;
  max-width: 1280px;
  padding: clamp(24px, 3vw, 56px) clamp(12px, 3vw, 44px) clamp(40px, 5vw, 88px);
  border-radius: var(--lp-radius-xl);
  background:
    radial-gradient(110% 70% at 50% -8%, rgba(61, 103, 255, 0.12), transparent 56%),
    radial-gradient(80% 60% at 100% 100%, rgba(8, 16, 149, 0.07), transparent 60%),
    var(--lp-panel);
  box-shadow: var(--lp-shadow-soft);
  overflow: hidden;
}
.lp-more-page::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(8, 16, 149, 0.5) 1px, transparent 1.7px);
  background-size: 44px 44px;
  opacity: 0.05;
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 88%, transparent);
}
.lp-more-page > .lp-section { position: relative; z-index: 1; }

/* ---- glass card utility — frosted WHITE glass over the light surface ----
   the slight translucency + blur let the blue wash and dot grid show through,
   which is what makes it read as glass rather than a flat white card */
.lp-glass {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    0 18px 40px -22px rgba(20, 24, 60, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ---- the .light modifiers map to dark-on-light text on this surface ---- */
.lp-h1.light { color: var(--lp-ink); }
.lp-h1.light .accent { color: var(--lp-primary); }
.lp-sub.light { color: var(--lp-text-soft); }
.lp-section-head.light h2 { color: var(--lp-ink); }
.lp-section-head.light p { color: var(--lp-text-soft); }

/* glass pill eyebrow / kicker (white frosted, primary text) */
.lp-eyebrow.glass {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--lp-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lp-section-head .kicker.glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--lp-primary);
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lp-section-head .kicker.glass svg { width: 15px; height: 15px; }

/* center the section heads used on this page + lift the paragraph clamp */
.lp-more-page .lp-section-head {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lp-more-page .lp-section-head p { max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---- INTRO — text-led opening (no per-character reveal, just a calm fade) ---- */
.lp-more-intro {
  text-align: center;
  padding-top: clamp(44px, 6vw, 80px);
  padding-bottom: clamp(28px, 4vw, 48px);
}
.lp-more-intro .lp-eyebrow { margin-bottom: 20px; }
.lp-more-intro .lp-h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
/* readable prose column — generous measure, comfortable line-height */
.lp-more-lead {
  max-width: 680px;
  margin: 22px auto 0;
  text-align: left;
}
.lp-more-lead p {
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.7;
  color: var(--lp-text-soft);
  margin: 0 0 16px;
}
.lp-more-lead p:last-child { margin-bottom: 0; }
.lp-more-lead a { color: var(--lp-primary); font-weight: 600; }
.lp-more-lead a:hover { text-decoration: underline; }

/* ---- CONCEPT — "um app que liga duas rotinas": two prose columns ---- */
.lp-more-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
.lp-more-col {
  border-radius: var(--lp-radius-lg);
  padding: clamp(24px, 3vw, 34px);
}
.lp-more-col-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  border: 1px solid transparent;
}
.lp-more-col-tag svg { width: 15px; height: 15px; }
.lp-more-col-tag.personal { background: rgba(8, 16, 149, 0.1); border-color: rgba(8, 16, 149, 0.16); color: var(--lp-primary); }
.lp-more-col-tag.aluno { background: rgba(219, 39, 119, 0.1); border-color: rgba(219, 39, 119, 0.18); color: #db2777; }
.lp-more-col p { font-size: 15px; line-height: 1.65; color: var(--lp-text-soft); margin: 0; }

/* ---- STEP LIST — numbered, descriptive rows (personal & aluno journeys) ---- */
.lp-more-steplist-sec { padding-top: 0; }
.lp-more-steplist {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-more-stepitem {
  border-radius: var(--lp-radius-lg);
  padding: clamp(20px, 2.6vw, 30px);
}
.lp-more-stepitem-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.lp-more-stepitem-n {
  font-size: 15px;
  font-weight: 800;
  color: var(--lp-primary);
  letter-spacing: 0.04em;
  opacity: 0.55;
}
.lp-more-stepitem.aluno .lp-more-stepitem-n { color: #db2777; }
.lp-more-stepitem-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(8, 16, 149, 0.1);
  color: var(--lp-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.lp-more-stepitem.aluno .lp-more-stepitem-ico { background: rgba(219, 39, 119, 0.1); color: #db2777; }
.lp-more-stepitem-ico svg { width: 22px; height: 22px; }
.lp-more-stepitem h3 { font-size: clamp(17px, 1.7vw, 20px); font-weight: 800; color: var(--lp-ink); margin: 0; letter-spacing: -0.01em; }
.lp-more-stepitem p { font-size: clamp(14px, 1.25vw, 16px); line-height: 1.65; color: var(--lp-text-soft); margin: 0; }

/* ---- FAQ ---- */
.lp-more-faqlist {
  max-width: 820px;
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-more-faqitem {
  border-radius: var(--lp-radius-md);
  padding: clamp(20px, 2.4vw, 28px);
}
.lp-more-faqitem h3 { font-size: clamp(16px, 1.5vw, 19px); font-weight: 800; color: var(--lp-ink); margin: 0 0 10px; letter-spacing: -0.01em; }
.lp-more-faqitem p { font-size: clamp(14px, 1.25vw, 16px); line-height: 1.65; color: var(--lp-text-soft); margin: 0; }

/* ---- the two "sides" (personal / aluno) — text + phone, alternating ---- */
.lp-more-side {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}
.lp-more-side.rev .lp-more-side-text { order: 2; }
.lp-more-side.rev .lp-more-phonewrap { order: 1; }
.lp-more-side-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lp-more-side-kicker svg { width: 15px; height: 15px; }
.lp-more-side-kicker.personal { background: rgba(8, 16, 149, 0.08); border-color: rgba(8, 16, 149, 0.14); color: var(--lp-primary); }
.lp-more-side-kicker.aluno { background: rgba(219, 39, 119, 0.08); border-color: rgba(219, 39, 119, 0.16); color: #db2777; }
.lp-more-side-kicker.neutral { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.18); color: #059669; }
.lp-more-side-text h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--lp-ink);
  margin: 0 0 14px;
}
.lp-more-side-text > p {
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.68;
  color: var(--lp-text-soft);
  margin: 0 0 16px;
  max-width: 540px;
}
.lp-more-side-text > p:last-child { margin-bottom: 0; }

/* ---- side phone (CSS device wrapping a live app screen) ---- */
.lp-more-phonewrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}
/* a small, soft halo hugging the device */
.lp-more-glow {
  position: absolute;
  z-index: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  background: radial-gradient(circle, rgba(61, 103, 255, 0.45), transparent 68%);
  pointer-events: none;
}
.lp-more-phonewrap.aluno .lp-more-glow { background: radial-gradient(circle, rgba(244, 114, 182, 0.4), transparent 68%); }
.lp-more-phonewrap.progress .lp-more-glow { background: radial-gradient(circle, rgba(16, 185, 129, 0.36), transparent 68%); }
.lp-more-phone {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 580px;
  border-radius: 44px;
  background: #0b0d10;
  padding: 12px;
  box-shadow:
    0 40px 80px -24px rgba(20, 24, 60, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.lp-more-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #0b0d10;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.lp-more-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: var(--lp-panel);
}

/* ---- CTA on the light surface ---- */
.lp-cta.light h2 { color: var(--lp-ink); }
.lp-cta.light p { color: var(--lp-text-soft); }

/* ---- back-to-home link under the CTA ---- */
.lp-more-back { margin-top: 22px; }
.lp-more-back a { color: var(--lp-text-soft); font-weight: 600; font-size: 14px; transition: color 0.2s ease; }
.lp-more-back a:hover { color: var(--lp-primary); }

/* ---- responsive ---- */
@media (max-width: 920px) {
  .lp-more-twocol { grid-template-columns: 1fr; }
  .lp-more-side,
  .lp-more-side.rev { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .lp-more-side .lp-more-side-text,
  .lp-more-side.rev .lp-more-side-text { order: 1; }
  .lp-more-side .lp-more-phonewrap,
  .lp-more-side.rev .lp-more-phonewrap { order: 2; min-height: 520px; }
  .lp-more-side-text > p { margin-left: auto; margin-right: auto; }
  /* the step lists below a "side" intro read better left-aligned even on mobile */
  .lp-more-stepitem,
  .lp-more-faqitem { text-align: left; }
}
@media (max-width: 640px) {
  .lp-more-page { margin-left: 10px; margin-right: 10px; border-radius: 30px; }
  .lp-more-lead { text-align: left; }
  .lp-more-stepitem-head { flex-wrap: wrap; gap: 10px; }
  .lp-more-phone { width: clamp(220px, 70vw, 264px); height: clamp(456px, 145vw, 548px); }
  .lp-more-phonewrap { min-height: 500px; }
  .lp-more-glow { width: 240px; height: 240px; }
}
