/* ==========================================================================
   lvd2.com — "Editorial Signal" design system
   A neobrutalist-editorial aesthetic: warm paper ground, ink-black structure,
   acid-lime + ember accents, high-contrast serif display paired with a
   monospace utility voice. Built mobile-first.
   ========================================================================== */

/* -------------------------------- Fonts -------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500&family=Space+Mono:wght@400;700&display=swap');

/* ------------------------------ CSS Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body { min-height: 100vh; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ------------------------------ Variables ------------------------------- */
:root {
  /* 60% — dominant paper ground */
  --paper: #F4EEDF;
  --paper-soft: #ECE4CF;
  /* 30% — structural ink */
  --ink: #15130F;
  --ink-soft: #2B2721;
  /* 10% — accents */
  --lime: #C8FF4D;
  --lime-deep: #9FDB1F;
  --ember: #FF5C39;
  --ember-deep: #E0431E;

  --line: rgba(21, 19, 15, 0.16);
  --line-strong: var(--ink);
  --white: #FFFDF7;

  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-body: 'Space Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  --radius-sm: 6px;
  --radius-md: 14px;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 var(--ink);
  --shadow-hard-lime: 6px 6px 0 var(--lime-deep);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
}

/* ------------------------------ Utilities -------------------------------- */
.wrap {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--ember);
  border-radius: 50%;
  display: inline-block;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-weight: 700; }
p { max-width: 62ch; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 160ms ease;
  font-size: 0.85rem;
}
.skip-link:focus { top: 12px; }

/* ------------------------- Domain For Sale Banner ------------------------ */
.domain-sale-banner {
  position: relative;
  z-index: 9999;
  width: 100%;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 50%, rgba(200, 255, 77, 0.16), transparent 38%),
    linear-gradient(100deg, #0F0E0B 0%, #1B1812 55%, #2A1B10 100%);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-family: var(--font-body);
}
.domain-sale-banner__content {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.domain-sale-banner__text {
  display: grid;
  gap: 4px;
  line-height: 1.35;
}
.domain-sale-banner__text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: -0.01em;
  color: var(--lime);
}
.domain-sale-banner__text span {
  color: rgba(244, 238, 223, 0.76);
  font-size: 0.86rem;
}
.domain-sale-banner__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--ember);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--lime);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.domain-sale-banner__button:hover,
.domain-sale-banner__button:focus-visible {
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--ember);
  transform: translate(-2px, -2px);
  outline: none;
}
@media (max-width: 680px) {
  .domain-sale-banner__content {
    min-height: auto;
    padding: 14px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .domain-sale-banner__button { width: 100%; }
}

/* --------------------------------- Header -------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__suffix {
  color: var(--ember);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-hard-sm);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding-block: 8px 20px;
  border-top: 2px solid var(--line);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  display: block;
  padding: 12px 6px;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.site-nav a.is-active { color: var(--ember); }
.site-nav .btn { margin-top: 10px; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    border-top: 0;
    padding: 0;
  }
  .site-nav a {
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    font-size: 0.98rem;
  }
  .site-nav a:hover, .site-nav a.is-active { border-bottom-color: var(--ember); }
  .site-nav .btn { margin-top: 0; }
}

/* --------------------------------- Buttons ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-hard-lime);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--lime-deep);
  outline: none;
}
.btn--lime { background: var(--lime); color: var(--ink); box-shadow: var(--shadow-hard); }
.btn--lime:hover, .btn--lime:focus-visible { box-shadow: 9px 9px 0 var(--ink); background: var(--lime-deep); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--ink); color: var(--paper); transform: none; box-shadow: none; }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.02rem; }

/* --------------------------------- Hero ----------------------------------- */
.hero {
  border-bottom: 3px solid var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: 40px;
  padding-block: 56px 48px;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding-block: 88px 72px;
  }
}
.hero__kicker { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--ember);
}
.hero__lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.hero__meta strong { color: var(--ink); }

.hero__visual {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 10px 10px 0 var(--ember);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
}

/* --------------------------------- Sections -------------------------------- */
section { padding-block: 64px; }
.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-top: 12px;
}
.section-head p { margin-top: 14px; color: var(--ink-soft); }

.section--dark {
  background: var(--ink);
  color: var(--paper);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark .section-head p { color: rgba(244, 238, 223, 0.68); }
.section--dark .eyebrow { color: var(--lime); }
.section--dark .eyebrow::before { background: var(--lime); }

/* Use-case grid */
.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-hard-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--lime);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { font-size: 0.92rem; color: var(--ink-soft); }

.section--dark .card { background: var(--ink-soft); border-color: var(--paper); color: var(--paper); box-shadow: 4px 4px 0 var(--lime); }
.section--dark .card p { color: rgba(244, 238, 223, 0.72); }
.section--dark .card:hover { box-shadow: 7px 7px 0 var(--lime); }

/* Stats */
.stat-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-hard);
}
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 26px 20px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}
.stat-row .stat:nth-child(2n) { border-right: 0; }
@media (min-width: 720px) {
  .stat-row .stat:nth-child(2n) { border-right: 2px solid var(--line); }
  .stat-row .stat:nth-child(4n) { border-right: 0; }
}
.stat:nth-last-child(-n+2) { border-bottom: 0; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ember);
}
.stat span { font-size: 0.8rem; color: var(--ink-soft); }

/* Steps / numbered list */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-hard-sm);
}
.step__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* Quote / pull */
.pull {
  border-left: 4px solid var(--ember);
  padding-left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin-block: 20px;
}

/* CTA banner (in-page) */
.cta-block {
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--lime);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow-hard);
}
@media (min-width: 800px) {
  .cta-block { grid-template-columns: 1.3fr auto; align-items: center; }
}
.cta-block h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); }
.cta-block p { color: var(--ink-soft); margin-top: 10px; }

/* FAQ */
.faq-item {
  border-bottom: 2px solid var(--line);
  padding-block: 18px;
}
.faq-item:first-child { border-top: 2px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--ember);
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--ink-soft); font-size: 0.94rem; }

/* --------------------------------- Forms ----------------------------------- */
.form-card {
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-hard);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: box-shadow 160ms ease, background 160ms ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--lime-deep);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: 20px; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 6px; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--lime);
  font-size: 0.9rem;
  font-weight: 700;
  display: none;
}
.form-status.is-visible { display: block; }

/* Contact info list */
.info-list { display: grid; gap: 18px; }
.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-hard-sm);
}
.info-list .icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-list .icon svg { width: 20px; height: 20px; }
.info-list h3 { font-size: 1rem; margin-bottom: 4px; }
.info-list p, .info-list a { font-size: 0.9rem; color: var(--ink-soft); }
.info-list a:hover { color: var(--ember); }

/* --------------------------------- Footer ----------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  border-top: 3px solid var(--ink);
  padding-block: 48px 28px;
}
.footer__grid {
  display: grid;
  gap: 36px;
  margin-bottom: 36px;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer__brand .brand { color: var(--paper); }
.footer__brand .brand__mark { background: var(--lime); }
.footer__brand .brand__mark svg path { fill: var(--ink); }
.footer__brand p { margin-top: 14px; color: rgba(244, 238, 223, 0.66); font-size: 0.9rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 14px;
}
.footer ul { display: grid; gap: 10px; }
.footer a { font-size: 0.92rem; color: rgba(244, 238, 223, 0.82); }
.footer a:hover { color: var(--lime); }
.footer__bottom {
  border-top: 1px solid rgba(244, 238, 223, 0.18);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(244, 238, 223, 0.56);
}

/* --------------------------------- 404 ----------------------------------- */
.error-page {
  min-height: calc(100vh - 260px);
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 72px;
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 22vw, 11rem);
  line-height: 0.9;
  color: var(--ink);
  -webkit-text-stroke: 2px var(--ink);
  position: relative;
  display: inline-block;
}
.error-page__code span { color: var(--ember); }
.error-page h1 { margin-top: 8px; font-size: clamp(1.6rem, 4vw, 2.2rem); }
.error-page p { margin: 16px auto 30px; color: var(--ink-soft); }
.error-page__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --------------------------------- Misc ----------------------------------- */
.divider {
  border: 0;
  border-top: 2px dashed var(--line);
  margin-block: 8px;
}
::selection { background: var(--lime); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
