/* Write Agent landing — Awwwards / Figma reference aligned */

@import url("tokens.css");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body.lp-body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* —— Ambient layers (reference: grid + radial glow) —— */
.lp-grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.55;
}

.lp-ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lp-ambient-glow::before,
.lp-ambient-glow::after {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  will-change: transform, opacity;
}

.lp-ambient-glow::before {
  left: 10%;
  top: 8%;
  right: 10%;
  bottom: 28%;
  background: radial-gradient(ellipse 70% 55% at 50% 42%, rgba(59, 130, 246, 0.14), transparent 62%);
  animation: lp-glow-breathe 7s ease-in-out infinite;
}

.lp-ambient-glow::after {
  left: 18%;
  top: 42%;
  right: 18%;
  bottom: 8%;
  background: radial-gradient(ellipse 50% 40% at 50% 60%, rgba(255, 255, 255, 0.05), transparent 58%);
  animation: lp-glow-breathe 7s ease-in-out infinite reverse;
  animation-delay: -2.5s;
}

@keyframes lp-glow-breathe {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.lp-shell {
  position: relative;
  z-index: 1;
}

.lp-container {
  width: min(100% - 2rem, var(--lp-max));
  margin-inline: auto;
}

/* —— Nav —— */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--lp-nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.lp-nav.is-scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--lp-border);
}

.lp-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, var(--lp-max));
  margin-inline: auto;
}

.lp-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--lp-text);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-logo img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

.lp-nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: center;
}

.lp-nav-links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.lp-nav-links a:hover {
  color: var(--lp-text);
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--lp-text);
  color: var(--lp-bg);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.lp-nav-cta:hover { opacity: 0.92; }
.lp-nav-cta:active { transform: scale(0.98); }

@media (min-width: 768px) {
  .lp-nav-links { display: flex; }
}

/* —— Hero (reference: ring + centered type) —— */
.lp-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--lp-nav-h);
  overflow: hidden;
}

.lp-hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-hero-orbit-system {
  --orbit-size: min(88vw, 680px);
  position: absolute;
  left: 50%;
  top: 46%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  transform: translate(-50%, -50%);
}

.lp-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  will-change: transform;
}

.lp-hero-ring--outer {
  inset: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 120px rgba(59, 130, 246, 0.06);
  animation: lp-ring-spin 88s linear infinite;
}

.lp-hero-ring--mid {
  inset: 14%;
  border-color: rgba(255, 255, 255, 0.06);
  animation: lp-ring-spin 64s linear infinite reverse;
}

.lp-hero-ring--inner {
  inset: 28%;
  border-color: rgba(255, 255, 255, 0.04);
  animation: lp-ring-spin 48s linear infinite;
}

.lp-hero-orbit-track {
  position: absolute;
  inset: 0;
  animation: lp-ring-spin 22s linear infinite;
  will-change: transform;
}

.lp-hero-ring-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.65),
    0 0 28px rgba(59, 130, 246, 0.35);
  animation: lp-dot-pulse 2.8s ease-in-out infinite;
}

@keyframes lp-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes lp-dot-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.88;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

.lp-hero-inner {
  position: relative;
  text-align: center;
  padding-block: 3rem 5rem;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.lp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.55);
}

.lp-hero-title {
  margin: 0;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.lp-hero-title em {
  display: block;
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(244, 244, 245, 0.72);
  line-height: 1.08;
  padding-bottom: 0.12rem;
}

.lp-hero-sub {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.25rem;
  max-width: 52rem;
  margin-inline: auto;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

@media (min-width: 768px) {
  .lp-hero-sub {
    grid-template-columns: 1fr 1px 1fr;
    align-items: start;
    gap: 2.5rem;
  }

  .lp-hero-sub p {
    margin: 0;
  }

  .lp-hero-sub p:first-child {
    text-align: right;
  }

  .lp-hero-sub p:last-child {
    text-align: left;
  }

  .lp-hero-divider {
    width: 1px;
    height: 3.25rem;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.14), transparent);
    justify-self: center;
  }
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.25rem;
}

.lp-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: var(--lp-dim);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lp-scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 2.75rem;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 55%, transparent);
}

.lp-scroll-line-shine {
  position: absolute;
  left: 0;
  width: 100%;
  height: 42%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 25%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 100%
  );
  filter: blur(0.25px);
  animation: lp-scroll-shine 2.4s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

@keyframes lp-scroll-shine {
  0% {
    top: -48%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    top: 108%;
    opacity: 0;
  }
}

/* —— Buttons —— */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--lp-text);
  color: var(--lp-bg);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.lp-btn-primary:hover { opacity: 0.92; }
.lp-btn-primary:active { transform: scale(0.98); }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: transparent;
  color: var(--lp-text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--lp-border);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lp-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.lp-link-arrow {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.lp-link-arrow:hover {
  color: var(--lp-text);
}

/* —— Section rail (reference: 01 THE STUDIO ——) —— */
.lp-section {
  padding-block: clamp(4.5rem, 11vw, 8rem);
}

.lp-section-rail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-dim);
}

.lp-section-rail-num {
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-section-rail-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.12), transparent);
  max-width: 12rem;
}

/* —— About split (reference: copy left + editorial image right) —— */
.lp-about-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .lp-about-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.lp-about-title {
  margin: 0 0 2rem;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 14ch;
}

.lp-about-title em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lp-dim);
}

.lp-about-columns {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .lp-about-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.lp-about-columns p {
  margin: 0 0 1.1rem;
  color: var(--lp-muted);
  font-size: 0.88rem;
  max-width: 38ch;
}

.lp-about-columns p strong {
  color: var(--lp-text);
  font-weight: 500;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lp-border);
}

.lp-stat {
  text-align: center;
}

.lp-stat-value {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lp-stat-label {
  margin: 0.4rem 0 0;
  font-size: 0.68rem;
  color: var(--lp-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-trust-strip {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-trust-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-dim);
  margin-bottom: 0.85rem;
}

.lp-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.42);
}

.lp-about-visual {
  position: relative;
  min-height: 420px;
}

.lp-about-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--lp-radius);
  filter: grayscale(100%) contrast(1.08);
}

@media (min-width: 960px) {
  .lp-about-visual {
    position: sticky;
    top: calc(var(--lp-nav-h) + 1.5rem);
    min-height: 560px;
  }

  .lp-about-visual img {
    min-height: 560px;
  }
}

.lp-orbit-seal {
  position: absolute;
  left: -1.25rem;
  bottom: 2rem;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
}

.lp-orbit-seal svg {
  width: 88px;
  height: 88px;
}

.lp-orbit-seal text {
  fill: var(--lp-muted);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .lp-orbit-seal svg {
    animation: lp-seal-spin 28s linear infinite;
  }
}

@keyframes lp-seal-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* —— Work / showcase (reference: featured strip + 3-up row) —— */
.lp-work-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .lp-work-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.lp-work-head h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.lp-work-list {
  display: grid;
  gap: 1rem;
}

.lp-work-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--lp-radius);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}

.lp-work-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.06);
  transition: transform 0.65s var(--wa-ease), filter 0.5s ease;
}

.lp-work-item.is-featured img {
  aspect-ratio: 21 / 9;
  min-height: 220px;
}

.lp-work-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .lp-work-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-work-row .lp-work-item img {
  aspect-ratio: 4 / 5;
  min-height: 280px;
}

.lp-work-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.35rem 1.5rem 1.45rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
}

.lp-work-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lp-work-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.62);
}

.lp-work-year {
  color: rgba(244, 244, 245, 0.42);
}

.lp-work-item:hover img {
  transform: scale(1.03);
  filter: grayscale(35%) contrast(1.06);
}

/* —— Capabilities bento (reference: featured tall + 3 cells) —— */
.lp-cap-intro {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 52rem;
}

@media (min-width: 900px) {
  .lp-cap-intro {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 2.5rem;
  }
}

.lp-cap-intro h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.lp-cap-intro h2 em {
  display: block;
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lp-dim);
  line-height: 1.1;
  padding-bottom: 0.1rem;
}

.lp-cap-intro > p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9rem;
  max-width: 36ch;
}

.lp-bento {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .lp-bento {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  .lp-bento-card.is-featured {
    grid-row: 1 / span 2;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }

  .lp-bento-card.is-featured .lp-bento-visual {
    flex: 1;
    min-height: 220px;
  }

  .lp-bento-card.is-featured .lp-bento-body {
    padding: 1.5rem 1.65rem 1.75rem;
  }
}

.lp-bento-card {
  padding: 1.65rem;
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--lp-border);
  min-height: 168px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.lp-bento-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.lp-bento-card.is-featured {
  border-color: rgba(59, 130, 246, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.lp-bento-visual {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.lp-bento-visual img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
}

.lp-bento-card.is-featured .lp-bento-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.88), transparent 55%);
}

.lp-bento-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--lp-muted);
}

.lp-bento-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.lp-bento-card p {
  margin: 0.45rem 0 0;
  font-size: 0.86rem;
  color: var(--lp-muted);
  max-width: 34ch;
}

/* —— Pricing —— */
.lp-section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.lp-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
}

.lp-pricing {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-pricing {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-price-card {
  padding: 1.75rem;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.02);
}

.lp-price-card.is-featured {
  border-color: rgba(59, 130, 246, 0.32);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(59, 130, 246, 0.1), transparent),
    rgba(255, 255, 255, 0.02);
}

.lp-price-name {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-dim);
}

.lp-price-value {
  margin: 0.75rem 0 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lp-price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--lp-dim);
}

.lp-price-desc {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--lp-muted);
}

/* —— CTA —— */
.lp-cta {
  text-align: center;
  padding-block: clamp(5rem, 12vw, 8rem);
  border-top: 1px solid var(--lp-border);
}

.lp-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.lp-cta p {
  margin: 1rem auto 2rem;
  color: var(--lp-muted);
  max-width: 40ch;
}

.lp-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.1rem 2rem;
  border-radius: var(--lp-radius);
  background: var(--lp-text);
  color: var(--lp-bg);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.lp-cta-btn:hover { opacity: 0.92; }
.lp-cta-btn:active { transform: scale(0.98); }

.lp-cta-btn strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.lp-cta-btn span {
  font-size: 0.72rem;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

/* —— Footer —— */
.lp-footer {
  padding-block: 3rem 2rem;
  border-top: 1px solid var(--lp-border);
}

.lp-footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .lp-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.lp-footer-brand p {
  margin: 0.75rem 0 0;
  color: var(--lp-dim);
  font-size: 0.88rem;
  max-width: 28ch;
}

.lp-footer h4 {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-dim);
  font-weight: 500;
}

.lp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer li {
  margin-bottom: 0.5rem;
}

.lp-footer a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.lp-footer a:hover {
  color: var(--lp-text);
}

.lp-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--lp-dim);
  font-size: 0.8rem;
}

@media (min-width: 640px) {
  .lp-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* —— Reveal —— */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--wa-ease), transform 0.65s var(--wa-ease);
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lp-ambient-glow::before,
  .lp-ambient-glow::after,
  .lp-hero-ring--outer,
  .lp-hero-ring--mid,
  .lp-hero-ring--inner,
  .lp-hero-orbit-track,
  .lp-hero-ring-dot,
  .lp-scroll-line-shine,
  .lp-orbit-seal svg {
    animation: none;
  }
}

/* Landing auth state — guest vs signed-in CTAs */
body.lp-body:not(.lp-auth-signed-in) [data-lp-auth-user] {
  display: none !important;
}

body.lp-body.lp-auth-signed-in [data-lp-auth-guest] {
  display: none !important;
}
