:root {
  color-scheme: light;
  --ink: #101d32;
  --muted: #526176;
  --blue: #075bd8;
  --mist: #f5f7fb;
  --line: #dce3ec;
  --navy: #0e2138;
  --radius: 28px;
  --font:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid #075bd8;
  outline-offset: 5px;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}
.section-space {
  padding-block: 116px;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1 {
  font-size: clamp(60px, 7.4vw, 104px);
  font-weight: 650;
  line-height: 1.015;
  letter-spacing: -0.066em;
}
h2 {
  font-size: clamp(38px, 4.9vw, 64px);
  font-weight: 620;
  line-height: 1.07;
  letter-spacing: -0.047em;
}
h3 {
  letter-spacing: -0.032em;
  font-weight: 620;
}
p {
  line-height: 1.6;
  text-wrap: pretty;
}
.section-label {
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 20px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 65px;
  margin-bottom: 46px;
}
.section-heading > p {
  max-width: 345px;
  font-size: 19px;
  color: var(--muted);
  padding-bottom: 4px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 49px;
  padding: 13px 25px;
  background: var(--blue);
  color: white;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 550;
  font-size: 15px;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.button:hover {
  background: #064bac;
  text-decoration: none;
  box-shadow: 0 4px 18px #075bd820;
}
.button-small {
  min-height: 38px;
  padding: 8px 17px;
  font-size: 13px;
  gap: 15px;
}
.text-link {
  color: var(--blue);
  font-size: 16px;
  font-weight: 550;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}
.text-link span {
  display: inline-block;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(2px, -2px);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  background: var(--ink);
  color: white;
  padding: 15px;
  z-index: 100;
  border-radius: 10px;
}
.skip-link:focus {
  top: 15px;
}
.site-header {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 30;
}
.nav-glass {
  width: min(1040px, calc(100% - 48px));
  min-height: 66px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 16px 10px 20px;
  border: 1px solid #fff;
  border-radius: 100px;
  background: #fffffff0;
  box-shadow:
    0 3px 8px #38557905,
    0 12px 35px #3855790c;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 21px;
  letter-spacing: -0.6px;
  font-weight: 650;
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  border-radius: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 13px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 155px;
  background: linear-gradient(180deg, #f3f7ff 0%, #fff 56%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-intro {
  font-size: 15px;
  font-weight: 550;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero-description {
  font-size: 20px;
  color: var(--muted);
  margin: 24px auto 0;
  line-height: 1.55;
}
.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  margin-top: 28px;
}
.platform-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
.platform-note span {
  margin: 0 8px;
}
.product-stage {
  height: 630px;
  position: relative;
  margin-top: 58px;
  border-radius: 38px;
  background:
    radial-gradient(ellipse at 63% 80%, #98c9ff85, transparent 60%),
    linear-gradient(130deg, #eaf1fc, #f7faff 55%, #e0edff);
  border: 1px solid #e2ebf7;
  overflow: hidden;
  isolation: isolate;
}
.stage-message {
  position: absolute;
  top: 66px;
  left: 55px;
  z-index: 3;
}
.tiny-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4c6380;
  font-size: 12px;
  font-weight: 500;
}
.tiny-status > span {
  width: 6px;
  height: 6px;
  background: #078564;
  border-radius: 50%;
}
.stage-message > p {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 600;
  margin: 22px 0 16px;
}
.stage-caption {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.stage-orbit {
  position: absolute;
  border: 1px solid #ffffffd9;
  box-shadow:
    inset 0 0 30px #ffffff40,
    0 10px 30px #94baff12;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.orbit-one {
  width: 1020px;
  height: 600px;
  transform: rotate(-28deg);
  left: 15%;
  top: 150px;
}
.orbit-two {
  width: 990px;
  height: 580px;
  transform: rotate(-28deg);
  left: 23%;
  top: 200px;
}
.app-preview {
  position: absolute;
  right: 15%;
  top: 34px;
  width: 325px;
  border: 1px solid #ffffffc0;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 32px 60px #17315c30,
    0 5px 13px #17315c15;
  transform: rotate(2deg);
  animation: arrive 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) both;
  overflow: hidden;
}
.preview-menubar {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  background: #f2f5f9;
  padding: 7px 12px;
}
.app-preview > img {
  width: 100%;
}
.app-preview figcaption {
  font-size: 10px;
  color: var(--muted);
  padding: 7px 10px;
  background: #fafbfe;
  text-align: center;
}
.stage-badge {
  position: absolute;
  right: 34px;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #ffffffd9;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #fff;
  border-radius: 18px;
  padding: 17px 22px;
  box-shadow: 0 10px 35px #58739f16;
}
.stage-badge strong,
.stage-badge div > span {
  display: block;
  font-size: 12px;
  line-height: 1.65;
}
.stage-badge div > span {
  color: var(--muted);
}
.status-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #008a61;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #008a610e;
}
.hero-mascot {
  position: absolute;
  left: 72px;
  bottom: 5px;
  width: 290px;
  z-index: 2;
}
.intro-section {
  text-align: center;
  padding-block: 115px;
}
.intro-section h2 {
  font-size: clamp(34px, 4.2vw, 54px);
}
.intro-section > p:not(.section-label) {
  max-width: 610px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 19px;
}
.coverage {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}
.coverage > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 550;
}
.coverage svg {
  width: 25px;
  height: 25px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.features-section {
  background: var(--mist);
}
.feature-picker {
  position: relative;
  isolation: isolate;
  display: flex;
  gap: 5px;
  padding: 6px;
  background: #e7ecf3;
  border: 1px solid #e0e7f0;
  border-radius: 100px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 24px;
}
.feature-picker button {
  position: relative;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  border-radius: 100px;
  padding: 12px 25px;
  font-size: 14px;
  min-height: 44px;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.feature-picker button[aria-selected="true"] {
  background: #fff;
  color: var(--ink);
  border-color: #e0e5ed;
  box-shadow: 0 2px 7px #18395e0b;
}
.feature-picker.has-indicator::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: var(--tab-width);
  height: var(--tab-height);
  transform: translate(var(--tab-x), var(--tab-y));
  background: #fff;
  border: 1px solid #e0e5ed;
  border-radius: 100px;
  box-shadow: 0 2px 7px #18395e0b;
  pointer-events: none;
}
.feature-picker.indicator-animated::before {
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-picker.has-indicator button[aria-selected="true"] {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.feature-picker button:hover {
  color: var(--blue);
}
.feature-panel {
  display: grid;
  grid-template-columns: 44% 56%;
  background: #fff;
  border: 1px solid #e5eaf2;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 560px;
}
.feature-panel + .feature-panel {
  margin-top: 24px;
}
.feature-copy {
  padding: 48px 44px;
}
.feature-index {
  font-size: 12px;
  color: #627084;
  display: block;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.feature-copy h3 {
  font-size: 36px;
  line-height: 1.12;
  margin-bottom: 23px;
}
.feature-copy > p {
  font-size: 17px;
  color: var(--muted);
}
.feature-copy > .feature-detail {
  font-size: 14px;
  margin: 18px 0 17px;
  color: #607087;
}
.feature-art {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8eff8, #edf4fc 45%, #dbe8f9);
  padding: 32px;
  overflow: hidden;
}
.feature-art img {
  box-shadow: 0 18px 40px #253d5e22;
  border-radius: 10px;
  object-fit: contain;
  max-height: 470px;
  width: auto;
}
.feature-art figcaption {
  font-size: 10px;
  text-align: center;
  color: #536780;
  margin-top: 17px;
}
.panel-art img {
  max-height: 450px;
}
.wide-art img {
  max-width: 100%;
  height: auto;
}
.package-art img {
  max-height: 435px;
  width: auto;
}
.expiry-section {
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.expiry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  min-height: 620px;
  padding-block: 90px;
}
.expiry-copy .section-label {
  color: #a5c9ff;
}
.expiry-copy > p:not(.section-label) {
  font-size: 18px;
  color: #bccbde;
  margin-top: 26px;
  max-width: 450px;
}
.expiry-copy .text-link {
  color: #a5c9ff;
  margin-top: 25px;
}
.expiry-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.time-ring {
  position: relative;
  width: 320px;
  max-width: 100%;
  aspect-ratio: 1;
}
.time-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  fill: none;
  stroke-width: 3;
}
.ring-track {
  stroke: #2c415b;
}
.ring-progress {
  stroke: #9cc4ff;
  stroke-dasharray: 675 861;
  stroke-linecap: round;
}
.time-ring > div {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.time-ring span {
  font-size: 12px;
  color: #b6c8de;
}
.time-ring strong {
  font-size: 66px;
  font-weight: 400;
  letter-spacing: -4px;
  font-variant-numeric: tabular-nums;
}
.expiry-note {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #c8d6e7;
  margin-top: 25px;
}
.expiry-note .status-dot {
  background: #66dbac;
}
.expiry-mascot {
  position: absolute;
  width: 155px;
  right: -25px;
  bottom: 27px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 25px 0 65px;
}
.trust-row svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 20px;
}
.trust-row h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.trust-row p {
  font-size: 16px;
  color: var(--muted);
  max-width: 280px;
}
.permissions {
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.permissions-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.permissions-heading h3 {
  font-size: 27px;
}
.permissions-heading a {
  font-size: 14px;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
}
thead {
  background: var(--mist);
  color: #44556b;
  font-size: 12px;
}
th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
thead th {
  font-weight: 600;
}
tbody th {
  width: 33%;
  font-weight: 550;
}
tbody th span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 3px;
}
td {
  color: var(--muted);
}
.consent-note {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 550;
}
.risk-details {
  margin-top: 19px;
  color: var(--muted);
  font-size: 14px;
}
.risk-details summary {
  cursor: pointer;
  min-height: 44px;
  align-content: center;
  width: fit-content;
  color: var(--ink);
  font-weight: 550;
}
.risk-details p {
  max-width: 820px;
  padding-top: 6px;
}
.enterprise-section {
  background: #eef3fb;
}
.enterprise-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.enterprise-top > div > p:not(.section-label) {
  font-size: 23px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 22px;
}
.enterprise-mascot {
  width: 245px;
  margin-right: 65px;
}
.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  margin: 60px 0 28px;
}
.enterprise-grid h3 {
  font-size: 23px;
  margin-bottom: 12px;
}
.enterprise-grid p {
  color: var(--muted);
  font-size: 16px;
  max-width: 455px;
}
.enterprise-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-top: 1px solid #d7e0ee;
  padding-top: 24px;
  margin-top: 40px;
}
.enterprise-tools a {
  font-size: 12px;
  color: var(--muted);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.download-heading {
  text-align: center;
}
.download-heading img {
  margin: 0 auto 26px;
  border-radius: 17px;
}
.download-heading > p {
  color: var(--muted);
  font-size: 19px;
  margin-top: 23px;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 70px;
}
.download-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.download-grid article + article {
  border-left: 1px solid var(--line);
}
.platform-symbol {
  display: block;
  height: 36px;
  width: 36px;
  font-size: 35px;
  line-height: 36px;
  margin-bottom: 21px;
  fill: var(--ink);
}
.terminal-symbol {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 27px;
  font-weight: 500;
  width: auto;
}
.download-grid h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.download-grid article > p {
  font-size: 14px;
  color: var(--muted);
}
.system-requirement {
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0 22px;
}
.download-grid .button {
  font-size: 13px;
  padding-inline: 20px;
  gap: 12px;
}
.quiet-link {
  font-size: 13px;
  color: var(--blue);
  padding-block: 15px;
  min-height: 44px;
}
.download-grid article > .download-note {
  font-size: 11px;
  max-width: 225px;
  margin-top: 0;
}
.terminal-example {
  background: var(--navy);
  color: #e7effc;
  border-radius: 17px;
  padding: 19px 22px;
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.terminal-example > div {
  display: flex;
  align-items: baseline;
  gap: 15px;
  min-width: 0;
}
.terminal-prompt {
  color: #8ab8fa;
}
.terminal-example code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.copy-button {
  background: #263d58;
  color: #fff;
  border: 1px solid #52667f;
  border-radius: 8px;
  padding: 8px 13px;
  white-space: nowrap;
  font-size: 11px;
  min-height: 40px;
}
.copy-button:hover {
  background: #375373;
}
.setup-note {
  text-align: center;
  max-width: 690px;
  margin: 36px auto 0;
}
.setup-note strong {
  font-size: 15px;
}
.setup-note p {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 5px;
}
.setup-note .text-link {
  font-size: 13px;
}
.guides-section {
  padding: 20px 0 105px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.guides-section h2 {
  font-size: 45px;
  margin-bottom: 20px;
}
.guides-section .text-link {
  font-size: 14px;
}
.guide-links > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.guide-links > a:first-child {
  padding-top: 5px;
  min-height: 44px;
}
.guide-links > a > span:last-child {
  color: var(--blue);
}
.site-footer {
  padding-bottom: 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 30px;
}
.footer-top > p {
  font-size: 12px;
  color: var(--muted);
}
.footer-top .text-link {
  font-size: 13px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-bottom > div {
  display: flex;
  gap: 22px;
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.independence-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 18px;
}
.mascot-slot:empty {
  display: none;
}
@keyframes arrive {
  from {
    opacity: 0;
    translate: 0 22px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 170px;
  }
}
@media (max-width: 1000px) {
  .app-preview {
    right: 8%;
  }
  .hero-mascot {
    left: 40px;
    width: 250px;
  }
  .stage-message {
    left: 40px;
  }
  .stage-message > p {
    font-size: 40px;
  }
  .stage-badge {
    right: 18px;
  }
  .feature-copy {
    padding: 36px 28px;
  }
  .feature-copy h3 {
    font-size: 30px;
  }
  .feature-art {
    padding: 23px;
  }
  .expiry-layout {
    gap: 35px;
  }
  .expiry-mascot {
    right: -10px;
    width: 125px;
  }
  .enterprise-mascot {
    margin-right: 0;
  }
  .download-grid {
    gap: 8px;
  }
  .download-grid article {
    padding-inline: 10px;
  }
  .nav-links {
    gap: 24px;
  }
  .terminal-example code {
    font-size: 11px;
  }
  .footer-top > p {
    display: none;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 25px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section-space {
    padding-block: 76px;
  }
  .site-header {
    top: 14px;
  }
  .nav-glass {
    width: calc(100% - 28px);
    padding: 10px 12px;
    min-height: 58px;
    gap: 10px;
  }
  .brand {
    font-size: 19px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 12px;
  }
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) {
    display: none;
  }
  .button-small {
    padding: 8px 14px;
    font-size: 12px;
  }
  .hero {
    padding-top: 128px;
  }
  h1 {
    font-size: clamp(49px, 9.8vw, 74px);
  }
  .hero-intro {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 17px;
    max-width: 440px;
    padding-inline: 4px;
    margin-top: 24px;
  }
  .desktop-break {
    display: none;
  }
  .actions {
    gap: 20px;
    margin-top: 25px;
  }
  .actions .text-link {
    font-size: 14px;
  }
  .platform-note {
    font-size: 10px;
    max-width: 300px;
    margin-inline: auto;
    line-height: 1.8;
  }
  .platform-note span {
    margin-inline: 4px;
  }
  .product-stage {
    height: 535px;
    margin-top: 36px;
    border-radius: 25px;
  }
  .stage-message {
    left: 28px;
    top: 26px;
  }
  .tiny-status {
    font-size: 10px;
  }
  .stage-message > p {
    font-size: 28px;
    letter-spacing: -1px;
    margin: 13px 0;
  }
  .stage-caption {
    display: none;
  }
  .app-preview {
    width: 245px;
    right: 7%;
    top: 54px;
  }
  .hero-mascot {
    width: 170px;
    left: 5px;
    bottom: 35px;
  }
  .stage-message {
    z-index: 4;
    max-width: 150px;
  }
  .stage-badge {
    right: 14px;
    bottom: 17px;
    padding: 11px 14px;
    border-radius: 13px;
    gap: 10px;
  }
  .stage-badge strong,
  .stage-badge div > span {
    font-size: 10px;
  }
  .orbit-one {
    left: -30%;
    top: 180px;
  }
  .orbit-two {
    left: -20%;
    top: 220px;
  }
  .intro-section {
    padding-block: 76px;
  }
  .intro-section > p:not(.section-label) {
    font-size: 17px;
  }
  .coverage {
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .coverage > span {
    font-size: 12px;
    gap: 7px;
  }
  .coverage svg {
    width: 21px;
    height: 21px;
  }
  .section-label {
    font-size: 13px;
    margin-bottom: 17px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p {
    font-size: 17px;
    margin-top: 22px;
    max-width: 450px;
  }
  .feature-picker {
    width: 100%;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 16px;
  }
  .feature-picker button {
    padding: 10px 7px;
    font-size: 12px;
    border-radius: 10px;
  }
  .feature-picker.has-indicator::before {
    border-radius: 10px;
  }
  .feature-panel {
    grid-template-columns: 1fr;
    border-radius: 22px;
    min-height: 0;
  }
  .feature-copy {
    padding: 30px 27px;
  }
  .feature-index {
    margin-bottom: 22px;
    font-size: 10px;
  }
  .feature-copy h3 {
    font-size: 33px;
  }
  .feature-copy > p {
    font-size: 16px;
  }
  .feature-copy .text-link {
    font-size: 14px;
  }
  .feature-art {
    min-height: 335px;
    padding: 25px;
  }
  .feature-art img {
    max-height: 400px;
  }
  .panel-art img {
    max-height: 390px;
  }
  .feature-art figcaption {
    font-size: 9px;
  }
  .expiry-layout {
    grid-template-columns: 1fr;
    padding-block: 70px;
    gap: 45px;
  }
  .expiry-copy > p:not(.section-label) {
    font-size: 17px;
  }
  .expiry-copy .text-link {
    font-size: 14px;
  }
  .expiry-visual {
    max-width: 380px;
    width: 100%;
    margin: auto;
  }
  .time-ring {
    width: 280px;
  }
  .expiry-mascot {
    right: 0;
  }
  .trust-row {
    gap: 23px;
    grid-template-columns: 1fr;
    padding: 7px 0 40px;
  }
  .trust-row > div {
    position: relative;
    padding-left: 50px;
  }
  .trust-row svg {
    position: absolute;
    left: 0;
    top: 4px;
    width: 28px;
    height: 28px;
  }
  .trust-row h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .trust-row p {
    max-width: 100%;
    font-size: 15px;
  }
  .permissions {
    padding-top: 25px;
  }
  .permissions-heading {
    display: block;
    margin-bottom: 15px;
  }
  .permissions-heading h3 {
    font-size: 25px;
  }
  .permissions-heading a {
    font-size: 12px;
    margin-top: 8px;
  }
  th,
  td {
    padding: 14px 10px;
  }
  table {
    font-size: 13px;
  }
  thead {
    font-size: 11px;
  }
  tbody th {
    width: 40%;
  }
  tbody th span {
    font-size: 10px;
  }
  .consent-note {
    font-size: 13px;
  }
  .risk-details {
    font-size: 13px;
  }
  .enterprise-top {
    gap: 8px;
    align-items: center;
  }
  .enterprise-top h2 {
    font-size: 40px;
  }
  .enterprise-top > div > p:not(.section-label) {
    font-size: 18px;
  }
  .enterprise-mascot {
    width: 130px;
    flex-shrink: 0;
  }
  .enterprise-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 38px;
  }
  .enterprise-grid h3 {
    font-size: 21px;
  }
  .enterprise-grid p {
    font-size: 15px;
  }
  .enterprise-section .text-link {
    font-size: 14px;
  }
  .enterprise-tools {
    gap: 4px 20px;
    margin-top: 28px;
    padding-top: 18px;
  }
  .enterprise-tools a {
    font-size: 11px;
  }
  .download-heading > p {
    font-size: 16px;
  }
  .download-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
    gap: 35px;
  }
  .download-grid article {
    padding-bottom: 30px;
  }
  .download-grid article + article {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 35px;
  }
  .download-grid .platform-symbol {
    margin-bottom: 16px;
  }
  .download-grid .button {
    width: 220px;
  }
  .terminal-example {
    margin-top: 5px;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }
  .terminal-example code {
    font-size: 12px;
  }
  .copy-button {
    align-self: flex-end;
  }
  .setup-note {
    margin-top: 30px;
  }
  .guides-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 65px;
  }
  .guides-section h2 {
    font-size: 38px;
  }
  .guide-links > a {
    font-size: 14px;
  }
  .footer-top {
    flex-wrap: wrap;
    padding-block: 25px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom > div {
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-bottom a {
    display: inline-block;
    padding-block: 6px;
  }
  .independence-note {
    margin-top: 12px;
  }
}
@media (max-width: 440px) {
  .nav-links {
    gap: 10px;
  }
  .nav-links a:first-child {
    display: none;
  }
  .hero-description {
    max-width: 330px;
  }
  .app-preview {
    width: 232px;
    right: 17px;
    top: 87px;
  }
  .stage-message {
    top: 24px;
    left: 23px;
  }
  .stage-message > p {
    font-size: 24px;
  }
  .tiny-status {
    font-size: 9px;
  }
  .hero-mascot {
    width: 137px;
    left: 0;
    bottom: 48px;
  }
  .product-stage {
    height: 540px;
  }
  .enterprise-top h2 {
    font-size: 35px;
  }
  .enterprise-mascot {
    width: 100px;
  }
  .enterprise-top > div > p:not(.section-label) {
    font-size: 16px;
  }
  .button {
    gap: 14px;
  }
  .actions {
    gap: 16px;
  }
}
@media (forced-colors: active) {
  .nav-glass,
  .button,
  .feature-picker,
  .stage-badge {
    border: 1px solid ButtonText;
  }
  .feature-picker button[aria-selected="true"] {
    outline: 2px solid Highlight;
  }
  .status-dot,
  .tiny-status > span {
    background: CanvasText;
  }
}
/* Blend the supplied artwork into the product stage without altering the source assets. */
.hero-mascot {
  mix-blend-mode: multiply;
  mask-image: radial-gradient(ellipse, black 55%, transparent 73%);
  -webkit-mask-image: radial-gradient(ellipse, black 55%, transparent 73%);
}
.expiry-mascot {
  mask-image: radial-gradient(ellipse, black 52%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse, black 52%, transparent 72%);
}
/* Keep navigation within reach and reserve room above the preview on narrow screens. */
.site-header {
  position: fixed;
}
.feature-panel[role="tabpanel"] {
  margin-top: 0;
}
@media (min-width: 761px) {
  .hero {
    padding-top: 140px;
  }
  .hero h1 {
    font-size: clamp(60px, 6.8vw, 96px);
    letter-spacing: -0.055em;
  }
  .product-stage {
    margin-top: 44px;
  }
  .hero-mascot {
    bottom: 22px;
    width: 320px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 100px;
  }
  .product-stage {
    height: 590px;
  }
  .app-preview {
    top: 130px;
  }
  .hero-mascot {
    width: 170px;
    bottom: 40px;
    left: -12px;
  }
  .stage-message {
    max-width: none;
  }
  .stage-message > p {
    font-size: 25px;
  }
  .enterprise-top {
    flex-wrap: wrap;
  }
  .enterprise-mascot {
    max-width: 30%;
  }
}
@media (max-width: 440px) {
  .app-preview {
    top: 125px;
  }
  .product-stage {
    height: 580px;
  }
  .hero-mascot {
    width: 153px;
    bottom: 43px;
  }
}
@media (min-width: 761px) {
  .product-stage {
    height: 660px;
  }
}
@media (max-width: 760px) {
  .stage-badge {
    display: none;
  }
  .hero-mascot {
    left: 0;
  }
}
