/* ============================================================================
   The public page. Loaded after style.css and deliberately unlayered, so it
   wins over the portal's `pages` layer without touching it. It borrows the
   tokens, the type, `.eyebrow`, `.btn`, `.btn-ghost-navy`, `.enter`, the
   reveal classes and the `site-foot-*` footer; everything else is `lp-`.
   ========================================================================== */

:root {
  --lp-header-h: 72px;
  --lp-band: clamp(64px, 6vw + 32px, 128px);
  --lp-col: 1180px;
  --lp-gutter: clamp(1.1rem, 4vw, 2.75rem);
  --lp-navy-ink: rgba(255, 255, 255, 0.78);
  --lp-navy-line: rgba(255, 255, 255, 0.12);
  --lp-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--lp-header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.lp-body { background: var(--paper); color: var(--ink-soft); }
.lp { overflow-x: clip; }
.lp-col { max-width: var(--lp-col); margin-inline: auto; padding-inline: var(--lp-gutter); }
.lp-col + .lp-col { margin-top: clamp(40px, 5vw, 72px); }

.lp-skip {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: #fff; color: var(--ink); padding: 8px 14px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.lp-skip:focus { top: 12px; }

/* ---- type ---------------------------------------------------------------- */
.lp-h1 {
  color: #fff; margin: 18px 0 0;
  font-size: clamp(2.6rem, 1.6rem + 4.2vw, 4.9rem);
  line-height: 1.02; letter-spacing: -0.02em; font-weight: 600;
}
.lp-h2 {
  font-size: clamp(1.9rem, 1.3rem + 2vw, 3rem);
  line-height: 1.08; letter-spacing: -0.015em; margin: 10px 0 0;
}
.lp-h2-big { font-size: clamp(2.3rem, 1.5rem + 3vw, 4rem); }
.lp-eyebrow-navy { color: #DFA057; }
.lp-lead { font-size: 1.2rem; line-height: 1.55; color: var(--ink); }
.lp-band-sub { color: var(--muted); margin-top: 14px; max-width: 62ch; font-size: 1.02rem; line-height: 1.6; }
.lp-band-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 4vw, 56px); }
.lp-band-head .lp-band-sub { margin-inline: auto; }
.lp-band-head-left { text-align: left; margin-inline: 0; }
.lp-band-head-left .lp-band-sub { margin-inline: 0; }

/* masked line reveal for the H1, the portal's own greeting-line trick */
.lp-line { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.lp-line-in {
  display: block; transform: translateY(112%);
  animation: lp-line-up 0.9s var(--lp-ease) forwards;
  animation-delay: var(--ld, 0s);
}
.lp-line-soft { color: rgba(255, 255, 255, 0.5); }
@keyframes lp-line-up { to { transform: none; } }

/* ---- header -------------------------------------------------------------- */
.lp-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; gap: 28px;
  height: var(--lp-header-h); padding-inline: var(--lp-gutter);
  color: #fff;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background var(--t-normal), border-color var(--t-normal), backdrop-filter var(--t-normal);
}
.lp-header.is-scrolled {
  background: rgba(13, 18, 25, 0.86);
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--rail-line);
}
.lp-header :focus-visible { outline-color: #fff; }
.lp-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.lp-brand img { display: block; }
.lp-brand span {
  font-family: var(--font-display); font-weight: 600; font-size: 1.28rem;
  letter-spacing: -0.012em; white-space: nowrap;
}
.lp-nav { display: flex; gap: 4px; margin-left: 12px; }
.lp-nav a {
  padding: 8px 12px; border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.8); font-size: 0.92rem; font-weight: 500;
  transition: color var(--t-fast), background var(--t-fast);
}
.lp-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.lp-header-cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.lp-login { color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; font-weight: 500; }
.lp-login:hover { color: #fff; }
.lp-btn-light {
  background: #fff; color: var(--ink); border-color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 8px 24px -10px rgba(0, 0, 0, 0.6);
}
.lp-btn-light:hover { background: var(--rail-ink); color: var(--ink); border-color: var(--rail-ink); }

.lp-menu { display: none; margin-left: auto; position: relative; }
.lp-menu summary { list-style: none; cursor: pointer; padding: 10px; border-radius: var(--radius-sm); }
.lp-menu summary::-webkit-details-marker { display: none; }
.lp-burger { display: grid; gap: 5px; width: 22px; }
.lp-burger i { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.lp-menu[open] .lp-burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-menu[open] .lp-burger i:nth-child(2) { opacity: 0; }
.lp-menu[open] .lp-burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lp-menu-sheet {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 260px;
  display: grid; gap: 2px; padding: 10px;
  background: var(--rail-top); border: 1px solid var(--rail-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: rise 0.25s var(--lp-ease) backwards;
}
.lp-menu-sheet > a { padding: 10px 12px; border-radius: var(--radius-sm); color: var(--rail-ink); font-weight: 500; }
.lp-menu-sheet > a:hover { background: rgba(255, 255, 255, 0.07); color: #fff; }
.lp-menu-foot { display: grid; gap: 10px; margin-top: 8px; padding: 12px 12px 4px; border-top: 1px solid var(--rail-line); }
.lp-menu-foot > a:first-child { color: var(--rail-ink); font-size: 0.92rem; }

@media (max-width: 899px) {
  .lp-nav, .lp-header-cta { display: none; }
  .lp-menu { display: block; }
}

/* ---- hero ---------------------------------------------------------------- */
.lp-hero {
  position: relative; overflow: clip; color: var(--lp-navy-ink);
  background:
    radial-gradient(900px 520px at 80% -10%, rgba(46, 90, 168, 0.35), transparent 60%),
    linear-gradient(168deg, #182747 0%, var(--panel) 55%, #0C1628 100%);
  padding-top: calc(var(--lp-header-h) + clamp(40px, 7vw, 96px));
  padding-bottom: clamp(48px, 5vw, 72px);
}
.lp-hero-glow {
  position: absolute; inset: -20% -10% auto; height: 120%; pointer-events: none;
  background:
    radial-gradient(520px 380px at 22% 40%, rgba(192, 138, 53, 0.18), transparent 65%),
    radial-gradient(640px 420px at 78% 70%, rgba(46, 90, 168, 0.28), transparent 65%);
  transform: translate3d(0, var(--lp-py, 0), 0); will-change: transform;
}
.lp-ecg {
  position: absolute; left: 0; right: 0; bottom: 8%; width: 100%; height: 220px;
  pointer-events: none; opacity: 0.55;
}
.lp-ecg path {
  fill: none; stroke: #C08A35; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: lp-draw 2.8s var(--lp-ease) 0.4s forwards;
}
@keyframes lp-draw { to { stroke-dashoffset: 0; } }

.lp-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.lp-hero-sub { font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.22rem); line-height: 1.6; max-width: 50ch; margin-top: 24px; color: rgba(255, 255, 255, 0.78); }
.lp-hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.lp-hero-note { margin-top: 18px; font-size: 0.86rem; color: rgba(255, 255, 255, 0.55); }

.lp-hero-visual { position: relative; max-width: 520px; justify-self: end; width: 100%; margin-bottom: 64px; }
/* One card, straddling the photo's bottom-left corner: half on the frame,
   half off it, so the overlap is plainly deliberate and pulls the eye back
   toward the buttons. */
.lp-hero-card {
  position: absolute; left: -12%; bottom: -10%; z-index: 3; width: min(310px, 78%);
  padding: 20px 22px 18px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(26px) saturate(150%); backdrop-filter: blur(26px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.22); border-top-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.6);
  color: #fff;
}
.lp-card-eyebrow { display: block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #E4B47E; }
.lp-card-when { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.01em; margin-top: 4px; font-variant-numeric: tabular-nums; }
.lp-card-doc { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--lp-navy-line); }
.lp-card-doc > span { display: grid; min-width: 0; }
.lp-card-doc > span b { font-size: 0.92rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-card-doc > span span { font-size: 0.76rem; color: rgba(255, 255, 255, 0.62); }
.lp-avatar { width: 40px; height: 40px; border-radius: var(--radius-sm); object-fit: cover; flex: none; border: 1.5px solid rgba(255, 255, 255, 0.5); background: var(--brand-tint); }
.lp-avatar-initials { display: inline-grid; place-items: center; font-weight: 700; color: var(--brand); font-size: 0.9rem; }
.lp-card-state { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.82rem; color: #8CE8B4; font-weight: 600; }
.lp-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #5FD08F; flex: none; }
.lp-dot::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid #5FD08F; opacity: 0; animation: lp-pulse 2.2s ease-out infinite; }
@keyframes lp-pulse { 0% { transform: scale(0.5); opacity: 0.9; } 100% { transform: scale(1.4); opacity: 0; } }

.lp-float { animation: lp-float 7s ease-in-out infinite; }
@keyframes lp-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } }

.lp-trust {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px 28px;
  margin-top: clamp(48px, 6vw, 80px); padding-top: 26px; border-top: 1px solid var(--lp-navy-line);
}
.lp-trust-chip { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.82); line-height: 1.35; }
.lp-trust-chip svg { width: 20px; height: 20px; stroke: #DFA057; stroke-width: 1.9; flex: none; }

@media (max-width: 980px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-visual { justify-self: stretch; max-width: 560px; margin-top: 16px; }
  .lp-hero-card { left: 0; }
  .lp-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lp-trust { grid-template-columns: 1fr; }
  .lp-hero-card { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(23, 37, 63, 0.94); }
  .lp-hero-card { width: min(310px, 88%); }
}

/* ---- ticker -------------------------------------------------------------- */
.lp-ticker { overflow: hidden; background: var(--paper); border-bottom: 1px solid var(--border); padding-block: 14px; }
.lp-ticker-track {
  display: flex; align-items: center; gap: 22px; width: max-content;
  animation: lp-marquee 42s linear infinite;
}
.lp-ticker:hover .lp-ticker-track { animation-play-state: paused; }
.lp-ticker-track span { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink-soft); white-space: nowrap; }
.lp-ticker-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; }
@keyframes lp-marquee { to { transform: translateX(-50%); } }

/* ---- bands --------------------------------------------------------------- */
.lp-band { position: relative; padding-block: var(--lp-band); }
.lp-band-paper { background: var(--paper); }
.lp-band-ground { background: var(--ground); }
.lp-band-navy { background: linear-gradient(160deg, var(--panel-2) 0%, var(--panel) 100%); color: var(--lp-navy-ink); }
.lp-band-navy h2, .lp-band-navy h3 { color: #fff; }
.lp-band-navy :focus-visible { outline-color: #fff; }
.lp-band-paper + .lp-band-paper { padding-top: 0; }

/* ---- purpose (editorial) -------------------------------------------------- */
.lp-editorial { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.lp-editorial-body p + p { margin-top: 1em; }
.lp-editorial-body p { font-size: 1.05rem; line-height: 1.65; }
.lp-editorial-body .lp-lead { margin-bottom: 1.2em; }
.lp-three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); }
.lp-three-item { padding-top: 22px; border-top: 1px solid var(--border-strong); }
.lp-numeral { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--accent); font-variant-numeric: tabular-nums; margin-bottom: 10px; }
.lp-three-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; letter-spacing: -0.01em; margin-bottom: 8px; }
.lp-three-item p { font-size: 0.96rem; line-height: 1.6; color: var(--muted); }
@media (max-width: 860px) {
  .lp-editorial { grid-template-columns: 1fr; }
  .lp-three { grid-template-columns: 1fr; gap: 22px; }
}

/* ---- photograph placeholders --------------------------------------------- */
.lp-ph {
  position: relative; overflow: hidden; margin: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #DDE3EC 0%, #EEF1F5 48%, #E3E8EF 100%);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.lp-ph::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='120' viewBox='0 0 320 120'%3E%3Cpath d='M0 60h96l10-18 12 36 10-18h60l8-12 10 24 8-12h106' fill='none' stroke='%238C5A12' stroke-opacity='.35' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 62% auto;
}
.lp-ph::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 17, 23, 0.55) 100%);
}
.lp-ph figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1;
  font-size: 0.78rem; line-height: 1.45; color: rgba(255, 255, 255, 0.86);
}
.lp-ph figcaption b {
  display: block; margin-bottom: 4px;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #E4B47E;
}
.lp-ph figcaption em { font-style: normal; font-weight: 600; }
.lp-ph .lp-img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
/* A real picture hides the placeholder's ECG mark; a portal screenshot
   also drops the caption gradient, which belongs to photographs only. */
.lp-ph:has(.lp-img)::before { display: none; }
.lp-ph-screen:has(.lp-img)::after { display: none; }
.lp-ph-portrait { aspect-ratio: 4 / 5; }
.lp-ph-wide { aspect-ratio: 21 / 9; max-width: 100%; }
.lp-ph-tall { aspect-ratio: 3 / 4; }
.lp-ph-screen { aspect-ratio: 16 / 10; border-radius: 0; box-shadow: none; }
.lp-ph-on-navy { background: linear-gradient(135deg, #24365C 0%, #17253F 55%, #101C33 100%); box-shadow: var(--shadow-lg); }
.lp-ph-on-navy::before { opacity: 0.9; }
.lp-hero .lp-ph-portrait { background: linear-gradient(135deg, #2A3D66 0%, #1B2A4A 50%, #12203A 100%); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7); }
.lp-hero .lp-ph-portrait::before { opacity: 0.9; }
.lp-hero .lp-ph-portrait::after { background: linear-gradient(0deg, transparent 55%, rgba(13, 17, 23, 0.55) 100%); }
.lp-hero .lp-ph-portrait figcaption { top: 18px; bottom: auto; }
[data-parallax].lp-ph { transform: translate3d(0, var(--lp-py, 0), 0); will-change: transform; }

/* ---- how it works -------------------------------------------------------- */
.lp-steps-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 36ch); gap: 20px 56px; align-items: end; margin-bottom: 56px; }
.lp-steps-sub { color: var(--muted); line-height: 1.55; padding-bottom: 6px; }
/* The road: an SVG the script sizes to the list and threads through the
   numerals. A dotted grey track shows the whole route; the copper line on
   top is how far the reader has come. */
.lp-path { position: relative; max-width: 1040px; margin: 0 auto; }
.lp-path-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.lp-path-track { fill: none; stroke: var(--border-strong); stroke-width: 2; stroke-dasharray: 2 9; stroke-linecap: round; }
.lp-path-draw { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; transition: stroke-dashoffset 0.2s linear; }
.lp-steps { position: relative; list-style: none; display: flex; flex-direction: column; padding-top: 44px; }
.lp-step {
  position: relative; width: 47%;
  padding: 30px 26px 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.45s var(--lp-ease), border-color 0.45s var(--lp-ease);
}
.lp-step:nth-child(odd) { align-self: flex-start; }
.lp-step:nth-child(even) { align-self: flex-end; }
.lp-step + .lp-step { margin-top: -116px; }
.lp-step.is-active { box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.lp-step-n {
  position: absolute; top: -24px; left: 50%; translate: -50% 0; z-index: 1;
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1; font-weight: 600; font-variant-numeric: tabular-nums;
  background: var(--surface); color: var(--muted); border: 2px solid var(--border-strong); box-shadow: var(--shadow-sm);
  transition: background-color 0.35s var(--lp-ease), color 0.35s var(--lp-ease), border-color 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease);
}
.lp-step-n.is-lit { background: var(--accent); border-color: var(--accent); color: #fff; }
.lp-step.is-active .lp-step-n { box-shadow: 0 0 0 7px rgba(140, 90, 18, 0.14), var(--shadow-sm); }
.lp-step-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; margin-bottom: 6px; }
.lp-step-body p { font-size: 0.95rem; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 860px) {
  .lp-steps-head { grid-template-columns: 1fr; margin-bottom: 40px; }
  .lp-steps-sub { padding-bottom: 0; }
}
@media (max-width: 720px) {
  .lp-steps { padding-top: 36px; }
  .lp-step { width: 100%; padding: 28px 20px 20px; }
  .lp-step + .lp-step { margin-top: 26px; }
  .lp-step-n { left: 22px; translate: 0 0; width: 42px; height: 42px; top: -21px; font-size: 1.2rem; }
}

/* the mini product vignettes inside the steps */
.lp-vig { margin-top: 14px; padding: 13px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--ground); font-size: 0.84rem; }
.lp-vig-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-vchip { padding: 7px 12px; border: 1px solid var(--border-strong); border-radius: var(--radius-pill); background: var(--surface); color: var(--ink-soft); font-weight: 500; }
.lp-vchip.is-on, .lp-vslots span.is-on, .lp-vopts span.is-on { background: var(--brand); color: #fff; border-color: var(--brand); }
.lp-vdoc { display: flex; align-items: center; gap: 10px; }
.lp-vdoc > span { display: grid; line-height: 1.25; }
.lp-vdoc b { color: var(--ink); font-weight: 600; }
.lp-vdoc span span { color: var(--muted); font-size: 0.76rem; }
.lp-vavatar { width: 36px; height: 36px; border-radius: var(--radius-sm); object-fit: cover; display: inline-grid; place-items: center; background: var(--brand-tint); color: var(--brand); font-weight: 700; font-style: normal; font-size: 0.8rem; flex: none; }
.lp-vslots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.lp-vslots span, .lp-vopts span { padding: 6px 11px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); background: var(--surface); font-variant-numeric: tabular-nums; }
.lp-vform-head { display: flex; justify-content: space-between; font-weight: 600; color: var(--ink); }
.lp-vform-head span:last-child { color: var(--muted); font-weight: 500; font-variant-numeric: tabular-nums; }
.lp-vbar { height: 4px; margin: 10px 0 14px; border-radius: 2px; background: var(--border); overflow: hidden; }
.lp-vbar i { display: block; height: 100%; width: 50%; background: var(--accent); }
.lp-step.is-active .lp-vbar i { animation: lp-bar 1.2s var(--lp-ease); }
@keyframes lp-bar { from { width: 20%; } to { width: 50%; } }
.lp-vq { color: var(--ink); font-weight: 500; margin-bottom: 8px; }
.lp-vopts { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-vig-call { display: grid; justify-items: center; text-align: center; padding: 16px; }
.lp-vig-call b { color: var(--ink); margin-top: 12px; }
.lp-vig-call > span { color: var(--muted); font-size: 0.78rem; }
.lp-vring { position: relative; width: 64px; height: 64px; display: grid; place-items: center; }
.lp-vring img, .lp-vring .lp-vavatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; position: relative; z-index: 1; }
.lp-vring i { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--accent); opacity: 0; }
.lp-step.is-active .lp-vring i { animation: lp-ring 2.4s ease-out infinite; }
.lp-step.is-active .lp-vring i:nth-child(2) { animation-delay: 1.2s; }
@keyframes lp-ring { 0% { transform: scale(0.85); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }
.lp-vdec { padding: 14px 16px; background: var(--surface); border: 1px solid var(--success-border); border-left: 3px solid var(--success); border-radius: var(--radius-sm); }
.lp-vdec-tag { display: inline-block; margin-bottom: 6px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--success); }
.lp-vdec p { color: var(--ink-soft); line-height: 1.5; font-size: 0.84rem; }
.lp-vdoc-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; padding: 10px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.lp-vdoc-row i { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); font-style: normal; font-weight: 700; font-size: 0.7rem; }
.lp-vdoc-row span { color: var(--ink); font-weight: 600; }
.lp-vdoc-row em { margin-left: auto; font-style: normal; color: var(--muted); font-size: 0.76rem; }

/* ---- offer --------------------------------------------------------------- */
.lp-offer { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.lp-tile {
  display: flex; flex-direction: column; gap: 14px; min-height: 100%;
  padding: 22px 22px 18px; color: inherit; font-weight: 400;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease), border-color var(--t-fast);
}
.lp-tile:hover, .lp-tile:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); color: inherit; }
.lp-tile-urgent { background: linear-gradient(160deg, #FFFCF6, var(--surface) 60%); border-color: var(--accent-border); }
.lp-tile-icon { width: 44px; height: 44px; display: inline-grid; place-items: center; border: 1.4px solid var(--border-strong); border-radius: var(--radius-sm); color: var(--brand); }
.lp-tile-icon .specialty-icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.lp-tile-main { display: grid; gap: 4px; }
.lp-tile-main b { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; letter-spacing: -0.01em; color: var(--ink); }
.lp-tile-main span { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.lp-tile-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.lp-price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.lp-go { font-size: 0.88rem; font-weight: 600; color: var(--accent); }
.lp-go span { display: inline-block; transition: transform var(--t-fast); }
.lp-tile:hover .lp-go span { transform: translateX(3px); }
.lp-offer-notes { max-width: 78ch; margin: 34px auto 0; display: grid; gap: 8px; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.lp-offer-notes b { color: var(--ink-soft); font-weight: 600; }

/* ---- team ---------------------------------------------------------------- */
.lp-team { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1040px) { .lp-team { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .lp-team { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } .lp-person-name { font-size: 1.05rem; } .lp-person-quote { font-size: 0.92rem; } }
.lp-person { display: grid; gap: 4px; align-content: start; }
.lp-person-photo {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 14px;
  border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow-md);
}
.lp-person-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--lp-ease); }
.lp-person:hover .lp-person-photo img { transform: scale(1.04); }
.lp-person-initials { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 3rem; color: rgba(255, 255, 255, 0.85); }
.lp-person-name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1.2; }
.lp-person-role { font-size: 0.86rem; color: var(--muted); }
.lp-person-quote { margin-top: 10px; font-family: var(--font-display); font-style: italic; font-size: 1.02rem; line-height: 1.45; color: var(--ink-soft); }
.lp-team-note { margin-top: 34px; max-width: 74ch; font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

/* ---- philosophy ---------------------------------------------------------- */
.lp-phil { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.lp-manifesto { list-style: none; display: grid; }
.lp-manifesto li {
  display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 18px;
  padding: 26px 0; border-top: 1px solid var(--lp-navy-line);
}
.lp-manifesto li:last-child { border-bottom: 1px solid var(--lp-navy-line); }
.lp-manifesto-n { font-family: var(--font-display); font-size: 1.15rem; color: #DFA057; font-variant-numeric: tabular-nums; padding-top: 4px; }
.lp-manifesto h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; letter-spacing: -0.01em; margin-bottom: 8px; }
.lp-manifesto p { line-height: 1.62; color: var(--lp-navy-ink); }
.lp-phil-figure { position: sticky; top: calc(var(--lp-header-h) + 32px); }
@media (max-width: 900px) {
  .lp-phil { grid-template-columns: 1fr; }
  .lp-phil-figure { position: static; max-width: 520px; }
  .lp-manifesto li { grid-template-columns: 44px minmax(0, 1fr); }
}

/* ---- portal screenshots -------------------------------------------------- */
.lp-shots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.lp-shot { margin: 0; display: grid; gap: 14px; align-content: start; }
.lp-shot > figcaption { font-size: 0.92rem; line-height: 1.5; color: var(--muted); }
.lp-shot > figcaption b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); margin-bottom: 4px; }
.lp-frame {
  overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: var(--surface); box-shadow: var(--shadow-md);
  transition: transform 0.45s var(--lp-ease), box-shadow 0.45s var(--lp-ease);
}
.lp-shot:hover .lp-frame { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-frame-bar { display: flex; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--border); background: var(--ground); }
.lp-frame-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
@media (max-width: 900px) { .lp-shots { grid-template-columns: 1fr; max-width: 560px; } }

/* ---- rules --------------------------------------------------------------- */
.lp-rules { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.lp-rule {
  padding: 26px 26px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.lp-rule svg { width: 26px; height: 26px; color: var(--accent); margin-bottom: 14px; }
.lp-rule h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.2; }
.lp-rule p { line-height: 1.6; color: var(--ink-soft); font-size: 0.97rem; }
@media (max-width: 760px) { .lp-rules { grid-template-columns: 1fr; } }

/* ---- faq ----------------------------------------------------------------- */
.lp-faq-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.lp-faq { display: grid; }
.lp-q { border-top: 1px solid var(--border-strong); }
.lp-q:last-child { border-bottom: 1px solid var(--border-strong); }
.lp-q summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 20px 44px 20px 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; letter-spacing: -0.01em; color: var(--ink);
  transition: color var(--t-fast);
}
.lp-q summary::-webkit-details-marker { display: none; }
.lp-q summary:hover { color: var(--brand); }
.lp-q summary::after {
  content: ''; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.3s var(--lp-ease);
}
.lp-q[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.lp-q p { padding: 0 0 22px; max-width: 64ch; line-height: 1.62; color: var(--ink-soft); animation: rise 0.35s var(--lp-ease) backwards; }
@media (max-width: 860px) { .lp-faq-grid { grid-template-columns: 1fr; } }

/* ---- final call ---------------------------------------------------------- */
.lp-final { overflow: clip; text-align: center; }
.lp-ecg-final { top: auto; bottom: 0; height: 150px; opacity: 0.4; }
.lp-ecg-final path { animation: none; }
.lp-ecg-final.is-drawn path { animation: lp-draw 2.4s var(--lp-ease) forwards; }
.lp-final-col { position: relative; z-index: 1; max-width: 760px; }
.lp-final-sub { margin: 18px auto 0; max-width: 46ch; font-size: 1.1rem; line-height: 1.6; color: var(--lp-navy-ink); }
.lp-final .lp-hero-cta { justify-content: center; }

/* ---- footer -------------------------------------------------------------- */
.lp-footer { left: auto; right: auto; width: auto; margin-inline: 0; }
.lp-footer .landing-col { max-width: var(--lp-col); padding-inline: var(--lp-gutter); }

/* ---- motion off ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .lp-line-in { animation: none; transform: none; }
  .lp-ecg path { animation: none; stroke-dashoffset: 0; }
  .lp-path-draw { transition: none; }
  .lp-float, .lp-ticker-track, .lp-dot::after, .lp-vring i, .lp-vbar i { animation: none !important; }
  .lp-ticker-track { flex-wrap: wrap; width: auto; justify-content: center; }
  .lp-hero-glow, [data-parallax].lp-ph { transform: none; }
  .lp-tile:hover, .lp-step.is-active, .lp-shot:hover .lp-frame { transform: none; }
  .lp-person:hover .lp-person-photo img { transform: none; }
}
