/* ===========================
   LANDING PAGE — MOBILE FIRST
=========================== */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: #f5f2ef;
  color: #0c0c0a;
  min-height: 100vh;
}

/* Hide scrollbars but keep scrolling functional */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { width: 0; height: 0; display: none; }
body { overflow-x: hidden; }

/* ===========================
   HEADER
=========================== */

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.lp-header.is-scrolled {
  background: rgba(245, 242, 239, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  max-width: 1112px;
  margin-inline: auto;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lp-logo__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
}

/* Segment control nav */
.lp-segctrl {
  display: none;
}

@media (min-width: 720px) {
  .lp-segctrl {
    display: flex;
    align-items: center;
    background: #0c0c0a;
    border-radius: 9999px;
    padding: 3px;
    gap: 2px;
    position: relative;
  }
}

.lp-segctrl__pill {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 0;
  background: rgba(255,255,255,0.13);
  border-radius: 9999px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.lp-segctrl__item {
  display: flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 9999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
  position: relative;
  z-index: 1;
}

.lp-segctrl__item.is-active {
  color: #fff;
}

.lp-segctrl__item:hover:not(.is-active) {
  color: rgba(255,255,255,0.7);
}

.lp-header__cta {
  height: 36px;
  padding: 0 16px;
  background: #0c0c0a;
  color: #fff;
  border-radius: 9999px;
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s ease;
}

.lp-header__cta:hover {
  background: #2a2a28;
}

/* ===========================
   SHARED TYPOGRAPHY
=========================== */

.lp-eyebrow {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #918d8a;
}

.lp-section-headline {
  font-family: "Satoshi", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #0c0c0a;
}

/* ===========================
   HERO SECTION
=========================== */

.lp-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px; /* header height + breathing room */
  padding-bottom: 0;
  overflow: hidden;
}

/* Guide lines: 3 columns */
.lp-hero__guides {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  pointer-events: none;
  z-index: 0;
}

.lp-hero__guides > div {
  border-right: 1px solid rgba(12, 12, 10, 0.06);
}

.lp-hero__guides > div:last-child {
  border-right: none;
}

/* Top row — single centered column */
.lp-hero__top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px 0;
  gap: 0;
  width: 100%;
}

.lp-hero__col { display: none; } /* hide empty side columns */

.lp-hero__col--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.lp-hero__col--right {
  display: none;
}

.lp-hero__label {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #949494;
}

.lp-hero__headline {
  font-family: "Satoshi", system-ui, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: #0c0c0a;
}

.lp-hero__sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #949494;
  max-width: 320px;
  text-align: center;
}

.lp-hero__btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  background: #0c0c0a;
  color: #fff;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.15s ease;
}

.lp-hero__btn:hover { background: #2a2a28; }

/* Bottom area — tagline + CTA below phone */
.lp-hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 0;
  text-align: center;
}

/* Order now — separated, lives between hero and cards */
.lp-hero__cta-bar {
  display: flex;
  justify-content: center;
  padding: 40px 24px 60px;
  background: #F5F2EF;
}

/* Phone — tight under headline */
.lp-hero__phone-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 52px;
}

.lp-hero__phone {
  position: relative;
  width: 260px;
  aspect-ratio: 415 / 843;
}

.lp-hero__screen {
  position: absolute;
  top: 2.2%;
  left: 4.3%;
  right: 4.3%;
  bottom: 2.2%;
  border-radius: 13%/6.5%;
  overflow: hidden;
  background: #f5f2ef;
  z-index: 2;
}

.lp-hero__screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f2ef;
}

.lp-hero__island {
  position: absolute;
  top: 1.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 31%;
  height: 4.4%;
  background: #0c0c0a;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}

.lp-hero__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 4;
}

@media (min-width: 720px) {
  .lp-hero {
    padding-top: 80px;
  }

  .lp-hero__top {
    padding: 0 24px;
  }

  .lp-hero__headline {
    font-size: 64px;
    letter-spacing: -2px;
  }

  .lp-hero__phone-wrap {
    padding-top: 80px;
  }

  .lp-hero__phone {
    width: 280px;
  }
}

@media (min-width: 1024px) {
  .lp-hero {
    padding-top: 120px;
  }

  .lp-hero__headline {
    font-size: 80px;
    letter-spacing: -2.5px;
  }

  .lp-hero__phone {
    width: 300px;
  }

  .lp-hero__phone-wrap {
    padding-top: 100px;
  }
}

@media (min-width: 1280px) {
  .lp-hero__headline {
    font-size: 96px;
    letter-spacing: -3px;
  }

  .lp-hero__phone {
    width: 320px;
  }
}

/* ===========================
   FLOATING SUBJECT BUBBLES
=========================== */

.lp-bubbles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.lp-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  cursor: default;
  filter: blur(6px);
  opacity: 0.5;
  transition: filter 0.5s ease, opacity 0.5s ease;
  will-change: transform;
}

.lp-bubble:hover {
  filter: blur(0);
  opacity: 1;
}

/* Blur & size variations */
.lp-bubble--soft   { filter: blur(10px); opacity: 0.35; }
.lp-bubble--soft:hover { filter: blur(0); opacity: 1; }

.lp-bubble--mid    { filter: blur(4px); opacity: 0.6; }
.lp-bubble--mid:hover  { filter: blur(0); opacity: 1; }

.lp-bubble--sharp  { filter: blur(2px); opacity: 0.7; }
.lp-bubble--sharp:hover { filter: blur(0); opacity: 1; }

.lp-bubble--sm .lp-bubble__circle { width: 54px; height: 54px; }
.lp-bubble--sm .lp-bubble__icon   { width: 22px; height: 22px; }

.lp-bubble--md .lp-bubble__circle { width: 72px; height: 72px; }
.lp-bubble--md .lp-bubble__icon   { width: 28px; height: 28px; }

.lp-bubble--lg .lp-bubble__circle { width: 108px; height: 108px; }
.lp-bubble--lg .lp-bubble__icon   { width: 40px; height: 40px; }

.lp-bubble__circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.5s ease;
}

/* Two concentric rings on hover */
.lp-bubble__circle::before,
.lp-bubble__circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(12, 12, 10, 0.18);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.lp-bubble__circle::before {
  inset: -10px;
}

.lp-bubble__circle::after {
  inset: -22px;
  border-color: rgba(12, 12, 10, 0.10);
}

.lp-bubble:hover .lp-bubble__circle::before,
.lp-bubble:hover .lp-bubble__circle::after {
  opacity: 1;
  transform: scale(1);
}

.lp-bubble:hover .lp-bubble__circle {
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

/* Diagonal essay type label */
.lp-bubble__type {
  position: absolute;
  top: -14px;
  left: 50%;
  font-family: "Satoshi", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0c0c0a;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) rotate(-20deg) translateY(4px);
  transform-origin: center bottom;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 4;
}

.lp-bubble:hover .lp-bubble__type {
  opacity: 1;
  transform: translateX(-50%) rotate(-20deg) translateY(0);
}

/* Primary bubble colours — saturated */
.lp-bubble--orange-1 { background: #FF4500; }
.lp-bubble--orange-2 { background: #FF6B00; }
.lp-bubble--orange-3 { background: #E63900; }
.lp-bubble--pink-1   { background: #FF1744; }
.lp-bubble--pink-2   { background: #FF2D6F; }
.lp-bubble--green-1  { background: #00C853; }
.lp-bubble--green-2  { background: #00E676; }
.lp-bubble--blue-1   { background: #0091EA; }
.lp-bubble--blue-2   { background: #00B0FF; }
.lp-bubble--purple-1 { background: #6200EA; }
.lp-bubble--purple-2 { background: #7C4DFF; }
.lp-bubble--yellow-1 { background: #FFB300; }
.lp-bubble--yellow-2 { background: #FFC400; }
.lp-bubble--teal-1   { background: #00BFA5; }
.lp-bubble--cyan-1   { background: #00BCD4; }
.lp-bubble--magenta-1 { background: #D500F9; }

.lp-bubble__icon {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.85);
}

.lp-bubble__label {
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0c0c0a;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lp-bubble:hover .lp-bubble__label {
  opacity: 1;
  transform: translateX(0);
}

/* Positioning — spread wide across the full hero */
.lp-bubble--1  { top: 4%;   left: 3%; }
.lp-bubble--2  { top: 18%;  left: 20%; }
.lp-bubble--3  { top: 48%;  left: 1%; }
.lp-bubble--4  { top: 2%;   right: 4%; }
.lp-bubble--5  { top: 72%;  right: 3%; }
.lp-bubble--6  { top: 30%;  left: 6%; }
.lp-bubble--7  { top: 8%;   left: 34%; }
.lp-bubble--8  { top: 26%;  right: 2%; }
.lp-bubble--9  { top: 84%;  right: 20%; }
.lp-bubble--10 { top: 58%;  left: 5%; }
.lp-bubble--11 { top: 50%;  right: 4%; }
.lp-bubble--12 { top: 90%;  left: 22%; }
.lp-bubble--13 { top: 38%;  left: 16%; }
.lp-bubble--14 { top: 68%;  left: 12%; }
.lp-bubble--15 { top: 42%;  right: 15%; }
.lp-bubble--16 { top: 78%;  left: 32%; }
.lp-bubble--17 { top: 92%;  right: 6%; }
.lp-bubble--18 { top: 85%;  right: 32%; }
/* New bubbles 19–26 */
.lp-bubble--19 { top: 14%;  right: 18%; }
.lp-bubble--20 { top: 62%;  right: 12%; }
.lp-bubble--21 { top: 35%;  left: 30%; }
.lp-bubble--22 { top: 55%;  left: 24%; }
.lp-bubble--23 { top: 75%;  right: 38%; }
.lp-bubble--24 { top: 20%;  right: 32%; }
.lp-bubble--25 { top: 95%;  left: 8%; }
.lp-bubble--26 { top: 65%;  right: 28%; }

/* Floating animations — 3 speeds */
@keyframes lp-float-1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(18px, -28px); }
  50% { transform: translate(-14px, -48px); }
  75% { transform: translate(22px, -20px); }
}

@keyframes lp-float-2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-22px, -18px); }
  50% { transform: translate(16px, -42px); }
  75% { transform: translate(-18px, -30px); }
}

@keyframes lp-float-3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(12px, -36px); }
  50% { transform: translate(-20px, -16px); }
  75% { transform: translate(10px, -44px); }
}

[data-float="1"] { animation: lp-float-1 12s ease-in-out infinite; }
[data-float="2"] { animation: lp-float-2 15s ease-in-out infinite; }
[data-float="3"] { animation: lp-float-3 18s ease-in-out infinite; }

/* Scroll down indicator */
.lp-hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 96px 0 48px;
  animation: lp-scroll-bounce 2.4s ease-in-out infinite;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.lp-hero__scroll-hint.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.lp-hero__scroll-text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #999;
}

.lp-hero__scroll-arrow {
  width: 16px;
  height: 16px;
  color: #999;
}

@keyframes lp-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Hide on narrow screens where there's no side space */
@media (max-width: 719px) {
  .lp-bubbles { display: none; }
}

/* Adjust positions for larger screens */
@media (min-width: 1280px) {
  .lp-bubble--1  { left: 5%; }
  .lp-bubble--2  { left: 22%; }
  .lp-bubble--3  { left: 3%; }
  .lp-bubble--4  { right: 6%; }
  .lp-bubble--5  { right: 5%; }
  .lp-bubble--6  { left: 8%; }
  .lp-bubble--7  { left: 36%; }
  .lp-bubble--8  { right: 4%; }
  .lp-bubble--9  { right: 22%; }
  .lp-bubble--10 { left: 7%; }
  .lp-bubble--11 { right: 6%; }
  .lp-bubble--12 { left: 24%; }
  .lp-bubble--13 { left: 18%; }
  .lp-bubble--14 { left: 14%; }
  .lp-bubble--15 { right: 17%; }
  .lp-bubble--16 { left: 34%; }
  .lp-bubble--17 { right: 8%; }
  .lp-bubble--18 { right: 34%; }
  .lp-bubble--19 { right: 20%; }
  .lp-bubble--20 { right: 14%; }
  .lp-bubble--21 { left: 32%; }
  .lp-bubble--22 { left: 26%; }
  .lp-bubble--23 { right: 40%; }
  .lp-bubble--24 { right: 34%; }
  .lp-bubble--25 { left: 10%; }
  .lp-bubble--26 { right: 30%; }

  .lp-bubble__circle {
    width: 88px;
    height: 88px;
  }

  .lp-bubble__icon {
    width: 36px;
    height: 36px;
  }
}

/* ===========================
   SCROLL HOW IT WORKS
=========================== */

.lp-scroll {
  position: relative;
  height: 480vh;
}

.lp-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 20px 24px;
  overflow: hidden;
}

.lp-scroll__headline {
  font-family: "Satoshi", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.6px;
  color: #0c0c0a;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-scroll__headline.is-hidden {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
}

/* 3-column main: info | phone | detail */
.lp-scroll__main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 0;
  align-self: center;
}

/* LEFT info panels — large headline with word-fill animation */
.lp-scroll__info {
  position: relative;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
}

.lp-info-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Label row: rule line + number */
.lp-info__num {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #949494;
}


/* Title */
.lp-info__title {
  font-family: "Satoshi", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.44px;
  color: #c8c4be;
  margin: 0;
}

.lp-info__word {
  color: inherit;
  transition: color 0.18s ease;
}

.lp-info__word.is-filled {
  color: #0c0c0a;
}

/* RIGHT: detail panels — hidden on mobile */
.lp-scroll__detail {
  display: none;
}

.lp-scroll__phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  will-change: transform;
}

.lp-phone {
  position: relative;
  width: 300px;
  aspect-ratio: 415 / 843;
}

.lp-phone__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.lp-phone__screen {
  position: absolute;
  top: 2.2%;
  left: 4.3%;
  right: 4.3%;
  bottom: 2.2%;
  border-radius: 13%/6.5%;
  overflow: hidden;
  background: #f5f2ef;
  z-index: 2;
}

.lp-phone__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f2ef;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.lp-phone__vid.is-active {
  opacity: 1;
}

.lp-phone__island {
  display: none;
  position: absolute;
  top: 1.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 31%;
  height: 4.4%;
  background: #0c0c0a;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}

.lp-phone__statusbar {
  display: none;
  position: absolute;
  top: 2.0%;
  left: 6%;
  right: 6%;
  width: 88%;
  height: auto;
  z-index: 4;
  pointer-events: none;
}

/* Detail panels */
.lp-detail-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-detail__num {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #949494;
  display: flex;
  align-items: center;
  gap: 20px;
}


.lp-detail__text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #918d8a;
}

/* Tablet & up: 720px+ — phone centred, text panels absolutely positioned */
@media (min-width: 720px) {
  .lp-scroll__sticky {
    padding: 0;
  }

  .lp-scroll__main {
    position: relative;
    display: flex;
    flex-direction: unset;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex: 1;
    gap: 0;
    max-width: none;
    margin-inline: 0;
  }

  /* Left panel column */
  .lp-scroll__info {
    position: absolute;
    top: 22vh;
    left: 3%;
    width: 26%;
    max-width: 420px;
    height: 420px;
    overflow: hidden;
    min-height: unset;
    margin-top: 0;
    text-align: left;
  }

  /* Right panel column */
  .lp-scroll__detail {
    display: block;
    position: absolute;
    top: 44vh;
    right: 3%;
    width: 24%;
    max-width: 340px;
    height: 380px;
    overflow: hidden;
    min-height: unset;
    margin-bottom: 0;
  }

  .lp-scroll__phone-wrap {
    flex: 0 0 auto;
    transform: none !important;
  }

  .lp-phone {
    width: 240px;
  }

  .lp-info__title { font-size: 24px; }

  .lp-detail__text { font-size: 20px; }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .lp-scroll__sticky { padding: 0; }
  .lp-scroll__info { left: 5%; max-width: 480px; height: 440px; }
  .lp-scroll__detail { right: 5%; max-width: 400px; height: 400px; }
  .lp-phone { width: 280px; }
  .lp-info__title { font-size: 32px; }
  .lp-info__num { font-size: 13px; padding-top: 12px; }
  .lp-detail__text { font-size: 26px; }
}

/* Wide desktop: 1280px+ */
@media (min-width: 1280px) {
  .lp-scroll__sticky { padding: 0; }
  .lp-scroll__info { left: 6%; max-width: 540px; height: 460px; }
  .lp-scroll__detail { right: 6%; max-width: 460px; height: 420px; }
  .lp-phone { width: 300px; }
  .lp-info__title { font-size: 40px; }
  .lp-detail__text { font-size: 30px; }
}

/* Ultra-wide: 1600px+ */
@media (min-width: 1600px) {
  .lp-scroll__info { max-width: 580px; height: 480px; }
  .lp-phone { width: 320px; }
  .lp-info__title { font-size: 44px; line-height: 1.1; letter-spacing: -0.8px; }
  .lp-info__num { font-size: 14px; padding-top: 14px; }
  .lp-detail__text { font-size: 34px; }
}

/* Full Figma spec: 1920px+ */
@media (min-width: 1920px) {
  .lp-scroll__info { max-width: 660px; }
  .lp-phone { width: 340px; }
  .lp-info__title { font-size: 44px; line-height: 1.1; letter-spacing: -0.8px; }
}

/* ===========================
   FEATURES SECTION
=========================== */

.lp-features {
  padding: 32px 20px 80px;
}

.lp-features__inner {
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.lp-feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0 24px 18px;
  border-left: 1px solid rgba(12, 12, 10, 0.1);
}

.lp-feature-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #0c0c0a;
}

.lp-feature-item__title {
  font-family: "Satoshi", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #0c0c0a;
}

.lp-feature-item__text {
  font-family: "Satoshi", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #918d8a;
  line-height: 1.6;
}

/* ===========================
   PAPERS SHOWCASE
=========================== */

.lp-papers {
  padding: 0 20px 80px;
}

.lp-papers__inner {
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-papers__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-paper-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #faf9f7;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: border-color 0.15s ease;
}

.lp-paper-card:hover {
  border-color: #0c0c0a;
}

.lp-paper-card__label {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
}

.lp-paper-card__title {
  font-family: "Satoshi", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #0c0c0a;
  line-height: 1.3;
}

.lp-paper-card__text {
  font-family: "Satoshi", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #918d8a;
  line-height: 1.6;
}

/* ===========================
   FAQ SECTION — Legend.xyz dark style
=========================== */

.lp-faq {
  background: #f5f2ef;
  position: relative;
  overflow: hidden;
}

.lp-faq__inner {
  position: relative;
  max-width: 1112px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  padding: 80px 20px 100px;
  gap: 48px;
}

/* LEFT */
.lp-faq__left {
  display: flex;
  flex-direction: column;
}

.lp-faq__label-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lp-faq__rule {
  display: block;
  width: 1px;
  height: 4px;
  background: #949494;
  flex-shrink: 0;
}

.lp-faq__label {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #949494;
}

.lp-faq__heading {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #0c0c0a;
}

@media (min-width: 720px) {
  .lp-faq__heading { font-size: 64px; }
}

/* RIGHT */
.lp-faq__right {
  display: flex;
  flex-direction: column;
}

.lp-faq__item {
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.lp-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  user-select: none;
}

.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__q::marker { content: ''; }

.lp-faq__q-num {
  display: none;
}

.lp-faq__q-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: #0c0c0a;
  flex: 1;
}

@media (min-width: 720px) {
  .lp-faq__q-text { font-size: 18.8px; line-height: 26px; }
}

.lp-faq__btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.07);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: background 0.15s ease;
}

.lp-faq__btn::before {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #0c0c0a;
  content: '+';
}

.lp-faq__item[open] .lp-faq__btn { background: rgba(0,0,0,0.12); border-radius: 9999px; }
.lp-faq__item[open] .lp-faq__btn::before { content: '−'; }

.lp-faq__a {
  padding: 0 20px 20px 56px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  color: #555;
  max-width: 720px;
}

/* ===========================
   DARK SECTION (stats)
=========================== */

.lp-dark {
  padding: 80px 20px 80px;
  background: #0c0c0a;
}

.lp-dark__inner {
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-dark__label {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555550;
}

.lp-dark__headline {
  font-family: "Satoshi", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.lp-dark__stats {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #222220;
}

.lp-dark__stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #222220;
}

.lp-dark__stat-value {
  font-family: "Satoshi", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.lp-dark__stat-label {
  font-family: "Satoshi", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555550;
}

.lp-dark__cta {
  height: 56px;
  width: 100%;
  background: #ffffff;
  color: #0c0c0a;
  border-radius: 9999px;
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.lp-dark__cta:hover {
  background: #f0ede8;
}

/* ===========================
   FOOTER
=========================== */

.lp-footer {
  position: relative;
  background: #f5f2ef;
  overflow: hidden;
}


.lp-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1112px;
  margin-inline: auto;
  padding: 60px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Top: stacked on mobile, 3-col on desktop */
.lp-footer__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 720px) {
  .lp-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
}

.lp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.lp-footer__tagline {
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: #0c0c0a;
}


.lp-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  justify-self: end;
}

.lp-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-footer__col-title {
  font-family: "Satoshi", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.lp-footer__link {
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #0c0c0a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.lp-footer__link:hover {
  color: #888;
}

/* Bottom bar */
.lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.lp-footer__copyright,
.lp-footer__contact {
  font-family: "Satoshi", sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #999;
}

/* ===========================
   DESKTOP ADJUSTMENTS
=========================== */

@media (min-width: 680px) {
  .lp-section-headline {
    font-size: 40px;
  }

  .lp-dark__headline {
    font-size: 44px;
  }

  .lp-features__inner,
  .lp-papers__inner,
  .lp-dark__inner {
    max-width: 560px;
  }

  .lp-papers__cards {
    flex-direction: row;
    gap: 16px;
  }

  .lp-paper-card {
    flex: 1;
  }
}

/* ===========================
   FEATURE CARDS (Figma layout)
=========================== */

.lp-cards {
  background: #F5F2EF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 10px;
}

/* Each section: heading + card row */
.lp-cards__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 0;
  gap: 24px;
  width: 100%;
}

.lp-cards__section:first-child {
  padding-top: 100px;
}

.lp-cards__section--compact {
  padding-top: 20px;
}

/* Section heading — Satoshi light */
.lp-cards__heading {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -1.28px;
  color: #000000;
  width: 100%;
  max-width: 1110px;
}

/* Card rows */
.lp-cards__row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 100%;
  max-width: 1112px;
}

/* Each card item: card + label below */
.lp-cards__item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* The visual card */
.lp-cards__card {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card color variants */
.lp-cards__card--white {
  background: #FFFFFF;
}

.lp-cards__card--beige {
  background: #E7E1D8;
}

.lp-cards__card--warm {
  background: #D4C9BC;
}

.lp-cards__card--orange {
  background: #FF5501;
}

.lp-cards__card--dark {
  background: #0C0C0A;
}

/* Single phone peeking from bottom center */
.lp-cards__phone-peek {
  position: absolute;
  bottom: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  display: flex;
  justify-content: center;
}

.lp-cards__phone-peek-top {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  display: flex;
  justify-content: center;
}

@media (min-width: 720px) {
  .lp-cards__phone-peek { width: 180px; bottom: -200px; }
  .lp-cards__phone-peek-top { width: 180px; top: -200px; }
}
@media (min-width: 1024px) {
  .lp-cards__phone-peek { width: 220px; bottom: -245px; }
  .lp-cards__phone-peek-top { width: 220px; top: -245px; }
}

/* ── Filter demo (interactive card) ──────────────────────────────── */
.lp-filter-demo {
  position: absolute;
  inset: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.lp-filter-demo__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-filter-demo__title {
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  padding-left: 4px;
}

.lp-filter-demo__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-filter-demo__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.lp-filter-demo__option:hover {
  border-color: #0c0c0a;
}

.lp-filter-demo__option.selected {
  border-color: #0c0c0a;
}

.lp-filter-demo__check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid #0c0c0a;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.2s ease;
}

.lp-filter-demo__option.selected .lp-filter-demo__check {
  background: #0c0c0a;
}

.lp-filter-demo__check-icon {
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lp-filter-demo__option.selected .lp-filter-demo__check-icon {
  opacity: 1;
}

.lp-filter-demo__label {
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0c0c0a;
}

.lp-filter-demo--small {
  justify-content: center;
  inset: 18px 14px;
}

.lp-filter-demo--small .lp-filter-demo__options {
  width: 100%;
}

@media (min-width: 720px) {
  .lp-filter-demo { inset: 24px; gap: 24px; }
  .lp-filter-demo__options { gap: 10px; }
  .lp-filter-demo__option { padding: 16px 20px; gap: 16px; }
  .lp-filter-demo__label { font-size: 18px; }
  .lp-filter-demo--small { inset: 24px 18px; }
  .lp-filter-demo--small .lp-filter-demo__option { padding: 14px 18px; }
  .lp-filter-demo--small .lp-filter-demo__label { font-size: 16px; }
}

@media (min-width: 1024px) {
  .lp-filter-demo { inset: 32px; gap: 28px; }
  .lp-filter-demo__options { gap: 12px; }
  .lp-filter-demo__option { padding: 18px 22px; gap: 16px; border-radius: 16px; }
  .lp-filter-demo__label { font-size: 20px; }
  .lp-filter-demo__title { font-size: 14px; }
}

/* ── Requirements demo (interactive) ─────────────────────────────── */
.lp-req-demo {
  position: absolute;
  inset: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.lp-req-demo__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-req-demo__label {
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #999;
}

.lp-req-demo__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-req-demo__pill {
  font-family: "Inter", system-ui, sans-serif;
  padding: 8px 14px;
  min-height: 34px;
  background: #eeebe5;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 400;
  color: #0c0c0a;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.lp-req-demo__pill:hover {
  border-color: #0c0c0a;
}

.lp-req-demo__pill.selected {
  background: #0c0c0a;
  border-color: #0c0c0a;
  color: #ffffff;
}

.lp-req-demo__stepper {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  background: #eeebe5;
  border-radius: 9999px;
  padding: 6px 12px;
}

.lp-req-demo__step-btn {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lp-req-demo__step-btn:hover {
  background: rgba(12, 12, 10, 0.06);
}

.lp-req-demo__step-value {
  min-width: 20px;
  text-align: center;
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0c0c0a;
}

.lp-req-demo__file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #eeebe5;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 0.18s ease;
  cursor: pointer;
}

.lp-req-demo__file:hover {
  border-color: #0c0c0a;
}

.lp-req-demo__file-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-req-demo__file-name {
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0c0c0a;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-req-demo__file-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(34, 180, 85, 0.12);
  border-radius: 9999px;
  flex-shrink: 0;
}

@media (min-width: 720px) {
  .lp-req-demo { inset: 32px 24px; gap: 20px; }
  .lp-req-demo__label { font-size: 13px; }
  .lp-req-demo__pill { padding: 9px 16px; font-size: 14px; }
  .lp-req-demo__file-name { font-size: 14px; }
}

@media (min-width: 1024px) {
  .lp-req-demo { inset: 40px 32px; gap: 24px; }
  .lp-req-demo__pill { padding: 10px 18px; font-size: 14px; min-height: 38px; }
  .lp-req-demo__step-btn { width: 28px; height: 28px; }
  .lp-req-demo__step-value { font-size: 15px; }
  .lp-req-demo__file { padding: 12px 16px; }
}

/* ── Pay & Receive demo ─────────────────────────────────────────── */
.lp-pay-demo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
}

.lp-pay-demo__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #16894B;
  padding: 7px 14px;
  border-radius: 9999px;
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lp-pay-demo__card {
  width: 100%;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lp-pay-demo__file {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-pay-demo__file-icon {
  width: 40px;
  height: 40px;
  background: #f5f2ef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-pay-demo__file-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lp-pay-demo__file-name {
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0c0c0a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-pay-demo__file-size {
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888;
}

.lp-pay-demo__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #0c0c0a;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 10px 16px;
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.lp-pay-demo__download:hover {
  background: #1a1a18;
  transform: translateY(-1px);
}

@media (min-width: 720px) {
  .lp-pay-demo { gap: 20px; padding: 32px; }
  .lp-pay-demo__badge { font-size: 14px; padding: 7px 14px; }
  .lp-pay-demo__card { padding: 18px; gap: 16px; }
  .lp-pay-demo__file-name { font-size: 15px; }
  .lp-pay-demo__download { padding: 12px 18px; font-size: 14px; }
}

@media (min-width: 1024px) {
  .lp-pay-demo { gap: 24px; padding: 40px; }
  .lp-pay-demo__card { padding: 20px; max-width: 340px; }
  .lp-pay-demo__file-icon { width: 44px; height: 44px; }
  .lp-pay-demo__file-name { font-size: 16px; }
  .lp-pay-demo__file-size { font-size: 13px; }
}

.lp-cards__card--img {
  background: transparent;
}

/* SVG illustrations inside cards */
.lp-cards__card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
}

.lp-cards__card-img--dark svg {
  opacity: 0.7;
}

.lp-cards__card-png {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ===========================
   AI DETECTION WIDGET
=========================== */

.lp-ai-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 8px 0;
}

/* Top verified badge */
.lp-ai-widget__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lp-ai-widget__badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f2ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-ai-widget__verified {
  font-family: "Satoshi", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #f5f2ef;
  letter-spacing: -0.1px;
}

/* Receipt card */
.lp-ai-widget__receipt {
  background: #fff;
  border-radius: 14px;
  width: 240px;
  overflow: visible;
  position: relative;
}

.lp-ai-widget__receipt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.lp-ai-widget__receipt-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f5f2ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-ai-widget__receipt-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.lp-ai-widget__receipt-meta strong {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0c0c0a;
}

.lp-ai-widget__receipt-meta span {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #999;
}

.lp-ai-widget__pass {
  color: #2d7a3a !important;
  font-weight: 500 !important;
}

/* Ticket notch divider */
.lp-ai-widget__divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  margin: 0 -1px;
}

.lp-ai-widget__divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  border-top: 1.5px dashed rgba(0,0,0,0.12);
}

.lp-ai-widget__divider::after,
.lp-ai-widget__receipt::before,
.lp-ai-widget__receipt::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #0c0c0a;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.lp-ai-widget__receipt::before {
  left: -7px;
}
.lp-ai-widget__receipt::after {
  right: -7px;
}

.lp-ai-widget__divider span {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #bbb;
  text-transform: uppercase;
}

/* Data rows */
.lp-ai-widget__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #555;
}

.lp-ai-widget__row:last-child {
  border-bottom: none;
}

.lp-ai-widget__row span:last-child {
  font-weight: 500;
  color: #0c0c0a;
}

.lp-ai-widget__row--verdict {
  padding-bottom: 14px;
}

.lp-ai-widget__row--verdict span:last-child {
  color: #2d7a3a;
  font-weight: 700;
  font-size: 13px;
}

/* AI image inside card */
.lp-ai-img {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Mini phone inside cards */
.lp-cards__phone-mini {
  position: relative;
  width: 180px;
  aspect-ratio: 415 / 843;
}

.lp-cards__phone-mini-screen {
  position: absolute;
  top: 2.2%;
  left: 4.3%;
  right: 4.3%;
  bottom: 2.2%;
  border-radius: 13% / 6.5%;
  overflow: hidden;
  background: #f5f2ef;
  z-index: 2;
}

.lp-cards__phone-mini-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f2ef;
}

.lp-cards__phone-mini-island {
  position: absolute;
  top: 1.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 31%;
  height: 4.4%;
  background: #0c0c0a;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}

.lp-cards__phone-mini-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 4;
}

/* Stacked dual-phone layout */
.lp-cards__phones-stacked {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp-cards__phone-mini--stacked {
  position: absolute;
  width: 155px;
}

/* Back phone: bleeds above the card top — only lower portion visible */
.lp-cards__phone-mini--back {
  top: -30%;
  left: 58%;
  transform: translateX(-50%) rotate(5deg);
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.14));
}

/* Front phone: bleeds below the card bottom — only upper portion visible */
.lp-cards__phone-mini--front {
  bottom: -30%;
  left: 42%;
  transform: translateX(-50%) rotate(-4deg);
  z-index: 2;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.18));
}

.lp-cards__phone-mini-screen--empty {
  background: #f0ede8;
}

.lp-cards__phone-mini-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-cards__phone-mini-screen-img--top {
  object-position: center top;
}

.lp-cards__phone-mini-screen-img--bottom {
  object-position: center bottom;
}

/* Chat overlay — sits ON TOP of phone-mockup.png to hide baked-in dashboard */
.lp-cards__phone-mini-overlay {
  position: absolute;
  top: 2.2%;
  left: 4.3%;
  right: 4.3%;
  bottom: 2.2%;
  border-radius: 13% / 6.5%;
  overflow: hidden;
  z-index: 5;
  background: #f5f2ef;
}

.lp-cards__phone-mini-overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-cards__phone-mini-overlay-img--top {
  object-position: center top;
}

.lp-cards__phone-mini-overlay-img--bottom {
  object-position: center bottom;
}

/* Label below each card */
.lp-cards__label {
  display: flex;
  flex-direction: column;
  padding: 10px 0 0;
}

.lp-cards__label-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #0c0c0a;
}

.lp-cards__label-desc {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 19px;
  color: #888;
  margin-top: 3px;
}

/* ——— Desktop: 720px+ ——— */
@media (min-width: 720px) {
  .lp-cards__section:first-child {
    padding-top: 140px;
  }

  .lp-cards__heading {
    font-size: 40px;
    line-height: 60px;
  }

  .lp-cards__row {
    flex-direction: row;
    padding: 0;
  }

  /* 3-card row */
  .lp-cards__row--3 .lp-cards__item {
    flex: 1;
  }

  .lp-cards__row--3 .lp-cards__card {
    height: 380px;
  }

  /* 2-card row */
  .lp-cards__row--2 .lp-cards__item {
    flex: 1;
  }

  .lp-cards__row--2 .lp-cards__card {
    height: 380px;
  }

  .lp-cards__phone-mini {
    width: 200px;
  }

  .lp-cards__phone-mini--stacked {
    width: 185px;
  }

  /* Labels get extra bottom margin for spacing */
  .lp-cards__label {
    padding: 16px 0 40px;
  }
}

/* ——— Large desktop: 1024px+ ——— */
@media (min-width: 1024px) {
  .lp-cards__section:first-child {
    padding-top: 180px;
  }

  .lp-cards__heading {
    font-size: 46.5px;
    line-height: 60px;
  }

  .lp-cards__row--3 .lp-cards__card {
    height: 450px;
  }

  .lp-cards__row--2 .lp-cards__card {
    height: 450px;
  }

  .lp-cards__phone-mini {
    width: 240px;
  }

  .lp-cards__phone-mini--stacked {
    width: 215px;
  }

  .lp-cards__label {
    padding: 20px 0 60px;
  }

  .lp-cards__label-title {
    font-size: 18px;
  }

  .lp-cards__label-desc {
    font-size: 13px;
  }
}

/* ——— XL: 1280px+ ——— */
@media (min-width: 1280px) {
  .lp-cards__row {
    max-width: 1112px;
    gap: 16px;
  }

  .lp-cards__phone-mini {
    width: 260px;
  }

  .lp-cards__phone-mini--stacked {
    width: 230px;
  }
}
