:root {
  --card-start: #ffffffcf;
  --card-end: #ffffff66;
  --featured-end: #ffffffa8;
  --platform-bg: #ffffff65;
  --platform-border: #ffffffa1;
  --server-bg: #ffffffb8;
  --mobile-bg: #ffffff87;
  --glow-a: #c8dcfb;
  --glow-b: #e1ecfb;
  --surface-edge: #ffffff;
  --menu-surface: #f8faff;
  --menu-hover: #e7eefb;
  --card-border: #e0e5ee;
  --featured-start: #edf4ff;
  --featured-border: #c7d9f7;
  --pill-blue-ink: #2760b8;
  --pill-blue-bg: #dceafb;
  --pill-neutral-bg: #e9edf4;
  --pill-neutral-ink: #53647d;
  --label-ink: #66768e;
  --feature-ink: #46566e;
  --panel-start: #e8eef7;
  --panel-mid: #ecf2fb;
  --panel-end: #dce8fa;
  --platform-ink: #485e7b;
  --flow-ink: #536986;
  --flow-bg: #edf2f9;
  --flow-border: #dce6f3;
  --flow-icon: #4376b4;
  --flow-line: #c4d4eb;
  --detail-line: #dce4ef;
  --roadmap-line: #d8e2f0;
  --status-bg: #e8edf5;
  --status-ink: #586a84;
  --released-bg: #e0eee8;
  --released-ink: #2d6959;
  --progress-ink: #215ab2;
  --progress-bg: #e0eafb;
  --summary-icon: #617696;
  --mobile-ink: #5b83c3;
  --mobile-start: #dce9fd;
  --mobile-end: #f8fbff;
  --cta-glow: #c1d6fc;
  --cta-start: #e9f0fc;
  --cta-end: #e4edfb;
  --beta-ink: #825017;
  --beta-bg: #faeddb;
  --strip-icon: #54718f;
  --note-icon: #347d73;
  --surface-solid: #fff;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --shine: white;
  color-scheme: var(--scheme, light);
  --bg: #f5f7fb;
  --ink: #14233e;
  --muted: #59667b;
  --blue: #215fdf;
  --line: #dce3ee;
  --glass: rgba(255, 255, 255, 0.67);
  --radius: 24px;
  --heading: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1000px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 86% 35%, var(--glow-a) 0, transparent 49%),
    radial-gradient(ellipse at 5% 0%, var(--glow-b) 0, transparent 42%);
  pointer-events: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:disabled {
  cursor: default;
}
button[hidden],
[hidden] {
  display: none !important;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #2874ed;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 750;
  line-height: 1.13;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3.1rem, 5.1vw, 4.65rem);
  line-height: 1.09;
}
h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}
h3 {
  font-size: 1.55rem;
}
p {
  color: var(--muted);
}
svg {
  display: block;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.shell {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--surface-solid);
  padding: 10px 20px;
  z-index: 100;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 18px;
  margin-top: 18px;
  z-index: 20;
  min-height: 74px;
  padding: 12px 18px 12px 22px;
  border: 1px solid var(--surface-edge);
  border-radius: 20px;
  background: var(--surface-glass);
  box-shadow:
    0 8px 32px #193b7410,
    inset 0 1px 1px var(--shine);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--heading);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  border-radius: 11px;
  margin-right: 9px;
  box-shadow: inset 0 1px 2px #ffffff60;
}
.brand-mark .icon {
  width: 24px;
  height: 24px;
}
.brand-suffix {
  color: var(--blue);
}
.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: auto;
  font-size: 0.9rem;
  font-weight: 550;
}
.top-nav a {
  padding: 10px 0;
  color: var(--muted);
  transition: color 0.2s;
}
.top-nav a:hover,
.top-nav a[aria-current] {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid #1d57d3;
  border-radius: 12px;
  background: linear-gradient(180deg, #3277f0, #205cd9);
  color: white;
  font-size: 0.93rem;
  font-weight: 600;
  box-shadow:
    0 5px 14px #2464de22,
    inset 0 1px 1px #ffffff30;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px #2464de33;
}
.button .icon {
  width: 19px;
  height: 19px;
}
.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.86rem;
  border-radius: 10px;
}
.button-glass {
  background: var(--surface-glass);
  color: var(--ink);
  border-color: var(--surface-solid);
  box-shadow:
    inset 0 1px 0 var(--shine),
    0 3px 12px #203d7410;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.button-glass:hover {
  background: var(--surface-solid);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-solid);
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s;
}
.hero {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  align-items: center;
  gap: 50px;
  padding-top: 88px;
  padding-bottom: 94px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #25897e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #25897e15;
  flex-shrink: 0;
}
.hero h1 span {
  color: var(--blue);
}
.hero-lede {
  font-size: 1.13rem;
  line-height: 1.75;
  margin-top: 25px;
  max-width: 470px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  font-size: 0.81rem;
}
.hero-note .icon {
  width: 16px;
  height: 16px;
  color: var(--note-icon);
}
.radar-wrap {
  position: relative;
  min-width: 0;
  padding: 8px 0 20px;
}
.radar-embed {
  position: relative;
  isolation: isolate;
  background: #0e213b;
  border: 1px solid #344964;
  border-radius: 24px;
  color: #dbe8fa;
  box-shadow:
    0 28px 70px -20px #18366070,
    0 0 0 7px #ffffff50,
    inset 0 1px 1px #ffffff30;
  overflow: hidden;
}
.radar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 19px 22px;
  border-bottom: 1px solid #ffffff0e;
  background: #142945;
  font-size: 0.87rem;
}
.radar-toolbar > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.radar-toolbar .icon {
  color: #79acfc;
  width: 19px;
  height: 19px;
}
.radar-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 8px;
  color: #dbe8fa;
  font-size: 0.8rem;
  white-space: nowrap;
}
.radar-open:hover {
  color: white;
}
.radar-open .icon {
  width: 16px;
  height: 16px;
}
.radar-frame {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: #0f172a;
}
.radar-embed-footer {
  padding: 13px 18px;
  border-top: 1px solid #ffffff0e;
  color: #adc3df;
  font-size: 0.75rem;
  line-height: 1.6;
}
.intro-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}
.intro-strip > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.intro-strip > span:first-child {
  color: var(--ink);
  font-weight: 550;
}
.intro-strip .icon {
  width: 18px;
  height: 18px;
  color: var(--strip-icon);
}
.section {
  padding-top: 98px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 35px;
}
.section-heading .eyebrow {
  margin-bottom: 15px;
}
.section-heading > p {
  font-size: 0.96rem;
  line-height: 1.7;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.destination-card {
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--card-start), var(--card-end));
  box-shadow: inset 0 1px 1px var(--surface-solid);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px #2645720c;
}
.destination-card.featured {
  background: linear-gradient(
    150deg,
    var(--featured-start),
    var(--featured-end)
  );
  border-color: var(--featured-border);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}
.tile-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--surface-edge);
  background: var(--surface-solid);
  border-radius: 14px;
  box-shadow: 0 4px 12px #2049900b;
  color: var(--blue);
}
.tile-icon .icon {
  width: 23px;
  height: 23px;
}
.pill {
  font-size: 0.7rem;
  color: var(--pill-blue-ink);
  background: var(--pill-blue-bg);
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1.5;
}
.pill.neutral {
  background: var(--pill-neutral-bg);
  color: var(--pill-neutral-ink);
}
.card-label {
  font-size: 0.75rem;
  margin-bottom: 8px;
  color: var(--label-ink);
}
.destination-card h3 {
  font-size: 1.65rem;
  margin-bottom: 14px;
}
.destination-card > p:not(.card-label) {
  font-size: 0.93rem;
  line-height: 1.7;
}
.feature-list {
  padding: 0;
  margin: 23px 0 28px;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--feature-ink);
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.feature-list li::before {
  content: "✓";
  color: var(--blue);
  font-size: 0.82rem;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--blue);
  font-weight: 600;
  margin-top: auto;
}
.card-link .icon,
.inline-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.card-link:hover .icon,
.inline-link:hover .icon {
  transform: translateX(4px);
}
.software-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: linear-gradient(
    120deg,
    var(--panel-start) 0%,
    var(--panel-mid) 48%,
    var(--panel-end)
  );
  border: 1px solid var(--surface-solid);
  border-radius: 30px;
  padding: 60px;
  overflow: hidden;
  position: relative;
}
.software-copy > p:not(.eyebrow):not(.attribution) {
  margin-top: 22px;
  font-size: 0.95rem;
  max-width: 410px;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 30px;
}
.platforms span {
  font-size: 0.75rem;
  color: var(--platform-ink);
  padding: 3px 8px;
  background: var(--platform-bg);
  border: 1px solid var(--platform-border);
  border-radius: 5px;
}
.attribution {
  font-size: 0.75rem;
  margin-top: 19px;
  line-height: 1.7;
}
.software-visual {
  position: relative;
  min-width: 0;
}
.server-card {
  padding: 24px;
  background: var(--server-bg);
  border: 1px solid var(--surface-edge);
  border-radius: 20px;
  box-shadow:
    0 20px 55px #244b8b13,
    inset 0 1px 1px var(--shine);
  backdrop-filter: blur(18px);
}
.server-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
}
.server-card-title > .icon {
  color: var(--blue);
  width: 28px;
  height: 28px;
}
.server-card-title small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}
.server-card-title .pill {
  margin-left: auto;
  font-weight: 450;
}
.server-flow {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 32px 0;
}
.server-flow span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  font-size: 0.75rem;
  color: var(--flow-ink);
  flex: 1;
}
.server-flow .icon {
  width: 35px;
  height: 35px;
  padding: 6px;
  border-radius: 8px;
  background: var(--flow-bg);
  border: 1px solid var(--flow-border);
  color: var(--flow-icon);
}
.server-flow i {
  height: 1px;
  flex: 1;
  background: var(--flow-line);
  margin-top: -24px;
  position: relative;
}
.server-flow i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #719ed7;
}
.server-details {
  font-size: 0.81rem;
  margin: 0 0 22px;
}
.server-details div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--detail-line);
}
.server-details dt {
  color: var(--muted);
}
.server-details dd {
  margin: 0;
  font-weight: 550;
  text-align: right;
}
.server-details [data-current-stable] {
  color: var(--blue);
}
.server-card .card-link {
  font-size: 0.79rem;
}
.beta-note {
  font-size: 0.75rem;
  text-align: center;
  padding: 20px 12px 0;
  line-height: 1.65;
}
.section-intro {
  max-width: 650px;
  margin-top: -14px;
  margin-bottom: 40px;
  font-size: 0.95rem;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}
.roadmap-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.roadmap-item {
  position: relative;
  border-top: 2px solid var(--roadmap-line);
  padding: 25px 0 0;
}
.roadmap-item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9eafc7;
  box-shadow: 0 0 0 5px var(--bg);
}
.roadmap-status-released::before {
  background: #328477;
}
.roadmap-status-work-in-progress::before {
  background: var(--blue);
}
.roadmap-version {
  font-size: 0.75rem;
  color: var(--muted);
}
.roadmap-item h3 {
  font-size: 1.1rem;
  margin: 8px 0 12px;
  letter-spacing: -0.025em;
}
.roadmap-summary {
  font-size: 0.84rem;
  line-height: 1.75;
}
.roadmap-status {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 8px;
  background: var(--status-bg);
  border-radius: 5px;
  color: var(--status-ink);
  margin-top: 18px;
  letter-spacing: 0.04em;
}
.roadmap-status-released .roadmap-status {
  background: var(--released-bg);
  color: var(--released-ink);
}
.roadmap-status-work-in-progress .roadmap-status {
  color: var(--progress-ink);
  background: var(--progress-bg);
}
.roadmap-highlights {
  display: none;
}
.release-history {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 20px 35px 20px 0;
  font-size: 0.91rem;
  font-weight: 550;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 16px;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--summary-icon);
}
details[open] > summary::after {
  content: "−";
}
.release-history summary {
  font-size: 0.83rem;
}
.release-history summary > span {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 10px;
}
.history-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  padding-bottom: 27px;
}
.history-grid .roadmap-item {
  border: 0;
  padding-top: 0;
}
.history-grid .roadmap-item::before {
  display: none;
}
.mobile-section {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 90px;
  padding: 35px;
  background: var(--mobile-bg);
  border: 1px solid var(--surface-edge);
  border-radius: 22px;
  box-shadow: 0 5px 20px #21396206;
}
.mobile-icon {
  width: 70px;
  height: 85px;
  display: grid;
  place-items: center;
  color: var(--mobile-ink);
  background: linear-gradient(140deg, var(--mobile-start), var(--mobile-end));
  border: 1px solid var(--surface-edge);
  border-radius: 19px;
  box-shadow: inset 0 1px 0 var(--shine);
}
.mobile-icon .icon {
  width: 35px;
  height: 45px;
  stroke-width: 1.3;
}
.mobile-section .eyebrow {
  font-size: 0.7rem;
  margin-bottom: 10px;
}
.mobile-section h2 {
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}
.mobile-section p:not(.eyebrow) {
  font-size: 0.86rem;
  max-width: 570px;
  margin-top: 12px;
}
.mobile-platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 125px;
}
.mobile-platforms > span {
  font-size: 0.88rem;
  font-weight: 550;
}
.mobile-platforms small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.about-section > div > p:not(.eyebrow) {
  font-size: 1rem;
  margin-top: 24px;
  max-width: 425px;
}
.about-section .inline-link {
  margin-top: 25px;
}
.faq h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details p {
  font-size: 0.89rem;
  padding: 0 22px 20px 0;
}
.faq details a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 100px;
  padding: 45px;
  border: 1px solid var(--surface-edge);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 90% 120%, var(--cta-glow), transparent 65%),
    linear-gradient(110deg, var(--cta-start), var(--cta-end));
  box-shadow: inset 0 1px 0 var(--surface-solid);
}
.final-cta .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 15px;
}
.final-cta h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  letter-spacing: -0.04em;
}
.final-cta p:not(.eyebrow) {
  font-size: 0.92rem;
  margin-top: 14px;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 48px 0 30px;
}
.site-footer .brand {
  font-size: 1.05rem;
}
.site-footer .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.site-footer .brand-mark .icon {
  width: 20px;
  height: 20px;
}
.site-footer > div > p {
  font-size: 0.75rem;
  margin-top: 10px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--muted);
}
.site-footer nav a:hover {
  color: var(--blue);
}
.copyright {
  font-size: 0.75rem;
  white-space: nowrap;
}
.reveal-ready {
  animation: reveal 0.65s both;
}
@keyframes reveal {
  from {
    opacity: 0.3;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@supports not (backdrop-filter: blur(1px)) {
  .site-header {
    background: var(--menu-surface);
  }
  .button-glass {
    background: var(--surface-solid);
  }
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 30px;
  }
  h1 {
    font-size: clamp(3rem, 5.3vw, 4rem);
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-actions .button {
    padding: 13px 16px;
    font-size: 0.82rem;
  }
  .top-nav {
    gap: 22px;
  }
  .intro-strip {
    font-size: 0.77rem;
    gap: 15px;
  }
  .destination-card {
    padding: 23px;
  }
  .card-top {
    flex-wrap: wrap;
    gap: 12px;
  }
  .software-panel {
    gap: 40px;
    padding: 40px;
  }
  .about-section {
    gap: 60px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
  .copyright {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .shell {
    width: calc(100% - 40px);
  }
  .site-header {
    top: 10px;
    margin-top: 10px;
    gap: 15px;
    padding: 10px 14px;
    min-height: 65px;
  }
  .brand {
    font-size: 1.18rem;
  }
  .top-nav {
    gap: 16px;
    font-size: 0.81rem;
  }
  .header-cta {
    font-size: 0.79rem;
    gap: 8px;
    padding: 9px 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 65px;
    padding-bottom: 52px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero .eyebrow {
    justify-content: center;
  }
  h1 {
    font-size: clamp(3.2rem, 8.5vw, 4.6rem);
  }
  .hero-lede {
    margin: 22px auto 0;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-actions .button {
    font-size: 0.92rem;
    padding: 14px 23px;
  }
  .hero-note {
    justify-content: center;
  }
  .radar-wrap {
    width: min(490px, 94%);
    margin-inline: auto;
  }
  .intro-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
  }
  .intro-strip > span:first-child {
    grid-column: 1/-1;
    justify-content: center;
    font-size: 0.9rem;
  }
  .intro-strip > span {
    justify-content: center;
    flex-direction: column;
    font-size: 0.78rem;
    gap: 8px;
  }
  .section {
    padding-top: 68px;
  }
  .section-heading {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 27px;
  }
  .section-heading > p br {
    display: none;
  }
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .destination-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    padding: 28px;
  }
  .card-top {
    grid-column: 1/-1;
    margin-bottom: 20px;
  }
  .card-label,
  .destination-card h3,
  .destination-card > p {
    grid-column: 1;
  }
  .destination-card .feature-list {
    grid-column: 2;
    grid-row: 2/5;
    margin: 5px 0 0;
    align-content: center;
  }
  .destination-card .card-link {
    grid-column: 1/-1;
    margin-top: 25px;
  }
  .software-panel {
    padding: 36px;
    gap: 35px;
    grid-template-columns: 1fr;
  }
  .software-copy > p:not(.eyebrow):not(.attribution) {
    max-width: 100%;
  }
  .software-copy h2 br {
    display: none;
  }
  .software-visual {
    max-width: 480px;
    width: 100%;
    margin: auto;
  }
  .roadmap-list,
  .history-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }
  .section-intro {
    margin-top: 0;
  }
  .mobile-section {
    grid-template-columns: auto 1fr;
    gap: 23px;
    margin-top: 65px;
    padding: 28px;
  }
  .mobile-platforms {
    grid-column: 2;
    flex-direction: row;
    gap: 30px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-section > div > p:not(.eyebrow) {
    max-width: 100%;
  }
  .about-section h2 br {
    display: none;
  }
  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 65px;
    padding: 32px;
  }
  .site-footer {
    padding-top: 35px;
    gap: 25px;
  }
  .site-footer nav {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 100px;
  }
  .shell {
    width: calc(100% - 32px);
  }
  .site-header {
    gap: 10px;
    border-radius: 16px;
  }
  .site-header .brand {
    font-size: 1.08rem;
  }
  .site-header .brand-mark {
    width: 30px;
    height: 30px;
    margin-right: 7px;
    border-radius: 9px;
  }
  .header-cta {
    margin-left: auto;
    font-size: 0.75rem;
    min-height: 40px;
    padding: 8px 11px;
    gap: 7px;
  }
  .header-cta .icon {
    width: 15px;
    height: 15px;
  }
  .menu-toggle:not([hidden]) {
    display: block;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    padding: 9px;
  }
  .top-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 9px);
    padding: 15px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--surface-edge);
    border-radius: 16px;
    background: var(--menu-surface);
    box-shadow: 0 15px 25px #1e3c6820;
    font-size: 0.95rem;
  }
  .top-nav a {
    padding: 10px 14px;
    border-radius: 8px;
  }
  .top-nav a:hover {
    background: var(--menu-hover);
  }
  .js .top-nav:not(.is-open) {
    display: none;
  }
  .site-header:has(.menu-toggle[hidden]) {
    flex-wrap: wrap;
  }
  .site-header:has(.menu-toggle[hidden]) .top-nav {
    position: static;
    flex-direction: row;
    justify-content: space-around;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    order: 4;
    width: 100%;
  }
  .site-header:has(.menu-toggle[hidden]) .top-nav a {
    padding: 5px;
    font-size: 0.78rem;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero {
    padding-top: 51px;
    gap: 34px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.09em;
    margin-bottom: 20px;
  }
  h1 {
    font-size: clamp(2.65rem, 10.6vw, 3.9rem);
  }
  .hero-lede {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 330px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    margin: 26px auto 0;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }
  .hero-note {
    font-size: 0.75rem;
  }
  .radar-wrap {
    width: calc(100% - 8px);
  }
  .radar-embed {
    border-radius: 20px;
    box-shadow:
      0 18px 38px -15px #18366070,
      0 0 0 4px #ffffff70;
  }
  .radar-toolbar {
    padding: 15px 17px;
    font-size: 0.8rem;
  }
  .intro-strip {
    gap: 18px 10px;
    padding: 24px 0;
  }
  .intro-strip > span {
    font-size: 0.75rem;
  }
  .intro-strip > span:first-child {
    font-size: 0.85rem;
  }
  .section {
    padding-top: 58px;
  }
  h2 {
    font-size: 2rem;
  }
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .section-heading > p,
  .section-intro {
    font-size: 0.91rem;
  }
  .destination-card {
    display: flex;
    gap: 0;
    padding: 25px;
    border-radius: 20px;
  }
  .card-top {
    margin-bottom: 25px;
  }
  .destination-card h3 {
    font-size: 1.6rem;
  }
  .destination-card > p:not(.card-label) {
    font-size: 0.94rem;
  }
  .destination-card .feature-list {
    margin-top: 22px;
  }
  .destination-card .card-link {
    margin-top: 25px;
    padding-top: 18px;
  }
  .software-panel {
    padding: 28px 22px;
    border-radius: 22px;
  }
  .software-copy h2 br {
    display: block;
  }
  .platforms {
    gap: 6px;
  }
  .platforms span {
    font-size: 0.7rem;
  }
  .server-card {
    padding: 20px 16px;
  }
  .server-card-title {
    font-size: 0.95rem;
  }
  .server-details {
    font-size: 0.75rem;
  }
  .server-card-title .pill {
    font-size: 0.75rem;
  }
  .beta-note {
    padding-inline: 0;
  }
  .roadmap-list,
  .history-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .roadmap-item {
    border-top: 0;
    border-left: 2px solid var(--roadmap-line);
    margin-left: 5px;
    padding: 0 0 30px 25px;
  }
  .roadmap-item::before {
    left: -6px;
    top: 5px;
  }
  .roadmap-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
  }
  .roadmap-summary {
    font-size: 0.9rem;
  }
  .roadmap-status {
    margin-top: 13px;
  }
  .history-grid {
    gap: 25px;
  }
  .history-grid .roadmap-item {
    margin: 0;
    padding-left: 0;
  }
  .history-grid .roadmap-item:last-child {
    padding-bottom: 0;
  }
  .history-grid .roadmap-status {
    margin-top: 10px;
  }
  .mobile-section {
    padding: 25px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mobile-icon {
    width: 55px;
    height: 65px;
    border-radius: 15px;
  }
  .mobile-icon .icon {
    width: 27px;
    height: 35px;
  }
  .mobile-platforms {
    grid-column: 1;
  }
  .mobile-section h2 {
    font-size: 1.6rem;
  }
  .mobile-section p:not(.eyebrow) {
    font-size: 0.91rem;
  }
  .about-section h2 br {
    display: block;
  }
  .about-section {
    gap: 35px;
  }
  .faq summary {
    font-size: 0.88rem;
  }
  .final-cta {
    padding: 28px;
    gap: 25px;
  }
  .final-cta .button {
    width: 100%;
    font-size: 0.88rem;
    padding-inline: 15px;
  }
  .final-cta h2 {
    font-size: 1.9rem;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .site-footer nav {
    margin-left: 0;
    gap: 13px 20px;
    font-size: 0.81rem;
  }
  .site-footer > div > p {
    font-size: 0.78rem;
  }
  .copyright {
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
@media print {
  .site-header {
    position: static;
  }
  .radar-wrap,
  .hero-actions,
  .menu-toggle,
  .final-cta {
    display: none !important;
  }
  body {
    background: var(--surface-solid);
    color: black;
  }
  .shell {
    width: 100%;
  }
  .hero,
  .software-panel,
  .about-section {
    display: block;
  }
  .section {
    padding-top: 30px;
  }
  .destination-card,
  .software-panel,
  .mobile-section {
    break-inside: avoid;
  }
  .site-footer {
    display: block;
  }
  details {
    display: block;
  }
}

.top-nav,
.card-link,
.inline-link {
  font-size: 0.875rem;
}
.hero-note {
  font-size: 0.875rem;
}
@media (max-width: 380px) {
  .site-header {
    gap: 6px;
    padding-inline: 11px;
  }
  .site-header .brand {
    font-size: 1rem;
  }
  .site-header .brand-mark {
    width: 26px;
    height: 28px;
    margin-right: 6px;
  }
  .header-cta {
    padding-inline: 9px;
  }
  .header-cta .icon {
    display: none;
  }
}

@media (max-width: 600px) {
  .radar-frame {
    height: 520px;
  }
  .radar-embed-footer {
    font-size: 0.75rem;
  }
}

.radar-edition {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 6px;
  border: 1px solid #adc3df40;
  border-radius: 5px;
  color: #adc3df;
  font-size: 0.75rem;
  font-weight: 400;
}
.software-handoff {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  margin-top: 24px;
  font-size: 0.875rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.cta-actions .inline-link {
  justify-content: center;
}
@media (max-width: 600px) {
  .radar-toolbar {
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  .radar-toolbar > span:first-child {
    flex-wrap: wrap;
  }
  .software-handoff {
    justify-content: flex-start;
  }
  .cta-actions {
    width: 100%;
  }
}

/* The first screen names both live radars at the point of entry. */
.hero-radars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 490px;
  text-align: left;
}
.radar-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--surface-edge);
  border-radius: 16px;
  background: var(--surface-glass);
  box-shadow:
    inset 0 1px 1px var(--surface-edge),
    0 4px 18px #203d7410;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.radar-choice:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px #2464de25;
}
.radar-choice-modern {
  color: white;
  background: linear-gradient(150deg, #3277f0, #205cd9);
  border-color: #1d57d3;
  box-shadow:
    inset 0 1px 1px #ffffff35,
    0 5px 18px #2464de25;
}
.radar-choice-edition {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.radar-choice-modern .radar-choice-edition {
  color: #e1ecff;
}
.radar-choice strong {
  font-family: var(--heading);
  font-size: 1.22rem;
  letter-spacing: -0.035em;
  line-height: 1.3;
}
.radar-choice-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: 550;
}
.radar-choice-action .icon {
  width: 18px;
  height: 18px;
}
.radar-choice-legacy .radar-choice-action {
  color: var(--blue);
}
@media (max-width: 600px) {
  .hero-radars {
    max-width: 100%;
  }
  .radar-choice {
    padding: 17px 14px;
  }
  .radar-choice strong {
    font-size: 1.12rem;
  }
}
@media (max-width: 360px) {
  .hero-radars {
    grid-template-columns: 1fr;
  }
}

/* Original project identities and availability details. */
.brand-with-logo {
  flex-shrink: 0;
  width: 110px;
  height: 58px;
  overflow: hidden;
  border-radius: 10px;
  background: #10233c;
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.radar-choice-access {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
}
.radar-choice-modern .radar-choice-access {
  color: #e1ecff;
}
.product-detail-card {
  display: flex;
}
.product-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 145px;
  padding: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid #294464;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 100%, #214664, #10233c 80%);
}
.product-logo-panel img {
  display: block;
  object-fit: contain;
}
.vrsx-product-logo {
  width: min(230px, 100%);
  height: auto;
}
.adsb-product-logo {
  width: 200px;
  height: 136px;
  object-fit: cover !important;
}
.product-detail-card .card-top {
  margin-bottom: 20px;
}
.beta-pill {
  color: var(--beta-ink);
  background: var(--beta-bg);
}
.product-facts {
  display: grid;
  margin: 24px 0 0;
  font-size: 0.875rem;
}
.product-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.product-facts dt {
  color: var(--muted);
}
.product-facts dd {
  margin: 0;
  text-align: right;
  font-weight: 550;
}
.product-detail-card .feature-list {
  margin-top: 22px;
}
.product-links {
  margin-top: auto;
}
.product-detail-card .product-links .card-link {
  margin-top: 0;
}
.product-links > .inline-link {
  margin-top: 15px;
}
.server-logo {
  width: 135px;
  height: 53px;
  padding: 10px;
  border-radius: 9px;
  background: #10233c;
  object-fit: contain;
}
@media (max-width: 800px) {
  .site-header .brand-with-logo {
    width: 95px;
    height: 50px;
  }
  .product-detail-card {
    display: flex;
  }
}
@media (max-width: 600px) {
  .site-header .brand-with-logo {
    width: 84px;
    height: 44px;
  }
  .product-facts > div {
    flex-wrap: wrap;
    gap: 4px 12px;
  }
  .product-logo-panel {
    height: 130px;
  }
  .adsb-product-logo {
    width: 180px;
    height: 120px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .radar-choice {
    transition: none;
  }
}

:root[data-theme="dark"] {
  --card-start: #192638;
  --card-end: #152132;
  --featured-end: #17273d;
  --platform-bg: #1d3048;
  --platform-border: #38506b;
  --server-bg: #15243a;
  --mobile-bg: #17263a;
  --glow-a: #153151;
  --glow-b: #111f35;
  --surface-edge: #324157;
  --menu-surface: #172336;
  --menu-hover: #233854;
  --card-border: #2d3c50;
  --featured-start: #192e49;
  --featured-border: #385578;
  --pill-blue-ink: #a6cbff;
  --pill-blue-bg: #203a5b;
  --pill-neutral-bg: #243247;
  --pill-neutral-ink: #c1cfe2;
  --label-ink: #aebed4;
  --feature-ink: #c4d1e2;
  --panel-start: #121e30;
  --panel-mid: #172940;
  --panel-end: #203955;
  --platform-ink: #bdcde1;
  --flow-ink: #bacce3;
  --flow-bg: #23374f;
  --flow-border: #3c506a;
  --flow-icon: #a8cfff;
  --flow-line: #526c8b;
  --detail-line: #31445e;
  --roadmap-line: #3a4b63;
  --status-bg: #233249;
  --status-ink: #c1cfe3;
  --released-bg: #183b36;
  --released-ink: #a0dec9;
  --progress-ink: #afd0ff;
  --progress-bg: #203959;
  --summary-icon: #b0c4e0;
  --mobile-ink: #a3c9ff;
  --mobile-start: #243b59;
  --mobile-end: #18293f;
  --cta-glow: #294e77;
  --cta-start: #16283f;
  --cta-end: #203851;
  --beta-ink: #f1cf96;
  --beta-bg: #473621;
  --strip-icon: #a6bfdc;
  --note-icon: #81c9b8;
  --surface-solid: #172336;
  --surface-glass: rgba(22, 35, 54, 0.86);
  --shine: rgba(190, 215, 255, 0.09);
  --scheme: dark;
  --bg: #0b1422;
  --ink: #edf3fd;
  --muted: #b0bfd4;
  --blue: #91bfff;
  --line: #304158;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --card-start: #192638;
    --card-end: #152132;
    --featured-end: #17273d;
    --platform-bg: #1d3048;
    --platform-border: #38506b;
    --server-bg: #15243a;
    --mobile-bg: #17263a;
    --glow-a: #153151;
    --glow-b: #111f35;
    --surface-edge: #324157;
    --menu-surface: #172336;
    --menu-hover: #233854;
    --card-border: #2d3c50;
    --featured-start: #192e49;
    --featured-border: #385578;
    --pill-blue-ink: #a6cbff;
    --pill-blue-bg: #203a5b;
    --pill-neutral-bg: #243247;
    --pill-neutral-ink: #c1cfe2;
    --label-ink: #aebed4;
    --feature-ink: #c4d1e2;
    --panel-start: #121e30;
    --panel-mid: #172940;
    --panel-end: #203955;
    --platform-ink: #bdcde1;
    --flow-ink: #bacce3;
    --flow-bg: #23374f;
    --flow-border: #3c506a;
    --flow-icon: #a8cfff;
    --flow-line: #526c8b;
    --detail-line: #31445e;
    --roadmap-line: #3a4b63;
    --status-bg: #233249;
    --status-ink: #c1cfe3;
    --released-bg: #183b36;
    --released-ink: #a0dec9;
    --progress-ink: #afd0ff;
    --progress-bg: #203959;
    --summary-icon: #b0c4e0;
    --mobile-ink: #a3c9ff;
    --mobile-start: #243b59;
    --mobile-end: #18293f;
    --cta-glow: #294e77;
    --cta-start: #16283f;
    --cta-end: #203851;
    --beta-ink: #f1cf96;
    --beta-bg: #473621;
    --strip-icon: #a6bfdc;
    --note-icon: #81c9b8;
    --surface-solid: #172336;
    --surface-glass: rgba(22, 35, 54, 0.86);
    --shine: rgba(190, 215, 255, 0.09);
    --scheme: dark;
    --bg: #0b1422;
    --ink: #edf3fd;
    --muted: #b0bfd4;
    --blue: #91bfff;
    --line: #304158;
  }
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-glass);
  color: var(--ink);
}
.theme-toggle:hover {
  background: var(--menu-hover);
}
.theme-toggle .icon {
  width: 21px;
  height: 21px;
}
.theme-toggle .theme-sun {
  display: none;
}
:root[data-theme="dark"] .theme-toggle .theme-sun {
  display: block;
}
:root[data-theme="dark"] .theme-toggle .theme-moon {
  display: none;
}
.theme-preference {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 0.8rem;
  color: var(--muted);
}
.theme-preference:has([hidden]) {
  display: none;
}
.theme-preference button {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.theme-preference button:disabled {
  color: var(--muted);
  text-decoration: none;
}
.site-footer {
  flex-wrap: wrap;
}
@media (min-width: 801px) {
  .site-header {
    gap: 18px;
  }
}
@media (max-width: 800px) {
  .site-header {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .site-header {
    gap: 6px;
    padding-inline: 10px;
  }
  .header-cta {
    padding-inline: 8px;
  }
  .header-cta .icon {
    display: none;
  }
  .hero-note {
    align-items: flex-start;
  }
}
@media print {
  .theme-toggle,
  .theme-preference {
    display: none;
  }
}
/* Keep navigation and the theme switch comfortably within tablet headers. */
@media (min-width: 601px) and (max-width: 1000px) {
  .header-cta {
    display: none;
  }
}

.radar-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid #7899c230;
  background: #10243e;
}
.radar-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #b3c8e3;
}
.radar-tabs button span {
  font-size: 0.75rem;
}
.radar-tabs button strong {
  font-size: 0.875rem;
  font-weight: 600;
}
.radar-tabs button:hover {
  background: #1d3755;
}
.radar-tabs button[aria-selected="true"] {
  color: #f1f6ff;
  background: #284e7b;
  border-color: #6899d166;
  box-shadow: inset 0 1px 0 #ffffff12;
}
.radar-preview-stage {
  min-height: 560px;
}
.radar-preview-stage:focus-visible {
  outline: 3px solid #91bfff;
  outline-offset: -3px;
}
.radar-embed-unavailable {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 560px;
  padding: 36px 26px;
  text-align: center;
}
.radar-embed-unavailable > .icon {
  width: 42px;
  height: 42px;
  color: #91bfff;
}
.radar-embed-unavailable h2 {
  color: #edf3fd;
  font-size: 1.65rem;
}
.radar-embed-unavailable p {
  color: #b3c8e3;
  font-size: 0.95rem;
  max-width: 340px;
}
@media (max-width: 600px) {
  .radar-preview-stage,
  .radar-embed-unavailable {
    min-height: 520px;
  }
  .radar-tabs button {
    flex-direction: column;
    gap: 1px;
  }
}

/* Give the live-preview launch action the same weight as a primary CTA. */
.radar-toolbar {
  flex-wrap: wrap;
}
.radar-toolbar .radar-open {
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  margin-left: auto;
  padding: 11px 18px;
  border: 1px solid #6398ff;
  border-radius: 11px;
  background: linear-gradient(180deg, #2469e6, #1a51c5);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 650;
  box-shadow:
    0 5px 18px #0a10294d,
    inset 0 1px 0 #ffffff30;
  transition:
    transform 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.radar-toolbar .radar-open .icon {
  width: 20px;
  height: 20px;
  color: inherit;
  transition: transform 0.18s;
}
.radar-toolbar .radar-open:hover {
  background: linear-gradient(180deg, #2c73ee, #215bd1);
  transform: translateY(-1px);
  box-shadow:
    0 7px 23px #1a5ddb50,
    inset 0 1px 0 #ffffff40;
}
.radar-toolbar .radar-open:hover .icon {
  transform: translateX(3px);
}
.radar-toolbar .radar-open:focus-visible {
  outline: 3px solid #d7e7ff;
  outline-offset: 4px;
}
.radar-toolbar .radar-open:active {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .radar-toolbar .radar-open {
    width: 100%;
    margin-top: 6px;
  }
}
