/* ===== index.css ===== */
/* Reset Vite defaults — landing page uses its own styles */
:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
}

#root {
  min-height: 100vh;
}


/* ===== styles/landing.css ===== */
/* Kariena landing — premium mobile-first SaaS */

:root {
  --k-teal: #14b8a6;
  --k-teal-600: #0d9488;
  --k-teal-700: #0f766e;
  --k-teal-800: #115e59;
  --k-teal-50: #f0fdfa;
  --k-teal-100: #ccfbf1;
  --k-teal-200: #99f6e4;
  --k-ink: #0f172a;
  --k-muted: #64748b;
  --k-line: #e2e8f0;
  --k-bg: #ffffff;
  --k-bg-soft: #f8fafc;
  --k-radius: 22px;
  --k-radius-sm: 16px;
  --k-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --k-shadow-lg: 0 24px 60px rgba(15, 118, 110, 0.14);
  --k-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --k-max: 1200px;
  --k-space: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body.landing {
  margin: 0;
  font-family: var(--k-font);
  color: var(--k-ink);
  background: var(--k-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--k-teal-700);
  text-decoration: none;
}

a:hover {
  color: var(--k-teal-800);
}

h1,
h2,
h3 {
  font-family: var(--k-font);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--k-ink);
}

p {
  margin: 0 0 1rem;
  color: var(--k-muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--k-teal);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.lp-wrap {
  width: min(100% - 2rem, var(--k-max));
  margin-inline: auto;
}

.lp-center {
  text-align: center;
}

/* Header */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-header.is-scrolled {
  border-bottom-color: var(--k-line);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
}

.lp-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.lp-brand-text {
  display: grid;
  line-height: 1.15;
}

.lp-brand-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--k-ink);
  letter-spacing: -0.03em;
}

.lp-brand-text small {
  font-size: 0.68rem;
  color: var(--k-muted);
  font-weight: 500;
}

.lp-nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--k-line);
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lp-nav-toggle span,
.lp-nav-toggle span::before,
.lp-nav-toggle span::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--k-ink);
  border-radius: 2px;
  position: relative;
}

.lp-nav-toggle span::before,
.lp-nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.lp-nav-toggle span::before {
  top: -5px;
}

.lp-nav-toggle span::after {
  top: 5px;
}

.lp-nav-links {
  display: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 1rem;
  right: 1rem;
  background: #fff;
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius-sm);
  padding: 1rem;
  box-shadow: var(--k-shadow-lg);
  flex-direction: column;
  gap: 0.85rem;
}

.lp-nav-links.is-open {
  display: flex;
}

.lp-nav-links > a {
  color: var(--k-ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.lp-nav-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--k-line);
}

.lp-nav-cta > a:not(.lp-btn) {
  color: var(--k-muted);
  font-weight: 600;
}

@media (min-width: 900px) {
  .lp-nav-toggle {
    display: none;
  }

  .lp-nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .lp-nav-cta {
    margin-left: 0.5rem;
    padding-top: 0;
    border-top: 0;
  }
}

/* Buttons */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn-primary {
  background: linear-gradient(180deg, #2dd4bf 0%, var(--k-teal) 45%, var(--k-teal-600) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.35);
}

.lp-btn-primary:hover {
  color: #fff;
  box-shadow: 0 14px 28px rgba(20, 184, 166, 0.42);
}

.lp-btn-ghost {
  background: #fff;
  color: var(--k-teal-700);
  border-color: var(--k-line);
}

.lp-btn-ghost:hover {
  border-color: var(--k-teal-200);
  background: var(--k-teal-50);
  color: var(--k-teal-800);
}

.lp-btn-outline {
  background: #fff;
  color: var(--k-teal-700);
  border-color: var(--k-teal);
  box-shadow: none;
}

.lp-btn-outline:hover {
  background: var(--k-teal-50);
  color: var(--k-teal-800);
  border-color: var(--k-teal-600);
}

.lp-btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
}

.lp-btn-lg {
  padding: 0.9rem 1.45rem;
  font-size: 1rem;
}

.lp-btn-static {
  cursor: default;
  pointer-events: none;
}

.lp-btn-static:hover {
  transform: none;
}

/* Sections */

.lp-section {
  padding: 4.5rem 0;
}

.lp-section-muted {
  background:
    linear-gradient(180deg, var(--k-bg-soft) 0%, #f1f5f9 100%);
}

.lp-section-head {
  max-width: 720px;
  margin-bottom: 2.25rem;
}

.lp-section-head.lp-center {
  margin-inline: auto;
}

.lp-section-cta {
  margin-top: 1.15rem;
}

.lp-section-head h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--k-line);
  color: var(--k-teal-700);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--k-shadow);
}

/* Hero */

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 4rem;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(13, 148, 136, 0.1), transparent 50%),
    linear-gradient(180deg, #f0fdfa 0%, #ffffff 55%, #ffffff 100%);
  pointer-events: none;
}

.lp-hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.lp-hero-copy {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 40rem;
}

.lp-name-accent {
  color: var(--k-teal-600);
}

.lp-hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.15rem);
  max-width: 16ch;
  text-align: center;
  margin-inline: auto;
}

.lp-lead {
  font-size: 1.05rem;
  max-width: 38rem;
  margin-inline: auto;
  color: var(--k-muted);
}

.lp-feature-pills {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.lp-feature-pills li {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--k-teal);
  border: 1px solid var(--k-teal-600);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.lp-hero-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.lp-hero-price-hint {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--k-muted);
}

.lp-hero-photo {
  margin: 1.75rem 0 0;
  width: min(100%, 720px);
}

.lp-hero-photo picture,
.lp-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1.15rem;
}

.lp-trust-row li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.88rem;
  color: var(--k-muted);
  font-weight: 500;
  text-align: left;
}

.lp-trust-row li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--k-teal-600);
  font-weight: 800;
}

@media (min-width: 960px) {
  .lp-hero {
    padding: 3.5rem 0 5.5rem;
    min-height: min(92vh, 860px);
    display: flex;
    align-items: center;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .lp-hero-copy {
    max-width: 44rem;
  }
}

/* Hero mockups */

.lp-hero-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}

.lp-mock-desktop {
  width: min(100%, 460px);
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--k-line);
  box-shadow: var(--k-shadow-lg);
  overflow: hidden;
  animation: lp-float-y 6s ease-in-out infinite;
}

.lp-mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.9rem;
  background: var(--k-bg-soft);
  border-bottom: 1px solid var(--k-line);
}

.lp-mock-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.lp-mock-chrome span:nth-child(1) {
  background: #fca5a5;
}

.lp-mock-chrome span:nth-child(2) {
  background: #fcd34d;
}

.lp-mock-chrome span:nth-child(3) {
  background: #86efac;
}

.lp-mock-chrome em {
  margin-left: 0.5rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--k-muted);
  font-weight: 600;
}

.lp-mock-body {
  display: grid;
  grid-template-columns: minmax(88px, 28%) 1fr;
  min-height: 240px;
}

.lp-mock-side {
  padding: 0.85rem 0.65rem;
  background: linear-gradient(180deg, var(--k-teal-50), #fff);
  border-right: 1px solid var(--k-line);
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.lp-mock-side b {
  font-size: 0.78rem;
  color: var(--k-teal-700);
}

.lp-mock-side i {
  font-style: normal;
  font-size: 0.68rem;
  color: var(--k-muted);
  padding: 0.3rem 0.4rem;
  border-radius: 8px;
}

.lp-mock-side i.is-on {
  background: var(--k-teal);
  color: #fff;
  font-weight: 700;
}

.lp-mock-main {
  padding: 0.85rem;
  display: grid;
  gap: 0.65rem;
}

.lp-mock-stat {
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--k-teal-50), #fff);
  border: 1px solid var(--k-teal-100);
}

.lp-mock-stat small {
  display: block;
  font-size: 0.68rem;
  color: var(--k-muted);
}

.lp-mock-stat strong {
  font-size: 1.45rem;
  color: var(--k-teal-700);
  letter-spacing: -0.03em;
}

.lp-mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.lp-mini-card {
  padding: 0.5rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--k-line);
  display: grid;
  gap: 0.15rem;
}

.lp-mini-card span {
  font-size: 0.6rem;
  color: var(--k-muted);
}

.lp-mini-card strong {
  font-size: 0.68rem;
  color: var(--k-ink);
}

.lp-mock-list {
  display: grid;
  gap: 0.35rem;
}

.lp-mock-list div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: var(--k-bg-soft);
  font-size: 0.68rem;
}

.lp-mock-list b {
  font-weight: 700;
}

.lp-mock-list em {
  font-style: normal;
  color: var(--k-teal-600);
  font-weight: 700;
}

.lp-mock-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 148px;
  padding: 0.85rem 0.7rem 0.9rem;
  border-radius: 22px;
  background: #0f172a;
  color: #fff;
  box-shadow: var(--k-shadow-lg);
  border: 3px solid #1e293b;
  animation: lp-float-y 5.5s ease-in-out infinite reverse;
}

.lp-phone-notch {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: #334155;
  margin: 0 auto 0.7rem;
}

.lp-phone-title {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e2e8f0;
}

.lp-phone-card {
  padding: 0.55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0.4rem;
  display: grid;
  gap: 0.15rem;
}

.lp-phone-card strong {
  font-size: 0.72rem;
}

.lp-phone-card span {
  font-size: 0.6rem;
  color: #94a3b8;
}

.lp-phone-card em {
  font-style: normal;
  font-size: 0.65rem;
  color: #5eead4;
  font-weight: 700;
}

.lp-float {
  position: absolute;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--k-shadow);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.1rem;
  max-width: 170px;
}

.lp-float strong {
  font-size: 0.78rem;
  color: var(--k-ink);
}

.lp-float span {
  font-size: 0.68rem;
  color: var(--k-muted);
}

.lp-float-a {
  top: 8%;
  left: -2%;
  animation: lp-float-y 4.8s ease-in-out infinite;
}

.lp-float-b {
  bottom: 18%;
  left: 4%;
  animation: lp-float-y 5.2s ease-in-out infinite 0.6s;
}

@media (max-width: 700px) {
  .lp-mock-phone,
  .lp-float {
    display: none;
  }

  .lp-hero-visual {
    min-height: auto;
  }
}

@keyframes lp-float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Cards / testimonials */

.lp-testimonial-intro {
  text-align: center;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-testimonial-intro .lp-section-head {
  margin-bottom: 0;
  max-width: 640px;
}

.lp-testimonial-intro .lp-eyebrow {
  margin-bottom: 1rem;
}

.lp-card {
  background: #fff;
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius);
  box-shadow: var(--k-shadow);
}

.lp-testimonial-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .lp-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.lp-testimonial {
  padding: 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.lp-testimonial > p {
  margin: 0;
  color: var(--k-ink);
  font-size: 0.98rem;
}

.lp-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.lp-person {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--k-teal-800);
  background: hsl(var(--hue, 168) 70% 90%);
  flex-shrink: 0;
}

.lp-person strong {
  display: block;
  font-size: 0.92rem;
}

.lp-person small {
  color: var(--k-muted);
  font-size: 0.8rem;
}

/* Problem / solution */

.lp-ps-list {
  display: grid;
  gap: 2.5rem;
}

.lp-ps {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .lp-ps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .lp-ps-reverse .lp-ps-copy {
    order: 2;
  }

  .lp-ps-reverse .lp-ps-visual {
    order: 1;
  }
}

.lp-ps h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.lp-ps-problem {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-ps-problem h3 {
  margin-bottom: 0.5rem;
}

.lp-ps-problem > p {
  margin: 0;
  max-width: 36rem;
}

.lp-pill {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--k-line);
  color: var(--k-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lp-pill-teal {
  background: var(--k-teal-50);
  border-color: var(--k-teal-100);
  color: var(--k-teal-700);
}

.lp-solution {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--k-radius-sm);
  background: var(--k-teal-50);
  border: 1px solid var(--k-teal-100);
}

.lp-solution p {
  margin: 0.35rem 0 0;
  color: var(--k-ink);
}

.lp-ps-visual {
  display: grid;
  place-items: center;
}

.lp-shot {
  width: min(100%, 380px);
  padding: 1.15rem;
  border-radius: var(--k-radius);
  background: #fff;
  border: 1px solid var(--k-line);
  box-shadow: var(--k-shadow-lg);
}

.lp-shot header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.lp-shot header b {
  font-size: 0.92rem;
}

.lp-shot header em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--k-teal-600);
  background: var(--k-teal-50);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.lp-shot-lines {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.lp-shot-lines i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--k-teal-100), #e2e8f0);
}

.lp-shot-lines i.short {
  width: 45%;
}

.lp-shot-lines i.mid {
  width: 70%;
}

.lp-shot footer {
  font-size: 0.78rem;
  color: var(--k-muted);
  font-weight: 600;
}

.lp-shot-salary strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: var(--k-teal-700);
  margin-bottom: 0.2rem;
}

.lp-shot-salary > span {
  display: block;
  font-size: 0.85rem;
  color: var(--k-muted);
  margin-bottom: 0.85rem;
}

.lp-bar {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.lp-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--k-teal-200), var(--k-teal));
  border-radius: inherit;
}

.lp-job-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  background: var(--k-bg-soft);
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
}

.lp-job-row em {
  font-style: normal;
  font-weight: 800;
  color: var(--k-teal-600);
}

/* Emotion divider */

.lp-emotion {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(94, 234, 212, 0.35), transparent 55%),
    linear-gradient(135deg, var(--k-teal-700), var(--k-teal) 55%, #2dd4bf);
  color: #fff;
  box-shadow: var(--k-shadow-lg);
  align-items: center;
}

.lp-emotion-copy {
  text-align: center;
}

.lp-emotion-copy h2,
.lp-emotion-copy p,
.lp-emotion-copy strong {
  color: #fff;
}

.lp-emotion-copy p {
  opacity: 0.92;
}

.lp-emotion-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.lp-emotion-actions .lp-btn-primary {
  background: #fff;
  color: var(--k-teal-700);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.lp-emotion-actions .lp-btn-primary:hover {
  color: var(--k-teal-800);
}

.lp-emotion-price-hint {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.95;
}

.lp-emotion-art {
  width: min(100%, 280px);
  margin-inline: auto;
}

@media (min-width: 800px) {
  .lp-emotion {
    grid-template-columns: 280px 1fr;
    padding: 2.25rem 2.5rem;
    gap: 2rem;
  }

  .lp-emotion-art {
    margin: 0;
  }
}

/* Pricing */

.lp-pricing-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .lp-pricing-grid {
    grid-template-columns: 0.9fr 1.15fr 0.9fr;
    align-items: center;
    gap: 1.15rem;
  }
}

.lp-price-card {
  background: #fff;
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius);
  padding: 1.5rem;
  box-shadow: var(--k-shadow);
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.lp-price-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.lp-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--k-ink);
}

.lp-price-xl {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: #fff;
}

.lp-price-old {
  margin: 0;
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1rem;
}

.lp-price-day {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.lp-price-day strong {
  color: #fff;
}

.lp-price-copy {
  margin: 0;
  font-size: 0.92rem;
}

.lp-price-featured .lp-price-copy {
  color: rgba(255, 255, 255, 0.9);
}

.lp-price-featured {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.18), transparent 50%),
    linear-gradient(160deg, #0f766e 0%, #14b8a6 55%, #2dd4bf 100%);
  border-color: transparent;
  color: #fff;
  transform: scale(1);
  box-shadow: 0 28px 60px rgba(15, 118, 110, 0.28);
  gap: 0.75rem;
  padding: 1.75rem;
}

@media (min-width: 900px) {
  .lp-price-featured {
    transform: scale(1.04);
  }
}

.lp-price-featured h3,
.lp-price-featured .lp-popular,
.lp-price-featured .lp-price-note,
.lp-price-featured .lp-price-note strong {
  color: #fff;
}

.lp-price-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
}

.lp-popular {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lp-check-list {
  list-style: none;
  margin: 0.25rem 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.lp-check-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--k-muted);
}

.lp-price-featured .lp-check-list li {
  color: rgba(255, 255, 255, 0.92);
}

.lp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--k-teal-600);
  font-weight: 800;
}

.lp-price-featured .lp-check-list li::before {
  color: #fff;
}

.lp-price-note {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  text-align: center;
}

.lp-price-featured .lp-btn-primary {
  background: #fff;
  color: var(--k-teal-700);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.lp-price-featured .lp-btn-primary:hover {
  color: var(--k-teal-800);
}

/* Compare */

.lp-compare {
  padding: 2rem 1.25rem;
  border-radius: 28px;
  background: var(--k-bg-soft);
  border: 1px solid var(--k-line);
}

.lp-compare > h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.lp-compare-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 760px) {
  .lp-compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.lp-compare-col {
  background: #fff;
  border-radius: var(--k-radius-sm);
  border: 1px solid var(--k-line);
  padding: 1.25rem;
}

.lp-compare-col h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.lp-compare-col ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--k-muted);
  display: grid;
  gap: 0.45rem;
}

.lp-compare-yes {
  border-color: var(--k-teal-200);
  background: linear-gradient(180deg, #fff, var(--k-teal-50));
}

.lp-compare-yes h3 {
  color: var(--k-teal-700);
}

.lp-compare-yes ul {
  color: var(--k-ink);
}

.lp-trust-icons {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--k-ink);
}

.lp-closing {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--k-ink);
}

/* FAQ */

.lp-faq-wrap {
  max-width: 760px;
}

.lp-faq {
  display: grid;
  gap: 0.65rem;
}

.lp-faq-item {
  background: #fff;
  border: 1px solid var(--k-line);
  border-radius: 18px;
  padding: 0.15rem 1.1rem;
  box-shadow: var(--k-shadow);
}

.lp-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.5rem 1rem 0;
  font-weight: 700;
  color: var(--k-ink);
  position: relative;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--k-teal-600);
  font-size: 1.25rem;
  font-weight: 700;
}

.lp-faq-item[open] summary::after {
  content: "–";
}

.lp-faq-item p {
  margin: 0 0 1rem;
  padding-right: 1rem;
}

/* Final CTA */

.lp-final-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 255, 255, 0.2), transparent 55%),
    linear-gradient(145deg, #115e59, #14b8a6 60%, #5eead4);
  color: #fff;
  box-shadow: var(--k-shadow-lg);
}

.lp-final-cta h2,
.lp-final-cta p {
  color: #fff;
}

.lp-final-cta p {
  max-width: 40rem;
  margin: 0 auto 1.35rem;
  opacity: 0.92;
}

.lp-final-cta h2 {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.lp-final-art {
  width: min(100%, 220px);
  margin: 0 auto 1.25rem;
}

.lp-final-cta .lp-btn-primary {
  background: #fff;
  color: var(--k-teal-700);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.lp-final-cta .lp-btn-primary:hover {
  color: var(--k-teal-800);
}

/* Footer */

.lp-footer {
  padding: 3rem 0 1.5rem;
  background: #0f172a;
  color: #cbd5e1;
}

.lp-footer a {
  color: #e2e8f0;
}

.lp-footer a:hover {
  color: #fff;
}

.lp-footer-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 800px) {
  .lp-footer-grid {
    grid-template-columns: 1.3fr 1.4fr auto;
    align-items: start;
  }
}

.lp-footer-brand .lp-brand-text strong {
  color: #fff;
}

.lp-footer-brand .lp-brand-text small {
  color: #94a3b8;
}

.lp-footer-brand p {
  margin: 0.85rem 0 0;
  color: #94a3b8;
  max-width: 28ch;
}

.lp-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.lp-social {
  display: flex;
  gap: 0.5rem;
}

.lp-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.lp-social a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.lp-social svg {
  display: block;
}

.lp-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1rem;
}

.lp-footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

/* Reveal motion */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pre-order modal */

.lp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.lp-modal {
  position: relative;
  width: min(100%, 420px);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--k-radius);
  background: #fff;
  border: 1px solid var(--k-line);
  box-shadow: var(--k-shadow-lg);
}

.lp-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.lp-modal-lead {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.lp-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--k-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lp-modal-close:hover {
  background: var(--k-bg-soft);
  color: var(--k-ink);
}

.lp-modal-form {
  display: grid;
  gap: 0.9rem;
}

.lp-modal-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--k-ink);
}

.lp-modal-form input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--k-line);
  border-radius: 12px;
  font: inherit;
  font-weight: 500;
  color: var(--k-ink);
  background: #fff;
}

.lp-modal-form input:focus {
  outline: 2px solid var(--k-teal-200);
  border-color: var(--k-teal);
}

.lp-required {
  color: #dc2626;
}

.lp-optional {
  font-weight: 500;
  color: var(--k-muted);
}

.lp-modal-form .lp-btn {
  margin-top: 0.35rem;
  width: 100%;
}

.lp-modal-success {
  text-align: center;
  padding: 0.5rem 0.25rem 0.25rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.lp-modal-success h2 {
  margin: 0;
  max-width: 22ch;
  font-size: 1.25rem;
  line-height: 1.35;
}

.lp-modal-success .lp-btn {
  min-width: 8rem;
}

