:root {
  --bg: #071421;
  --bg2: #0b1f34;
  --panel: #10263d;
  --panel2: #0d2238;
  --text: #f6fbff;
  --muted: #a9bad0;
  --line: rgba(255, 255, 255, 0.13);
  --green: #9fe870;
  --greenText: #123100;
  --blue: #4aa3ff;
  --white: #fff;
  --ink: #071421;
  --soft: #eef5fb;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(159, 232, 112, 0.18),
      transparent 30rem
    ),
    radial-gradient(
      circle at top right,
      rgba(74, 163, 255, 0.16),
      transparent 28rem
    ),
    linear-gradient(180deg, #071421 0, #0a1828 30%, #f4f8fb 30.1%, #f8fbff 100%);
  color: var(--ink);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -64px;
  left: 16px;
  z-index: 200;
  padding: 11px 18px;
  background: var(--green);
  color: var(--greenText);
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  transition: top 180ms ease;
}
.skip-link:focus-visible {
  top: 16px;
  outline: 3px solid rgba(159, 232, 112, 0.5);
  outline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(7, 20, 33, 0.74);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(7, 20, 33, 0.94);
  border-bottom-color: rgba(159, 232, 112, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}
.nav-wrap {
  position: relative;
  min-height: 72px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 0.98rem;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: linear-gradient(135deg, #b6f08a, #7fd152);
  box-shadow:
    0 10px 24px rgba(159, 232, 112, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.brand-mark svg {
  display: block;
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
  line-height: 1.05;
}
.brand-text strong {
  font-weight: 800;
}
.brand-text small {
  font-weight: 500;
  font-size: 0.84em;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-link,
.nav-group-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 12px;
  border-radius: 10px;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-group-toggle:hover,
.nav-group-toggle:focus-visible,
.nav-group-toggle[aria-expanded="true"] {
  color: var(--green);
  background: rgba(159, 232, 112, 0.08);
}
.nav-caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  transition: transform 200ms ease;
  opacity: 0.72;
}
.nav-group-toggle:hover .nav-caret,
.nav-group-toggle:focus-visible .nav-caret {
  opacity: 1;
}
.nav-group-toggle[aria-expanded="true"] .nav-caret {
  transform: rotate(225deg) translate(-2px, -1px);
  opacity: 1;
}
.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown {
  position: absolute;
  z-index: 10020;
  top: calc(100% + 12px);
  right: -8px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(159, 232, 112, 0.22);
  border-radius: 18px;
  background: #03101c;
  background-image: linear-gradient(180deg, #071b2e 0%, #03101c 100%);
  box-shadow:
    0 0 0 100vmax rgba(3, 8, 15, 0.46),
    0 42px 110px rgba(0, 0, 0, 0.92),
    0 10px 28px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}
.nav-group.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-heading {
  margin: 0 0 6px;
  padding: 6px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8f08a;
}
.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}
.nav-dropdown-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  transition: color 160ms ease;
}
.nav-dropdown-hint {
  font-weight: 500;
  font-size: 0.78rem;
  color: rgba(226, 236, 246, 0.78);
}
.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  background: rgba(159, 232, 112, 0.16);
}
.nav-dropdown-item:hover .nav-dropdown-hint,
.nav-dropdown-item:focus-visible .nav-dropdown-hint {
  color: rgba(255, 255, 255, 0.92);
}
.nav-dropdown-item:hover .nav-dropdown-label,
.nav-dropdown-item:focus-visible .nav-dropdown-label {
  color: var(--green);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--greenText);
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 10px 26px rgba(159, 232, 112, 0.28);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(159, 232, 112, 0.42);
  background: #b6f08a;
}
.nav-cta-arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform 160ms ease;
  font-weight: 900;
}
.nav-cta:hover .nav-cta-arrow,
.nav-cta:focus-visible .nav-cta-arrow {
  transform: translateX(3px);
}
.menu-toggle {
  display: none;
}
.hero {
  padding: 72px 0 58px;
  color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 56px;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(159, 232, 112, 0.28);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(159, 232, 112, 0.08);
}
h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
}
h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  max-width: 780px;
}
h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}
h3 {
  font-size: 1.35rem;
}
.hero p,
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.76);
  max-width: 680px;
}
.hero-actions,
.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  border: 1px solid transparent;
  transition:
    0.2s transform,
    0.2s background;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--green);
  color: var(--greenText);
  box-shadow: 0 14px 34px rgba(159, 232, 112, 0.22);
}
.btn-secondary,
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost {
  color: var(--ink);
  border-color: #d9e5f2;
  background: #fff;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
}
.hero-visual {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #10263d;
}
.hero-visual img,
.editorial-visual img,
.split img {
  display: block;
  width: 100%;
  height: auto;
}
.floating-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 20, 33, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}
.floating-panel strong {
  display: block;
  font-size: 1.35rem;
}
.floating-panel span {
  color: var(--muted);
}
.section {
  padding: 76px 0;
  background: #f8fbff;
}
.section.dark-panel {
  background: linear-gradient(135deg, #071421, #10263d) !important;
  color: #fff;
}
.strip {
  padding: 24px 0;
  background: #fff;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.strip-grid div {
  padding: 20px;
  border: 1px solid #dbe7f3;
  border-radius: 20px;
  background: #f8fbff;
}
.strip-grid strong {
  display: block;
}
.strip-grid span {
  color: #5e7086;
}
.section-head {
  margin-bottom: 28px;
}
.section-head p,
.content p {
  color: #5e7086;
  font-size: 1.06rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform-card,
.bonus-card,
.article-card,
.table-card,
.metric-card,
.content,
.cta-box {
  background: #fff;
  border: 1px solid #dae6f2;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(7, 20, 33, 0.08);
}
.platform-card,
.bonus-card,
.article-card {
  padding: 24px;
  transition: 0.2s;
}
.platform-card:hover,
.bonus-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(7, 20, 33, 0.14);
}
.logo-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 38px;
  padding: 0 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #071421, #14395b);
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
}
.pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  background: #e9f8df;
  color: #173b05;
  font-weight: 900;
  font-size: 0.78rem;
}
.score {
  color: #5e7086;
  font-weight: 800;
  font-size: 0.82rem;
}
.platform-card h3 {
  margin-bottom: 10px;
}
.platform-card p,
.bonus-card p,
.article-card p {
  color: #5e7086;
}
.mini-list,
.checklist {
  padding-left: 0;
  list-style: none;
}
.mini-list li,
.checklist li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
  color: #40556c;
}
.mini-list li:before,
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #108c3d;
  font-weight: 900;
}
.dark-panel {
  background: linear-gradient(135deg, #071421, #10263d) !important;
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 42px;
}
.dark-panel .split p {
  color: rgba(255, 255, 255, 0.72);
}
.split img {
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.table-card {
  padding: 22px;
}
.table-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}
th {
  text-align: left;
  color: #6a7d92;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
td,
th {
  padding: 16px;
  border-bottom: 1px solid #e5edf5;
  vertical-align: middle;
}
td small {
  display: block;
  color: #6a7d92;
}
.platform-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.table-cta {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: #071421;
  color: #fff;
  font-weight: 900;
  font-size: 0.86rem;
  white-space: nowrap;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article-card span {
  color: #108c3d;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.page-hero {
  padding: 70px 0 42px;
  background: linear-gradient(135deg, #071421, #0e2b47);
  color: #fff;
}
.editorial-visual {
  margin-top: 22px;
  margin-bottom: 24px;
}
.editorial-visual img {
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.content {
  padding: 34px;
  max-width: 920px;
}
.content h2 {
  font-size: 2rem;
  margin-top: 26px;
}
.content h2:first-child {
  margin-top: 0;
}
.content .btn {
  margin-top: 18px;
}
.bonus-card h2 {
  font-size: 2.15rem;
  margin: 16px 0;
}
.platform-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}
.metric-card {
  padding: 28px;
  color: var(--ink);
}
.metric-card span {
  font-weight: 900;
  color: #5e7086;
}
.metric-card strong {
  display: block;
  font-size: 3.5rem;
  letter-spacing: -0.06em;
  color: #071421;
}
.cta-box {
  margin-top: 28px;
  padding: 26px;
  background: linear-gradient(135deg, #071421, #102f4f);
  color: #fff;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.72);
}
.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: #0a63ff;
  font-weight: 900;
}
.footer {
  background: #050d16;
  color: #fff;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 36px;
}
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.68);
}
.footer a {
  display: block;
  margin: 7px 0;
}
.footer h4 {
  margin: 0 0 12px;
}
.footer-disclaimer {
  margin-top: 34px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.56);
}
@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
  }
  .menu-toggle-bars {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
  }
  .menu-toggle-bars span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition:
      transform 220ms ease,
      opacity 200ms ease;
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    padding: 88px 18px 28px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    background: linear-gradient(180deg, #0c2034 0%, #071421 60%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -28px 0 60px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    transition: transform 240ms ease;
    z-index: 60;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav-link,
  .nav-group-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.98rem;
  }
  .nav-group {
    display: block;
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    width: auto;
    max-height: 0;
    margin: 0 0 0 10px;
    padding: 0 6px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: hidden;
    transition:
      max-height 240ms ease,
      padding 200ms ease;
  }
  .nav-group.open > .nav-dropdown {
    max-height: 640px;
    padding: 4px 6px 10px;
    transform: none;
  }
  .nav-dropdown-heading {
    display: none;
  }
  .nav-dropdown-item {
    padding: 10px 10px;
    border-radius: 10px;
  }
  .nav-cta {
    margin: 16px 0 0;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .nav-overlay,
  .nav-overlay {
    display: none;
  }
}
@media (max-width: 940px) {
  .hero-grid,
  .split,
  .platform-hero-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid,
  .article-grid,
  .strip-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding-top: 48px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .cards-grid,
  .article-grid,
  .strip-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.35rem;
  }
  .section {
    padding: 54px 0;
  }
  .hero-actions .btn,
  .card-actions .btn {
    width: 100%;
  }
  .table-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

.ecosystem-note {
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid rgba(106, 255, 179, 0.22);
  border-radius: 18px;
  background: rgba(106, 255, 179, 0.08);
  color: var(--text-muted, #aeb8c7);
}

.ecosystem-note a {
  color: var(--accent, #6affb3);
  font-weight: 700;
}


/* UI/UX audit improvements 2026-05-09 */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(159, 232, 112, 0.55);
  outline-offset: 3px;
}
.editorial-proof {
  display: inline-flex;
  margin: 16px 0 0;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 750;
}
.quick-compare {
  padding: 44px 0;
  background: #eef5fb;
}
.compact-head { margin-bottom: 18px; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.quick-grid a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 106px;
  padding: 16px;
  border: 1px solid #d6e4f2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 20, 33, 0.06);
}
.quick-grid strong { color: var(--ink); }
.quick-grid span { color: #40556c; font-size: 0.92rem; }
.risk-meta,
.takeaway-panel {
  display: grid;
  gap: 10px;
}
.risk-meta {
  grid-template-columns: 1fr;
  margin: 14px 0 4px;
}
.risk-meta span,
.takeaway-panel span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: #7c2d12;
  background: #ffedd5;
  border: 1px solid #fed7aa;
  font-weight: 900;
  font-size: 0.78rem;
}
.takeaway-panel {
  grid-template-columns: repeat(2, 1fr);
  align-self: stretch;
}
.takeaway-panel div {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}
.takeaway-panel strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  line-height: 1.25;
}
.table-wrap { scroll-margin-top: 96px; }
.btn,
.table-cta,
.nav-link,
.nav-group-toggle,
.nav-cta,
.nav-dropdown-item,
.footer a { min-height: 44px; }
.btn,
.table-cta { white-space: normal; text-align: center; }
.footer a { display: flex; align-items: center; }
@media (max-width: 940px) {
  .quick-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .editorial-proof { border-radius: 16px; line-height: 1.45; }
  .quick-grid,
  .takeaway-panel { grid-template-columns: 1fr; }
  table,
  thead,
  tbody,
  tr,
  th,
  td { display: block; min-width: 0; }
  thead { position: absolute; left: -9999px; }
  tr {
    margin-bottom: 14px;
    border: 1px solid #e5edf5;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
  }
  td {
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }
  td::before {
    content: attr(data-label);
    min-width: 42%;
    color: #40556c;
    font-weight: 900;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Phase 1 programmatic SEO pages */
.nav-dropdown--wide {
  width: 380px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.hero-compact {
  padding-bottom: 42px;
}
.premium-card,
.accent-panel {
  background: linear-gradient(145deg, rgba(15, 43, 70, 0.96), rgba(7, 20, 33, 0.96));
  color: #fff;
  border-color: rgba(159, 232, 112, 0.22);
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: inherit;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  background: #fff;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}
.faq-list p {
  margin: 12px 0 0;
}
body.nav-dropdown-open .facro-sticky-cta,
body.nav-dropdown-open .facro-trust-toast {
  display: none !important;
}
.site-header:has(.nav-group.open) ~ main .facro-sticky-cta,
.site-header:has(.nav-group.open) ~ main .facro-trust-toast,
body.nav-dropdown-open .facro-sticky-cta,
body.nav-dropdown-open .facro-trust-toast {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .nav-dropdown--wide {
    width: auto;
    max-height: none;
  }
}


/* SEO CTA conversion pass 2026-07-02 */
.seo-cta-pass{margin:2.25rem auto;padding:1.25rem;border:1px solid rgba(34,197,94,.24);border-radius:1.4rem;background:linear-gradient(135deg,rgba(15,23,42,.96),rgba(17,24,39,.9));color:#fff;box-shadow:0 18px 45px rgba(15,23,42,.18)}
.seo-cta-pass__eyebrow{margin:0 0 .45rem;font-size:.78rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#86efac}
.seo-cta-pass h2{margin:.1rem 0 .45rem;color:inherit;font-size:clamp(1.35rem,2vw,1.9rem);line-height:1.12}
.seo-cta-pass p{margin:.4rem 0;color:rgba(255,255,255,.82)}
.seo-cta-pass__actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1rem;align-items:center}
.seo-cta-pass__button{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:.8rem 1.05rem;font-weight:800;text-decoration:none;background:#22c55e;color:#07111f;border:1px solid rgba(255,255,255,.2)}
.seo-cta-pass__button:hover{filter:brightness(1.05);transform:translateY(-1px)}
.seo-cta-pass__link{color:#bbf7d0;font-weight:750;text-decoration:underline;text-underline-offset:3px}
.seo-cta-pass__risk{font-size:.88rem;color:rgba(255,255,255,.72)!important}
@media(max-width:720px){.seo-cta-pass{padding:1rem}.seo-cta-pass__actions{display:grid}.seo-cta-pass__button{width:100%}}
