:root {
  color-scheme: dark;
  --bg: #0d1117;
  --bg-soft: #141a23;
  --panel: #171f2b;
  --panel-2: #101720;
  --text: #f6f8fb;
  --muted: #a9b4c3;
  --line: rgba(255, 255, 255, 0.13);
  --cyan: #59d7ff;
  --coral: #ff7d6e;
  --lime: #b9ef5f;
  --gold: #f7c766;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --home-ink: #090b0e;
  --home-panel: #11161a;
  --home-paper: #f3eee4;
  --home-muted: #b6b0a7;
  --home-cyan: #68d8ff;
  --home-sage: #b8d7a4;
  --home-ember: #ff8a5c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  left: 1rem;
  padding: 0.6rem 0.9rem;
  position: fixed;
  top: -4rem;
  z-index: 20;
  background: var(--cyan);
  color: #071018;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 17, 23, 0.82);
  backdrop-filter: blur(18px);
}

.nav,
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(89, 215, 255, 0.45);
  background: linear-gradient(145deg, rgba(89, 215, 255, 0.16), rgba(255, 125, 110, 0.13));
  border-radius: 8px;
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
}

.hero {
  position: relative;
  min-height: 560px;
  height: calc(100svh - 88px);
  max-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.96) 0%, rgba(13, 17, 23, 0.78) 38%, rgba(13, 17, 23, 0.28) 78%),
    linear-gradient(0deg, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0.16) 46%, rgba(13, 17, 23, 0.78) 100%);
}

.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2rem, 5vh, 4rem) 0;
  max-width: 690px;
  justify-self: start;
}

.eyebrow {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 0.85rem;
}

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

h1 {
  font-size: 4.45rem;
  line-height: 1;
  max-width: 720px;
  margin-bottom: 1.05rem;
}

h2 {
  font-size: 3.35rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.hero-copy {
  color: #dce6f2;
  font-size: 1.15rem;
  max-width: 590px;
  margin-bottom: 0;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--cyan);
  color: #061018;
}

.button.secondary,
.button.quiet {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.button:hover {
  transform: translateY(-1px);
}

.affiliate-note {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0.85rem 0 0;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.8rem) 0;
}

.intro-grid,
.compliance {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.topic-card {
  min-height: 260px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

.topic-card span {
  color: var(--coral);
  font-weight: 900;
}

.topic-card p,
.article-row small,
.metric span,
.site-footer p,
.check-list {
  color: var(--muted);
}

.feature-band {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(89, 215, 255, 0.18), transparent 34%),
    radial-gradient(circle at 85% 65%, rgba(255, 125, 110, 0.14), transparent 30%),
    var(--panel-2);
}

.feature-copy {
  max-width: 700px;
}

.check-list {
  padding-left: 1.1rem;
}

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

.metric {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.article-list {
  display: grid;
  gap: 0.8rem;
}

.article-row {
  display: grid;
  grid-template-columns: 120px 1fr 0.8fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.article-row:hover {
  border-color: rgba(89, 215, 255, 0.55);
}

.article-row span {
  color: var(--cyan);
  font-weight: 800;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.compliance-grid a {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.compliance-grid a:hover {
  color: var(--text);
  border-color: rgba(185, 239, 95, 0.45);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-footer.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  border-top: 1px solid rgba(139, 92, 246, 0.12);
  color: rgba(240, 237, 255, 0.68);
  background:
    radial-gradient(circle at 16% 0%, rgba(139, 92, 246, 0.12), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(32, 185, 151, 0.07), transparent 26%),
    linear-gradient(180deg, #070714 0%, #050511 100%);
}

.home-footer-main,
.home-footer-bottom {
  width: min(1180px, calc(100% - 54px));
  margin: 0 auto;
}

.home-footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}

.home-footer-brand {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.home-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: #ffffff;
  font-weight: 950;
}

.home-footer-brand p {
  max-width: 380px;
  margin: 0;
  color: rgba(240, 237, 255, 0.66);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-footer-radar {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(139, 92, 246, 0.26);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 900;
}

.home-footer-radar:hover {
  border-color: rgba(167, 139, 250, 0.48);
  background: rgba(139, 92, 246, 0.16);
}

.home-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.home-footer-nav div {
  display: grid;
  align-content: start;
  gap: 0.58rem;
}

.home-footer-nav h2 {
  margin: 0 0 0.2rem;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-footer-nav a {
  color: rgba(240, 237, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.35;
}

.home-footer-nav a:hover {
  color: #ffffff;
}

.home-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-footer-bottom p {
  margin: 0;
  color: rgba(240, 237, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-footer-bottom p:last-child {
  text-align: right;
}

.article-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.article-page h1 {
  font-size: 4.3rem;
}

.article-meta {
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.article-page h2 {
  font-size: 2.35rem;
  margin-top: 2.8rem;
}

.article-page p,
.article-page li {
  color: #c4ceda;
  font-size: 1.05rem;
}

.callout,
.media-placeholder,
.disclosure-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 1.2rem;
  margin: 1.4rem 0;
}

.media-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  border-style: dashed;
}

.prompt-box {
  white-space: pre-wrap;
  background: #090d13;
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  color: #e9f3ff;
}

.home-page {
  background:
    linear-gradient(180deg, var(--home-ink) 0%, #0c1013 42%, #111416 100%);
  color: var(--home-paper);
}

.home-header {
  border-bottom-color: rgba(243, 238, 228, 0.12);
  background: rgba(9, 11, 14, 0.78);
}

.home-header .nav {
  width: min(1220px, calc(100% - 40px));
  min-height: 72px;
}

.home-header .brand-mark {
  border-color: rgba(104, 216, 255, 0.45);
  background: rgba(104, 216, 255, 0.08);
  color: var(--home-cyan);
}

.home-hero {
  position: relative;
  height: calc(100svh - 88px);
  min-height: 560px;
  max-height: 790px;
  overflow: hidden;
  border-bottom: 1px solid rgba(243, 238, 228, 0.12);
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.06);
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 11, 14, 0.98) 0%, rgba(9, 11, 14, 0.9) 34%, rgba(9, 11, 14, 0.43) 66%, rgba(9, 11, 14, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 11, 14, 0.74) 0%, rgba(9, 11, 14, 0.12) 43%, rgba(9, 11, 14, 0.9) 100%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(260px, 360px);
  grid-template-rows: 1fr auto;
  gap: 1.6rem 4rem;
  align-items: center;
}

.hero-main {
  padding: 1.6rem 0 0;
}

.home-kicker,
.section-label {
  color: var(--home-sage);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 720px;
  margin: 0 0 1.1rem;
  color: var(--home-paper);
  font-size: 8rem;
  line-height: 0.86;
}

.home-lede {
  max-width: 630px;
  margin: 0;
  color: #d8d1c6;
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-brief {
  align-self: end;
  margin-bottom: 4.7rem;
  padding-left: 1.15rem;
  border-left: 1px solid rgba(104, 216, 255, 0.45);
  color: #d8d1c6;
}

.hero-brief span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--home-cyan);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-brief strong {
  display: block;
  color: var(--home-paper);
  font-size: 1.35rem;
  line-height: 1.18;
}

.hero-brief p {
  margin: 0.75rem 0 0;
  color: var(--home-muted);
  font-size: 0.95rem;
}

.hero-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(243, 238, 228, 0.17);
}

.hero-index a {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 0.85rem 1.2rem 0.85rem 0;
  border-right: 1px solid rgba(243, 238, 228, 0.12);
  color: #d8d1c6;
  font-size: 0.94rem;
  font-weight: 800;
}

.hero-index a:last-child {
  border-right: 0;
}

.hero-index a:hover {
  color: var(--home-cyan);
}

.home-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.home-intro {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 4rem;
  border-bottom: 1px solid rgba(243, 238, 228, 0.12);
}

.intro-statement h2,
.home-system h2 {
  max-width: 920px;
  color: var(--home-paper);
  font-size: 3.6rem;
  line-height: 1.03;
}

.intro-statement p,
.home-system p {
  max-width: 760px;
  color: var(--home-muted);
  font-size: 1.08rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  border: 1px solid rgba(243, 238, 228, 0.12);
  background: rgba(243, 238, 228, 0.12);
}

.editorial-card {
  min-height: 280px;
  padding: 1.35rem;
  background: #101418;
}

.editorial-card.is-featured {
  background:
    linear-gradient(145deg, rgba(104, 216, 255, 0.11), rgba(255, 138, 92, 0.07)),
    #101418;
}

.editorial-card span {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--home-ember);
  font-weight: 900;
}

.editorial-card h3 {
  max-width: 260px;
  color: var(--home-paper);
  font-size: 1.35rem;
}

.editorial-card p {
  color: var(--home-muted);
}

.editorial-card a {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--home-cyan);
  font-weight: 850;
}

.home-system {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 4rem;
  align-items: start;
}

.system-list {
  border-top: 1px solid rgba(243, 238, 228, 0.14);
}

.system-row {
  display: grid;
  grid-template-columns: 160px 1fr minmax(220px, 0.8fr);
  gap: 1.1rem;
  align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(243, 238, 228, 0.14);
}

.system-row span {
  color: var(--home-cyan);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
}

.system-row strong {
  color: var(--home-paper);
  font-size: 1.08rem;
}

.system-row small {
  color: var(--home-muted);
  line-height: 1.45;
}

.system-row:hover strong {
  color: var(--home-cyan);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  border: 1px solid rgba(243, 238, 228, 0.12);
  background: rgba(243, 238, 228, 0.12);
}

.trust-strip div {
  min-height: 126px;
  padding: 1.15rem;
  background: #0d1114;
}

.trust-strip span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--home-sage);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-strip strong {
  color: var(--home-paper);
  font-size: 1.15rem;
  line-height: 1.2;
}

@media (max-width: 860px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .article-page h1 {
    font-size: 3.2rem;
  }

  .article-page h2 {
    font-size: 2rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 580px;
    height: calc(100svh - 88px);
    max-height: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 17, 23, 0.86) 0%, rgba(13, 17, 23, 0.72) 45%, rgba(13, 17, 23, 0.98) 100%),
      linear-gradient(90deg, rgba(13, 17, 23, 0.94), rgba(13, 17, 23, 0.42));
  }

  .intro-grid,
  .feature-band,
  .compliance,
  .article-row {
    grid-template-columns: 1fr;
  }

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

  .home-hero {
    height: auto;
    min-height: 720px;
  }

  .home-hero-inner {
    min-height: 720px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    gap: 1.4rem;
    padding-top: 2.6rem;
  }

  .home-hero h1 {
    font-size: 5.1rem;
  }

  .hero-brief {
    align-self: start;
    margin: 0;
    max-width: 520px;
  }

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

  .home-intro,
  .home-system {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .intro-statement h2,
  .home-system h2 {
    font-size: 2.55rem;
  }

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

  .system-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 640px;
    height: auto;
  }

  .hero-content {
    padding: 3rem 0;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .article-page h1 {
    font-size: 2.65rem;
  }

  .topic-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .home-header .nav,
  .home-hero-inner,
  .home-section {
    width: min(100% - 32px, 1220px);
  }

  .home-hero {
    min-height: 690px;
  }

  .home-hero-inner {
    min-height: 690px;
    padding-top: 2rem;
  }

  .home-hero h1 {
    font-size: 4rem;
  }

  .home-lede {
    font-size: 1rem;
  }

  .editorial-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .hero-index a {
    min-height: 46px;
    padding: 0.7rem 0.8rem 0.7rem 0;
    border-bottom: 1px solid rgba(243, 238, 228, 0.1);
  }

  .hero-index a:nth-child(odd) {
    border-right: 1px solid rgba(243, 238, 228, 0.1);
  }

  .editorial-card {
    min-height: auto;
  }

  .home-section {
    padding: 4rem 0;
  }
}

@media (max-width: 1100px) and (min-width: 861px) {
  .home-hero h1 {
    font-size: 6.4rem;
  }

  .home-hero-inner {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 1.4rem 2rem;
  }

  .intro-statement h2,
  .home-system h2 {
    font-size: 3rem;
  }

  .system-row {
    grid-template-columns: 140px 1fr;
  }

  .system-row small {
    grid-column: 2;
  }
}

.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;
}

.news-page {
  min-height: 100svh;
  background: #070714;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.news-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 58% 9%, rgba(98, 55, 220, 0.25), transparent 34%),
    linear-gradient(180deg, #080719 0%, #080816 100%);
}

.news-header {
  height: 64px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}

.news-nav {
  width: min(1180px, calc(100% - 54px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 1rem;
}

.news-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: start;
  color: #f7f5ff;
}

.news-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #20b997, #8b5cf6);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 28px color-mix(in srgb, #20b997 24%, transparent);
}

.news-brand-text b {
  display: block;
  color: #f7f5ff;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0;
}

.news-brand-text span {
  display: block;
  margin-top: 3px;
  color: rgba(238, 233, 255, 0.62);
  font-size: 0.66rem;
  line-height: 1.2;
}

.news-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 2.25rem);
  color: rgba(238, 233, 255, 0.78);
  font-size: 0.82rem;
}

.news-links a:hover {
  color: #ffffff;
}

.news-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.news-login,
.news-signup {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.05rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.news-login {
  color: #f7f5ff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-signup {
  color: #ffffff;
  background: linear-gradient(135deg, #6d5dfc, #8b5cf6);
  box-shadow: 0 12px 30px rgba(91, 72, 255, 0.28);
}

.news-main {
  flex: 1;
  display: block;
}

.news-hero {
  position: relative;
  flex: 1;
  min-height: calc(100svh - 64px);
  width: 100%;
  overflow: hidden;
}

.news-hero-media,
.news-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.news-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.news-hero-image {
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.1) contrast(1.04);
}

.news-slide-image {
  opacity: 0;
  transition: opacity 950ms ease;
}

.news-slide-image:nth-child(1) {
  animation: newsSlideOne 13s ease-in-out infinite;
}

.news-slide-image:nth-child(2) {
  animation: newsSlideTwo 13s ease-in-out infinite;
}

.news-slide-image.is-active {
  opacity: 1;
}

.news-hero.is-fixed-slide .news-slide-image,
.news-hero.is-fixed-slide .news-copy-panel {
  animation: none;
}

.news-hero.is-fixed-slide .news-slide-image {
  opacity: 0;
}

.news-hero.is-fixed-slide .news-slide-image.is-active {
  opacity: 1;
}

.news-hero.is-fixed-slide .news-copy-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.news-hero.is-fixed-slide .news-copy-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.news-brain-image {
  inset: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(90deg, rgba(7, 7, 20, 0.18) 0%, rgba(7, 7, 20, 0.05) 58%, rgba(7, 7, 20, 0) 100%),
    url("./assets/ai-brain-hero.png"),
    radial-gradient(circle at 72% 43%, rgba(91, 57, 214, 0.28), transparent 38%),
    linear-gradient(180deg, #050514 0%, #080719 58%, #070714 100%);
  background-blend-mode: normal, screen, normal, normal;
  background-position:
    center,
    right 2.2vw top -22px,
    center,
    center;
  background-repeat: no-repeat;
  background-size:
    100% 100%,
    min(88vw, 1080px) auto,
    100% 100%,
    100% 100%;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.7) 76%, transparent 90%);
  mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.7) 76%, transparent 90%);
}

.news-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 20, 0.96) 0%, rgba(7, 7, 20, 0.88) 34%, rgba(7, 7, 20, 0.34) 67%, rgba(7, 7, 20, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 7, 20, 0.04) 0%, rgba(7, 7, 20, 0.24) 48%, rgba(7, 7, 20, 0.9) 76%, rgba(7, 7, 20, 1) 100%),
    radial-gradient(circle at 78% 35%, rgba(139, 92, 246, 0.04), rgba(7, 7, 20, 0.28) 48%, rgba(7, 7, 20, 0.92) 100%);
}

.news-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 54px));
  min-height: calc(100svh - 64px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: stretch;
}

.news-copy {
  align-self: center;
  max-width: 740px;
  padding-top: clamp(2.4rem, 5.4vh, 3.8rem);
  position: relative;
  min-height: 318px;
}

.news-copy-panel {
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease, transform 520ms ease;
  transform: translateY(8px);
}

.news-copy-panel[data-news-slide="tablet"] {
  animation: newsCopyOne 13s ease-in-out infinite;
}

.news-copy-panel[data-news-slide="brain"] {
  animation: newsCopyTwo 13s ease-in-out infinite;
}

.news-copy-panel:not(.is-active) {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
}

.news-copy-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.news-copy h1 {
  max-width: 740px;
  margin: 0 0 1.3rem;
  color: #ffffff;
  font-size: 2.76rem;
  line-height: 1.12;
  font-weight: 900;
}

.news-copy p {
  max-width: 515px;
  margin-bottom: 1.35rem;
  color: rgba(240, 237, 255, 0.84);
  font-size: 1.03rem;
  line-height: 1.65;
  font-weight: 500;
}

.news-search {
  width: min(620px, 100%);
  height: 56px;
  display: grid;
  grid-template-columns: 1fr 62px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(21, 17, 48, 0.78);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.news-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 1.1rem;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
}

.news-search input::placeholder {
  color: rgba(235, 230, 255, 0.48);
}

.news-search button {
  border: 0;
  background: rgba(53, 41, 104, 0.86);
  cursor: pointer;
}

.news-search button span {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
}

.news-search button span::after {
  content: "";
  width: 7px;
  height: 2px;
  position: absolute;
  right: -6px;
  bottom: -4px;
  background: rgba(255, 255, 255, 0.86);
  transform: rotate(45deg);
  border-radius: 999px;
}

.news-topics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: rgba(240, 237, 255, 0.76);
  font-size: 0.82rem;
}

.news-topics span {
  margin-right: 0.15rem;
}

.news-topics a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(25, 20, 52, 0.58);
  color: rgba(245, 242, 255, 0.85);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.news-articles {
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 1.35rem;
}

.news-articles h2 {
  margin: 0 0 1.1rem;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quick-actions {
  padding-top: 1.5rem;
}

.quick-actions h2 {
  margin-bottom: 1rem;
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quick-action-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 14, 29, 0.95), rgba(5, 6, 14, 0.9)),
    rgba(8, 9, 20, 0.92);
  color: #f7f5ff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.quick-action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(17, 18, 35, 0.98), rgba(7, 8, 18, 0.94)),
    rgba(9, 10, 22, 0.94);
}

.quick-action-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #b8c7ff;
  background: rgba(37, 99, 235, 0.16);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14);
}

.quick-action-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-action-card strong,
.quick-action-card small {
  display: block;
}

.quick-action-card strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.2;
}

.quick-action-card small {
  margin-top: 0.18rem;
  color: rgba(240, 237, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.25;
}

.mvp-explorer {
  padding-top: 1.45rem;
  padding-bottom: 1.35rem;
}

.mvp-explorer-card {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.35rem;
  padding: 1rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 9, 30, 0.82), rgba(31, 24, 68, 0.9)),
    rgba(19, 15, 45, 0.88);
  color: #f7f5ff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.mvp-explorer-card:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(15, 13, 42, 0.9), rgba(45, 33, 94, 0.95)),
    rgba(22, 17, 52, 0.92);
}

.mvp-explorer-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.16);
  box-shadow: inset 0 0 0 1px rgba(196, 181, 253, 0.12);
}

.mvp-explorer-icon svg,
.mvp-explorer-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvp-explorer-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.9;
}

.mvp-explorer-copy {
  min-width: 0;
}

.mvp-explorer .mvp-explorer-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.24rem, 1.8vw, 1.58rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.mvp-explorer-copy p {
  margin: 0.45rem 0 0;
  color: rgba(240, 237, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.35;
}

.mvp-explorer-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 1.28rem;
  border-radius: 8px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #20b997, #8b5cf6);
  box-shadow: 0 14px 32px color-mix(in srgb, #20b997 25%, transparent);
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.mvp-explorer-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px color-mix(in srgb, #20b997 32%, transparent);
}

.mvp-explorer-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

@media (max-width: 760px) {
  .mvp-explorer-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  .mvp-explorer-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.now-media-desk {
  background:
    radial-gradient(circle at 70% 22%, rgba(166, 148, 123, 0.18), transparent 24%),
    linear-gradient(145deg, #f0ece4, #cfc5b8);
}

.now-media-desk::before {
  left: 11%;
  bottom: 25%;
  width: 45%;
  height: 28%;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(145deg, #202020, #35322e);
  box-shadow: 0 15px 24px rgba(47, 38, 25, 0.16);
}

.now-media-desk::after {
  right: 15%;
  bottom: 20%;
  width: 20%;
  height: 35%;
  border-radius: 45% 45% 36% 36%;
  background: linear-gradient(180deg, #d3c5b0, #a98f6e);
  box-shadow:
    -20px 18px 0 -13px #eee7dc,
    0 -20px 0 -15px #8d785f;
}

.now-media-chart {
  background:
    radial-gradient(circle at 45% 40%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(145deg, #0f1013, #2f2f31);
}

.now-media-chart::before {
  left: 12%;
  right: 12%;
  bottom: 24%;
  height: 45%;
  background:
    linear-gradient(160deg, transparent 0 30%, rgba(255, 255, 255, 0.62) 31% 33%, transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 12px, transparent 12px 24px);
  opacity: 0.72;
}

.now-media-chart::after {
  left: 13%;
  right: 13%;
  bottom: 24%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 -18px 0 rgba(255, 255, 255, 0.09), 0 -36px 0 rgba(255, 255, 255, 0.08);
}

.now-media-brain {
  background:
    radial-gradient(circle at 55% 47%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(145deg, #d8d0c3, #a99b8c);
}

.now-media-brain::before {
  left: 26%;
  top: 23%;
  width: 47%;
  height: 40%;
  border-radius: 55% 45% 45% 50%;
  background:
    radial-gradient(circle at 24% 38%, transparent 0 19%, rgba(115, 104, 93, 0.42) 20% 22%, transparent 23%),
    radial-gradient(circle at 55% 32%, transparent 0 18%, rgba(115, 104, 93, 0.38) 19% 21%, transparent 22%),
    linear-gradient(180deg, #d4c6b3, #988775);
  box-shadow:
    inset 0 0 0 1px rgba(77, 63, 50, 0.12),
    0 15px 22px rgba(47, 38, 25, 0.18);
}

.now-media-brain::after {
  left: 47%;
  top: 61%;
  width: 7%;
  height: 20%;
  border-radius: 0 0 999px 999px;
  background: #8f7d6a;
}

.advantage-section {
  padding: 1.15rem 0 1.4rem;
  background:
    radial-gradient(circle at 80% 6%, rgba(59, 130, 246, 0.08), transparent 28%),
    linear-gradient(180deg, #faf8f4 0%, #f6f2eb 100%);
  color: #171412;
}

.advantage-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.56) 0 51%, rgba(245, 248, 255, 0.76) 51% 100%),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 24px 70px rgba(32, 41, 62, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.advantage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: 3.2rem;
  align-items: start;
}

.advantage-copy {
  padding: 1.25rem 0 0 1.1rem;
}

.advantage-eyebrow {
  position: relative;
  margin: 0 0 1rem 3.1rem;
  color: #2454b8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advantage-eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 0.8rem);
  width: 2.1rem;
  height: 2px;
  border-radius: 999px;
  background: #2454b8;
}

.advantage-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #14110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 4.5vw, 5.15rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.99;
}

.advantage-benefit-list {
  max-width: 560px;
  display: grid;
  margin-top: 1.65rem;
}

.advantage-benefit-item {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 1.08rem;
  align-items: center;
  padding: 0.9rem 0;
}

.advantage-benefit-item::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(31, 27, 21, 0.1);
}

.advantage-icon,
.advantage-stat-icon {
  display: inline-grid;
  place-items: center;
  color: #2454b8;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), rgba(224, 233, 255, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.08),
    0 12px 28px rgba(37, 99, 235, 0.08);
}

.advantage-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
}

.advantage-icon svg,
.advantage-stat-icon svg,
.advantage-article-copy svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.85;
}

.advantage-benefit-item strong {
  display: block;
  color: #1d1915;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
}

.advantage-benefit-item p {
  margin: 0.34rem 0 0;
  color: #655f57;
  font-size: 0.9rem;
  line-height: 1.45;
}

.advantage-panel {
  display: grid;
  gap: 0.9rem;
}

.advantage-stat-card,
.advantage-quote-card,
.advantage-article-card {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 18px 48px rgba(32, 41, 62, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.advantage-stat-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 68px;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem 1.25rem;
}

.advantage-stat-card strong {
  color: #1d4fb6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 0.92;
}

.advantage-stat-card p {
  margin: 0;
  color: #171412;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.36;
}

.advantage-stat-card small {
  grid-column: 2;
  margin-top: -0.5rem;
  color: #756f67;
  font-size: 0.74rem;
}

.advantage-stat-icon {
  width: 58px;
  height: 58px;
  grid-column: 3;
  grid-row: 1 / span 2;
  border-radius: 14px;
}

.advantage-stat-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
}

.advantage-quote-card {
  min-height: 140px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 104px;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
}

.advantage-quote-mark {
  align-self: start;
  color: #2563eb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  line-height: 0.9;
}

.advantage-quote-card blockquote {
  max-width: 520px;
  margin: 0;
  color: #191612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.28;
}

.advantage-quote-card cite {
  display: block;
  margin-top: 1rem;
  color: #625b53;
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1.32;
}

.advantage-quote-card cite strong,
.advantage-quote-card cite span {
  display: block;
}

.advantage-quote-card cite strong {
  color: #191612;
  font-weight: 900;
}

.advantage-avatar {
  width: 86px;
  height: 86px;
  justify-self: end;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, #d2bba4 0 12%, transparent 13%),
    radial-gradient(circle at 50% 58%, #1f2328 0 25%, transparent 26%),
    linear-gradient(180deg, #d8d0c4, #9d9185);
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.72),
    0 14px 30px rgba(32, 41, 62, 0.16);
}

.advantage-read-head {
  margin: 0.6rem 0 0;
}

.advantage-read-head h3 {
  margin: 0;
  color: #1f1b17;
  font-size: 1.18rem;
}

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

.advantage-article-card {
  min-width: 0;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  padding: 0.65rem;
  color: #171412;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.advantage-article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 24px 56px rgba(32, 41, 62, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.advantage-article-media {
  position: relative;
  min-height: 96px;
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: #dbe3f3;
}

.advantage-article-media::before,
.advantage-article-media::after {
  content: "";
  position: absolute;
  display: block;
}

.advantage-article-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.7rem 0.15rem 0.2rem;
}

.advantage-article-copy small {
  color: #2454b8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.advantage-article-copy strong {
  margin-top: 0.55rem;
  color: #171412;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.3;
}

.advantage-article-copy span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  margin-top: auto;
  padding-top: 0.9rem;
  color: #2454b8;
  font-size: 0.78rem;
  font-weight: 900;
}

.advantage-article-copy svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.advantage-section--neutral {
  padding: 1rem 0 1.2rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(109, 93, 252, 0.16), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(139, 92, 246, 0.12), transparent 30%),
    linear-gradient(180deg, #080816 0%, #090817 48%, #080719 100%);
}

.advantage-section--neutral .advantage-shell {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 92, 246, 0.08), transparent 34%),
    rgba(10, 9, 27, 0.88);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 42px rgba(139, 92, 246, 0.055);
  backdrop-filter: blur(18px);
}

.advantage-section--neutral .advantage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(135deg, rgba(167, 139, 250, 0.18), rgba(255, 255, 255, 0.035) 34%, rgba(139, 92, 246, 0.12) 68%, rgba(255, 255, 255, 0.025));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.72;
}

.advantage-section--neutral .advantage-grid {
  position: relative;
  z-index: 1;
}

.advantage-section--neutral .advantage-eyebrow,
.advantage-section--neutral .advantage-stat-card strong,
.advantage-section--neutral .advantage-quote-mark,
.advantage-section--neutral .advantage-article-copy small,
.advantage-section--neutral .advantage-article-copy span {
  color: #a78bfa;
}

.advantage-section--neutral .advantage-eyebrow::before {
  background: #8b5cf6;
}

.advantage-section--neutral .advantage-copy h2,
.advantage-section--neutral .advantage-benefit-item strong,
.advantage-section--neutral .advantage-stat-card p,
.advantage-section--neutral .advantage-quote-card blockquote,
.advantage-section--neutral .advantage-article-copy strong {
  color: #ffffff;
}

.advantage-section--neutral .advantage-benefit-item {
  border-bottom-color: transparent;
}

.advantage-section--neutral .advantage-benefit-item::after {
  right: 5.2rem;
  background: rgba(167, 139, 250, 0.13);
}

.advantage-section--lean .advantage-benefit-item::after {
  right: 4.6rem;
}

.advantage-section--neutral .advantage-benefit-item p,
.advantage-section--neutral .advantage-quote-card cite,
.advantage-section--neutral .advantage-stat-card small {
  color: rgba(240, 237, 255, 0.62);
}

.advantage-section--neutral .advantage-quote-card cite strong {
  color: #ffffff;
}

.advantage-section--neutral .advantage-quote-card cite span {
  color: rgba(240, 237, 255, 0.56);
}

.advantage-section--neutral .advantage-icon,
.advantage-section--neutral .advantage-stat-icon {
  color: #ddd6fe;
  background:
    radial-gradient(circle at 35% 25%, rgba(167, 139, 250, 0.34), rgba(38, 30, 88, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(196, 181, 253, 0.14),
    0 14px 32px rgba(109, 93, 252, 0.14);
}

.advantage-section--neutral .advantage-stat-card,
.advantage-section--neutral .advantage-quote-card {
  border-color: rgba(139, 92, 246, 0.2);
  background:
    linear-gradient(180deg, rgba(25, 20, 58, 0.86), rgba(12, 10, 34, 0.9)),
    rgba(13, 11, 32, 0.86);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.advantage-section--neutral .advantage-article-card {
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(13, 11, 32, 0.68), rgba(8, 7, 24, 0.86)),
    rgba(8, 7, 24, 0.82);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.advantage-section--neutral .advantage-stat-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(28, 23, 68, 0.9), rgba(12, 10, 34, 0.94)),
    rgba(13, 11, 32, 0.9);
}

.advantage-section--neutral .advantage-article-card:hover {
  border-color: transparent;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(139, 92, 246, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.advantage-section--neutral .advantage-read-head h3 {
  color: #ffffff;
}

.advantage-section--neutral .advantage-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(167, 139, 250, 0.12), transparent 30%),
    radial-gradient(circle at 86% 84%, rgba(109, 93, 252, 0.1), transparent 34%);
  opacity: 0.75;
}

.advantage-section--neutral .advantage-stat-card,
.advantage-section--neutral .advantage-quote-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(167, 139, 250, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(25, 20, 58, 0.82), rgba(12, 10, 34, 0.9)),
    rgba(13, 11, 32, 0.86);
}

.advantage-section--neutral .advantage-read-head h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.advantage-section--neutral .advantage-read-head h3::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #a78bfa;
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.45);
}

.advantage-section--neutral .advantage-article-card {
  background:
    linear-gradient(180deg, rgba(13, 11, 32, 0.58), rgba(8, 7, 24, 0.82)),
    rgba(8, 7, 24, 0.78);
}

.advantage-section--neutral .advantage-article-media {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    0 12px 24px rgba(0, 0, 0, 0.2);
}

.advantage-section--lean {
  padding: 0.95rem 0 1.25rem;
}

.advantage-section--lean .advantage-shell {
  padding: 1.78rem;
  overflow: visible;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.advantage-section--lean .advantage-shell::before,
.advantage-section--lean .advantage-shell::after {
  content: none;
}

.advantage-section--lean .advantage-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(470px, 0.94fr);
  gap: 2rem;
  align-items: start;
}

.advantage-section--lean .advantage-copy {
  padding: 0.55rem 0 0 0.55rem;
}

.advantage-section--lean .advantage-eyebrow {
  margin-bottom: 0.82rem;
  font-size: 0.72rem;
}

.advantage-section--lean .advantage-copy h2 {
  max-width: 620px;
  font-size: clamp(3.16rem, 4vw, 4.48rem);
  line-height: 1;
}

.advantage-section--lean .advantage-benefit-list {
  max-width: 615px;
  margin-top: 1.28rem;
}

.advantage-section--lean .advantage-benefit-item {
  min-height: 74px;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.78rem 0;
}

.advantage-section--lean .advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
}

.advantage-section--lean .advantage-icon svg {
  width: 27px;
  height: 27px;
}

.advantage-section--lean .advantage-benefit-item strong {
  font-size: 1.08rem;
}

.advantage-section--lean .advantage-benefit-item p {
  margin-top: 0.3rem;
  font-size: 0.87rem;
}

.advantage-section--lean .advantage-panel {
  gap: 0.78rem;
}

.advantage-section--lean .advantage-stat-card {
  min-height: 114px;
  grid-template-columns: 150px minmax(0, 1fr) 60px;
  gap: 1.06rem;
  padding: 1rem 1.18rem;
}

.advantage-section--lean .advantage-stat-card strong {
  font-size: 4.18rem;
}

.advantage-section--lean .advantage-stat-card p {
  font-size: 0.98rem;
  line-height: 1.3;
}

.advantage-section--lean .advantage-stat-card small {
  margin-top: -0.42rem;
  font-size: 0.72rem;
}

.advantage-section--lean .advantage-stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
}

.advantage-section--lean .advantage-stat-icon svg {
  width: 27px;
  height: 27px;
}

.advantage-section--lean .advantage-quote-card {
  min-height: 128px;
  grid-template-columns: 42px minmax(0, 1fr) 90px;
  gap: 0.88rem;
  padding: 0.98rem 1.15rem;
}

.advantage-section--lean .advantage-quote-mark {
  font-size: 4.05rem;
}

.advantage-section--lean .advantage-quote-card blockquote {
  font-size: 1.06rem;
  line-height: 1.24;
}

.advantage-section--lean .advantage-quote-card cite {
  margin-top: 0.7rem;
  font-size: 0.74rem;
}

.advantage-section--lean .advantage-avatar {
  width: 78px;
  height: 78px;
}

.advantage-section--lean .advantage-read-head {
  margin-top: 0.42rem;
}

.advantage-section--lean .advantage-read-head h3 {
  font-size: 1.06rem;
}

.advantage-section--lean .advantage-article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.advantage-section--lean .advantage-article-card {
  min-height: 212px;
  padding: 0.68rem;
}

.advantage-section--lean .advantage-article-media {
  min-height: 96px;
}

.advantage-section--lean .advantage-article-copy {
  padding: 0.58rem 0.12rem 0.15rem;
}

.advantage-section--lean .advantage-article-copy small {
  font-size: 0.62rem;
}

.advantage-section--lean .advantage-article-copy strong {
  margin-top: 0.46rem;
  font-size: 0.9rem;
  line-height: 1.25;
}

.advantage-section--lean .advantage-article-copy span {
  padding-top: 0.68rem;
  font-size: 0.72rem;
}

.diagnostic-section {
  --diagnostic-color: #20b997;
  background:
    radial-gradient(circle at 22% 14%, rgba(109, 93, 252, 0.15), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(32, 185, 151, 0.1), transparent 28%),
    linear-gradient(180deg, #080719 0%, #070714 100%);
  color: #ffffff;
  padding: clamp(3.4rem, 6.2vw, 5.4rem) 0 clamp(4rem, 7vw, 6rem);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.diagnostic-inner {
  width: min(1180px, calc(100% - 54px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: start;
}

.diagnostic-eyebrow,
.diagnostic-result-kicker {
  margin: 0 0 0.55rem;
  color: #a78bfa;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.diagnostic-copy h2 {
  max-width: 720px;
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: clamp(2.05rem, 3.2vw, 3.35rem);
  line-height: 1.03;
}

.diagnostic-lede {
  max-width: 650px;
  margin: 0 0 1.6rem;
  color: rgba(240, 237, 255, 0.72);
  font-size: 1rem;
  line-height: 1.62;
}

.diagnostic-builder {
  display: grid;
  gap: 1rem;
}

.diagnostic-question {
  padding: 1rem;
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 8px;
  background: rgba(15, 12, 39, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.diagnostic-question > span {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 850;
}

.diagnostic-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.diagnostic-option {
  min-height: 36px;
  padding: 0 0.82rem;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 8px;
  color: rgba(240, 237, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.diagnostic-option:hover {
  color: #ffffff;
  border-color: rgba(167, 139, 250, 0.46);
  transform: translateY(-1px);
}

.diagnostic-option.is-selected {
  color: #ffffff;
  border-color: color-mix(in srgb, var(--diagnostic-color) 72%, #ffffff 18%);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--diagnostic-color) 50%, transparent), rgba(139, 92, 246, 0.22)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--diagnostic-color) 22%, transparent);
}

.diagnostic-question--radar .diagnostic-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.diagnostic-question--radar .diagnostic-option {
  min-height: 104px;
  display: grid;
  align-content: start;
  gap: 0.4rem;
  padding: 0.9rem;
  text-align: left;
}

.diagnostic-question--radar .diagnostic-option strong {
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.22;
}

.diagnostic-question--radar .diagnostic-option small {
  color: rgba(240, 237, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.38;
}

.diagnostic-question--radar .diagnostic-option.is-selected small {
  color: rgba(255, 255, 255, 0.78);
}

.diagnostic-result {
  position: sticky;
  top: 86px;
  padding: 1.25rem;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 0%, color-mix(in srgb, var(--diagnostic-color) 24%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(26, 21, 62, 0.9), rgba(12, 10, 34, 0.94));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.diagnostic-result h3 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-size: 1.62rem;
  line-height: 1.12;
}

.diagnostic-result p {
  margin: 0 0 1rem;
  color: rgba(240, 237, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.55;
}

.diagnostic-tools {
  display: grid;
  gap: 0.58rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.diagnostic-tools li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(247, 245, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.4;
}

.diagnostic-tools li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 0.86rem;
  height: 0.86rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 18%, transparent 20%),
    var(--diagnostic-color);
  box-shadow: 0 0 18px color-mix(in srgb, var(--diagnostic-color) 40%, transparent);
}

.diagnostic-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.diagnostic-primary,
.diagnostic-secondary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.diagnostic-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--diagnostic-color), #8b5cf6);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--diagnostic-color) 25%, transparent);
}

.diagnostic-secondary {
  color: rgba(247, 245, 255, 0.88);
  border: 1px solid rgba(139, 92, 246, 0.24);
  background: rgba(255, 255, 255, 0.045);
}

.diagnostic-lead {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.diagnostic-lead label {
  display: block;
  margin-bottom: 0.7rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
}

.diagnostic-lead-row {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 8px;
  background: rgba(8, 7, 25, 0.78);
}

.diagnostic-lead input[type="email"] {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 0.9rem;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
}

.diagnostic-lead input::placeholder {
  color: rgba(240, 237, 255, 0.46);
}

.diagnostic-lead button {
  min-height: 44px;
  border: 0;
  padding: 0 1rem;
  color: #ffffff;
  background: var(--diagnostic-color);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.diagnostic-lead small {
  display: block;
  margin-top: 0.6rem;
  color: rgba(240, 237, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}

.home-content-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(98, 55, 220, 0.12), transparent 34%),
    linear-gradient(180deg, #070714 0%, #080719 100%);
  color: #ffffff;
  padding: clamp(2.8rem, 5.4vw, 4.7rem) 0;
  border-top: 1px solid rgba(139, 92, 246, 0.08);
}

.featured-tools {
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 92, 246, 0.16), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(32, 185, 151, 0.08), transparent 28%),
    linear-gradient(180deg, #080816 0%, #080719 100%);
}

.home-content-inner {
  width: min(1180px, calc(100% - 54px));
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.section-kicker {
  margin: 0 0 0.48rem;
  color: #a78bfa;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.05;
}

.section-head p {
  max-width: 680px;
  color: rgba(240, 237, 255, 0.7);
  font-size: 1rem;
  line-height: 1.58;
}

.featured-tools .section-head {
  max-width: 1040px;
}

.featured-tools .section-head p {
  max-width: 1040px;
}

.tool-tabs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0.34rem;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 8px;
  background: rgba(9, 8, 28, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 42px rgba(0, 0, 0, 0.18);
}

.tool-tab {
  min-height: 36px;
  border: 0;
  border-radius: 7px;
  padding: 0 0.76rem;
  color: rgba(240, 237, 255, 0.68);
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.tool-tab:hover,
.tool-tab:focus-visible {
  color: #ffffff;
  background: rgba(139, 92, 246, 0.14);
}

.tool-tab.is-active {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(109, 93, 252, 0.92), rgba(139, 92, 246, 0.92));
  box-shadow: 0 10px 28px rgba(109, 93, 252, 0.22);
}

.tool-use-note {
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.3rem 0 1rem;
  padding: 0.56rem 0.68rem;
  border-radius: 8px;
  color: rgba(240, 237, 255, 0.72);
  background:
    radial-gradient(circle at 0% 50%, rgba(139, 92, 246, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.025);
  font-size: 0.9rem;
  line-height: 1.45;
}

.tool-use-note::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.46);
}

.tool-use-note > span:first-child {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tool-use-chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.58rem;
  border-radius: 7px;
  color: rgba(240, 237, 255, 0.78);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
}

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

.tool-card {
  --tool-accent: #8b5cf6;
  min-width: 0;
  min-height: 132px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0.82rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--tool-accent) 18%, transparent), transparent 48%),
    linear-gradient(180deg, rgba(24, 19, 57, 0.76), rgba(12, 10, 34, 0.88)),
    rgba(16, 14, 42, 0.9);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.tool-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--tool-accent) 48%, rgba(255, 255, 255, 0.12));
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.28),
    0 0 28px color-mix(in srgb, var(--tool-accent) 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.tool-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  /* 2ª cor do gradiente é opcional: sem --tool-accent-2, os dois stops ficam
     iguais e o resultado é idêntico ao tom sólido de antes. */
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--tool-accent) 68%, #18133a),
      var(--tool-accent-2, color-mix(in srgb, var(--tool-accent) 68%, #18133a))
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 28px color-mix(in srgb, var(--tool-accent) 16%, transparent);
  font-size: 0.78rem;
  font-weight: 950;
}

.tool-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tool-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 0.48rem;
  border: 1px solid color-mix(in srgb, var(--tool-accent) 28%, rgba(255, 255, 255, 0.08));
  border-radius: 6px;
  color: color-mix(in srgb, var(--tool-accent) 65%, #ffffff);
  background: color-mix(in srgb, var(--tool-accent) 13%, transparent);
  font-size: 0.68rem;
  font-weight: 900;
}

.tool-card strong {
  margin-top: 0.48rem;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.2;
}

.tool-card p {
  margin: 0.32rem 0 0;
  color: rgba(240, 237, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.42;
}

.tool-card small {
  margin-top: 0.64rem;
  color: rgba(240, 237, 255, 0.52);
  font-size: 0.77rem;
  line-height: 1.35;
}

.news-card {
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 10px;
  background: rgba(14, 14, 35, 0.84);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, border-color 160ms ease;
}

.news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.55);
}

.news-card strong {
  min-height: 58px;
  display: block;
  padding: 0.78rem 0.9rem 0.95rem;
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1.35;
}

.news-thumb {
  height: 82px;
  display: block;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(12, 8, 32, 0.05), rgba(12, 8, 32, 0.65)),
    url("./assets/ai-brain-hero.png");
  background-size: cover;
}

.news-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 24%, rgba(139, 92, 246, 0.58), transparent 26%),
    linear-gradient(90deg, rgba(80, 64, 255, 0.25), rgba(18, 12, 44, 0));
}

.news-thumb span {
  position: absolute;
  left: 0.65rem;
  bottom: 0.55rem;
  z-index: 1;
  min-width: 30px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, #6d5dfc, #a855f7);
  font-size: 0.68rem;
  font-weight: 900;
}

.thumb-one {
  background-position: 78% 48%;
}

.thumb-two {
  background-position: 42% 58%;
  filter: saturate(0.8) sepia(0.18);
}

.thumb-three {
  background-position: 64% 42%;
  filter: hue-rotate(16deg) saturate(1.16);
}

.thumb-four {
  background-position: 90% 52%;
  filter: contrast(1.06) brightness(0.9);
}

@media (prefers-reduced-motion: no-preference) {
  .news-hero-media {
    animation: newsHeroFade 900ms ease-out both;
  }

  .news-copy,
  .news-articles {
    animation: newsContentRise 620ms ease-out both;
  }

  .news-articles {
    animation-delay: 120ms;
  }
}

@keyframes newsHeroFade {
  from {
    opacity: 0;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes newsContentRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes newsSlideOne {
  0%,
  43% {
    opacity: 1;
  }

  50%,
  93% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes newsSlideTwo {
  0%,
  43% {
    opacity: 0;
  }

  50%,
  93% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes newsCopyOne {
  0%,
  43% {
    opacity: 1;
    transform: translateY(0);
  }

  50%,
  93% {
    opacity: 0;
    transform: translateY(-7px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes newsCopyTwo {
  0%,
  43% {
    opacity: 0;
    transform: translateY(7px);
  }

  50%,
  93% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(7px);
  }
}

@media (max-width: 980px) {
  .news-nav {
    grid-template-columns: 1fr auto;
  }

  .news-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 27px;
    background: rgba(8, 7, 24, 0.98);
    border-top: 1px solid rgba(139, 92, 246, 0.18);
  }

  .news-links.open {
    display: flex;
  }

  .news-actions {
    display: none;
  }

  .news-page .nav-toggle {
    display: inline-flex;
  }

  .news-copy h1 {
    font-size: 2.5rem;
  }

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

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

  .advantage-shell {
    padding: 1.45rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(245, 248, 255, 0.74)),
      rgba(255, 255, 255, 0.62);
  }

  .advantage-section--neutral .advantage-shell::before {
    display: none;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .advantage-copy {
    padding: 0;
  }

  .advantage-copy h2 {
    max-width: 760px;
  }

  .advantage-benefit-list {
    max-width: none;
  }

  .advantage-benefit-item::after,
  .advantage-section--neutral .advantage-benefit-item::after,
  .advantage-section--lean .advantage-benefit-item::after {
    right: 0;
  }

  .advantage-article-grid {
    grid-template-columns: 1fr;
  }

  .advantage-article-card {
    min-height: 128px;
    display: grid;
    grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
    gap: 0.9rem;
  }

  .advantage-article-copy {
    padding: 0.2rem 0;
  }

  .advantage-section--lean .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-section--lean .advantage-copy {
    padding: 0;
  }

  .advantage-section--lean .advantage-copy h2 {
    max-width: 720px;
  }

  .advantage-section--lean .advantage-article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .advantage-section--lean .advantage-article-card {
    display: flex;
    min-height: 176px;
  }

  .advantage-section--lean .advantage-article-copy {
    padding: 0.7rem 0.15rem 0.2rem;
  }

  .diagnostic-inner {
    grid-template-columns: 1fr;
  }

  .diagnostic-result {
    position: relative;
    top: auto;
  }

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

  .home-footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .news-header {
    height: 62px;
  }

  .news-nav,
  .news-hero-content {
    width: min(100% - 32px, 1180px);
  }

  .news-hero {
    min-height: calc(100svh - 62px);
  }

  .news-hero-content {
    min-height: calc(100svh - 62px);
  }

  .news-hero-image {
    object-position: 70% center;
  }

  .news-brain-image {
    inset: 0;
    width: 100%;
    height: 100%;
    background-position:
      center,
      right -26vw top 34px,
      center,
      center;
    background-size:
      100% 100%,
      142vw auto,
      100% 100%,
      100% 100%;
    opacity: 0.72;
  }

  .news-copy {
    min-height: 372px;
  }

  .news-hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 7, 20, 0.98) 0%, rgba(7, 7, 20, 0.88) 62%, rgba(7, 7, 20, 0.48) 100%),
      linear-gradient(180deg, rgba(7, 7, 20, 0.18) 0%, rgba(7, 7, 20, 0.52) 52%, rgba(7, 7, 20, 0.98) 100%);
  }

  .news-copy {
    padding-top: 1rem;
  }

  .news-copy h1 {
    font-size: 2.16rem;
    line-height: 1.12;
  }

  .news-copy p {
    font-size: 0.94rem;
  }

  .news-search {
    height: 50px;
    grid-template-columns: 1fr 54px;
  }

  .news-topics {
    max-width: 330px;
  }

  .news-articles {
    padding-bottom: 1.1rem;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .quick-action-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .quick-action-card {
    min-height: 76px;
  }

  .advantage-section {
    padding: 0.75rem 0 1rem;
  }

  .advantage-shell {
    width: min(100% - 28px, 1320px);
    padding: 1.1rem 0.85rem;
  }

  .advantage-grid {
    gap: 1.4rem;
  }

  .advantage-eyebrow {
    margin-left: 2.6rem;
    font-size: 0.68rem;
  }

  .advantage-eyebrow::before {
    width: 1.7rem;
  }

  .advantage-copy h2 {
    font-size: 2.45rem;
    line-height: 1.03;
  }

  .advantage-benefit-item {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 68px;
  }

  .advantage-icon {
    width: 46px;
    height: 46px;
  }

  .advantage-icon svg {
    width: 25px;
    height: 25px;
  }

  .advantage-stat-card {
    grid-template-columns: 1fr 56px;
    gap: 0.8rem;
    padding: 1rem;
  }

  .advantage-stat-card strong {
    font-size: 3.6rem;
  }

  .advantage-stat-card p,
  .advantage-stat-card small {
    grid-column: 1 / -1;
  }

  .advantage-stat-card small {
    margin-top: 0;
  }

  .advantage-stat-icon {
    grid-column: 2;
    grid-row: 1;
    width: 52px;
    height: 52px;
  }

  .advantage-quote-card {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 0.95rem;
  }

  .advantage-quote-mark {
    font-size: 3.7rem;
  }

  .advantage-quote-card blockquote {
    font-size: 1rem;
  }

  .advantage-avatar {
    display: none;
  }

  .advantage-article-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .advantage-section--lean .advantage-article-grid {
    grid-template-columns: 1fr;
  }

  .advantage-section--lean .advantage-shell {
    padding: 0.95rem 0.8rem;
  }

  .advantage-section--lean .advantage-copy h2 {
    font-size: 2.24rem;
  }

  .advantage-section--lean .advantage-article-card {
    display: grid;
    min-height: auto;
  }

  .advantage-article-media {
    min-height: 132px;
  }

  .diagnostic-section {
    padding: 3rem 0 3.8rem;
  }

  .diagnostic-inner {
    width: min(100% - 32px, 1180px);
  }

  .diagnostic-question {
    padding: 0.9rem;
  }

  .diagnostic-options {
    gap: 0.45rem;
  }

  .diagnostic-question--radar .diagnostic-options {
    grid-template-columns: 1fr;
  }

  .diagnostic-option {
    min-height: 34px;
    padding: 0 0.68rem;
    font-size: 0.8rem;
  }

  .diagnostic-question--radar .diagnostic-option {
    min-height: auto;
    padding: 0.82rem;
  }

  .diagnostic-result {
    padding: 1rem;
  }

  .diagnostic-actions,
  .diagnostic-lead-row {
    grid-template-columns: 1fr;
  }

  .diagnostic-lead button {
    width: 100%;
  }

  .home-content-section {
    padding: 3rem 0;
  }

  .home-content-inner {
    width: min(100% - 32px, 1180px);
  }

  .home-footer-main,
  .home-footer-bottom {
    width: min(100% - 32px, 1180px);
  }

  .home-footer-nav {
    grid-template-columns: 1fr;
  }

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

  .tool-tabs {
    width: 100%;
  }

  .tool-tab {
    flex: 1 1 auto;
  }

  .tool-card {
    min-height: auto;
  }

  .news-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    min-height: 74px;
  }

  .news-thumb {
    height: 100%;
  }

  .news-card strong {
    min-height: auto;
    align-self: center;
    padding: 0.7rem 0.8rem;
  }
}
