:root {
  color-scheme: light;
  --navy-950: #061321;
  --navy-900: #091b2f;
  --navy-800: #112a45;
  --navy-700: #1f466b;
  --ink: #132337;
  --muted: #617085;
  --line: #d8e1e8;
  --paper: #f5f8fa;
  --white: #ffffff;
  --cyan: #15b8c5;
  --cyan-dark: #087a86;
  --green: #47b881;
  --green-soft: #e7f8ef;
  --warning: #8a5b00;
  --warning-soft: #fff4d8;
  --shadow: 0 22px 60px rgba(9, 27, 47, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 7%, rgba(21, 184, 197, 0.13), transparent 28rem),
    linear-gradient(180deg, #f9fbfc 0%, var(--paper) 100%);
}

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid var(--cyan-dark);
  outline-offset: 3px;
}

.site-header,
.tool-navigation,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: white;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--cyan), var(--cyan-dark));
  box-shadow: 0 8px 18px rgba(8, 122, 134, 0.22);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.privacy-pill,
.confidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 680;
}

.privacy-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(71, 184, 129, 0.13);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tool-navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tool-nav-card {
  display: flex;
  min-width: 0;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(9, 27, 47, 0.07);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tool-nav-card:hover {
  border-color: rgba(8, 122, 134, 0.55);
  box-shadow: 0 14px 32px rgba(9, 27, 47, 0.1);
  transform: translateY(-2px);
}

.tool-nav-card.is-active {
  border-color: var(--cyan-dark);
  background: linear-gradient(145deg, #ffffff, #eafafb);
  box-shadow: 0 12px 32px rgba(8, 122, 134, 0.14);
}

.tool-nav-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--cyan-dark);
  background: #e4f7f8;
  font-size: 0.76rem;
  font-weight: 850;
}

.tool-nav-card.is-active .tool-nav-number {
  color: var(--white);
  background: var(--cyan-dark);
}

.tool-nav-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.tool-nav-copy strong {
  color: var(--navy-900);
  font-size: 0.94rem;
}

.tool-nav-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.hero {
  max-width: 870px;
  padding: 74px 0 46px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-dark);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
  font-weight: 830;
}

.broken {
  color: #7d5a60;
  text-decoration: line-through;
  text-decoration-thickness: 0.07em;
  text-decoration-color: rgba(125, 90, 96, 0.55);
}

.fixed {
  color: var(--cyan-dark);
}

.hero-copy {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.tool-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: stretch;
  padding: 12px;
  border: 1px solid rgba(183, 198, 209, 0.72);
  border-radius: 24px;
  background: rgba(230, 237, 242, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  border: 1px solid rgba(216, 225, 232, 0.9);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.panel-heading,
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.panel-heading {
  border-bottom: 1px solid var(--line);
}

.panel-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: var(--cyan-dark);
  background: #e4f7f8;
  font-size: 0.77rem;
  font-weight: 820;
}

h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1rem;
  letter-spacing: -0.015em;
}

textarea {
  width: 100%;
  min-height: 290px;
  flex: 1;
  resize: vertical;
  padding: 24px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1rem;
  line-height: 1.7;
}

textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

#output-text {
  background: linear-gradient(145deg, #ffffff, #f9fcfb);
}

.option-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: #f8fbfc;
  cursor: pointer;
}

.option-toggle input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--cyan-dark);
}

.option-toggle span {
  display: grid;
  gap: 3px;
}

.option-toggle strong {
  color: var(--navy-900);
  font-size: 0.82rem;
}

.option-toggle small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.panel-footer {
  min-height: 64px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.output-actions > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--cyan-dark);
  font-size: 1.45rem;
  font-weight: 800;
}

.text-button,
.primary-button {
  border: 0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 740;
}

.text-button {
  padding: 8px 9px;
  color: var(--cyan-dark);
  background: transparent;
}

.text-button:hover:not(:disabled) {
  background: #eaf7f8;
}

.primary-button {
  padding: 10px 14px;
  color: white;
  background: var(--navy-900);
  box-shadow: 0 8px 16px rgba(9, 27, 47, 0.15);
}

.primary-button:hover:not(:disabled) {
  background: var(--navy-800);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.confidence-badge.is-high {
  color: #12633e;
  border-color: #bce5cf;
  background: var(--green-soft);
}

.confidence-badge.is-medium,
.confidence-badge.is-low {
  color: var(--warning);
  border-color: #ead7a4;
  background: var(--warning-soft);
}

.alternatives {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.alternatives > div:first-child {
  margin-bottom: 18px;
}

.candidate-list {
  display: grid;
  gap: 10px;
}

.detection-list {
  display: grid;
  gap: 10px;
}

.detection-item {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(190px, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
}

.detection-item strong {
  color: var(--navy-900);
}

.detection-count {
  display: grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #12633e;
  background: var(--green-soft);
  font-weight: 800;
}

.candidate {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.candidate code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.candidate button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy-900);
  background: white;
}

.ad-slot {
  display: none;
  width: 100%;
  margin: 48px 0 0;
  min-height: 122px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border-radius: 16px;
}

.ad-slot.is-preview,
.ad-slot.is-live {
  display: grid;
}

.ad-slot.is-preview {
  border: 1px dashed #b8c6d1;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.48);
}

.ad-label {
  color: #718095;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ad-placeholder {
  font-size: 0.8rem;
}

.ad-slot[data-ad-position="before-explanation"] {
  margin-bottom: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 96px 0;
}

.trust-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  border-radius: 12px;
  color: var(--cyan-dark);
  background: #e4f7f8;
  font-size: 1.15rem;
  font-weight: 800;
}

.trust-grid h2 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.trust-grid p,
.explanation-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.explanation {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 8vw, 110px);
  padding: 64px;
  border-radius: 24px;
  color: white;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.explanation .eyebrow {
  color: #72d8df;
}

.explanation h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.explanation-copy {
  display: grid;
  gap: 18px;
}

.explanation-copy p {
  color: #c9d5df;
}

.text-link,
.footer-links a,
.legal-content a {
  color: var(--navy-700);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-main {
  padding: 64px 0 24px;
}

.legal-hero {
  max-width: 850px;
  padding: 24px 0 54px;
}

.legal-hero h1 {
  margin-bottom: 20px;
}

.legal-hero > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.error-page {
  min-height: 60vh;
}

.inline-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  text-decoration: none;
}

.legal-content {
  display: grid;
  gap: 0;
  max-width: 900px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.legal-content section {
  padding: 34px 40px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content address {
  color: var(--muted);
  line-height: 1.72;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content address {
  font-style: normal;
}

.related-tools {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: center;
  margin: 10px 0 68px;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 22px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 24px 56px rgba(9, 27, 47, 0.15);
}

.related-tools .eyebrow {
  color: #72e0e7;
}

.related-tools h2 {
  max-width: 360px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.08;
}

.related-tools-intro > p:last-child {
  max-width: 380px;
  margin: 18px 0 0;
  color: #c4d0df;
  line-height: 1.65;
}

.related-tools-grid {
  display: grid;
  gap: 12px;
}

.related-tool-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  min-height: 94px;
  padding: 17px 19px;
  border: 1px solid rgba(216, 225, 232, 0.28);
  border-radius: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.related-tool-card:hover {
  border-color: #72e0e7;
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(3px);
}

.related-tool-card > span:nth-child(2) {
  display: grid;
  gap: 5px;
}

.related-tool-index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: var(--navy-900);
  background: #72e0e7;
  font-size: 0.72rem;
  font-weight: 850;
}

.related-tool-card strong {
  color: var(--white);
  font-size: 0.98rem;
}

.related-tool-card small {
  color: #b9c7d8;
  font-size: 0.76rem;
  line-height: 1.45;
}

.related-tool-arrow {
  color: #72e0e7;
  font-size: 1.25rem;
}

.help-hub {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 34px;
  align-items: center;
  margin: 28px 0 68px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.help-hub h2 {
  max-width: 320px;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.12;
}

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

.help-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.help-card:hover {
  border-color: var(--cyan-dark);
  transform: translateY(-2px);
}

.help-card span {
  color: var(--cyan-dark);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-card strong {
  color: var(--navy-900);
  line-height: 1.35;
}

.help-card small {
  align-self: end;
  color: var(--muted);
  font-size: 0.76rem;
}

.guide-main {
  max-width: 980px;
  padding: 42px 0 80px;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--cyan-dark);
  font-weight: 760;
}

.guide-hero {
  max-width: 850px;
  padding-bottom: 58px;
}

.guide-hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.75rem);
}

.guide-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.guide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid var(--navy-900);
  border-radius: 12px;
  color: var(--white);
  background: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 780;
  text-decoration: none;
}

.guide-cta-secondary {
  color: var(--navy-900);
  background: var(--white);
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-content {
  display: grid;
  gap: 22px;
}

.guide-content > section {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.guide-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.guide-content h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.guide-content p,
.guide-content li {
  color: var(--muted);
  line-height: 1.72;
}

.guide-content code {
  color: var(--navy-900);
  font-size: 0.9em;
}

.guide-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.guide-table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.8fr;
}

.guide-table-row > * {
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.guide-table-row:last-child > * {
  border-bottom: 0;
}

.guide-table-head {
  color: var(--navy-900);
  background: #edf6f7;
  font-size: 0.8rem;
}

.mobile-cell-label {
  display: none;
}

.guide-steps ol,
.guide-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
}

.guide-callout {
  border-color: rgba(8, 122, 134, 0.34) !important;
  background: linear-gradient(145deg, #f7ffff, #edf8f8) !important;
}

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

.symptom-grid article,
.comparison-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.symptom-grid p,
.comparison-grid p {
  margin-bottom: 0;
}

.comparison-grid a {
  color: var(--cyan-dark);
  font-weight: 760;
}

.guide-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: var(--navy-900) !important;
}

.guide-next h2,
.guide-next p {
  color: var(--white);
}

.guide-next .guide-cta {
  flex: 0 0 auto;
  margin-top: 0;
  color: var(--navy-900);
  background: var(--white);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 38px 0 48px;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  .tool-navigation {
    grid-template-columns: 1fr;
  }

  .tool-nav-card {
    min-height: 72px;
  }

  .related-tools,
  .help-hub,
  .guide-next {
    grid-template-columns: 1fr;
  }

  .help-hub {
    display: grid;
  }

  .guide-next {
    display: grid;
  }

  .guide-table-row {
    grid-template-columns: 0.75fr 1.35fr 0.8fr;
  }

  .hero {
    padding-top: 48px;
  }

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

  .flow-arrow {
    height: 40px;
    transform: rotate(90deg);
  }

  .panel {
    min-height: 350px;
  }

  textarea {
    min-height: 220px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 68px 0;
  }

  .explanation {
    grid-template-columns: 1fr;
    padding: 38px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .tool-navigation,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .privacy-pill {
    padding: 8px;
    font-size: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .tool-shell {
    padding: 7px;
    border-radius: 19px;
  }

  .panel-heading,
  .panel-footer {
    align-items: flex-start;
    padding: 15px;
  }

  .panel-heading {
    flex-direction: column;
  }

  textarea {
    padding: 18px;
    font-size: 0.94rem;
  }

  .ad-slot {
    min-height: 100px;
    margin-top: 32px;
  }

  .output-actions {
    flex-direction: column;
  }

  .output-actions > div,
  .output-actions button {
    width: 100%;
  }

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

  .detection-item {
    grid-template-columns: 1fr auto;
  }

  .detection-item > span:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .header-actions {
    gap: 10px;
  }

  .tool-navigation {
    margin-top: 10px;
  }

  .tool-nav-card {
    min-height: 68px;
    padding: 12px 14px;
  }

  .tool-nav-number {
    width: 34px;
    height: 34px;
  }

  .tool-nav-copy small {
    white-space: normal;
  }

  .help-hub {
    padding: 24px;
  }

  .related-tools {
    gap: 28px;
    padding: 30px 24px;
  }

  .related-tool-card {
    min-height: 88px;
    padding: 15px;
  }

  .help-card-grid,
  .symptom-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .guide-main {
    padding-top: 30px;
  }

  .breadcrumb {
    margin-bottom: 34px;
  }

  .guide-table-row,
  .guide-table-head {
    grid-template-columns: 1fr;
  }

  .guide-table-head {
    display: none;
  }

  .guide-table-row {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-table-row:last-child {
    border-bottom: 0;
  }

  .guide-table-row > * {
    padding: 5px 14px;
    border-bottom: 0;
  }

  .mobile-cell-label {
    display: block;
    margin-bottom: 3px;
    color: var(--cyan-dark);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .guide-actions,
  .guide-actions .guide-cta,
  .guide-next .guide-cta {
    width: 100%;
  }

  .explanation {
    padding: 30px 24px;
  }

  .legal-main {
    padding-top: 36px;
  }

  .legal-hero {
    padding-bottom: 36px;
  }

  .legal-content section {
    padding: 26px 22px;
  }

  footer {
    flex-direction: column;
  }
}

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

  .tool-nav-card {
    transition: none;
  }

  .help-card {
    transition: none;
  }

  .related-tool-card {
    transition: none;
  }
}
