/* Lapin Group. Landing pages only: index.html and start.html.
   Dark by design, it does not follow the theme switcher. Loaded after site.css.
   Every landing colour is a token here, nowhere else. */

.landing {
  --l-ground: #06100C;
  --l-ground-2: #081511;
  --l-card: #0B1914;
  --l-card-2: #0E1F19;
  --l-ink: #EAF2EE;
  --l-muted: #95A89F;
  --l-faint: #5F7169;
  --l-rule: rgba(150, 215, 190, .12);
  --l-rule-strong: rgba(150, 215, 190, .22);
  --l-accent: #58D3AE;
  --l-accent-deep: #1F9C7D;
  --l-glow: rgba(88, 211, 174, .28);
  --l-warn: #E3B96B;
  --l-btn-ink: #03110C;
  --l-ease: cubic-bezier(.2, .7, .2, 1);

  background: var(--l-ground);
  color: var(--l-ink);
  color-scheme: dark;
  overflow-x: hidden;
}
.landing section { border-top: 0; }
/* undo shared classes from site.css that share a name with landing ones */
.landing .row { border-top: 0; padding: 0; flex-direction: row; }
.landing .tool, .landing .tool:first-of-type { border: 1px solid var(--l-rule); padding: 12px 20px; }
.landing .tool.mine { border-color: rgba(88, 211, 174, .35); }
.landing .facts { background: none; border: 0; border-radius: 0; overflow: visible; grid-template-columns: 1fr; }
.landing .direct { display: block; }
.landing ::selection { background: var(--l-accent); color: var(--l-btn-ink); }

.landing .lw { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.landing p { color: var(--l-muted); }
.landing a:focus-visible, .landing button:focus-visible,
.landing input:focus-visible, .landing select:focus-visible, .landing textarea:focus-visible {
  outline: 2px solid var(--l-accent); outline-offset: 3px;
}

/* ---------- pill eyebrow ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--l-accent);
  padding: 6px 12px; border: 1px solid var(--l-rule-strong); border-radius: 999px;
  background: rgba(88, 211, 174, .06);
}
.pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--l-accent);
  box-shadow: 0 0 10px var(--l-accent); animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .35; } }

/* ---------- nav ---------- */
.lnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 16, 12, .72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s ease;
}
.lnav.scrolled { border-bottom-color: var(--l-rule); }
.lnav .lw { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.lnav .brand { color: var(--l-ink); font-size: 18px; }
.lnav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.lnav ul a { font-size: 14px; color: var(--l-muted); text-decoration: none; transition: color .15s ease; }
.lnav ul a:hover { color: var(--l-ink); }
@media (max-width: 820px) { .lnav ul { display: none; } }

/* ---------- buttons ---------- */
.lbtn {
  position: relative; display: inline-flex; align-items: center; gap: 10px; overflow: hidden;
  font-family: "IBM Plex Sans", system-ui, sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; padding: 13px 22px; border-radius: 999px; border: 0; cursor: pointer;
  color: var(--l-btn-ink);
  background: linear-gradient(135deg, var(--l-accent-deep) 0%, var(--l-accent) 60%, #9BF0D2 100%);
  box-shadow: 0 0 0 1px rgba(88, 211, 174, .4), 0 10px 30px -10px var(--l-glow);
  transition: transform .2s var(--l-ease), box-shadow .25s ease;
}
.lbtn .arr { transition: transform .2s var(--l-ease); }
.lbtn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg); transition: left .6s var(--l-ease);
}
.lbtn:hover { box-shadow: 0 0 0 1px rgba(88, 211, 174, .6), 0 14px 40px -8px var(--l-glow); }
.lbtn:hover .arr { transform: translateX(3px); }
.lbtn:hover::after { left: 130%; }
.lbtn:active { transform: scale(.97); }
.lbtn.sm { font-size: 13.5px; padding: 9px 16px; }
.lbtn.ghost {
  color: var(--l-ink); background: rgba(255, 255, 255, .02);
  box-shadow: inset 0 0 0 1px var(--l-rule-strong);
}
.lbtn.ghost::after { display: none; }
.lbtn.ghost:hover { box-shadow: inset 0 0 0 1px var(--l-accent); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 96px 0 40px; text-align: center; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: -120px -20% 0; z-index: -2;
  background:
    radial-gradient(ellipse 50% 40% at 50% 18%, rgba(88, 211, 174, .16), transparent 70%),
    radial-gradient(ellipse 30% 30% at 18% 40%, rgba(31, 156, 125, .12), transparent 70%),
    radial-gradient(ellipse 30% 30% at 82% 45%, rgba(88, 211, 174, .08), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(var(--l-rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--l-rule) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 10%, transparent 75%);
  opacity: .5;
}
@keyframes drift { to { transform: translate3d(0, 30px, 0) scale(1.06); } }

.hero h1 {
  font-size: clamp(40px, 7.2vw, 80px); letter-spacing: -.035em; line-height: 1.02;
  max-width: 15ch; margin: 26px auto 0; color: var(--l-ink);
}
.hero .sub { font-size: clamp(16.5px, 2vw, 19px); max-width: 60ch; margin: 26px auto 0; line-height: 1.6; }
.hero .sub b { color: var(--l-ink); font-weight: 500; }
.hero .cta-row { justify-content: center; margin-top: 34px; gap: 12px; }

/* word by word entrance, only when motion is allowed (js adds .motion) */
.motion .hero h1 .w { display: inline-block; opacity: 0; transform: translateY(.35em); filter: blur(8px);
  animation: wordIn .8s var(--l-ease) forwards; animation-delay: calc(var(--i) * 55ms + 80ms); }
@keyframes wordIn { to { opacity: 1; transform: none; filter: blur(0); } }
.motion .hero .rise { opacity: 0; transform: translateY(14px); animation: wordIn .8s var(--l-ease) forwards; }
.motion .hero .rise.d1 { animation-delay: .55s; }
.motion .hero .rise.d2 { animation-delay: .7s; }
.motion .hero .rise.d3 { animation-delay: .9s; }

/* ---------- flow diagram ---------- */
.flow {
  position: relative; margin: 64px auto 0; max-width: 1000px; padding: 34px 30px 30px;
  border: 1px solid var(--l-rule); border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 31, 25, .75), rgba(8, 21, 17, .6));
  box-shadow: 0 40px 120px -40px rgba(88, 211, 174, .18), inset 0 1px 0 rgba(255, 255, 255, .04);
  text-align: left;
}
.flow svg.wires { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.flow .wire { fill: none; stroke: var(--l-rule-strong); stroke-width: 1; }
.flow .pulse { fill: none; stroke: var(--l-accent); stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 5 95; stroke-dashoffset: 100; filter: drop-shadow(0 0 4px var(--l-accent));
  animation: travel 2.8s linear infinite; }
@keyframes travel { to { stroke-dashoffset: 0; } }

.flow .row { position: relative; display: grid; gap: 12px; }
.flow .sources { grid-template-columns: repeat(6, 1fr); }
.flow .steps4 { grid-template-columns: repeat(4, 1fr); }
.flow .chip {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px;
  border: 1px solid var(--l-rule); border-radius: 12px; background: var(--l-card);
  font-size: 13px; color: var(--l-ink); white-space: nowrap;
}
.flow .chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--l-accent); flex: none;
  box-shadow: 0 0 8px var(--l-accent); animation: blink 2.4s ease-in-out infinite; animation-delay: calc(var(--i) * .3s); }
.flow .hub-row { display: flex; justify-content: center; margin: 70px 0; }
.flow .hub {
  position: relative; padding: 14px 22px; border-radius: 14px; text-align: center;
  background: var(--l-card-2); border: 1px solid rgba(88, 211, 174, .45);
  box-shadow: 0 0 0 6px rgba(88, 211, 174, .05), 0 0 40px -6px var(--l-glow);
}
.flow .hub .label { color: var(--l-accent); font-size: 10.5px; }
.flow .hub strong { display: block; font-family: "Space Grotesk", system-ui, sans-serif; font-size: 18px; letter-spacing: -.01em; margin-top: 4px; }
.flow .hub::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; border: 1px solid var(--l-accent);
  animation: ring 2.8s ease-out infinite; opacity: 0; }
@keyframes ring { 0% { opacity: .6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.18, 1.5); } }
.flow .step {
  padding: 16px; border: 1px solid var(--l-rule); border-radius: 14px; background: var(--l-card);
  transition: border-color .3s ease, transform .3s var(--l-ease);
}
.flow .step:hover { border-color: rgba(88, 211, 174, .45); transform: translateY(-2px); }
.flow .step .label { color: var(--l-faint); font-size: 10.5px; }
.flow .step strong { display: block; font-family: "Space Grotesk", system-ui, sans-serif; font-size: 17px; margin: 6px 0 4px; color: var(--l-ink); }
.flow .step span { display: block; font-size: 13px; line-height: 1.45; color: var(--l-muted); }
@media (max-width: 860px) {
  .flow { padding: 22px 16px 18px; }
  .flow .sources { grid-template-columns: repeat(3, 1fr); }
  .flow .steps4 { grid-template-columns: repeat(2, 1fr); }
  .flow .hub-row { margin: 48px 0; }
}
@media (max-width: 480px) {
  .flow .sources { grid-template-columns: repeat(2, 1fr); }
  .flow .chip { font-size: 12.5px; }
}

/* ---------- sections ---------- */
.lsec { position: relative; padding: 120px 0; }
.lsec.tight { padding: 70px 0; }
.lhead { max-width: 760px; margin: 0 auto 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lhead h2 { font-size: clamp(30px, 4.8vw, 52px); letter-spacing: -.03em; line-height: 1.06; color: var(--l-ink); }
.lhead p { margin: 0; font-size: 17.5px; max-width: 60ch; }
.lhead.left { margin-left: 0; text-align: left; align-items: flex-start; }

.panel {
  border: 1px solid var(--l-rule); border-radius: 28px; padding: 90px 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(88, 211, 174, .06), transparent 70%), var(--l-ground-2);
}
@media (max-width: 700px) { .lsec { padding: 84px 0; } .panel { padding: 64px 0; border-radius: 20px; } }

/* scroll reveal */
.motion [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--l-ease), transform .8s var(--l-ease); transition-delay: var(--d, 0s); }
.motion [data-reveal].in { opacity: 1; transform: none; }

/* ---------- marquee ---------- */
.marquee { position: relative; overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee + .marquee { margin-top: 12px; }
.marquee .track { display: flex; gap: 12px; width: max-content; animation: slide 46s linear infinite; }
.marquee.rev .track { animation-direction: reverse; animation-duration: 54s; }
.marquee:hover .track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(calc(-50% - 6px)); } }
.tool {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px;
  border: 1px solid var(--l-rule); border-radius: 12px; background: var(--l-card);
  font-size: 14.5px; color: var(--l-ink); white-space: nowrap;
}
.tool b { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 10px; font-weight: 500;
  color: var(--l-accent); background: rgba(88, 211, 174, .1); }
.tool.mine { border-color: rgba(88, 211, 174, .35); }
.marquee-note { text-align: center; margin: 22px auto 0; padding: 0 24px; font-size: 14px; color: var(--l-faint); }

/* ---------- glow cards ---------- */
.gcard {
  position: relative; border: 1px solid var(--l-rule); border-radius: 20px; background: var(--l-card);
  padding: 30px; overflow: hidden; transition: transform .35s var(--l-ease), border-color .35s ease;
}
.gcard::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), rgba(88, 211, 174, .12), transparent 60%);
  transition: opacity .35s ease;
}
@media (hover: hover) {
  .gcard:hover { border-color: rgba(88, 211, 174, .32); transform: translateY(-3px); }
  .gcard:hover::before { opacity: 1; }
}
.gcard h3 { font-size: 22px; letter-spacing: -.015em; color: var(--l-ink); margin: 0 0 10px; }
.gcard p { margin: 0; font-size: 15.5px; line-height: 1.6; }
.gcard .label { color: var(--l-accent); }

/* ---------- the gap ---------- */
.gap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 800px) { .gap { grid-template-columns: 1fr; } }
.viz {
  height: 190px; margin: 0 0 26px; border-radius: 14px; border: 1px solid var(--l-rule);
  background:
    linear-gradient(var(--l-rule) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, var(--l-rule) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--l-ground-2);
  display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: 20px; position: relative;
}
.viz .nodes { display: flex; align-items: center; justify-content: center; }
.viz .node {
  font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: .06em; color: var(--l-ink);
  padding: 7px 11px; border-radius: 8px; border: 1px solid rgba(88, 211, 174, .45); background: var(--l-card-2);
}
.viz .link { position: relative; width: 44px; height: 1px; background: var(--l-rule-strong); overflow: hidden; }
.viz .link::after { content: ""; position: absolute; top: -1px; left: -12px; width: 12px; height: 3px; border-radius: 3px;
  background: var(--l-accent); box-shadow: 0 0 6px var(--l-accent); animation: zip 1.6s linear infinite; }
.viz .link.l2::after { animation-delay: .8s; }
@keyframes zip { to { left: 100%; } }
.viz .status { display: grid; gap: 8px; max-width: 280px; margin: 0 auto; width: 100%; }
.viz .status div { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; color: var(--l-muted);
  padding: 7px 10px; border-radius: 8px; background: rgba(255, 255, 255, .02); border: 1px solid var(--l-rule); }
.viz .ok { color: var(--l-accent); font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 11.5px; }
.viz .no { color: var(--l-warn); font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 11.5px; animation: blink 2s ease-in-out infinite; }
.viz .doc { width: 100%; max-width: 280px; margin: 0 auto; border-radius: 10px; border: 1px solid var(--l-rule-strong); background: var(--l-card-2); padding: 14px; }
.viz .doc .top { display: flex; justify-content: space-between; font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 11px; color: var(--l-muted); margin-bottom: 12px; }
.viz .bar { height: 7px; border-radius: 4px; margin: 0 0 8px; position: relative; overflow: hidden; background: rgba(255, 255, 255, .06); }
.viz .bar::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent); animation: shimmer 2.6s ease-in-out infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }

.stand {
  margin-top: 20px; display: grid; grid-template-columns: 220px 1fr; gap: 34px; align-items: center;
  border-color: rgba(88, 211, 174, .3);
  background: radial-gradient(ellipse 60% 120% at 0% 50%, rgba(88, 211, 174, .1), transparent 70%), var(--l-card);
}
.stand p + p { margin-top: 14px; }
.stand p b { color: var(--l-ink); font-weight: 500; }
.bridge { position: relative; height: 120px; }
.bridge .side { position: absolute; bottom: 20px; width: 70px; height: 40px; border-radius: 8px; border: 1px solid var(--l-rule-strong); background: var(--l-ground-2);
  display: grid; place-items: center; font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--l-muted); }
.bridge .a { left: 0; } .bridge .b { right: 0; }
.bridge svg { position: absolute; left: 35px; top: 0; width: calc(100% - 70px); height: 100px; overflow: visible; }
.bridge .arc { fill: none; stroke: var(--l-rule-strong); stroke-width: 1.2; stroke-dasharray: 3 5; }
.bridge .dot { fill: var(--l-accent); filter: drop-shadow(0 0 5px var(--l-accent));
  offset-path: path("M0 90 Q100 -10 200 90"); offset-rotate: 0deg; offset-distance: 100%; animation: cross 3.2s var(--l-ease) infinite; }
@keyframes cross { 0% { offset-distance: 0%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@media (max-width: 700px) { .stand { grid-template-columns: 1fr; gap: 10px; } .bridge { max-width: 260px; } }

/* ---------- services ---------- */
.svc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .svc { grid-template-columns: 1fr; } }
.svc .icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 22px;
  color: var(--l-accent); background: rgba(88, 211, 174, .08); border: 1px solid rgba(88, 211, 174, .22); }
.svc .icon svg { width: 22px; height: 22px; }
.svc .top { display: flex; justify-content: space-between; align-items: flex-start; }
.svc .top .label { color: var(--l-faint); }

/* ---------- how it works ---------- */
.how { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.how::before, .how::after { content: ""; position: absolute; top: 23px; left: 23px; right: calc(25% - 28px); height: 1px; background: var(--l-rule-strong); }
.how::after { background: linear-gradient(90deg, var(--l-accent-deep), var(--l-accent)); transform-origin: left; transform: scaleX(0);
  box-shadow: 0 0 10px var(--l-accent); transition: transform 1.8s var(--l-ease) .2s; }
.how.in::after, html:not(.motion) .how::after { transform: scaleX(1); }
.how .num { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 13px; color: var(--l-muted);
  background: var(--l-ground-2); border: 1px solid var(--l-rule-strong); margin-bottom: 22px;
  transition: color .4s ease, border-color .4s ease, box-shadow .4s ease; transition-delay: var(--d, 0s); }
.how.in .num, html:not(.motion) .how .num { color: var(--l-btn-ink); background: var(--l-accent); border-color: var(--l-accent); box-shadow: 0 0 20px -2px var(--l-glow); }
.how h3 { font-size: 19px; color: var(--l-ink); margin: 0 0 8px; letter-spacing: -.01em; }
.how p { margin: 0; font-size: 15px; line-height: 1.6; }
@media (max-width: 860px) {
  .how { grid-template-columns: 1fr; gap: 28px; }
  .how::before, .how::after { top: 23px; bottom: 23px; left: 23px; right: auto; width: 1px; height: auto; }
  .how::after { transform: scaleY(0); transform-origin: top; background: linear-gradient(180deg, var(--l-accent-deep), var(--l-accent)); }
  .how.in::after, html:not(.motion) .how::after { transform: scaleY(1); }
  .how > div { display: grid; grid-template-columns: 46px 1fr; column-gap: 18px; }
  .how .num { margin: 0; grid-row: span 2; }
}

/* ---------- pricing ---------- */
.lplans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .lplans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.lplans .gcard { display: flex; flex-direction: column; }
.lplans .who { margin: 0 0 20px; font-size: 15px; }
.lplans .price { font-family: "Space Grotesk", system-ui, sans-serif; font-size: 42px; font-weight: 700; letter-spacing: -.03em; color: var(--l-ink); margin: 0 0 22px; }
.lplans .price span { font-size: 15px; font-weight: 400; color: var(--l-muted); letter-spacing: 0; }
.lplans ul { list-style: none; margin: 0 0 28px; padding: 22px 0 0; border-top: 1px solid var(--l-rule); display: grid; gap: 11px; flex: 1; }
.lplans li { font-size: 14.5px; color: var(--l-muted); display: flex; gap: 10px; align-items: baseline; }
.lplans li::before { content: ""; flex: none; width: 14px; height: 8px; border-left: 1.6px solid var(--l-accent); border-bottom: 1.6px solid var(--l-accent); transform: rotate(-45deg) translateY(-2px); }
.lplans .lbtn { justify-content: center; }
.lplans .featured { border-color: rgba(88, 211, 174, .5);
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(88, 211, 174, .14), transparent 70%), var(--l-card-2);
  box-shadow: 0 30px 80px -30px var(--l-glow); }
.lplans .flag { position: absolute; top: 22px; right: 22px; font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--l-btn-ink); background: var(--l-accent); padding: 4px 9px; border-radius: 999px; }
.fine { max-width: 680px; margin: 34px auto 0; text-align: center; font-size: 14.5px; color: var(--l-faint); }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.about p { font-size: 17px; margin: 0 0 16px; }
.about .facts { display: grid; gap: 12px; margin-top: 30px; }
.about .facts div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--l-rule); font-size: 14.5px; color: var(--l-muted); }
.about .facts b { font-weight: 500; color: var(--l-ink); text-align: right; }
@media (max-width: 800px) { .about { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- final call ---------- */
.final { position: relative; text-align: center; padding: 90px 24px; border-radius: 28px; overflow: hidden; isolation: isolate;
  border: 1px solid rgba(88, 211, 174, .3); background: var(--l-card); }
.final::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 80% at 50% 110%, rgba(88, 211, 174, .28), transparent 70%);
  animation: breathe 6s ease-in-out infinite alternate; }
@keyframes breathe { to { opacity: .6; transform: scale(1.08); } }
.final h2 { font-size: clamp(34px, 5.6vw, 60px); letter-spacing: -.035em; color: var(--l-ink); }
.final p { max-width: 52ch; margin: 18px auto 34px; font-size: 17.5px; }

/* ---------- footer ---------- */
.lfoot { border-top: 1px solid var(--l-rule); padding: 36px 0 44px; margin-top: 100px; }
.lfoot .lw { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.lfoot .label { color: var(--l-faint); }
.lfoot .links { display: flex; gap: 22px; flex-wrap: wrap; }
.lfoot .links a { font-size: 14px; color: var(--l-muted); text-decoration: none; }
.lfoot .links a:hover { color: var(--l-ink); }

/* ---------- start page and lead form ---------- */
.start { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; padding: 72px 0 40px; align-items: start; isolation: isolate; }
.start::before { content: ""; position: absolute; inset: -80px -30% auto; height: 700px; z-index: -1;
  background: radial-gradient(ellipse 40% 40% at 25% 30%, rgba(88, 211, 174, .14), transparent 70%); }
.start h1 { font-size: clamp(40px, 6vw, 68px); letter-spacing: -.035em; line-height: 1.02; color: var(--l-ink); margin: 22px 0 20px; }
.start .intro { font-size: 18px; margin: 0 0 34px; }
.start .next { padding: 26px; }
.start .next h2 { font-size: 18px; color: var(--l-ink); margin: 0 0 18px; letter-spacing: -.01em; }
.start .next ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: n; }
.start .next li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; font-size: 15px; color: var(--l-muted); counter-increment: n; }
.start .next li::before { content: counter(n); width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 12px; color: var(--l-accent); border: 1px solid rgba(88, 211, 174, .35); }
.start .next li b { color: var(--l-ink); font-weight: 500; display: block; }
.start .direct { margin-top: 18px; font-size: 14.5px; color: var(--l-faint); }
.start .direct a { color: var(--l-muted); }
@media (max-width: 900px) { .start { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; } }

.lead { padding: 32px; position: sticky; top: 92px; }
@media (max-width: 900px) { .lead { position: relative; top: 0; padding: 24px 18px; } }
.lead .label { margin-bottom: 8px; }
.lead h2 { font-size: 24px; color: var(--l-ink); letter-spacing: -.02em; margin: 0 0 6px; }
.lead > p { font-size: 15px; margin: 0 0 26px; }
.lead .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .lead .grid { grid-template-columns: 1fr; } }
.lead label { display: block; font-size: 13px; font-weight: 500; color: var(--l-ink); margin-bottom: 7px; }
.lead label em { font-style: normal; color: var(--l-accent); }
.lead label small { font-weight: 400; color: var(--l-faint); }
.lead input, .lead select, .lead textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--l-ink);
  background: var(--l-ground-2); border: 1px solid var(--l-rule-strong); border-radius: 10px; padding: 12px 13px;
  transition: border-color .2s ease, box-shadow .2s ease; -webkit-appearance: none; appearance: none;
}
.lead select { background-image: linear-gradient(45deg, transparent 50%, var(--l-muted) 50%), linear-gradient(135deg, var(--l-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 34px; }
.lead select:invalid { color: var(--l-faint); }
.lead option { color: var(--l-ink); background: var(--l-card); }
.lead textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.lead input::placeholder, .lead textarea::placeholder { color: var(--l-faint); }
.lead input:focus, .lead select:focus, .lead textarea:focus { outline: none; border-color: var(--l-accent); box-shadow: 0 0 0 4px rgba(88, 211, 174, .12); }
.lead .user-invalid, .lead input:user-invalid, .lead select:user-invalid, .lead textarea:user-invalid { border-color: var(--l-warn); }
.lead .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lead .chips label { margin: 0; }
.lead .chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.lead .chips span { display: inline-block; font-size: 13.5px; font-weight: 400; color: var(--l-muted); padding: 8px 13px; border-radius: 999px;
  border: 1px solid var(--l-rule-strong); cursor: pointer; transition: all .15s ease; user-select: none; }
.lead .chips span:hover { color: var(--l-ink); border-color: var(--l-muted); }
.lead .chips input:checked + span { color: var(--l-btn-ink); background: var(--l-accent); border-color: var(--l-accent); }
.lead .chips input:focus-visible + span { outline: 2px solid var(--l-accent); outline-offset: 2px; }
.lead fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.lead legend { font-size: 13px; font-weight: 500; color: var(--l-ink); margin-bottom: 9px; padding: 0; }
.lead .hp { position: absolute; left: -9999px; }
.lead .send { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.lead .send .lbtn { font-size: 15.5px; padding: 14px 26px; }
.lead .send p { margin: 0; font-size: 13px; color: var(--l-faint); max-width: 30ch; }
.lead .err { margin: 14px 0 0; font-size: 14px; color: var(--l-warn); }
.lead .done { text-align: center; padding: 50px 10px; }
.lead .done .tick { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(88, 211, 174, .12); border: 1px solid var(--l-accent); color: var(--l-accent); box-shadow: 0 0 40px -6px var(--l-glow); }
.lead .done .tick svg { width: 28px; height: 28px; stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .6s var(--l-ease) .15s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.lead .done h2 { font-size: 28px; }
.lead .done p { margin: 10px auto 0; max-width: 40ch; }

.lead.embed { padding: 8px; overflow: hidden; }
.lead.embed iframe { display: block; width: 100%; height: 1320px; border: 0; border-radius: 14px; background: var(--l-ground); }
@media (max-width: 560px) { .lead.embed iframe { height: 1500px; } }

/* ---------- reduced motion: everything visible, nothing moving ---------- */
@media (prefers-reduced-motion: reduce) {
  .motion [data-reveal] { opacity: 1; transform: none; }
  .flow .pulse { display: none; }
  .lead .done .tick svg { stroke-dashoffset: 0; }
}
