/* LanderLab design tokens — NameDataHub sales */
:root {
  --ll-blue: #2347ff;
  --ll-blue-hover: #1b3ae0;
  --ll-grad-a: #8cb2ff;
  --ll-grad-b: #03ffc0;
  --ink: #ffffff;
  --body: #c7c7c7;
  --slate: #546582;
  --body-soft: rgba(255, 255, 255, 0.6);
  --body-faint: rgba(255, 255, 255, 0.8);
  --canvas: #000000;
  --canvas-soft: #010101;
  --surface-prompt: #0f172a;
  --surface-card: #0a0a0a;
  --surface-elevated: #141414;
  --surface-glass: rgba(255, 255, 255, 0.063);
  --hairline: rgba(255, 255, 255, 0.2);
  --hairline-strong: rgba(255, 255, 255, 0.243);
  --success: #22c55e;
  --warning: #f4b400;
  --radius-cta: 8px;
  --radius-card: 16px;
  --radius-pill: 100px;
  --radius-full: 999px;
  --max: 1305px;
  --font-display: Poppins, sans-serif;
  --font-ui: Inter, sans-serif;
  --nav-h: 70px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--body);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.ll-gradient-text {
  background-image: linear-gradient(90deg, var(--ll-grad-a), var(--ll-grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Nav */

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 14px 26px;
  background: var(--ll-blue);
  color: var(--ink);
  border: 1px solid var(--ll-blue);
  border-radius: var(--radius-cta);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--ll-blue-hover);
  border-color: var(--ll-blue-hover);
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 14px 26px;
  background: var(--surface-glass);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  font-size: 15px;
  transition: background 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 80px;
  background: var(--canvas-soft);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(35, 71, 255, 0.35), transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 40%, rgba(140, 178, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 35% 25% at 80% 30%, rgba(3, 255, 192, 0.08), transparent 55%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 70% 45%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 85% 70%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 15% 85%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 92% 25%, rgba(255, 255, 255, 0.5), transparent);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 8px 18px;
  background: #fff;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0;
}

.hero-sub {
  margin: 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--body);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 10px 20px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  color: var(--body-faint);
  font-size: 16px;
  background: transparent;
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.chip:hover,
.chip.is-active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.hero-helper {
  margin: 0;
  font-size: 14px;
  font-style: italic;
  color: var(--body-soft);
}

/* Sections */
.section {
  padding: 100px 0;
  background: var(--canvas-soft);
}

.section.alt {
  background: var(--canvas);
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-head h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  font-size: 16px;
  color: var(--body);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 24px 16px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: var(--radius-full);
  background: var(--surface-prompt);
  border: 1px solid var(--hairline-strong);
  color: var(--ll-grad-b);
  font-weight: 700;
  font-size: 14px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.step-card p {
  margin: 0;
  font-size: 14px;
  color: var(--body);
}

/* Proof */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 25px;
}

.proof-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.proof-card p {
  margin: 0;
  color: var(--body);
}

/* Phases */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.phase-card {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 20px;
}

.phase-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ll-grad-a);
}

.phase-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.phase-card p {
  margin: 0;
  font-size: 14px;
  color: var(--body);
}

/* Pricing */
.pricing-grid {
  display: flex !important;
  justify-content: center !important;
  align-items: start;
  width: 100%;
  gap: 24px;
}

.price-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 1 520px;
  width: min(100%, 520px);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.price-card.featured {
  border-color: rgba(35, 71, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(35, 71, 255, 0.25), 0 0 40px rgba(35, 71, 255, 0.12);
}

.ndh-signup-wrap {
  width: 100%;
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
}

.ndh-signup-wrap #ndh-signup {
  display: flex;
  justify-content: center;
  width: min(100%, 520px);
}

.ndh-signup-wrap .ndh-box {
  width: 100% !important;
  max-width: 520px !important;
  --ndh-max: 520px;
  --ndh-bg: #0a0a0a;
  --ndh-fg: #ffffff;
  --ndh-muted: #c7c7c7;
  --ndh-label: #ffffff;
  --ndh-border: rgba(255, 255, 255, 0.2);
  --ndh-input-bg: #141414;
  --ndh-input-border: rgba(255, 255, 255, 0.2);
  --ndh-btn-bg: #2347ff;
  --ndh-btn-fg: #ffffff;
  --ndh-btn-hover: #1b3ae0;
  --ndh-foot: rgba(255, 255, 255, 0.6);
  --ndh-foot-link: #ffffff;
  --ndh-error: #fca5a5;
  --ndh-ok: #22c55e;
  --ndh-focus: rgba(35, 71, 255, 0.25);
  --ndh-pad: 32px 28px;
  --ndh-radius: 16px;
  font-family: Inter, sans-serif !important;
  background: #0a0a0a !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  color: #ffffff !important;
  padding: 32px 28px !important;
}

.ndh-signup-wrap .ndh-sub {
  color: #c7c7c7 !important;
  font-family: Inter, sans-serif;
}

.ndh-signup-wrap .ndh-label {
  display: none !important;
}

.ndh-signup-wrap .ndh-input {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-family: Inter, sans-serif !important;
  min-height: 47px;
}

.ndh-signup-wrap .ndh-input:focus {
  border-color: #2347ff !important;
  box-shadow: 0 0 0 3px rgba(35, 71, 255, 0.25) !important;
}

.ndh-signup-wrap .ndh-btn {
  background: #2347ff !important;
  color: #ffffff !important;
  border: 1px solid #2347ff !important;
  border-radius: 8px !important;
  font-family: Inter, sans-serif !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  min-height: 47px;
  margin-top: 16px !important;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ndh-signup-wrap .ndh-btn:hover:not(:disabled) {
  background: #1b3ae0 !important;
  border-color: #1b3ae0 !important;
}

.ndh-signup-wrap .ndh-foot {
  color: rgba(255, 255, 255, 0.6) !important;
}

.ndh-signup-wrap .ndh-foot a {
  color: #ffffff !important;
}

.price-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(35, 71, 255, 0.2);
  border: 1px solid rgba(35, 71, 255, 0.4);
  color: var(--ink);
  font-size: 13px;
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price-amount .now {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.price-amount .was {
  font-size: 18px;
  color: var(--slate);
  text-decoration: line-through;
}

.price-amount .note {
  width: 100%;
  font-size: 14px;
  color: var(--warning);
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: var(--body);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  box-shadow: inset 0 0 0 1px var(--success);
}

.price-card li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--success);
  border-bottom: 1.5px solid var(--success);
  transform: rotate(-45deg);
}

.center-note {
  text-align: center;
  margin-top: 32px;
  color: var(--body-soft);
  font-size: 14px;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-q span.icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  color: var(--body-faint);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-q span.icon {
  transform: rotate(45deg);
  color: var(--ink);
}

.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--body);
  font-size: 15px;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* Final CTA */
.final-cta {
  padding: 60px 0 120px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(35, 71, 255, 0.25), transparent 65%),
    var(--canvas-soft);
}

.final-cta h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  color: var(--ink);
}

.final-cta p {
  margin: 0 0 28px;
  color: var(--body);
  max-width: 560px;
  margin-inline: auto;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .steps-grid,
  .phases-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 56px;
  }
}


.video-shell {
  width: min(100%, 900px);
  margin-top: 16px;
  padding: 16px;
  background: var(--surface-prompt);
  border: 2px solid var(--hairline-strong);
  border-radius: var(--radius-card);
}

.video-shell .inner-vid,
.video-shell .local-video {
  width: 100% !important;
  max-width: 100%;
}

.video-shell .inner-vid {
  min-height: 200px;
}

.video-shell .local-video {
  display: block;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #000;
  border-radius: 8px;
}

/* dist: brand in hero (no menu) */
.brand-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ll-accent, #3d8bfd), #1a5fd0);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.guarantee-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--slate);
}

.hero {
  padding-top: 72px;
}

.final-cta .guarantee-note {
  color: rgba(255,255,255,0.72);
}
