:root {
  color-scheme: light;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  background: #72c9d3;
  color: #101010;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #72c9d3;
}

a {
  color: inherit;
}

.seo-page {
  min-height: 100vh;
  background: #72c9d3;
  color: #101010;
}

.seo-page-compact {
  display: grid;
  grid-template-rows: auto 1fr;
}

.seo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 40px 0;
}

.seo-brand,
.seo-nav,
.seo-actions,
.seo-links div {
  display: flex;
  align-items: center;
}

.seo-brand {
  gap: 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

.seo-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.seo-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.seo-nav a,
.seo-links a {
  text-decoration: none;
}

.seo-nav a {
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
}

.seo-hero {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(76px, 12vh, 128px) 0 64px;
  color: #ffffff;
  text-align: center;
}

.seo-eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-hero h1 {
  margin: 0;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: 0;
}

.seo-lede {
  width: min(760px, 100%);
  margin: 18px auto 0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.48;
}

.seo-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.seo-button {
  min-width: 220px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 24, 39, 0.88);
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  padding: 0 26px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 750;
}

.seo-button-secondary {
  background: #101010;
  color: #ffffff;
}

.seo-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.seo-note a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.seo-waitlist-form {
  width: min(286px, calc(100% - 48px));
  min-height: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: stretch;
  gap: 0;
  margin: 14px auto 0;
  overflow: hidden;
  border: 1px solid #111827;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.seo-waitlist-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 12px;
  background: transparent;
  color: #111827;
  font-size: 13px;
}

.seo-waitlist-form input::placeholder {
  color: #a8abb5;
}

.seo-waitlist-form button {
  border: 0;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.seo-waitlist-form button:disabled {
  background: #2c2c2c;
}

.seo-waitlist-form.has-error {
  border-color: #dc2626;
}

.seo-waitlist-form.has-error input {
  color: #dc2626;
}

.seo-waitlist-form.has-error input::placeholder {
  color: #dc2626;
  opacity: 1;
}

.seo-waitlist-form.is-success {
  border-color: #111111;
}

.seo-waitlist-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  padding: 0 12px;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 0;
  text-align: left;
}

.seo-waitlist-form.has-error .seo-waitlist-status,
.seo-waitlist-form.is-success .seo-waitlist-status {
  padding: 8px 12px 10px;
  line-height: 1.3;
}

.seo-waitlist-form.has-error .seo-waitlist-status {
  color: #dc2626;
}

.seo-split,
.seo-links,
.seo-faq,
.seo-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0;
}

.seo-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 1.04fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.seo-split h2,
.seo-links h2,
.seo-faq h2 {
  margin: 0;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: 0;
}

.seo-split p,
.seo-faq p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.seo-preview {
  margin: 0;
}

.seo-preview video,
.seo-preview img {
  aspect-ratio: 16 / 9;
  width: 100%;
  display: block;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 8px;
  background: #ffffff;
  object-fit: cover;
}

.seo-preview-image img {
  background: #f8fbfb;
  object-fit: contain;
}

.seo-use-case-reverse .seo-preview {
  order: -1;
}

.seo-preview figcaption {
  margin-top: 12px;
  color: rgba(16, 16, 16, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.seo-links div {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.seo-links a {
  border: 1px solid rgba(17, 24, 39, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 10px 16px;
  font-weight: 700;
}

.seo-faq {
  display: grid;
  gap: 24px;
}

.seo-faq article {
  border-top: 1px solid rgba(17, 24, 39, 0.26);
  padding-top: 24px;
}

.seo-faq article h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.seo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(17, 24, 39, 0.18);
}

.seo-footer-discord {
  min-width: 180px;
  gap: 8px;
}

.seo-discord-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.seo-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
  font-weight: 800;
}

.seo-footer nav a {
  color: #101010;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.seo-legal-page {
  min-height: 100vh;
  background: #ffffff;
  color: #101010;
  overflow-x: hidden;
}

.seo-legal-hero {
  background: #72c9d3;
  color: #ffffff;
}

.seo-legal-hero .seo-header {
  width: min(1120px, calc(100% - 48px));
  min-height: 92px;
  padding: 18px 0;
}

.seo-legal-shell {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 72px;
}

.seo-legal-kicker {
  margin: 0 0 14px;
  color: #5b636b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-legal-shell h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.seo-legal-updated {
  margin: 18px 0 34px;
  color: #6b7280;
  font-size: 15px;
}

.seo-legal-shell h2 {
  margin: 34px 0 10px;
  color: #111111;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.seo-legal-shell p {
  margin: 0 0 14px;
  color: #30343b;
  font-size: 16px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.seo-legal-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 44px;
  padding-top: 20px;
  color: #6b7280;
  font-size: 14px;
}

.seo-legal-footer a {
  margin-right: 16px;
  color: #0f737d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tool-page {
  padding-bottom: 24px;
}

.tool-hero {
  padding-bottom: 40px;
}

.tool-checker,
.tool-topics,
.tool-bridge,
.tool-specs {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0;
}

.tool-checker {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.tool-checker-copy h2,
.tool-topics h2,
.tool-bridge h2,
.tool-specs h2 {
  margin: 0;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: 0;
}

.tool-checker-copy p,
.tool-bridge p,
.tool-specs p,
.tool-topic-grid p {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.68;
}

.local-ai-tool {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(17, 24, 39, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
}

.tool-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tool-fields label,
.tool-toggles {
  display: grid;
  gap: 8px;
}

.tool-fields span,
.tool-toggles legend {
  color: rgba(16, 16, 16, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tool-fields select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 24, 39, 0.34);
  border-radius: 8px;
  background: #ffffff;
  color: #101010;
  padding: 0 12px;
  font: inherit;
  font-size: 15px;
}

.tool-toggles {
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 8px;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.42);
}

.tool-toggles label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  line-height: 1.35;
}

.tool-toggles input {
  width: 16px;
  height: 16px;
  accent-color: #101010;
}

.tool-result {
  border: 1px solid rgba(17, 24, 39, 0.2);
  border-radius: 8px;
  background: #101010;
  color: #ffffff;
  padding: 20px;
}

.tool-score {
  display: grid;
  gap: 8px;
}

.tool-score-label {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tool-score strong {
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 650;
}

.tool-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.tool-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #72c9d3;
  transition: width 180ms ease;
}

.tool-result-summary {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.6;
}

.tool-result-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.tool-result-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.45;
}

.tool-topics {
  display: grid;
  gap: 24px;
}

.tool-topic-grid,
.tool-specs > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tool-topic-grid article,
.tool-specs article {
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
}

.tool-topic-grid article {
  min-height: 244px;
}

.tool-topic-grid span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #101010;
  color: #ffffff;
  font-weight: 800;
}

.tool-topic-grid h3,
.tool-specs h3 {
  margin: 16px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.tool-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.tool-bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.tool-bridge-actions .seo-button {
  min-width: 190px;
}

.tool-specs {
  display: grid;
  gap: 24px;
}

@media (max-width: 760px) {
  .seo-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 24px 0;
  }

  .seo-nav {
    justify-content: flex-start;
  }

  .seo-hero,
  .seo-split,
  .seo-links,
  .seo-faq,
  .seo-footer {
    width: min(100% - 32px, 680px);
  }

  .seo-split {
    grid-template-columns: 1fr;
  }

  .seo-use-case-reverse .seo-preview {
    order: 0;
  }

  .seo-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-footer nav {
    justify-content: flex-start;
  }

  .seo-button {
    width: 100%;
  }

  .seo-legal-hero .seo-header,
  .seo-legal-shell {
    width: min(100% - 32px, 860px);
  }

  .seo-legal-shell {
    padding: 42px 0 56px;
  }

  .tool-checker,
  .tool-topics,
  .tool-bridge,
  .tool-specs {
    width: min(100% - 32px, 680px);
  }

  .tool-checker,
  .tool-bridge,
  .tool-topic-grid,
  .tool-specs > div {
    grid-template-columns: 1fr;
  }

  .tool-fields {
    grid-template-columns: 1fr;
  }

  .tool-bridge-actions .seo-button {
    width: 100%;
  }
}
