/* ============================================================
   CareerLah — Landing page
   ============================================================ */

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

:root {
  --teal:      #00968a;
  --teal-d:    #007a6f;
  --teal-l:    #00b5a8;
  --teal-bg:   #e0f5f3;
  --navy:      #1b3461;
  --navy-d:    #0f2244;
  --navy-light:#2a4a80;
  --purple:    #6366f1;
  --purple-d:  #4f46e5;
  --purple-bg: #eef0fe;
  --bg:        #fafaf8;
  --bg2:       #ffffff;
  --border:    #e8e4de;
  --muted:     #6b7280;
  --text:      #1a1a2e;
  --hero-bg1:  #0c1f40;
  --hero-bg2:  #0a3040;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* ── NAV ───────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12,31,64,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: 64px;
  display: flex;
  align-items: center;
  transition: box-shadow .2s;
}
.lp-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.1);
}
.lp-nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-brand-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--teal), #00b5a8);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,150,138,.35);
}
.lp-brand-name {
  font-size: .9375rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #fff;
}
.lp-brand-beta {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-l);
  background: rgba(0,181,168,.12);
  border: 1px solid rgba(0,181,168,.28);
  border-radius: 999px;
  padding: .15rem .45rem;
  margin-left: .1rem;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  margin-left: 2rem;
  flex: 1;
}
.lp-nav-links a {
  padding: .4rem .8rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  border-radius: 999px;
  transition: color .12s, background .12s;
}
.lp-nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.lp-nav-cta { display: flex; align-items: center; gap: .5rem; margin-left: auto; }

/* Mobile-only CTA inside the dropdown — hidden on desktop */
.lp-nav-mobile-cta { display: none; }

/* Hamburger button — hidden on desktop */
.lp-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  flex-shrink: 0;
  margin-left: .5rem;
  transition: background .14s, border-color .14s;
}
.lp-hamburger:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); color: #fff; }

/* ── Mobile nav ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .lp-hamburger { display: flex; }
  .lp-nav-cta   { display: none; }

  .lp-nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(12,31,64,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    padding: .75rem 1rem 1rem;
    gap: .25rem;
    margin-left: 0;
    z-index: 199;
  }
  .lp-nav-links.open { display: flex; }

  .lp-nav-links a {
    padding: .625rem .875rem;
    font-size: .9375rem;
    border-radius: 10px;
  }

  .lp-nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: .625rem;
    padding-top: .625rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .lp-nav-mobile-cta .lp-btn-ghost,
  .lp-nav-mobile-cta .lp-btn-solid {
    justify-content: center;
    padding: .625rem 1rem;
    font-size: .9375rem;
  }
}

/* ── Buttons ───────────────────────────────────────────── */
.lp-btn-ghost {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem 1rem;
  font: inherit; font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  background: transparent; border: none; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: color .12s, background .12s;
}
.lp-btn-ghost:hover { color: #fff; background: rgba(255,255,255,.08); }

.lp-btn-solid {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.25rem;
  font: inherit; font-size: .875rem; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, var(--teal), #00b5a8);
  border: none; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,150,138,.40);
  transition: transform .12s, box-shadow .14s, filter .14s;
  white-space: nowrap;
}
.lp-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,150,138,.45);
  filter: brightness(1.05);
}
.lp-btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.25rem;
  font: inherit; font-size: .875rem; font-weight: 600;
  color: rgba(255,255,255,.85); background: transparent;
  border: 1.5px solid rgba(255,255,255,.22); border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: border-color .12s, background .12s, color .12s;
}
.lp-btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07);
  color: #fff;
}
.lp-btn-lg {
  padding: .75rem 1.875rem;
  font-size: .9375rem;
  border-radius: 999px;
}
.lp-btn-white {
  background: #fff !important;
  color: var(--navy) !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.15) !important;
}
.lp-btn-white:hover {
  background: #f4f2ef !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.2) !important;
}
.lp-btn-ghost-white {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.5rem;
  font: inherit; font-size: .9375rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 999px; text-decoration: none; cursor: pointer;
  transition: color .12s, border-color .12s, background .12s;
}
.lp-btn-ghost-white:hover {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.16);
}

/* ── HERO ──────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0c1f40 0%, #0e2a54 40%, #083830 100%);
  padding-bottom: 5rem;
}

/* Cool background: geometric grid + gradient mesh */
.lp-hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 100% at 50% 50%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 100% at 50% 50%, black 15%, transparent 75%);
  z-index: 0;
}
/* Subtle diagonal accent lines */
.lp-hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, transparent 45%, rgba(0,181,168,.04) 50%, transparent 55%);
  z-index: 0;
}

/* Wavy bottom edge */
.lp-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,52 C180,28 360,72 540,48 C720,24 900,68 1080,50 C1200,38 1320,58 1440,52 L1440,80 L0,80 Z' fill='%23fff' fill-opacity='0.05'/%3E%3Cpath d='M0,56 C240,32 480,76 720,54 C960,32 1200,74 1440,58 L1440,80 L0,80 Z' fill='%23fff' fill-opacity='0.1'/%3E%3Cpath d='M0,62 C300,38 600,80 900,58 C1200,36 1320,72 1440,62 L1440,80 L0,80 Z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Glowing orbs */
.lp-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.lp-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.lp-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,150,138,.28) 0%, transparent 65%);
  top: -120px; right: -60px;
  animation: lp-orb-drift 12s ease-in-out infinite alternate;
}
.lp-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 65%);
  bottom: -80px; left: -40px;
  animation: lp-orb-drift 16s ease-in-out infinite alternate-reverse;
}
.lp-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,181,168,.15) 0%, transparent 65%);
  top: 40%; left: 35%;
  animation: lp-orb-drift 10s ease-in-out 2s infinite alternate;
}
@keyframes lp-orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.08); }
}

/* Dot grid */
.lp-hero-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 90% at 65% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 65% 50%, black 20%, transparent 70%);
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5.5rem;
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 960px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 4rem 1.5rem 3.5rem;
  }
}

/* Kicker pill */
.lp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--teal-l);
  margin-bottom: 1.625rem;
  background: rgba(0,181,168,.12);
  border: 1px solid rgba(0,181,168,.28);
  padding: .375rem .875rem;
  border-radius: 999px;
}
.lp-kicker-dot {
  width: 7px; height: 7px;
  background: var(--teal-l);
  border-radius: 50%;
  flex-shrink: 0;
  animation: lp-dot-pulse 2.2s ease-in-out infinite;
}
@keyframes lp-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,181,168,.5); }
  50%       { opacity: .7; transform: scale(.85); box-shadow: 0 0 0 5px rgba(0,181,168,0); }
}

/* h1 */
.lp-hero-h1 {
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.375rem;
}
.lp-hero-h1-accent {
  color: var(--teal-l);
  position: relative;
}
.lp-comma { color: rgba(255,255,255,.55); }

.lp-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 510px;
  margin: 0 0 2.25rem;
}
.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
/* Quick actions */
.lp-hero-quick {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.125rem;
}
.lp-quick-label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-right: .25rem;
}
.lp-quick-pill {
  display: inline-flex;
  align-items: center;
  padding: .3rem .65rem;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.lp-quick-pill:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(0,181,168,.4);
  color: #fff;
}
.lp-hero-note {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: rgba(255,255,255,.38);
}
.lp-hero-note svg { flex-shrink: 0; color: var(--teal-l); opacity: .7; }

/* ── Hero visual ───────────────────────────────────────── */
.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Product card */
.lp-card {
  background: #fff;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 4px 6px rgba(0,0,0,.06), 0 24px 64px rgba(0,0,0,.35);
}
.lp-card-float {
  width: 100%;
  max-width: 360px;
  animation: lp-rise .65s cubic-bezier(.34,1.1,.64,1) .2s both;
}
@keyframes lp-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-card-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .875rem 1.25rem;
  border-bottom: 1.5px solid #f0eeeb;
  background: #faf9f7;
  border-radius: 22px 22px 0 0;
}
.lp-card-dots { display: flex; gap: .35rem; }
.lp-card-dots span { width: 10px; height: 10px; border-radius: 50%; }
.lp-card-dots span:nth-child(1) { background: #ff5f57; }
.lp-card-dots span:nth-child(2) { background: #febc2e; }
.lp-card-dots span:nth-child(3) { background: #28c840; }
.lp-card-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: .25rem;
}
.lp-card-body { padding: 1.25rem; }
.lp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid #f0eeeb;
}
.lp-card-company { display: flex; align-items: center; gap: .625rem; }
.lp-company-logo {
  width: 36px; height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .875rem; flex-shrink: 0;
}
.lp-company-name { font-size: .8125rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.lp-company-role { font-size: .6875rem; color: var(--muted); margin-top: .1rem; }
.lp-score-ring { flex-shrink: 0; }
.lp-ring-anim {
  animation: lp-ring-draw 1.4s cubic-bezier(.4,0,.2,1) .9s forwards;
}
@keyframes lp-ring-draw { to { stroke-dashoffset: 50; } }

/* Bars */
.lp-bars { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1rem; }
.lp-bar-row { display: flex; align-items: center; gap: .625rem; }
.lp-bar-label { font-size: .6875rem; font-weight: 500; color: var(--muted); width: 80px; flex-shrink: 0; }
.lp-bar-track { flex: 1; height: 6px; background: #f0eeeb; border-radius: 999px; overflow: hidden; }
.lp-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-l));
  border-radius: 999px; width: 0;
  animation: lp-bar-grow 1s cubic-bezier(.4,0,.2,1) var(--delay,.5s) forwards;
}
@keyframes lp-bar-grow { to { width: var(--w, 100%); } }
.lp-bar-pct {
  font-family: "JetBrains Mono", monospace;
  font-size: .6875rem; font-weight: 600; color: var(--muted);
  width: 26px; text-align: right; flex-shrink: 0;
}

/* Tags */
.lp-card-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.lp-tag {
  font-size: .6875rem; font-weight: 600;
  padding: .25rem .625rem; border-radius: 999px;
}
.lp-tag-g { background: #ecfdf5; color: #059669; border: 1.5px solid #a7f3d0; }
.lp-tag-r { background: #fef2f2; color: #dc2626; border: 1.5px solid #fecaca; }

/* Floating badges */
.lp-badge {
  position: absolute;
  display: flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.95);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: .5rem .9rem;
  font-size: .75rem; font-weight: 600; color: var(--text);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  white-space: nowrap;
  animation: lp-rise .65s cubic-bezier(.34,1.1,.64,1) both;
  backdrop-filter: blur(8px);
}
.lp-badge-1 { bottom: 20px; left: -32px; animation-delay: .7s; }
.lp-badge-2 { top: 16px; right: -24px; animation-delay: .5s; }
@media (max-width: 960px) {
  .lp-badge-1 { left: 0; bottom: -18px; }
  .lp-badge-2 { right: 0; top: -18px; }
}

/* Mascot in hero */
.lp-hero-mascot-wrap {
  position: absolute;
  bottom: -28px;
  right: -44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  animation: lp-mascot-entrance .8s cubic-bezier(.34,1.1,.64,1) .4s both;
  z-index: 2;
}
@keyframes lp-mascot-entrance {
  from { opacity: 0; transform: translateY(20px) scale(.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lp-hero-mascot {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.35));
  animation: lp-mascot-float 3.5s ease-in-out infinite;
}
@keyframes lp-mascot-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.lp-mascot-bubble {
  background: rgba(255,255,255,.95);
  border: 1.5px solid rgba(0,181,168,.3);
  border-radius: 12px;
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  position: relative;
}
.lp-mascot-bubble::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-bottom-color: rgba(0,181,168,.3);
}
.lp-mascot-bubble::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-bottom-color: rgba(255,255,255,.95);
}
@media (max-width: 640px) {
  .lp-hero-mascot-wrap { display: none; }
}
@media (max-width: 960px) {
  .lp-hero-mascot-wrap { right: 0; bottom: -20px; }
}

/* ── STATS ─────────────────────────────────────────────── */
.lp-stats {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  padding: 2.75rem 1.5rem;
}
.lp-stats-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 600px) {
  .lp-stats-inner { flex-wrap: wrap; justify-content: center; gap: 1.75rem; }
  .lp-stat-divider { display: none; }
}
.lp-stat { text-align: center; }
.lp-stat-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.75rem; font-weight: 700;
  color: var(--navy); letter-spacing: -.04em;
  line-height: 1; margin-bottom: .3rem;
}
.lp-stat-label { font-size: .75rem; color: var(--muted); font-weight: 500; }
.lp-stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── FEATURES ──────────────────────────────────────────── */
.lp-features {
  background: var(--bg);
  border-bottom: 1.5px solid var(--border);
  padding: 6rem 1.5rem 6.5rem;
}
.lp-section-inner { max-width: 1100px; margin: 0 auto; }
.lp-section-header { max-width: 560px; margin-bottom: 3.25rem; }
.lp-kicker-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .625rem;
}
.lp-kicker-light { color: rgba(255,255,255,.5); }
.lp-section-h2 {
  font-size: clamp(1.875rem, 3.2vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--navy);
  margin: 0 0 .75rem;
  line-height: 1.15;
}
.lp-section-sub { font-size: .9375rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* Feature grid */
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 860px) { .lp-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lp-feature-grid { grid-template-columns: 1fr; } }

.lp-feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: 20px;
  padding: 1.75rem 1.625rem;
  transition: box-shadow .2s, transform .18s, border-color .2s;
}
.lp-feature-card:hover {
  box-shadow: 0 10px 36px rgba(27,52,97,.1);
  transform: translateY(-4px);
}
.lp-fc-teal   { border-top-color: var(--teal); }
.lp-fc-teal:hover { border-top-color: var(--teal); }
.lp-fc-navy   { border-top-color: var(--navy); }
.lp-fc-purple { border-top-color: var(--purple); }

.lp-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem; flex-shrink: 0;
}
.lp-icon-teal   { background: var(--teal-bg); color: var(--teal-d); }
.lp-icon-navy   { background: #e8edf7; color: var(--navy); }
.lp-icon-purple { background: var(--purple-bg); color: var(--purple-d); }

.lp-feature-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .5rem;
  letter-spacing: -.02em;
}
.lp-feature-card p {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* ── HOW IT WORKS ──────────────────────────────────────── */
.lp-hiw {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  padding: 6rem 1.5rem 6.5rem;
}
.lp-hiw-cards {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: start;
  gap: 0 .75rem;
  max-width: 960px;
  margin: 0 auto;
}
.lp-hiw-arrow {
  display: flex; align-items: center; justify-content: center;
  padding-top: 2.75rem;
  color: #c8d2e0;
}
.lp-hiw-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 1.875rem 1.625rem 1.75rem;
  display: flex; flex-direction: column; gap: .625rem;
  box-shadow: 0 2px 8px rgba(27,52,97,.04);
  transition: box-shadow .2s, transform .18s, border-color .2s;
}
.lp-hiw-card:hover {
  box-shadow: 0 10px 32px rgba(27,52,97,.1);
  transform: translateY(-4px);
  border-color: rgba(0,150,138,.25);
}
.lp-hiw-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .25rem;
}
.lp-hiw-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-hiw-icon-teal   { background: var(--teal-bg); color: var(--teal-d); }
.lp-hiw-icon-purple { background: var(--purple-bg); color: var(--purple-d); }
.lp-hiw-icon-navy   { background: #e8edf7; color: var(--navy); }
.lp-hiw-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: .6875rem; font-weight: 700; letter-spacing: .04em;
  color: var(--teal-d); background: var(--teal-bg);
  border: 1.5px solid rgba(0,150,138,.2); border-radius: 999px; padding: .2rem .65rem;
}
.lp-hiw-badge-purple { color: var(--purple-d); background: var(--purple-bg); border-color: rgba(99,102,241,.2); }
.lp-hiw-badge-navy   { color: var(--navy); background: #e8edf7; border-color: rgba(27,52,97,.2); }
.lp-hiw-card-title {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin: 0; letter-spacing: -.02em; line-height: 1.3;
}
.lp-hiw-card-desc {
  font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.65;
}
.lp-hiw-card-hint {
  display: flex; align-items: center; gap: .35rem;
  font-size: .75rem; font-weight: 500; color: #a0a8b4;
  margin-top: .25rem;
}
.lp-hiw-output-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .4rem; }
.lp-hiw-chip {
  font-size: .75rem; font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 999px; line-height: 1;
  white-space: nowrap;
}
.lp-chip-teal   { background: var(--teal-bg); color: var(--teal-d); border: 1px solid rgba(0,150,138,.2); }
.lp-chip-navy   { background: #e8edf7; color: var(--navy); border: 1px solid rgba(27,52,97,.15); }
.lp-chip-purple { background: var(--purple-bg); color: var(--purple-d); border: 1px solid rgba(99,102,241,.2); }
.lp-hiw-card-result { border-color: rgba(0,150,138,.2); background: #f0fdf9; }
.lp-hiw-card-result:hover { border-color: rgba(0,150,138,.35); }
@media (max-width: 768px) {
  .lp-hiw-cards { grid-template-columns: 1fr; gap: 1rem 0; max-width: 480px; }
  .lp-hiw-arrow { padding: 0; transform: rotate(90deg); justify-self: center; }
}

/* ── CTA ───────────────────────────────────────────────── */
.lp-cta {
  background: linear-gradient(145deg, #0c1f40 0%, #163a80 45%, #083c34 100%);
  padding: 6.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 80%, rgba(0,181,168,.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 85% 15%, rgba(129,140,248,.18) 0%, transparent 55%);
  pointer-events: none;
}
.lp-cta::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.lp-cta-inner {
  max-width: 580px; margin: 0 auto; position: relative; z-index: 1;
}
.lp-cta-mascot {
  position: absolute;
  bottom: 0;
  right: max(calc(50% - 600px), 3rem);
  width: 200px;
  pointer-events: none;
  z-index: 2;
  animation: lp-mascot-float 4s ease-in-out 1s infinite;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.3));
}
.lp-cta-mascot img { width: 100%; display: block; }
@media (max-width: 760px) { .lp-cta-mascot { display: none; } }
.lp-cta-h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin: .875rem 0 1.125rem;
}
.lp-cta-sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.68);
  margin: 0 0 2.5rem;
  line-height: 1.75;
}
.lp-cta-actions {
  display: flex; justify-content: center; align-items: center;
  gap: .875rem; flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────────────────────── */
.lp-footer {
  background: linear-gradient(160deg, #09182e 0%, #0c2240 55%, #082830 100%);
  border-top: 1px solid rgba(255,255,255,.05);
}
.lp-footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem 2rem;
}
@media (max-width: 780px) {
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding: 2.5rem 1.25rem 2rem;
  }
  .lp-footer-grid .sf-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) { .lp-footer-grid { grid-template-columns: 1fr; } }

.sf-brand-row {
  display: flex; align-items: center; gap: .625rem; margin-bottom: .875rem;
}
.sf-logo {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--teal), #00b5a8);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,150,138,.35);
}
.sf-brand-name { font-size: .9375rem; font-weight: 800; color: #fff; letter-spacing: -.025em; }
.sf-desc { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; margin-bottom: 1.25rem; max-width: 280px; }
.sf-mascot-row {
  display: flex; align-items: center; gap: .875rem;
}
.sf-mascot-row img { width: 44px; height: auto; opacity: .88; }
.sf-mascot-label { font-size: .8125rem; font-style: italic; color: rgba(255,255,255,.38); }

.sf-col-title {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: .875rem;
}
.sf-col-links { display: flex; flex-direction: column; gap: .5rem; }
.sf-col-links a {
  font-size: .875rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .12s;
}
.sf-col-links a:hover { color: rgba(255,255,255,.9); }

.lp-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }
.sf-bottom-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.sf-copy { font-size: .8125rem; color: rgba(255,255,255,.3); }
.sf-right { display: flex; align-items: center; gap: 1.25rem; }
.sf-status { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: rgba(255,255,255,.35); }
.sf-status-dot {
  width: 7px; height: 7px;
  background: #4ade80; border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74,222,128,.5);
}
.sf-social { display: flex; align-items: center; gap: .5rem; }
.sf-social-link {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.45);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .12s, color .12s, border-color .12s;
}
.sf-social-link:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
