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

:root {
  --bg: #0B0F14;
  --bg-deep: #07111F;
  --panel: #101923;
  --panel-strong: #0f1720;
  --text: #F4F7F8;
  --muted: #91A0AF;
  --gold: #D6A84F;
  --gold-strong: #e0b660;
  --line: #263746;
  --teal: #00D1B2;
  --shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
  --radius: 18px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

#home,
#products,
#proof-standard {
  scroll-margin-top: 5.5rem;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 70% 10%, rgba(214, 168, 79, 0.12), transparent 32rem),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.07), transparent 28rem),
    radial-gradient(circle at 90% 70%, rgba(0, 209, 178, 0.08), transparent 24rem),
    linear-gradient(180deg, #050607 0%, #090b0f 45%, #030405 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(38, 55, 70, 0.72);
  background: rgba(7, 11, 16, 0.74);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(188px, 22vw, 280px);
  height: auto;
  display: block;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.top-nav a {
  text-decoration: none;
  color: #d6dde3;
  font-size: 0.9rem;
}

.top-nav a:hover {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

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

.button:focus-visible,
.top-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.button-primary {
  color: #1a1206;
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
}

.button-primary:hover {
  border-color: #f2ca7b;
  background: linear-gradient(180deg, #f2ca7b, #dbad59);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(145, 160, 175, 0.5);
  background: rgba(16, 25, 35, 0.64);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.button-muted {
  color: var(--muted);
  border-color: rgba(145, 160, 175, 0.35);
  background: rgba(16, 25, 35, 0.42);
  cursor: default;
}

.nav-cta {
  white-space: nowrap;
}

main {
  padding: 2.5rem 0 3.8rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 1.35rem;
}

.hero > *,
.proof-pillars > *,
.products-grid > *,
.proof-standard > * {
  min-width: 0;
}

.hero-copy,
.hero-visual,
.pillar-card,
.product-card,
.more-tools,
.proof-standard {
  border: 1px solid rgba(38, 55, 70, 0.85);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 25, 35, 0.95), rgba(10, 16, 24, 0.88));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
}

h1 {
  font-family: "Space Grotesk", Inter, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.7vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 0.8rem;
}

h1 span {
  color: #f5f0e3;
}

.hero-lede {
  color: #c8d2da;
  max-width: 58ch;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-visual {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(214, 168, 79, 0.28), rgba(214, 168, 79, 0.06) 35%, transparent 70%),
    linear-gradient(160deg, rgba(12, 17, 24, 0.98), rgba(7, 11, 16, 0.92));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 20px;
  border: 1px solid rgba(214, 168, 79, 0.34);
  background: radial-gradient(circle at 50% 40%, rgba(214, 168, 79, 0.2), rgba(16, 25, 35, 0.3) 70%);
}

.hero-mark {
  width: min(248px, 66%);
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 22px rgba(214, 168, 79, 0.22));
}

.proof-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.pillar-card {
  padding: 1rem;
}

.pillar-index {
  color: var(--gold);
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.45rem;
}

.pillar-card h2 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.pillar-card p {
  color: #c3ced7;
  font-size: 0.92rem;
  overflow-wrap: normal;
}

.products {
  margin-bottom: 2.3rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.34rem, 2.1vw, 1.7rem);
  margin-bottom: 0.3rem;
}

.section-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.product-card {
  padding: 1rem;
  display: grid;
  gap: 0.72rem;
  align-content: start;
  min-width: 0;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.5rem;
}

.product-card h3 {
  font-size: 1.08rem;
}

.product-card p {
  color: #c6d0d8;
  font-size: 0.9rem;
  overflow-wrap: normal;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.2rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-status::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.8;
}

.chip {
  border-radius: 999px;
  border: 1px solid currentColor;
  padding: 0.24rem 0.52rem;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.chip.available {
  color: var(--teal);
}

.chip.in-proof {
  color: var(--gold);
}

.chip.in-development {
  color: var(--muted);
}

.product-live {
  border-color: rgba(0, 209, 178, 0.36);
}

.product-proof {
  border-color: rgba(214, 168, 79, 0.36);
}

.more-tools {
  padding: 0.9rem 1rem;
}

.more-tools-title {
  color: var(--muted);
  font-size: 0.87rem;
  margin-bottom: 0.45rem;
}

.more-tools ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.more-tools li {
  border: 1px solid rgba(145, 160, 175, 0.27);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.82rem;
  color: #d0d9df;
}

.more-tools li span {
  color: var(--muted);
  margin-left: 0.38rem;
}

.proof-standard {
  padding: clamp(1rem, 2vw, 1.7rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  border-color: rgba(214, 168, 79, 0.45);
}

.proof-seal-wrap {
  min-width: 120px;
  display: grid;
  place-items: center;
}

.seal-image {
  width: min(108px, 100%);
  height: auto;
}

.proof-copy h2 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: 0.65rem;
}

.proof-copy p {
  color: #ccd5dd;
  margin-bottom: 0.58rem;
}

.proof-actions {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Founders Circle */
.founders-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 1.6rem;
}

.founders-hero > * {
  min-width: 0;
}

.founders-hero .hero-copy {
  border: 1px solid rgba(38, 55, 70, 0.85);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 25, 35, 0.95), rgba(10, 16, 24, 0.88));
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2vw, 2rem);
}

.founders-note {
  margin-top: 0.95rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.founders-receipt {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border: 1px solid rgba(214, 168, 79, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 168, 79, 0.12), transparent 60%),
    linear-gradient(160deg, rgba(16, 25, 35, 0.96), rgba(10, 16, 24, 0.9));
  box-shadow: var(--shadow);
}

.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.receipt-seal {
  width: 64px;
  height: auto;
}

.receipt-fields {
  display: grid;
  gap: 0.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.receipt-fields > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.receipt-fields dt {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.receipt-fields dd {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
}

.receipt-status {
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-align: center;
  padding: 0.55rem 0.5rem;
  border: 1px dashed rgba(214, 168, 79, 0.5);
  border-radius: 12px;
}

.founders-cap {
  margin-bottom: 1.6rem;
}

.cap-line {
  border: 1px solid rgba(0, 209, 178, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 25, 35, 0.9), rgba(10, 16, 24, 0.82));
  padding: 0.85rem 1.1rem;
  color: #d6e0e6;
  font-size: 0.95rem;
  text-align: center;
}

.founders-ledger {
  margin-bottom: 2.3rem;
}

.ledger-wrap {
  border: 1px solid rgba(38, 55, 70, 0.85);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 25, 35, 0.95), rgba(10, 16, 24, 0.88));
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.ledger-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.ledger-table th,
.ledger-table td {
  padding: 0.78rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(38, 55, 70, 0.6);
  font-size: 0.9rem;
  white-space: nowrap;
}

.ledger-table thead th {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
}

.ledger-table tbody tr:last-child th,
.ledger-table tbody tr:last-child td {
  border-bottom: none;
}

.ledger-table tbody th[scope="row"] {
  font-family: "JetBrains Mono", Consolas, monospace;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ledger-holder {
  color: var(--muted);
}

.slot-state {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.slot-state::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
}

.slot-state.open {
  color: var(--teal);
}

.button-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
}

.ledger-footer {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(38, 55, 70, 0.72);
  background: rgba(5, 8, 12, 0.85);
  padding: 2rem 0 1.3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: min(240px, 100%);
  height: auto;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.site-footer li,
.site-footer a {
  color: #d3dbe2;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(38, 55, 70, 0.6);
  padding-top: 0.9rem;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .container {
    padding-inline: 0.8rem;
  }

  .nav-row {
    min-height: 64px;
    padding: 0.5rem 0;
    flex-wrap: wrap;
  }

  .top-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.55rem 0.9rem;
    padding-bottom: 0.25rem;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero,
  .founders-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 300px;
  }

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

  .proof-standard {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .proof-seal-wrap {
    min-width: auto;
    justify-content: start;
  }
}

@media (max-width: 760px) {
  #home,
  #products,
  #proof-standard {
    scroll-margin-top: 6.5rem;
  }

  .container {
    padding-inline: 1rem;
  }

  .brand-logo {
    width: min(178px, 100%);
  }

  .nav-row {
    gap: 0.45rem;
    align-items: flex-start;
  }

  .top-nav {
    order: 3;
    width: 100%;
    gap: 0.5rem 0.85rem;
    padding-top: 0.2rem;
  }

  .nav-cta {
    order: 4;
    width: auto;
    margin-left: 0;
    margin-top: 0.2rem;
    justify-content: center;
    padding: 0.48rem 0.86rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-copy,
  .hero-visual,
  .pillar-card,
  .product-card,
  .proof-standard,
  .more-tools,
  .founders-hero .hero-copy,
  .founders-receipt {
    padding: 0.95rem 1.05rem;
    max-width: 100%;
  }

  .founders-hero .hero-actions {
    flex-direction: column;
    gap: 0.55rem;
  }

  .founders-hero .hero-actions .button {
    width: 100%;
  }

  .hero-lede,
  .pillar-card p,
  .product-card p,
  .proof-copy p,
  .more-tools-title,
  .more-tools li,
  .chip,
  .button {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 240px;
  }

  .hero-mark {
    width: min(182px, 56%);
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .product-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .chip {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .product-card .button {
    width: 100%;
  }

  .product-card p {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-lede,
  .pillar-card p,
  .proof-copy p,
  .more-tools li {
    overflow-wrap: break-word;
  }

  .top-nav a {
    font-size: 0.82rem;
  }

  .nav-cta {
    font-size: 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

@media (max-width: 430px) {
  .container {
    padding-inline: 1rem;
  }

  .hero-copy,
  .hero-visual,
  .pillar-card,
  .product-card,
  .proof-standard,
  .more-tools {
    padding: 0.92rem 1rem;
  }

  .top-nav {
    gap: 0.42rem 0.72rem;
  }

  .top-nav a {
    font-size: 0.81rem;
  }

  .nav-cta {
    padding: 0.44rem 0.78rem;
    font-size: 0.78rem;
  }

  .hero-mark {
    width: min(168px, 52%);
  }

  .product-top h3 {
    width: 100%;
  }
}

/* ───────────────────────────────────────────────────────────────────────────
   LIGHTS OUT PC LANDING PAGE
   ─────────────────────────────────────────────────────────────────────────── */
.lo-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 1.6rem;
}

.lo-hero > * {
  min-width: 0;
}

.lo-hero-copy {
  border: 1px solid rgba(38, 55, 70, 0.85);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 25, 35, 0.95), rgba(10, 16, 24, 0.88));
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2vw, 2rem);
}

.lo-tagline {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lo-secondary {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.lo-hero-visual {
  border: 1px solid rgba(107, 211, 255, 0.25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(107, 211, 255, 0.12), transparent 60%),
    linear-gradient(160deg, rgba(12, 17, 24, 0.98), rgba(7, 11, 16, 0.92));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 1rem;
}

.lo-hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Trust Strip */
.lo-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(38, 55, 70, 0.6);
  border-radius: var(--radius);
  background: rgba(16, 25, 35, 0.6);
}

.lo-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #c8d2da;
  font-weight: 500;
}

.lo-trust-icon {
  font-size: 1rem;
}

/* Features */
.lo-features {
  margin-bottom: 2.5rem;
}

.lo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.lo-feature-card {
  border: 1px solid rgba(38, 55, 70, 0.85);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 25, 35, 0.95), rgba(10, 16, 24, 0.88));
  box-shadow: var(--shadow);
  padding: 1.1rem 1rem;
}

.lo-feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lo-feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.lo-feature-card p {
  color: #c6d0d8;
  font-size: 0.88rem;
}

/* Proof Section */
.lo-proof {
  margin-bottom: 2.5rem;
}

.lo-proof-card {
  border: 1px solid rgba(214, 168, 79, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 168, 79, 0.1), transparent 60%),
    linear-gradient(160deg, rgba(16, 25, 35, 0.96), rgba(10, 16, 24, 0.9));
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2vw, 1.6rem);
}

.lo-proof-fields {
  display: grid;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  margin: 0.8rem 0;
}

.lo-proof-fields > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.lo-proof-fields dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lo-proof-fields dd {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
}

.lo-proof-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.4rem;
}

/* CTA */
.lo-cta {
  margin-bottom: 2rem;
}

.lo-cta-card {
  border: 1px solid rgba(38, 55, 70, 0.85);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 25, 35, 0.95), rgba(10, 16, 24, 0.88));
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
}

.lo-cta-wordmark {
  width: min(280px, 80%);
  height: auto;
  margin-bottom: 0.8rem;
}

.lo-cta-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Lights Out responsive */
@media (max-width: 900px) {
  .lo-hero {
    grid-template-columns: 1fr;
  }

  .lo-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lo-features-grid {
    grid-template-columns: 1fr;
  }

  .lo-hero-copy {
    padding: 0.95rem 1.05rem;
  }

  .lo-trust {
    gap: 0.6rem 1rem;
    padding: 0.8rem 1rem;
  }
}
