/* Leads After Dark — site-20260825b. ChatGPT visual system. Phone: vertical glass stack. */

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/geist-var-latin.woff2") format("woff2");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/geist-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/geist-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/geist-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/geist-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/geist-mono-var-latin.woff2") format("woff2");
}

:root {
  --font-geist-sans: "Geist", Arial, Helvetica, sans-serif;
  --font-geist-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --ink: #11120f;
  --soft-ink: #666762;
  --paper: #efefed;
  --card: #e2e2df;
  --cream: #f4efe5;
  --amber: #c99154;
  --amber-deep: #8d5b29;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: '';
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #fff;
  pointer-events: none;
  animation: page-fade-from-white 2.6s cubic-bezier(.4,0,.2,1) .18s both;
}
button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: #fff; background: #8d5b29; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.fixa-hero { min-height: 100svh; padding: 12px; background: var(--paper); }
.fixa-hero-photo {
  position: relative;
  min-height: calc(100svh - 24px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: url('/lad-hero-desktop-extended-v1.png') center center / cover no-repeat;
}
.hero-nav {
  position: absolute;
  z-index: 20;
  inset: 24px 24px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.glass-object {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.34);
  background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(205,220,232,.08) 55%, rgba(255,255,255,.13));
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(255,255,255,.08),
    0 12px 36px rgba(0,7,18,.22);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  pointer-events: auto;
}
.glass-object::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.18), transparent 32%, transparent 69%, rgba(255,255,255,.09));
  opacity: .65;
  pointer-events: none;
}
.brand-lockup {
  min-height: 58px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  pointer-events: auto;
}
.brand-lockup img {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 3px 9px rgba(0,0,0,.32));
}
.brand-lockup strong { position: relative; z-index: 1; font-size: 14px; letter-spacing: -.02em; }
.menu-cluster { position: relative; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; margin-top: 6px; }
.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  overflow: visible;
  border-radius: 16px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(205,220,232,.05) 55%, rgba(255,255,255,.08));
  border: 1.5px solid rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.08), 0 8px 22px rgba(0,7,18,.22);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.08);
  transition: transform .24s cubic-bezier(.22,1,.36,1), filter .24s ease, box-shadow .24s ease;
}
.menu-toggle::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -1px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
}
.menu-toggle.open { animation: menu-wobble .62s cubic-bezier(.2,1.35,.35,1); }
.menu-toggle.open::before { animation: bubble-ring .68s ease-out; }
.menu-toggle i {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 7px rgba(0,0,0,.45);
  transition: transform .42s cubic-bezier(.22,1,.36,1);
}
.menu-toggle.open i:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle.open i:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.hero-menu {
  position: absolute;
  top: 54px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}
.hero-menu a {
  min-height: 43px;
  padding: 0 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-18px) scale(.75);
  transform-origin: top right;
  transition-property: opacity, transform, filter, visibility;
  transition-duration: .3s, .52s, .24s, 0s;
  transition-timing-function: ease, cubic-bezier(.2,1.25,.3,1), ease, linear;
  transition-delay: .11s, .11s, 0s, .63s;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 650;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15,27,42,.56), rgba(105,131,154,.28) 55%, rgba(237,246,252,.18));
  border-color: rgba(255,255,255,.46);
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 -1px 0 rgba(255,255,255,.08), 0 10px 26px rgba(0,6,15,.3);
  backdrop-filter: blur(28px) saturate(175%) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(175%) brightness(1.08);
}
.hero-menu a:nth-child(1) { min-width: 56px; padding-right: 14px; padding-left: 14px; }
.hero-menu a:nth-child(2) { min-width: 78px; padding-right: 17px; padding-left: 17px; transition-delay: .055s, .055s, 0s, .575s; }
.hero-menu a:nth-child(3) {
  min-width: 124px;
  padding-right: 20px;
  padding-left: 20px;
  border-color: rgba(255,255,255,.36);
  background: linear-gradient(130deg, rgba(255,255,255,.2), rgba(215,228,239,.08) 52%, rgba(255,255,255,.14)), rgba(7,18,30,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.44), inset 0 -1px 0 rgba(255,255,255,.1), 0 18px 42px rgba(0,4,11,.32);
  backdrop-filter: blur(36px) saturate(160%);
  -webkit-backdrop-filter: blur(36px) saturate(160%);
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,.95), 0 3px 14px rgba(0,0,0,.8);
  transition-delay: 0s, 0s, 0s, .52s;
}
.hero-menu.open { pointer-events: auto; }
.hero-menu:not(.open) a { pointer-events: none; }
.hero-menu.open a { visibility: visible; pointer-events: auto; opacity: 1; transform: translateY(0) scale(1); transition-delay: 0s, 0s, 0s, 0s; }
.hero-menu.open a:nth-child(2) { transition-delay: .055s, .055s, 0s, 0s; }
.hero-menu.open a:nth-child(3) { transition-delay: .11s, .11s, 0s, 0s; }
@media (hover: hover) {
  .menu-toggle:hover { transform: translateY(-2px); filter: brightness(1.08); }
  .hero-menu.open a:hover { transform: translateY(-2px) scale(1.015); filter: brightness(1.08); }
}
.menu-toggle:focus-visible,
.hero-menu.open a:focus-visible {
  outline: 2px solid rgba(255,255,255,.72);
  outline-offset: 3px;
  transform: translateY(-2px);
}
.fixa-hero-copy {
  position: absolute;
  z-index: 2;
  top: clamp(122px, 17vh, 184px);
  left: 0;
  width: 100%;
  padding: 0 clamp(22px, 5vw, 74px);
  text-align: center;
}
.fixa-hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #f7f4eb;
  font-size: clamp(52px, 6.5vw, 104px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.065em;
  text-shadow: 0 1px 0 rgba(255,255,255,.28), 0 7px 28px rgba(0,4,13,.38), 0 25px 60px rgba(0,4,13,.22);
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.08));
}
.fixa-hero h1 strong {
  display: inline-block;
  font-weight: 750;
}
.mobile-break { display: none; }
.desktop-space { display: inline; }
.fixa-hero h1 em,
.product-heading h2 em,
.calm-strip h2 em,
.closing-copy h2 em {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.06em;
}
.fixa-try-form {
  position: absolute;
  z-index: 3;
  bottom: clamp(72px, 10vh, 104px);
  left: 50%;
  width: min(720px, calc(100% - 48px));
  min-height: 74px;
  transform: translateX(-50%) perspective(700px) rotateX(2deg);
  display: flex;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 27px;
  background: linear-gradient(130deg, rgba(255,255,255,.2), rgba(215,228,239,.08) 52%, rgba(255,255,255,.14));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.44), inset 0 -1px 0 rgba(255,255,255,.1), 0 18px 42px rgba(0,4,11,.32);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  animation: sidewalk-float 7s ease-in-out 1.1s infinite;
}
.fixa-try-form::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: 9%;
  bottom: -24px;
  left: 9%;
  height: 30px;
  border-radius: 50%;
  background: rgba(151,197,226,.19);
  filter: blur(15px);
  transform: scaleY(.55);
}
.fixa-try-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  -webkit-tap-highlight-color: transparent;
}
.fixa-try-form input:focus,
.fixa-try-form input:focus-visible { outline: none; box-shadow: none; }
.fixa-try-form:focus-within {
  border-color: rgba(255,255,255,.54);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.12), 0 20px 46px rgba(0,4,11,.35);
}
.fixa-try-form input::placeholder { color: rgba(255,255,255,.8); }
.fixa-try-form button {
  min-width: 118px;
  align-self: stretch;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 20px;
  background: rgba(246,250,252,.77);
  color: #14202a;
  cursor: pointer;
  font-weight: 700;
  box-shadow: inset 0 1px 0 #fff, 0 6px 18px rgba(0,5,14,.18);
}
@keyframes page-fade-from-white { from { opacity: 1; } to { opacity: 0; } }
@keyframes menu-wobble {
  0% { transform: scale(1); }
  24% { transform: scale(.82, .9); }
  48% { transform: scale(1.13, 1.08); }
  68% { transform: scale(.96, 1.03); }
  84% { transform: scale(1.035, .98); }
  100% { transform: scale(1); }
}
@keyframes bubble-ring { 0% { opacity: .75; transform: scale(.84); } 100% { opacity: 0; transform: scale(1.55); } }
@keyframes sidewalk-float { 0%, 100% { transform: translateX(-50%) perspective(700px) rotateX(2deg) translateY(0); } 50% { transform: translateX(-50%) perspective(700px) rotateX(1deg) translateY(-4px); } }

.soft-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(0,0,0,.035);
  color: #767772;
  font-size: 12px;
}
.intro {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(180px, .6fr) minmax(0, 1.4fr);
  gap: 6vw;
  align-items: start;
  padding: clamp(105px, 11vw, 160px) clamp(28px, 7vw, 110px) clamp(46px, 6vw, 78px);
}
.intro-copy { max-width: 820px; }
.intro h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 500;
}
.intro-copy > p:not(.more-line) {
  max-width: 690px;
  margin: 44px 0 0;
  color: #6d6e69;
  font-size: clamp(24px, 3vw, 45px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.more-line { margin: 10px 0 0; color: #6d6e69; font-size: clamp(24px, 3vw, 45px); line-height: 1.13; letter-spacing: -.04em; }
.more-line span { display: inline-block; padding: 1px 10px 5px; border-radius: 8px; background: #fff; color: #191a17; }

.night-bridge {
  position: relative;
  height: clamp(440px, 55vw, 720px);
  margin: 0 12px;
  border-radius: 26px;
  overflow: hidden;
  background: #090806;
}
.night-bridge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,6,.06), transparent 35%, rgba(7,7,6,.08));
  pointer-events: none;
}
.night-bridge img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }

.wide-photo {
  position: relative;
  height: min(78vw, 780px);
  min-height: 560px;
  margin: 0 12px;
  overflow: hidden;
  border-radius: 25px;
  background: #24251f;
}
.wide-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,8,.42), transparent 55%), linear-gradient(0deg, rgba(8,9,8,.22), transparent 40%); }
.wide-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.wide-photo figcaption { position: absolute; z-index: 2; left: clamp(28px, 6vw, 90px); bottom: clamp(34px, 7vw, 96px); color: #fff; }
.wide-photo figcaption span { display: block; margin-bottom: 18px; font: 700 10px var(--font-geist-mono), monospace; letter-spacing: .16em; }
.wide-photo figcaption strong { display: block; max-width: 680px; font-size: clamp(48px, 6vw, 92px); font-weight: 400; line-height: .9; letter-spacing: -.06em; }

.how { padding: clamp(120px, 14vw, 200px) clamp(28px, 7vw, 110px); background: var(--paper); color: var(--ink); }
.how-heading {
  margin-bottom: 0;
  padding-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid rgba(17,18,15,.14);
  text-align: center;
}
.how-heading p { max-width: 370px; margin: 0 0 18px; color: #666762; font-size: clamp(22px, 2.4vw, 35px); line-height: 1.1; letter-spacing: -.035em; }
.how-heading h2 { margin: 0; font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif; font-size: clamp(52px, 6vw, 86px); line-height: .98; letter-spacing: -.055em; font-weight: 500; }
.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.step-cards li {
  min-height: 500px;
  padding: 58px 44px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid rgba(17,18,15,.12);
  background: transparent;
  text-align: center;
}
.step-cards li:first-child { padding-left: 0; }
.step-cards li:last-child { padding-right: 0; border-right: 0; }
.card-icon {
  width: 104px;
  height: 112px;
  display: grid;
  place-items: center;
  color: #11120f;
}
.clipboard-icon { font: 68px/1 "Apple Color Emoji", "Segoe UI Emoji", sans-serif; }
.workspace-icon { width: 104px; }
.workspace-icon img { width: 88px; height: 88px; object-fit: contain; }
.lad-step-icon img { width: 88px; height: 88px; object-fit: contain; filter: brightness(0); }
.step-cards div > span { display: block; margin-bottom: 20px; color: #858681; font: 10px var(--font-geist-mono), monospace; letter-spacing: .17em; }
.step-cards h3 { max-width: 330px; margin: 0; font-size: clamp(27px, 2.6vw, 41px); line-height: .98; letter-spacing: -.05em; font-weight: 500; }
.step-cards p { max-width: 310px; margin: 24px 0 0; color: #6e6a62; font-size: 16px; line-height: 1.5; }

.product { padding: clamp(110px, 14vw, 190px) 12px 12px; }
.product-heading { max-width: 1180px; margin: 0 auto 90px; padding: 0 clamp(16px, 4vw, 48px); text-align: center; }
.product-heading .soft-pill { margin: 0 auto 28px; }
.product-heading h2 { margin: 0; font-size: clamp(65px, 9vw, 138px); line-height: .86; letter-spacing: -.075em; font-weight: 430; }
.product-heading > p { margin: 32px 0 0; color: #6e6f69; font-size: 16px; }
.demo-stage {
  position: relative;
  min-height: 950px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(360px, 440px) minmax(170px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 90px);
  padding: 80px clamp(28px, 6vw, 100px);
  overflow: hidden;
  border-radius: 27px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,238,204,.42), transparent 35%),
    #c99358;
}
.demo-stage::before,
.demo-stage::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(74,46,18,.12); }
.demo-stage::before { width: 800px; height: 800px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.demo-stage::after { width: 610px; height: 610px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.demo-note { position: relative; z-index: 3; max-width: 260px; }
.demo-note span { display: block; margin-bottom: 14px; font: 10px var(--font-geist-mono), monospace; letter-spacing: .15em; color: #6f4720; }
.demo-note strong { display: block; font-size: clamp(24px, 2.6vw, 38px); line-height: .98; letter-spacing: -.05em; font-weight: 520; }
.demo-note p { margin: 20px 0 0; color: rgba(42,27,12,.66); font-size: 13px; line-height: 1.5; }
.right-note { justify-self: end; }
.phone-wrap { position: relative; z-index: 5; display: grid; place-items: center; }
.phone-shell {
  position: relative;
  width: 370px;
  height: 760px;
  padding: 10px;
  border: 2px solid #3a3b36;
  border-radius: 61px;
  background: #050604;
  box-shadow: 0 36px 80px rgba(70,39,9,.38), inset 0 0 0 1px #10110e;
}
.phone-island { position: absolute; z-index: 8; top: 18px; left: 50%; width: 104px; height: 29px; transform: translateX(-50%); border-radius: 20px; background: #050604; }
.phone-screen { position: relative; overflow: hidden; width: 100%; height: 100%; border-radius: 50px; background: #f1eee6; color: #1c1d19; }
.phone-status { height: 49px; display: flex; justify-content: space-between; align-items: center; padding: 0 24px; font-size: 10px; font-weight: 700; }
.phone-status span:last-child { font-size: 7px; letter-spacing: 2px; }
.app-header { height: 64px; display: grid; grid-template-columns: 34px 1fr 10px; align-items: center; gap: 10px; padding: 0 20px; border-top: 1px solid rgba(44,44,38,.08); border-bottom: 1px solid rgba(44,44,38,.12); }
.mini-mark { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #9f7543; border-radius: 50%; color: #93652f; font-size: 14px; }
.app-header div { min-width: 0; }
.app-header strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.app-header small { display: block; margin-top: 2px; color: #7b776e; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #bd742b; box-shadow: 0 0 8px rgba(189,116,43,.55); }
.stage-dots { height: 30px; padding: 13px 20px 0; display: flex; gap: 5px; }
.stage-dots i { flex: 1; height: 2px; background: #d7d1c5; transition: background .3s ease; }
.stage-dots i.done { background: #a56d31; }
.app-body { height: calc(100% - 143px); }
.phone-panel { height: 100%; padding: 24px 22px 25px; display: flex; flex-direction: column; animation: panel-in .28s ease both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(5px); } }
.centered-panel { text-align: center; align-items: center; justify-content: center; padding-bottom: 55px; }
.eyebrow { margin: 0 0 15px; color: #9a6b35; font: 700 9px var(--font-geist-mono), monospace; letter-spacing: .16em; }
.phone-panel h3 { margin: 0; font-size: 30px; line-height: .98; letter-spacing: -.05em; font-weight: 520; }
.centered-panel > p:not(.eyebrow) { max-width: 245px; margin: 14px 0 0; color: #716c63; font-size: 12px; line-height: 1.55; }
.porch-orb { width: 92px; height: 92px; margin: 12px 0 32px; display: grid; place-items: center; color: #895a27; border: 1px solid rgba(145,91,34,.24); border-radius: 50%; background: radial-gradient(circle, rgba(224,163,89,.47), rgba(218,142,60,.12) 45%, transparent 67%); box-shadow: 0 0 52px rgba(204,121,37,.24); font-size: 30px; }
.app-primary { width: 100%; min-height: 48px; margin-top: auto; padding: 0 16px; border: 1px solid #1d1e1a; border-radius: 12px; background: #1d1e1a; color: #f1ebdf; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 700; transition: background .18s ease; }
.app-primary:hover { background: #34352e; }
.app-primary span { color: #dfa04d; font-size: 18px; }
.text-button { border: 0; background: transparent; color: #7f5930; padding: 12px; margin-top: 18px; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; font-size: 11px; }
.learn-rings { position: relative; width: 118px; height: 118px; margin: 16px 0 33px; }
.learn-rings i { position: absolute; inset: 0; border: 1px solid rgba(158,105,48,.22); border-radius: 50%; animation: ring 1.45s ease-out infinite; }
.learn-rings i:nth-child(2) { inset: 18px; animation-delay: .18s; }
.learn-rings i:nth-child(3) { inset: 36px; animation-delay: .36s; background: #dba354; }
@keyframes ring { 50% { transform: scale(1.06); border-color: rgba(158,105,48,.48); } }
.facts { margin: 26px 0 20px; border-top: 1px solid #cac3b7; }
.facts div { padding: 13px 0; border-bottom: 1px solid #cac3b7; }
.facts span, .recap-card span { display: block; color: #837e74; font: 8px var(--font-geist-mono), monospace; text-transform: uppercase; letter-spacing: .13em; }
.facts strong, .recap-card strong { display: block; margin-top: 5px; font-size: 11px; font-weight: 700; line-height: 1.25; }
.ready-check { width: 86px; height: 86px; margin: 20px 0 32px; display: grid; place-items: center; border: 1px solid #aa7439; border-radius: 50%; color: #9d682e; font: 34px Georgia, serif; box-shadow: 0 0 45px rgba(196,126,48,.13); }
.call-panel { padding-top: 17px; }
.call-heading { display: flex; justify-content: space-between; align-items: flex-start; }
.call-heading .eyebrow { margin-bottom: 6px; }
.call-heading h3 { font-size: 22px; }
.call-heading > span { color: #8a6439; font: 9px var(--font-geist-mono), monospace; }
.messages { display: flex; flex-direction: column; gap: 8px; margin: 20px -3px 8px; min-height: 264px; max-height: 330px; overflow-y: auto; scrollbar-width: none; }
.messages::-webkit-scrollbar { display: none; }
.messages p { max-width: 84%; margin: 0; padding: 10px 11px; border-radius: 12px; font-size: 10px; line-height: 1.45; }
.shop-message { align-self: flex-start; color: #423f38; background: #dcd6ca; border-bottom-left-radius: 2px !important; }
.caller-message { align-self: flex-end; color: #f3ede2; background: #282923; border-bottom-right-radius: 2px !important; }
.typing { min-width: 41px; letter-spacing: 3px; color: #9b754b; }
.suggestion { margin: auto 0 8px; padding: 9px 10px; border: 1px solid #bfb7a8; border-radius: 8px; background: transparent; color: #514d45; cursor: pointer; text-align: left; font-size: 9px; }
.suggestion span { float: right; color: #9d6b34; }
.message-form { display: grid; grid-template-columns: 1fr 33px; gap: 6px; }
.message-form input { width: 100%; min-width: 0; border: 1px solid #c5beb1; border-radius: 9px; background: rgba(255,255,255,.35); color: #252620; outline: none; padding: 9px; font-size: 10px; }
.message-form input:focus { border-color: #9c6a34; }
.message-form button { border: 0; border-radius: 9px; background: #272822; color: #e9a757; cursor: pointer; }
.recap-button { margin-top: auto; }
.recap-card { margin: 24px 0 16px; border-top: 1px solid #c9c2b5; }
.recap-card div { padding: 12px 0; border-bottom: 1px solid #c9c2b5; }
.recap-card .urgent { color: #9a4e2e; }
.recap-note { padding: 12px; border: 1px solid #bfb6a7; border-radius: 8px; color: #5f5a51; font-size: 9px; line-height: 1.5; }
.recap-note i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #a36c31; }
.restart { align-self: center; margin-top: auto; }
.home-bar { position: absolute; bottom: 8px; left: 50%; width: 112px; height: 4px; transform: translateX(-50%); border-radius: 3px; background: #22231f; opacity: .9; }

.detail-photo {
  position: relative;
  height: min(76vw, 860px);
  min-height: 620px;
  margin: 0 12px 12px;
  overflow: hidden;
  border-radius: 27px;
  background: #151410;
}
.detail-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,7,.72) 0%, rgba(8,8,7,.3) 45%, rgba(8,8,7,.04) 75%);
}
.detail-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.detail-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(28px, 7vw, 110px);
  max-width: 790px;
  transform: translateY(-50%);
  color: #f5efe4;
}
.detail-copy > span { display: block; margin-bottom: 26px; color: #d8a05f; font: 700 10px var(--font-geist-mono), monospace; letter-spacing: .16em; }
.detail-copy h2 { margin: 0; font-size: clamp(56px, 7vw, 108px); line-height: .88; letter-spacing: -.07em; font-weight: 430; }
.detail-copy h2 em { color: #e2ad6c; font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }

.calm-strip { min-height: 880px; margin: 0 12px 12px; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: clamp(100px, 13vw, 190px) clamp(28px, 7vw, 110px); border-radius: 27px; background: #1a1b17; color: #f2eee5; text-align: center; }
.calm-strip > p { margin: 0 0 38px; color: #9c9c94; font-size: 14px; }
.calm-strip h2 { margin: 0; font-size: clamp(60px, 8.5vw, 130px); line-height: .86; letter-spacing: -.075em; font-weight: 430; }
.calm-strip h2 em { color: #dba15d; }

.faq-section {
  padding: clamp(120px, 14vw, 210px) clamp(28px, 7vw, 110px);
  background: #fff;
}
.faq-heading, .faq-list { width: 100%; max-width: 1240px; margin-right: auto; margin-left: auto; }
.faq-heading .soft-pill { margin-bottom: 48px; }
.faq-list { border-top: 1px solid #d9dadd; }
.faq-list details { border-bottom: 1px solid #d9dadd; }
.faq-list summary {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  color: #181a18;
  cursor: pointer;
  list-style: none;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #c8cbd0; border-radius: 50%; color: #5f6468; font: 300 24px/1 Arial, Helvetica, sans-serif; transition: transform .28s ease, background .28s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); background: #f0f2f3; }
.faq-list details p { max-width: 650px; margin: -7px 62px 30px 0; color: #6d7274; font-size: 16px; line-height: 1.58; }

.closing { display: grid; grid-template-columns: 1.5fr .8fr; gap: 7vw; align-items: end; padding: clamp(100px, 13vw, 190px) clamp(28px, 7vw, 110px); background: #fff; }
.dark-pill {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 61, 69, .13);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(220,229,236,.48) 56%, rgba(255,255,255,.68));
  color: #555b5f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), inset 0 -1px 0 rgba(41,48,54,.05), 4px 5px 0 rgba(39,47,53,.08), 9px 11px 0 rgba(39,47,53,.055), 17px 21px 30px rgba(29,37,44,.2);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.dark-pill::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(112deg, rgba(255,255,255,.6), transparent 38%, transparent 72%, rgba(190,205,216,.18));
  pointer-events: none;
}
.closing-copy h2 { max-width: 850px; margin: 34px 0 0; font-size: clamp(70px, 9vw, 138px); line-height: .86; letter-spacing: -.075em; font-weight: 430; }
.closing-copy h2 em { text-shadow: 2px 2px 0 rgba(24,29,31,.16), 5px 5px 0 rgba(24,29,31,.13), 8px 8px 0 rgba(24,29,31,.1), 13px 14px 18px rgba(24,29,31,.24); }
.closing-copy p { margin: 34px 0 0; color: #77736b; font-size: 15px; }
.closing-form { position: relative; overflow: hidden; width: 100%; min-height: 62px; display: flex; padding: 6px; border: 1px solid rgba(52,61,69,.14); border-radius: 18px; background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(218,228,235,.36) 58%, rgba(255,255,255,.62)); box-shadow: inset 0 1px 0 rgba(255,255,255,.96), inset 0 -1px 0 rgba(41,48,54,.05), 0 18px 46px rgba(28,36,43,.1); backdrop-filter: blur(22px) saturate(155%); -webkit-backdrop-filter: blur(22px) saturate(155%); }
.closing-form::after { content: ''; position: absolute; inset: 1px; border-radius: inherit; background: linear-gradient(112deg, rgba(255,255,255,.58), transparent 36%, transparent 70%, rgba(185,202,214,.17)); pointer-events: none; }
.closing-form input { position: relative; z-index: 1; min-width: 0; flex: 1; border: 0; outline: 0; padding: 0 14px; color: #22231f; background: transparent; font-size: 13px; }
.closing-form button { position: relative; z-index: 1; min-width: 104px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: #050505; color: #fff; cursor: pointer; font-weight: 700; box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 -1px 0 rgba(0,0,0,.3), 0 8px 22px rgba(5,5,5,.24); backdrop-filter: blur(16px) saturate(135%); -webkit-backdrop-filter: blur(16px) saturate(135%); transition: transform .24s ease, box-shadow .24s ease; }
.closing-form button:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.14), 0 12px 28px rgba(23,28,30,.24); }
.closing-form:focus-within { border-color: rgba(38,45,50,.3); box-shadow: inset 0 1px 0 rgba(255,255,255,.96), inset 0 -1px 0 rgba(41,48,54,.05), 0 0 0 4px rgba(37,44,49,.07), 0 18px 46px rgba(28,36,43,.1); }
.closing-form input:focus-visible, .closing-form button:focus-visible { outline: 0; }

footer { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: start; gap: 40px; padding: 55px clamp(28px, 7vw, 110px); border-top: 1px solid #e2e2df; background: #fff; color: #706d66; font-size: 11px; line-height: 1.6; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #1d1e1a; }
.footer-brand img { width: 31px; height: 31px; object-fit: contain; filter: brightness(0); }
.footer-brand strong { font-size: 12px; }
footer p { margin: 0; }
.footer-meta { display: flex; justify-content: flex-end; gap: 16px; flex-wrap: wrap; }
.footer-meta a { text-decoration: underline; text-underline-offset: 3px; }

button:focus-visible, a:focus-visible, input:focus-visible { outline: 2px solid #a56d31; outline-offset: 3px; }

@media (max-width: 980px) {
  .intro { min-height: 650px; grid-template-columns: 1fr; gap: 50px; }
  .step-cards { grid-template-columns: 1fr; }
  .step-cards li { min-height: 360px; padding: 52px 8px; border-right: 0; border-bottom: 1px solid rgba(17,18,15,.12); }
  .step-cards li:first-child { padding-left: 8px; }
  .step-cards li:last-child { padding-right: 8px; border-bottom: 0; }
  .demo-stage { grid-template-columns: 1fr; gap: 38px; padding-top: 70px; padding-bottom: 70px; }
  .demo-note { max-width: 380px; text-align: center; justify-self: center; }
  .right-note { order: 3; }
  .closing { grid-template-columns: 1fr; align-items: start; }
  .closing-form { max-width: 540px; margin-top: 20px; }
}

@media (max-width: 700px) {
  .fixa-hero { padding: 7px; }
  .fixa-hero-photo {
    min-height: calc(100svh - 14px);
    border-radius: 20px;
    background: url('/lad-hero-mobile-v1.png') center center / cover no-repeat;
  }
  .hero-nav { inset: 15px 15px auto; align-items: flex-start; }
  .brand-lockup { min-height: 54px; max-width: calc(100vw - 104px); padding: 3px; }
  .brand-lockup img { width: 38px; height: 38px; }
  .brand-lockup strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .menu-toggle { width: 42px; height: 42px; border-radius: 15px; }
  .hero-menu { top: 50px; }
  .hero-menu a { min-height: 41px; padding: 0 15px; border-radius: 17px; }
  .fixa-hero-copy { top: clamp(118px, 16vh, 154px); padding: 0 13px; }
  .fixa-hero h1 { font-size: clamp(43px, 12.5vw, 59px); line-height: .9; }
  .fixa-hero h1 em { margin-left: 0; }
  .mobile-break { display: initial; }
  .desktop-space { display: none; }
  .fixa-try-form { bottom: clamp(54px, 7vh, 68px); width: calc(100% - 44px); min-height: 64px; padding: 9px; border-radius: 23px; transform: translateX(-50%); animation: none; }
  .fixa-try-form input { padding-left: 15px; padding-right: 15px; font-size: 16px; }
  .fixa-try-form button { min-width: 88px; border-radius: 17px; }
  .intro { min-height: auto; padding-top: 100px; padding-bottom: 48px; }
  .intro-copy > p:not(.more-line), .more-line { font-size: 28px; }
  .night-bridge { height: 640px; margin: 0 7px; border: 0; border-radius: 20px; }
  .night-bridge img { object-position: 31% center; }
  .wide-photo { min-height: 640px; height: 82svh; margin: 0 7px; border-radius: 20px; }
  .wide-photo img { object-position: 47% center; }
  .wide-photo figcaption { left: 24px; bottom: 35px; }
  .how { padding: 100px 22px; }
  .how-heading { padding: 0 0 30px; }
  .how-heading h2 { font-size: 65px; }
  .step-cards li { min-height: 350px; padding: 44px 8px; border-radius: 0; }
  .product { padding-left: 7px; padding-right: 7px; }
  .product-heading h2 { font-size: 68px; }
  .demo-stage { min-height: auto; border-radius: 20px; padding: 60px 8px 38px; }
  .demo-stage::before, .demo-stage::after { display: none; }
  .phone-wrap { width: 100%; }
  .phone-shell {
    width: 100%;
    height: 700px;
    padding: 0;
    border: 0;
    border-radius: 28px;
    background: transparent;
    box-shadow: 0 22px 55px rgba(64,36,11,.25);
  }
  .phone-island, .phone-status, .home-bar { display: none; }
  .phone-screen { border-radius: 28px; }
  .app-body { height: calc(100% - 94px); }
  .messages { max-height: 350px; }
  .detail-photo { min-height: 760px; height: 88svh; margin: 0 7px 7px; border-radius: 20px; }
  .detail-photo img { object-position: 64% center; }
  .detail-photo::after { background: linear-gradient(180deg, rgba(8,8,7,.1), rgba(8,8,7,.72) 78%, rgba(8,8,7,.86)); }
  .detail-copy { top: auto; right: 24px; bottom: 38px; left: 24px; transform: none; }
  .detail-copy h2 { font-size: 54px; }
  .calm-strip { min-height: 720px; margin: 0 7px 7px; padding-left: 20px; padding-right: 20px; border-radius: 20px; }
  .calm-strip h2 { font-size: 59px; }
  .faq-section { padding: 110px 22px; }
  .faq-heading .soft-pill { margin-bottom: 38px; }
  .faq-list summary { min-height: 84px; grid-template-columns: minmax(0, 1fr) 34px; gap: 18px; padding: 22px 0; font-size: 22px; }
  .faq-list summary::after { width: 32px; height: 32px; }
  .faq-list details p { margin-right: 42px; font-size: 15px; }
  .closing { padding-left: 22px; padding-right: 22px; }
  .closing-form input { font-size: 16px; }
  .closing-copy h2 { font-size: 68px; }
  footer { grid-template-columns: 1fr; gap: 28px; padding-left: 22px; padding-right: 22px; }
  .footer-meta { justify-content: flex-start; }
}

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


/* ===== 25b motion. Visual system stays globals.css. ===== */

/* Desktop: sticky left pills on After hours + FAQ. Phone: not sticky. */
@media (min-width: 701px) {
  .intro > .soft-pill {
    position: sticky;
    top: 28px;
    z-index: 4;
  }
  .faq-heading {
    position: sticky;
    top: 0;
    z-index: 4;
    background: #fff;
  }
  .faq-heading .soft-pill {
    position: sticky;
    top: 28px;
  }
}

/* How it works: 3 columns fade / slide up (desktop). Stacked 01–03 already at 980px. */
html.js .step-cards li {
  opacity: 0;
  transform: translateY(36px);
}
html.js .step-cards.in-view li {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .72s ease, transform .85s cubic-bezier(.22, 1, .36, 1);
}
html.js .step-cards.in-view li:nth-child(2) { transition-delay: .1s; }
html.js .step-cards.in-view li:nth-child(3) { transition-delay: .2s; }

html.js .calm-strip {
  opacity: 0;
  transform: translateY(40px);
}
html.js .calm-strip.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s ease, transform .95s cubic-bezier(.22, 1, .36, 1);
}

/* Phone: right-side vertical glass stack. Lockup stays. Outlined hamburger. */
@media (max-width: 700px) {
  .hero-nav { position: absolute; }
  .brand-lockup strong { visibility: visible !important; }
  .menu-cluster {
    position: relative;
    top: auto;
    right: auto;
    z-index: 5;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-top: 0;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
    border: 1.5px solid rgba(255,255,255,.78);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 8px 20px rgba(0,7,18,.22);
  }
  .hero-menu {
    position: absolute;
    top: 50px;
    right: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    max-width: none;
    overflow: visible;
    opacity: 1;
  }
  .hero-menu a,
  .hero-menu.open a,
  .hero-menu a:nth-child(1),
  .hero-menu a:nth-child(2),
  .hero-menu a:nth-child(3) {
    min-width: 0;
    min-height: 41px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.46);
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(15,27,42,.56), rgba(105,131,154,.28) 55%, rgba(237,246,252,.18));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 -1px 0 rgba(255,255,255,.08), 0 10px 26px rgba(0,6,15,.3);
    backdrop-filter: blur(28px) saturate(175%) brightness(1.08);
    -webkit-backdrop-filter: blur(28px) saturate(175%) brightness(1.08);
    text-shadow: 0 1px 8px rgba(0,0,0,.7);
    font-size: 13px;
    font-weight: 650;
    filter: none;
  }
  .hero-menu a[href="#signin"] { display: flex !important; }
  .hero-menu a:nth-child(1) { min-width: 56px; padding-right: 14px; padding-left: 14px; }
  .hero-menu a:nth-child(2) { min-width: 78px; padding-right: 16px; padding-left: 16px; }
  .hero-menu a:nth-child(3) { min-width: 118px; padding-right: 18px; padding-left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html.js .step-cards li,
  html.js .calm-strip {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
