:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --muted: #555555;
  --light: #888888;
  --line: #d4d4d4;
  --line-dark: #0a0a0a;
  --card: #ffffff;
  --card-hover: #fafafa;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Background orbs ── */

.bg-orb {
  display: none;
}

/* ── Container ── */

.container {
  width: min(1120px, 90vw);
  margin-inline: auto;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ── Brand ── */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0;
  background: var(--ink);
}

.brand-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1.4rem;
  border-radius: 0;
  border: 2px solid var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn:active {
  transform: translate(0, 0);
  box-shadow: none !important;
}

.btn-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-outline {
  color: var(--ink);
  background: var(--bg);
  box-shadow: 4px 4px 0 var(--line);
}

.btn-outline:hover {
  background: var(--card-hover);
  box-shadow: 6px 6px 0 var(--line);
}

/* ── Hero ── */

.hero {
  padding: 6rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1 {
  margin: 0.7rem 0 1rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 56ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ── Hero panels ── */

.hero-panel {
  display: grid;
  gap: 1rem;
}

.status-card {
  border-radius: 0;
  border: 2px solid var(--ink);
  background: var(--card);
  padding: 1.2rem 1.3rem;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.status-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.status-label {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light);
  font-weight: 700;
}

.status-text {
  margin: 0.5rem 0 0.8rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.dot-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.15), 0 0 10px rgba(10, 10, 10, 0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.15), 0 0 10px rgba(10, 10, 10, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(10, 10, 10, 0.08), 0 0 16px rgba(10, 10, 10, 0.35); }
}

.mini-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.mini-list strong {
  color: var(--ink);
}

/* ── Compatibility ── */

.compatibility {
  padding: 1rem 0 2.5rem;
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.compat-item {
  border-radius: 0;
  border: 2px solid var(--ink);
  background: var(--card);
  padding: 1.2rem 1.3rem;
  box-shadow: 5px 5px 0 var(--line);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.compat-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--line);
}

.compat-title {
  margin: 0 0 0.4rem;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.compat-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ── Features ── */

.features {
  padding: 2.5rem 0 2rem;
}

h2 {
  margin: 0.5rem 0 1.4rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.feature-card {
  border-radius: 0;
  border: 2px solid var(--ink);
  background: var(--card);
  padding: 1.4rem;
  min-height: 140px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.feature-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

/* ── Truth section ── */

.truth-section {
  padding: 2rem 0;
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.truth-card {
  border-radius: 0;
  border: 2px solid var(--line);
  background: var(--card);
  padding: 1.3rem;
  box-shadow: 5px 5px 0 var(--line);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.truth-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--line);
}

.truth-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.truth-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

/* ── CTA ── */

.cta {
  padding: 1.5rem 0 4rem;
}

.cta-box {
  border-radius: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 8px 8px 0 var(--line);
}

.cta-box h2 {
  margin-top: 0;
  color: #fff;
}

.cta-box p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.4rem;
  font-size: 1rem;
  max-width: 50ch;
  margin-inline: auto;
}

.cta-box .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.3);
}

.cta-box .btn-primary:hover {
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.4);
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: var(--light);
  font-size: 0.88rem;
}

/* ── Reveal animations ── */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */

@media (max-width: 980px) {
  .hero-grid,
  .truth-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 4rem;
  }

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

@media (max-width: 560px) {
  .header-inner {
    min-height: 4rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

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

  .cta-box {
    padding: 2rem 1.3rem;
  }
}
