/* ============================================================
   LAUNKR -- prototype stylesheet
   Hand-rolled CSS. No framework, no preprocessor.
   Dark-only theme.
   ============================================================ */

/* === Tokens (LAUNKR — dark-only) === */
:root {
  --bg:         #080807;
  --surface:    #0F0E0C;
  --surface-2:  #181714;

  --ink:        #F0EBE1;
  --ink-2:      rgba(240, 235, 225, 0.55);
  --ink-3:      rgba(240, 235, 225, 0.35);
  --line:       rgba(240, 235, 225, 0.1);

  --orange:        #FF5C00;
  --orange-dim:    rgba(255, 92, 0, 0.12);
  --orange-glow:   rgba(255, 92, 0, 0.35);
  --border-orange: rgba(255, 92, 0, 0.3);

  /* Aliases legacy — apunta --purple* a --orange* para no romper
     componentes que todavia usen las vars viejas. */
  --purple:      var(--orange);
  --purple-2:    var(--orange);
  --purple-glow: var(--orange-glow);

  /* Legacy alias kept while badge styles still reference --orange-2. */
  --orange-2:    var(--orange);

  --green:    #10b981;
  --red:      #ef4444;
  --yellow:   #f59e0b;

  --font-sans: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 1px;
  --radius:    2px;
  --radius-lg: 2px;

  --shadow-card:  0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-toast: 0 8px 28px rgba(0, 0, 0, 0.55);
}

/* === Reset / globals === */
*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--purple);
  text-decoration: none;
  cursor: pointer;
}
a:hover { text-decoration: underline; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--purple-glow);
  color: var(--ink);
}

/* === Shell === */
.shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}

/* === Topbar === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--purple);
  border-radius: 6px;
}

.brand small {
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.nav {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-left: 8px;
}

.nav-link {
  padding: 8px 12px 6px;
  color: var(--ink-2);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover {
  color: var(--ink);
  text-decoration: none;
}
.nav-link.active {
  color: var(--ink);
  border-bottom-color: var(--orange);
}

.spacer { flex: 1; }

.net-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  background: var(--surface);
  cursor: default;
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover { border-color: var(--ink-3); }
.btn:focus-visible {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--purple);
  color: #ffffff;
  border-color: transparent;
}
.btn-primary:hover {
  background: var(--purple-2);
  border-color: transparent;
  box-shadow: 0 0 0 4px var(--purple-glow);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--ink-2);
}
.btn-ghost:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: transparent;
}

.btn-danger {
  background: var(--red);
  color: #ffffff;
  border-color: transparent;
}
.btn-danger:hover {
  filter: brightness(1.06);
  border-color: transparent;
}

/* === Page + hero === */
.page {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.hero {
  padding-top: 24px;
  padding-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.h1 {
  font-size: 40px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.lead {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 14px 0 0;
  max-width: 60ch;
}

/* === Stat blocks === */
.num-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.num-stack .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.num-stack .big {
  font-size: 22px;
  font-weight: 600;
  font-feature-settings: "tnum" 1;
  color: var(--ink);
  line-height: 1.15;
}

.num-stack .sub {
  font-size: 12px;
  color: var(--ink-3);
}

/* === Cards + dividers + key/value rows === */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.hr {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
  border: 0;
}

.kv {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 13px;
  gap: 12px;
}
.kv .k { color: var(--ink-3); }
.kv .v {
  color: var(--ink);
  font-feature-settings: "tnum" 1;
  text-align: right;
  word-break: break-word;
}

/* === Mono + utilities === */
.mono { font-family: var(--font-mono); }

.dim   { color: var(--ink-3); }
.muted { color: var(--ink-2); font-size: 12px; }

.tnum { font-feature-settings: "tnum" 1; }

/* === Badges (mode + paused) === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.4;
}

.badge-dot::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 2px;
}

.badge-direct    { background: var(--orange-dim);        color: var(--orange); border: 1px solid var(--border-orange); }
.badge-bonding   { background: transparent;              color: var(--orange); border: 1px solid var(--border-orange); }
.badge-graduated { background: rgba(16, 185, 129, 0.12); color: var(--green);  border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-paused    { background: rgba(239, 68, 68, 0.12);  color: var(--red);    border: 1px solid rgba(239, 68, 68, 0.3); }

/* === Tx tracker (toasts, bottom-right) === */
.tx-tracker {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
  max-width: 360px;
}

.tx-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13px;
  box-shadow: var(--shadow-toast);
  color: var(--ink);
}
.tx-card.success { border-color: var(--green); }
.tx-card.error   { border-color: var(--red); }

.tx-card-h {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-weight: 500;
}

.tx-spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink-3);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

.tx-success-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.tx-error-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === Bonding hero (orange progress -- preset for views-2.jsx) === */
.bonding-hero {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249, 115, 22, 0.30);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, transparent 100%);
}

.bonding-hero-progress {
  position: relative;
  height: 14px;
  border-radius: var(--radius);
  background: var(--surface-2);
  overflow: hidden;
  border: 1px solid var(--line);
}

.bonding-hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 100%);
  transition: width 0.4s ease;
  border-radius: var(--radius);
}

.bonding-hero-progress-fill.almost {
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.7; }
}

.bonding-hero-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-2);
}

/* === Pool list / pool detail (defensive layout primitives) === */
.pool-name,
.token-cell {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pool-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.pool-header .title {
  min-width: 0;
  overflow-wrap: anywhere;
}
.pool-header .meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--ink-3);
  font-size: 12px;
}

/* === Forms (used by views-2 / views-3 likely) === */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.input.mono { font-family: var(--font-mono); }
.input::placeholder { color: var(--ink-3); }

/* Locked / readonly / disabled inputs (visually distinct from editable). */
input:disabled,
input[disabled],
input:read-only,
input[readonly] {
  opacity: 0.55;
  cursor: not-allowed;
  background: var(--surface-2);
}

/* Strip native number spinners — visual noise on the brutalist forms. */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* === Responsive: narrow screens === */
@media (max-width: 720px) {
  .topbar {
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 10px;
  }
  .topbar .btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .nav {
    order: 10;
    flex-basis: 100%;
    margin-left: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .page {
    padding: 24px 16px 64px;
  }
  .h1 {
    font-size: 32px;
  }
  .lead {
    font-size: 15px;
  }
  .num-stack .big {
    font-size: 19px;
  }
  .tx-tracker {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

/* ============================================================
   === LAUNKR Landing ===
   Scoped CSS for the marketing landing component (views-1.jsx
   Landing()). Everything here is namespaced under .launkr-landing
   or body.landing-active so the rest of the app keeps its layout.
   Color tokens reuse :root vars (--orange, --ink, --bg, --line)
   rather than duplicating them.
   ============================================================ */

/* Custom cursor — only active on landing route, and only on fine pointers. */
body.landing-active { cursor: none; }
@media (pointer: coarse) {
  body.landing-active { cursor: auto; }
  body.landing-active #cursor,
  body.landing-active #cursor-ring { display: none; }
}
body.landing-active a,
body.landing-active button,
body.landing-active .use-card,
body.landing-active .step,
body.landing-active .feature-card { cursor: none; }

#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  top: 0; left: 0;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: screen;
  display: none;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  top: 0; left: 0;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s;
  display: none;
}
body.landing-active #cursor,
body.landing-active #cursor-ring { display: block; }

/* Landing wrapper — establishes its own stacking + typography ground. */
.launkr-landing {
  position: relative;
  font-family: var(--font-sans);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}
.launkr-landing,
.launkr-landing * { box-sizing: border-box; }

/* Override default a:hover (which underlines orange) inside the landing. */
.launkr-landing a { color: inherit; text-decoration: none; }
.launkr-landing a:hover { text-decoration: none; }

/* Three.js canvas */
.launkr-landing #bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* NAV (distinct from the global .topbar — only renders inside landing) */
.launkr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.launkr-nav.scrolled {
  background: rgba(8, 8, 7, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
}
.launkr-nav .logo {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.launkr-nav .logo span { color: var(--orange); }

.launkr-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  align-items: center;
}
.launkr-nav a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.launkr-nav a:hover { color: var(--ink); }
.launkr-nav .nav-cta {
  background: var(--orange);
  color: var(--bg);
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.launkr-nav .nav-cta:hover { opacity: 0.85; color: var(--bg); }

/* TICKER */
.launkr-landing .ticker-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 10;
  margin-top: 80px; /* clear the fixed nav (padding 28+28 + content ~24px = ~80px) */
}
.launkr-landing .ticker-track {
  display: flex;
  gap: 0;
  animation: launkr-ticker 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.launkr-landing .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  border-right: 1px solid var(--line);
  text-transform: uppercase;
}
.launkr-landing .ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* HERO */
.launkr-landing .hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 100px; /* was 140px top — reduced 80px to compensate ticker margin-top */
  max-width: 1300px;
  margin: 0 auto;
}
.launkr-landing .hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: launkr-fadeUp 0.8s ease 0.2s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
}
.launkr-landing .hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--orange);
}
.launkr-landing .hero h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 36px 0;
  opacity: 0;
  animation: launkr-fadeUp 0.9s ease 0.35s forwards;
}
.launkr-landing .hero h1 em {
  font-style: normal;
  color: var(--orange);
  display: block;
}
.launkr-landing .hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 56px 0;
  font-weight: 400;
  opacity: 0;
  animation: launkr-fadeUp 0.9s ease 0.5s forwards;
}
.launkr-landing .hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: launkr-fadeUp 0.9s ease 0.65s forwards;
}

/* Landing-specific buttons (different visual language than .btn). */
.launkr-landing .btn-primary {
  background: var(--orange);
  color: var(--bg);
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}
body.landing-active .launkr-landing .btn-primary { cursor: none; }
.launkr-landing .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.launkr-landing .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--orange-glow);
}
.launkr-landing .btn-primary:hover::after { opacity: 1; }

.launkr-landing .btn-ghost {
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  cursor: pointer;
  text-transform: uppercase;
}
body.landing-active .launkr-landing .btn-ghost { cursor: none; }
.launkr-landing .btn-ghost:hover { color: var(--ink); border-color: var(--ink-2); }

/* Hero stats */
.launkr-landing .hero-stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: launkr-fadeUp 0.9s ease 0.8s forwards;
}
.launkr-landing .stat-num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  white-space: nowrap;
}
.launkr-landing .stat-num span.unit { color: var(--orange); }
.launkr-landing .stat-label {
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Section wrapper */
.launkr-landing section { position: relative; z-index: 10; }
.launkr-landing .section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.launkr-landing .section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 80px 0;
}
.launkr-landing .section-title em {
  font-style: normal;
  background: linear-gradient(90deg, #FF5C00 0%, #F0EBE1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* HOW IT WORKS */
.launkr-landing .how {
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.launkr-landing .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}
.launkr-landing .step {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.launkr-landing .step:hover { background: var(--surface-2); }
.launkr-landing .step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.launkr-landing .step:hover::before { opacity: 1; }
.launkr-landing .step-num {
  font-family: var(--font-mono);
  font-size: 72px;
  font-weight: 700;
  color: rgba(240, 235, 225, 0.06);
  line-height: 1;
  margin-bottom: 32px;
  display: block;
}
.launkr-landing .step-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-orange);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--orange);
}
.launkr-landing .step h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.launkr-landing .step p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}

/* FEATURES */
.launkr-landing .features {
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.launkr-landing .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  margin-top: 80px;
}
.launkr-landing .feature-card {
  background: var(--bg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.launkr-landing .feature-card:hover { background: var(--surface-2); }
.launkr-landing .feature-card.highlight {
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
}
.launkr-landing .feature-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  padding: 4px 12px;
  border-radius: 1px;
  display: inline-block;
  margin-bottom: 28px;
}
.launkr-landing .feature-card h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px 0;
  line-height: 1.1;
}
.launkr-landing .feature-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0;
}
.launkr-landing .feature-visual {
  margin-top: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 70%);
  opacity: 0.4;
}

/* USE CASES */
.launkr-landing .use-cases {
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.launkr-landing .use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.launkr-landing .use-card {
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.launkr-landing .use-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}
.launkr-landing .use-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--orange-dim) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.launkr-landing .use-card:hover::before { opacity: 1; }
.launkr-landing .use-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--orange-dim);
}
.launkr-landing .use-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}
.launkr-landing .use-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

/* CTA SECTION */
.launkr-landing .cta-section {
  padding: 160px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.launkr-landing .cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 92, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.launkr-landing .cta-section h2 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 28px 0;
  position: relative;
  z-index: 1;
}
.launkr-landing .cta-section h2 em {
  font-style: normal;
  color: var(--orange);
}
.launkr-landing .cta-section p {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 48px 0;
  position: relative;
  z-index: 1;
}
.launkr-landing .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* FOOTER */
.launkr-landing .launkr-footer {
  position: relative;
  z-index: 10;
  padding: 60px 60px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}
.launkr-landing .launkr-footer p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  margin: 0;
}
.launkr-landing .footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.launkr-landing .footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.launkr-landing .footer-links a:hover { color: var(--orange); }

/* DIVIDER */
.launkr-landing .divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  position: relative;
  z-index: 10;
}

/* PROTECTED BADGE */
.launkr-landing .protected-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-orange);
  padding: 6px 16px;
  border-radius: 1px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 48px;
  width: fit-content;
  opacity: 0;
  animation: launkr-fadeUp 0.8s ease 0.05s forwards;
}
.launkr-landing .protected-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: launkr-pulse 2s ease infinite;
}

/* SCROLL REVEAL */
.launkr-landing .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.launkr-landing .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ANIMATIONS */
@keyframes launkr-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes launkr-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes launkr-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* Reduced motion — stop ticker, kill fade-ups, keep static state. */
@media (prefers-reduced-motion: reduce) {
  .launkr-landing .ticker-track { animation-play-state: paused; }
  .launkr-landing .hero-eyebrow,
  .launkr-landing .hero h1,
  .launkr-landing .hero-sub,
  .launkr-landing .hero-actions,
  .launkr-landing .hero-stats,
  .launkr-landing .protected-badge {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .launkr-landing .protected-badge::before { animation: none; }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .launkr-nav { padding: 20px 24px; }
  .launkr-nav ul { gap: 20px; }
  .launkr-landing .hero { padding: 120px 28px 80px; }
  .launkr-landing .how,
  .launkr-landing .features,
  .launkr-landing .use-cases { padding: 80px 28px; }
  .launkr-landing .cta-section { padding: 120px 28px; }
  .launkr-landing .launkr-footer { padding: 40px 28px 28px; }
  .launkr-landing .use-grid { grid-template-columns: repeat(2, 1fr); }
  .launkr-landing .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .launkr-nav ul li:not(:last-child) { display: none; }
  .launkr-landing .steps { grid-template-columns: 1fr; }
  .launkr-landing .use-grid { grid-template-columns: 1fr; }
  .launkr-landing .hero-stats { gap: 32px; }
  .launkr-landing .stat-num { font-size: 28px; }
}
