:root {
  color-scheme: light;
  --white: #ffffff;
  --zinc-950: #09090b;
  --zinc-900: #0f172a;
  --zinc-700: #334155;
  --zinc-600: #475569;
  --zinc-500: #64748b;
  --zinc-400: #94a3b8;
  --zinc-300: #cbd5e1;
  --zinc-200: #e2e8f0;
  --zinc-100: #f1f5f9;
  --zinc-50: #f8fafc;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-300: #5eead4;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;
  --green-600: #16a34a;
  --red-600: #dc2626;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px -20px rgba(15, 23, 42, 0.2), 0 8px 20px -8px rgba(15, 23, 42, 0.08);
  --shadow-cta: 0 8px 24px -8px rgba(15, 118, 110, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--zinc-900);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
button {
  letter-spacing: 0;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 60;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--white);
  color: var(--zinc-900);
  padding: 8px 12px;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.brand span span {
  color: var(--teal-700);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--zinc-600);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--zinc-900);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, background 150ms ease-out, border-color 150ms ease-out;
  overflow-wrap: anywhere;
  white-space: normal;
}

.button-primary {
  border: 1px solid var(--teal-700);
  background: var(--teal-700);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.button-primary:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--zinc-300);
  background: var(--white);
  color: var(--zinc-900);
}

.button-secondary:hover {
  border-color: var(--zinc-400);
  background: var(--zinc-50);
  transform: translateY(-1px);
}

.button-disabled {
  cursor: default;
}

.button-disabled:hover {
  background: var(--teal-700);
  transform: none;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--zinc-100);
  background:
    linear-gradient(180deg, rgba(240, 253, 250, 0.82) 0%, rgba(255, 255, 255, 0) 44%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
  padding: 84px 0 96px;
}

.hero-grid > *,
.section-grid > *,
.feature-block > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--teal-100);
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-700);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 670px;
  margin-top: 24px;
  font-size: 62px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 590px;
  margin-top: 24px;
  color: var(--zinc-600);
  font-size: 20px;
  line-height: 1.55;
}

.endorsement {
  margin-top: 18px;
  color: var(--zinc-500);
  font-size: 14px;
}

.endorsement strong {
  color: #2563eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.free-note {
  margin-top: 14px;
  color: var(--zinc-600);
  font-size: 15px;
}

.free-note strong {
  color: var(--teal-700);
  font-weight: 900;
}

.trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--zinc-500);
  font-size: 14px;
  font-weight: 600;
}

.trust-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-bullets span::before,
.feature-list li::before,
.check-list li::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 6px;
  background: var(--teal-50) url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9.5 7.5 12 13 6' fill='none' stroke='%230f766e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  content: "";
  box-shadow: inset 0 0 0 1px var(--teal-100);
}

.trust-bullets span,
.feature-list li,
.check-list li {
  position: relative;
}

.product-visual {
  position: relative;
  width: min(100%, 430px);
  max-width: 430px;
  margin-inline: auto;
}

.product-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-band {
  border-bottom: 1px solid var(--zinc-200);
  background: var(--zinc-50);
}

.trust-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 0;
  padding: 22px 0;
  color: var(--zinc-500);
  font-size: 14px;
  list-style: none;
}

.trust-band li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-band li::before {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--teal-500);
  content: "";
  transform: rotate(45deg);
}

.section {
  padding: 92px 0;
}

.section-muted {
  border-block: 1px solid var(--zinc-100);
  background: var(--zinc-50);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.section-kicker {
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2 {
  margin-top: 12px;
  color: var(--zinc-900);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.section-copy {
  margin-top: 22px;
  color: var(--zinc-600);
  font-size: 18px;
  line-height: 1.7;
}

.section-copy p + p {
  margin-top: 16px;
}

.pain-panel {
  border: 1px solid var(--zinc-200);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.pain-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--zinc-100);
  padding: 14px 0;
  color: var(--zinc-600);
  font-weight: 650;
}

.pain-row:first-child {
  padding-top: 0;
}

.pain-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pain-row span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.step {
  position: relative;
}

.step-number {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2px solid var(--teal-700);
  border-radius: 14px;
  background: var(--white);
  color: var(--teal-700);
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--shadow-cta);
}

.step h3 {
  margin-top: 20px;
  font-size: 21px;
  line-height: 1.25;
}

.step p {
  margin-top: 8px;
  color: var(--zinc-600);
  font-size: 15px;
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.feature-block + .feature-block {
  margin-top: 92px;
}

.feature-block:nth-child(2n) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
}

.feature-block:nth-child(2n) .feature-visual {
  order: 2;
}

.feature-visual {
  border: 1px solid var(--zinc-200);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.visual-label {
  margin: 0 0 12px;
  color: var(--zinc-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mini-console {
  display: grid;
  gap: 12px;
}

.console-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--zinc-200);
  border-radius: 8px;
  background: var(--zinc-50);
  padding: 14px;
  color: var(--zinc-600);
  font-size: 14px;
}

.console-row strong {
  color: var(--zinc-900);
}

.file-stack {
  display: grid;
  gap: 10px;
}

.file-row {
  border: 1px solid var(--zinc-200);
  border-radius: 8px;
  background: var(--zinc-50);
  padding: 14px;
  color: var(--zinc-700);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.alert-preview {
  border: 1px solid #fed7aa;
  border-left: 4px solid var(--red-600);
  border-radius: 8px;
  background: #fff7ed;
  padding: 18px;
}

.alert-preview strong {
  color: var(--zinc-900);
}

.alert-preview p {
  margin-top: 6px;
  color: var(--zinc-600);
}

.feature-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--zinc-600);
  list-style: none;
}

.feature-list li,
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checklist-wrap {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.check-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  text-align: left;
}

.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq h2,
.faq .section-kicker {
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 44px;
}

details {
  border: 1px solid var(--zinc-200);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--zinc-900);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  border-top: 1px solid var(--zinc-100);
  padding: 16px 22px 22px;
  color: var(--zinc-600);
}

details[open] summary {
  color: var(--teal-700);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--zinc-950);
  color: var(--white);
  text-align: center;
}

.final-cta .container {
  padding: 92px 0;
}

.final-cta h2 {
  font-size: 48px;
  line-height: 1.08;
}

.final-cta p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--zinc-300);
  font-size: 18px;
}

.final-cta .button {
  margin-top: 34px;
}

.site-footer {
  background: var(--zinc-950);
  color: var(--zinc-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(120px, 0.5fr));
  gap: 40px;
  border-top: 1px solid rgba(203, 213, 225, 0.15);
  padding: 54px 0;
}

.site-footer .brand {
  color: var(--white);
}

.footer-grid p {
  max-width: 360px;
  margin-top: 14px;
  color: var(--zinc-400);
  font-size: 14px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 14px;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  color: var(--zinc-400);
  font-size: 14px;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(203, 213, 225, 0.15);
  padding: 22px 0;
  color: var(--zinc-500);
  font-size: 13px;
}

.about-page {
  border-bottom: 1px solid var(--zinc-100);
  background:
    linear-gradient(180deg, rgba(240, 253, 250, 0.78) 0%, rgba(255, 255, 255, 0) 28%),
    var(--white);
  padding: 92px 0;
}

.about-content {
  max-width: 820px;
}

.about-content h1 {
  margin-top: 12px;
  color: var(--zinc-900);
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.about-content h2 {
  margin-top: 52px;
  color: var(--zinc-900);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
}

.about-content h3 {
  margin-top: 38px;
  color: var(--zinc-900);
  font-size: 18px;
  font-weight: 800;
}

.about-prose {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  color: var(--zinc-600);
  font-size: 18px;
  line-height: 1.75;
}

.about-prose strong {
  color: var(--zinc-900);
}

.about-prose a,
.about-contact a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-lead {
  margin-top: 12px;
  color: var(--zinc-600);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.ecosystem-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  border: 1px solid var(--zinc-200);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out, transform 150ms ease-out;
}

a.ecosystem-card:hover {
  border-color: var(--zinc-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.ecosystem-current {
  border: 2px solid var(--teal-500);
  background: rgba(240, 253, 250, 0.72);
}

.ecosystem-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.ecosystem-icon img,
.ecosystem-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ecosystem-icon-discord {
  background: #5865f2;
}

.ecosystem-icon-youtube {
  background: #dc2626;
}

.ecosystem-icon-discord svg,
.ecosystem-icon-youtube svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.ecosystem-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: var(--zinc-900);
  font-weight: 800;
  line-height: 1.25;
}

.ecosystem-name span {
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ecosystem-card p {
  margin-top: 6px;
  color: var(--zinc-600);
  font-size: 14px;
  line-height: 1.5;
}

.about-contact {
  margin-top: 18px;
  font-size: 16px;
}

.about-legal {
  margin-top: 56px;
  border-top: 1px solid var(--zinc-200);
  padding-top: 28px;
  color: var(--zinc-500);
  font-size: 14px;
  line-height: 1.7;
}

.legal-page {
  border-bottom: 1px solid var(--zinc-100);
  background:
    linear-gradient(180deg, rgba(240, 253, 250, 0.72) 0%, rgba(255, 255, 255, 0) 24%),
    var(--white);
  padding: 86px 0 96px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin-top: 12px;
  color: var(--zinc-900);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.legal-updated {
  margin-top: 12px;
  color: var(--zinc-500);
  font-size: 14px;
}

.legal-prose {
  display: grid;
  gap: 34px;
  margin-top: 44px;
  color: var(--zinc-600);
  font-size: 16px;
  line-height: 1.75;
}

.legal-prose h2 {
  margin-bottom: 10px;
  color: var(--zinc-900);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.legal-prose p + p {
  margin-top: 14px;
}

.legal-prose strong {
  color: var(--zinc-900);
}

.legal-prose a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding-left: 22px;
}

@media (max-width: 880px) {
  .nav {
    min-height: 66px;
  }

  .nav-links a {
    display: none;
  }

  .hero-grid,
  .section-grid,
  .feature-block,
  .feature-block:nth-child(2n) {
    grid-template-columns: 1fr;
  }

  .feature-block:nth-child(2n) .feature-visual {
    order: 0;
  }

  .hero-grid {
    padding: 64px 0 74px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .section h2,
  .final-cta h2,
  .about-content h1 {
    font-size: 38px;
  }

  .legal-content h1 {
    font-size: 38px;
  }

  .about-page {
    padding: 72px 0;
  }

  .legal-page {
    padding: 72px 0 82px;
  }

  .steps,
  .check-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
    max-width: 1120px;
  }

  .nav .button {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .section h2,
  .final-cta h2,
  .about-content h2 {
    font-size: 31px;
  }

  .about-content h1 {
    font-size: 35px;
  }

  .legal-content h1 {
    font-size: 35px;
  }

  .about-prose {
    font-size: 16px;
  }

  .legal-prose {
    font-size: 15px;
  }

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

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .button {
    display: block;
    width: 100%;
    min-height: 54px;
    line-height: 1.25;
    padding-block: 14px;
  }

  .trust-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
