@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Code:wght@400;500;600&family=Google+Sans+Flex:opsz,wght@6..144,300..700&display=swap");

:root {
  --ink: #121317;
  --muted: #5f6368;
  --soft: #f7f8fa;
  --soft-blue: #edf3ff;
  --soft-green: #edf9f4;
  --soft-violet: #f3efff;
  --line: #e1e3e7;
  --white: #ffffff;
  --blue: #5b8cff;
  --cyan: #67d6f2;
  --green: #46d49a;
  --yellow: #f2c94c;
  --red: #ff6b76;
  --terminal: #282d37;
  --terminal-dark: #17191f;
  --terminal-line: #3b414e;
  --max-width: 1600px;
  --contact-bg: #121317;
  --contact-text: #ffffff;
  --contact-muted: #b7bcb5;
  /* Change this one value to adjust every framed application image. */
  --product-image-radius: 5px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f1f2ee;
  --muted: #a4aaa4;
  --soft: #191d1b;
  --line: #343a36;
  --white: #101311;
  --contact-bg: #070a08;
  --contact-text: #f1f2ee;
  --contact-muted: #a4aaa4;
}

html[data-theme="army"] {
  color-scheme: dark;
  --ink: #edefd8;
  --muted: #a4ad8e;
  --soft: #20291e;
  --line: #45553d;
  --white: #182117;
  --blue: #b9c368;
  --green: #aab95e;
  --contact-bg: #0e150d;
  --contact-text: #edefd8;
  --contact-muted: #a4ad8e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Google Sans Flex", "Google Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color 220ms ease, color 220ms ease;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: #dce7ff;
  color: var(--ink);
}

.site-shell {
  width: min(calc(100% - 144px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 52px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 52px;
  gap: 52px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  justify-self: end;
}

.desktop-nav a {
  position: relative;
  color: #414247;
  font-size: 15px;
  font-weight: 450;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  color: var(--blue);
  transform: rotate(8deg) scale(1.08);
}

.theme-toggle span {
  display: block;
  line-height: 1;
  animation: theme-icon-in 240ms ease both;
}

.theme-toggle svg {
  display: block;
  width: 21px;
  height: 21px;
}

.theme-toggle[data-theme-icon="army"] {
  color: #aeb95b;
}

.mobile-theme {
  padding: 10px 12px 8px;
  border-top: 1px solid var(--line);
}

.nav-signal {
  color: #5b8cff;
  font-family: "Google Sans Code", monospace;
  font-size: 25px;
  transform: rotate(-8deg);
}

.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(18, 19, 23, 0.18);
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  box-shadow: 0 12px 28px rgba(18, 19, 23, 0.18);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-text {
  padding-inline: 10px;
  color: #3f4147;
}

.button-text span {
  transition: transform 180ms ease;
}

.button-text:hover span {
  transform: translate(2px, -2px);
}

.overline {
  margin: 0;
  color: #777b82;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.home-hero {
  height: 790px;
  min-height: 720px;
  background: var(--white);
}

.home-hero-inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding-top: 86px;
}

.home-hero-inner > div {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.home-hero h1 {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 80px;
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1.1;
}

.headline-cursor {
  display: inline-block;
  width: 4px;
  height: 0.82em;
  margin: 0 0 0 7px;
  border-radius: 8px;
  background: linear-gradient(to bottom, var(--blue), var(--green), var(--yellow), var(--red));
  box-shadow: 0 0 8px rgba(91, 140, 255, 0.38);
  animation: cursor-blink 1.1s steps(2, end) infinite;
}

.home-hero-inner > div > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.home-hero-actions {
  margin-top: 30px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.showcase-section,
.product-showcase-section,
.about-media-section {
  background: var(--white);
}

.showcase-section {
  padding-top: 112px;
}

.showcase-stage,
.product-showcase-stage,
.about-media-stage {
  position: relative;
  height: auto;
  aspect-ratio: 2048 / 1252;
  overflow: hidden;
  border-radius: var(--product-image-radius);
  background: #202a1f;
}

.showcase-product-image,
.product-showcase-image,
.about-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.showcase-product-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--product-image-radius);
  background: #111711;
  object-fit: contain;
  object-position: center;
}

.showcase-video-stage {
  aspect-ratio: 1600 / 968;
}

.about-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 5, 4, 0.68), rgba(3, 5, 4, 0.02) 42%, rgba(3, 5, 4, 0.18));
}

.signal-specks,
.product-specks,
.about-media-specks {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 22%, rgba(91, 140, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 28%, rgba(70, 212, 154, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 79% 19%, rgba(103, 214, 242, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 33%, rgba(242, 201, 76, 0.85) 0 1.5px, transparent 2px),
    radial-gradient(circle at 33% 18%, rgba(91, 140, 255, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 38%, rgba(255, 107, 118, 0.35) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 48%, rgba(91, 140, 255, 0.16), transparent 24%),
    radial-gradient(circle at 35% 40%, rgba(70, 212, 154, 0.1), transparent 22%);
  opacity: 0.9;
}

.signal-specks::before,
.product-specks::before,
.about-media-specks::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.24) 0.7px, transparent 0.8px);
  background-size: 44px 44px;
  content: "";
  mask-image: radial-gradient(circle at 60% 38%, #000, transparent 65%);
}

.terminal-window {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid #444a58;
  border-radius: 14px;
  background: var(--terminal);
  color: #ecf0f6;
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-family: "Google Sans Code", ui-monospace, monospace;
}

.terminal-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--terminal-line);
  background: #232730;
}

.terminal-dots {
  display: flex;
  gap: 7px;
}

.terminal-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
}

.terminal-dots span:nth-child(2) {
  background: var(--yellow);
}

.terminal-dots span:nth-child(3) {
  background: var(--green);
}

.terminal-title {
  color: #9ca4b1;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.terminal-live {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 6px;
  color: #a7e8cc;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.terminal-live::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(70, 212, 154, 0.1);
  content: "";
}

.terminal-body {
  position: relative;
  padding: 28px 32px 34px;
}

.terminal-brand-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.terminal-brand-row > div {
  display: grid;
}

.terminal-brand-row strong {
  font-family: "Google Sans Flex", "Google Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.terminal-brand-row span {
  color: #838c9a;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.terminal-command {
  color: #f6f8fb;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.terminal-command > span {
  margin-right: 9px;
  color: #82a8ff;
}

.terminal-command i {
  display: inline-block;
  width: 7px;
  height: 1.1em;
  margin-left: 6px;
  background: #82a8ff;
  vertical-align: -2px;
  animation: cursor-blink 1s steps(2, end) infinite;
}

.terminal-content-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  align-items: end;
  gap: 34px;
  margin-top: 24px;
}

.terminal-lines {
  display: grid;
  gap: 10px;
}

.terminal-line {
  display: grid;
  grid-template-columns: 22px 1fr;
  color: #b7bfcb;
  font-size: 11px;
  white-space: pre;
}

.terminal-line .line-prefix {
  color: #777f8c;
}

.terminal-line.good .line-prefix {
  color: var(--green);
}

.terminal-line.blue .line-prefix {
  color: #82a8ff;
}

.terminal-line.yellow .line-prefix {
  color: var(--yellow);
}

.terminal-line.muted {
  color: #7f8794;
}

.route-map {
  min-width: 0;
  padding: 18px 18px 12px;
  border: 1px solid #3d4350;
  border-radius: 9px;
  background: rgba(18, 20, 25, 0.33);
}

.route-map svg {
  display: block;
  width: 100%;
  height: 94px;
  overflow: visible;
}

.route-map path {
  fill: none;
  stroke: url("#route-gradient");
  stroke: #6f9cff;
  stroke-width: 2.2;
}

.route-map circle {
  fill: var(--terminal);
  stroke: var(--green);
  stroke-width: 3;
}

.route-map circle:nth-of-type(2),
.route-map circle:nth-of-type(3) {
  stroke: #7fa5ff;
}

.route-map circle:last-of-type {
  stroke: var(--yellow);
}

.route-labels {
  display: flex;
  justify-content: space-between;
  color: #717a88;
  font-size: 8px;
  text-transform: uppercase;
}

.concept-label {
  position: absolute;
  right: 13px;
  bottom: 9px;
  color: #59616e;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.terminal-compact {
  min-height: 255px;
}

.terminal-compact .terminal-body {
  padding: 28px;
}

.terminal-compact .terminal-content-grid {
  display: block;
  margin-top: 25px;
}

.platform-intro {
  padding: 60px 0 180px;
  background: var(--white);
}

.platform-intro-inner,
.center-heading {
  max-width: 840px;
  text-align: center;
}

.platform-intro-inner {
  margin-inline: auto;
}

.platform-intro h2,
.center-heading h2,
.developer-heading h2 {
  margin: 18px 0 0;
  font-size: 48px;
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.platform-intro-inner > p:last-child,
.center-heading > p:last-child,
.developer-heading > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.product-rows-section {
  padding-bottom: 190px;
  background: var(--white);
}

.product-rows {
  display: grid;
  gap: 170px;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(570px, 8fr);
  align-items: center;
  gap: 80px;
}

.product-row-copy {
  max-width: 390px;
}

.product-glyph {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 13px;
  font-family: "Google Sans Code", monospace;
  font-size: 18px;
}

.product-glyph-blue {
  background: #e8f0ff;
  color: #3c73e8;
}

.product-glyph-violet {
  background: #eee8ff;
  color: #7255d9;
}

.product-glyph-green {
  background: #e5f8ef;
  color: #179c6a;
}

.product-row-copy h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 450;
  letter-spacing: -0.035em;
}

.product-row-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.product-row-copy > a,
.contact-options-grid article > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 500;
}

.product-row-copy > a span,
.contact-options-grid article > a span {
  transition: transform 180ms ease;
}

.product-row-copy > a:hover span,
.contact-options-grid article > a:hover span {
  transform: translate(2px, -2px);
}

.product-row-media {
  display: grid;
  min-height: 570px;
  place-items: center;
  padding: 64px;
  border-radius: var(--product-image-radius);
}

.product-row-image,
.getting-started-image,
.contact-product-image {
  width: 100%;
  height: auto;
  border: 1px solid rgba(147, 167, 118, 0.28);
  border-radius: var(--product-image-radius);
  object-fit: contain;
  object-position: center;
  box-shadow: 0 24px 60px rgba(19, 28, 18, 0.2);
}

.product-media-blue {
  background:
    radial-gradient(circle at 70% 18%, rgba(91, 140, 255, 0.26), transparent 30%),
    #f3f6fb;
}

.product-media-violet {
  background:
    radial-gradient(circle at 20% 76%, rgba(143, 109, 255, 0.22), transparent 30%),
    #f6f4fa;
}

.product-media-green {
  background:
    radial-gradient(circle at 78% 28%, rgba(70, 212, 154, 0.22), transparent 30%),
    #f2f8f5;
}

.product-row-media .terminal-window {
  width: 100%;
}

.developer-section {
  padding: 180px 0;
  background: #f8f9fb;
}

.developer-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 120px;
}

.benefit-grid article,
.secondary-benefit-grid article,
.about-principle-grid article {
  min-height: 240px;
}

.benefit-icon,
.outline-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-family: "Google Sans Code", monospace;
  font-size: 20px;
}

.benefit-grid h3,
.secondary-benefit-grid h3,
.about-principle-grid h3 {
  margin: 42px 0 12px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.benefit-grid p,
.secondary-benefit-grid p,
.about-principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.home-cta-section {
  padding: 150px 0;
  background: var(--white);
}

.home-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-cta-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 56px;
  border-radius: 32px;
}

.home-cta-card > span {
  margin-bottom: auto;
  font-size: 14px;
  font-weight: 500;
}

.home-cta-card h2 {
  max-width: 600px;
  margin: 0 0 34px;
  font-size: 44px;
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.home-cta-dark {
  background: var(--ink);
  color: var(--white);
}

.home-cta-dark > span {
  color: #aeb3bc;
}

.home-cta-light {
  background: #f1f3f7;
}

.product-hero,
.contact-hero {
  padding: 84px 0 60px;
  background: var(--white);
}

.product-hero-inner,
.contact-hero-inner {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.product-hero h1,
.contact-hero h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 450;
  letter-spacing: -0.018em;
  line-height: 1.04;
}

.product-hero p,
.contact-hero p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.product-hero .button,
.contact-hero .button {
  margin-top: 34px;
}

.product-showcase-image {
  object-position: center;
}

.feature-section {
  padding: 180px 0 190px;
  background: var(--white);
}

.center-heading {
  margin-inline: auto;
}

.primary-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 100px;
}

.primary-feature-card h3 {
  margin: 31px 0 10px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.primary-feature-card > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.feature-media {
  display: grid;
  min-height: 560px;
  overflow: hidden;
  place-items: center;
  padding: 52px;
  border-radius: var(--product-image-radius);
}

.feature-product-image {
  width: 100%;
  border: 1px solid rgba(147, 167, 118, 0.28);
  border-radius: var(--product-image-radius);
  box-shadow: 0 24px 60px rgba(19, 28, 18, 0.2);
}

.feature-media-blue {
  background: linear-gradient(145deg, #eef3ff, #f8faff);
}

.feature-media-green {
  background: linear-gradient(145deg, #ebf8f3, #f8fcfa);
}

.feature-media .terminal-window {
  width: 100%;
}

.secondary-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 54px;
  margin-top: 170px;
}

.getting-started-section {
  padding: 170px 0;
  background: #f8f9fb;
}

.getting-started-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: 76px;
  min-height: 650px;
  margin-top: 100px;
  padding: 74px;
  border-radius: var(--product-image-radius);
  background:
    radial-gradient(circle at 82% 20%, rgba(91, 140, 255, 0.22), transparent 28%),
    var(--white);
}

.getting-started-copy > span {
  color: #747982;
  font-family: "Google Sans Code", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.getting-started-copy h3 {
  margin: 30px 0 0;
  font-size: 39px;
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.getting-started-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 60px;
}

.steps-grid article {
  padding-top: 26px;
  border-top: 1px solid #dfe2e7;
}

.steps-grid article > span {
  color: #858a92;
  font-family: "Google Sans Code", monospace;
  font-size: 10px;
}

.steps-grid h3 {
  margin: 48px 0 8px;
  font-size: 22px;
  font-weight: 500;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.availability-section {
  padding: 150px 0;
  background: var(--ink);
  color: var(--white);
}

.availability-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 100px;
}

.availability-inner > div {
  max-width: 850px;
}

.availability-inner .overline {
  color: #9da3ad;
}

.availability-inner h2 {
  margin: 18px 0 0;
  font-size: 54px;
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.availability-inner > div > p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: #aeb3bc;
  font-size: 17px;
  line-height: 1.6;
}

.simple-page-hero {
  padding: 145px 0 120px;
  background: var(--white);
}

.simple-page-hero-inner {
  max-width: 1050px;
  margin-inline: auto;
  text-align: center;
}

.simple-page-hero h1 {
  margin: 22px 0 0;
  font-size: 64px;
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.simple-page-hero-inner > p:last-child {
  max-width: 690px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.about-media-brand {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  color: var(--white);
  transform: translate(-50%, -50%);
}

.about-media-brand > div {
  display: grid;
}

.about-media-brand strong {
  font-size: 58px;
  font-weight: 450;
  letter-spacing: -0.04em;
}

.about-media-brand span {
  color: #969da8;
  font-family: "Google Sans Code", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story-section {
  padding: 180px 0;
  background: var(--white);
}

.editorial-split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.editorial-split > .overline {
  grid-column: span 3;
}

.editorial-split > div {
  grid-column: 5 / span 7;
}

.editorial-split h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.editorial-split .editorial-lede {
  margin: 40px 0 0;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.38;
}

.editorial-split div > p:last-child {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.principles-section-light {
  padding: 170px 0;
  background: #f8f9fb;
}

.about-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 110px;
}

.about-closing-section {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}

.about-closing-inner {
  display: grid;
  gap: 14px;
  font-family: "Google Sans Code", monospace;
  font-size: 28px;
}

.about-closing-inner > p {
  margin: 0;
  color: #6f7580;
}

.about-closing-inner .active {
  color: #8fb0ff;
}

.about-closing-inner .active span {
  animation: cursor-blink 1s steps(2, end) infinite;
}

.about-closing-inner .button {
  justify-self: end;
  margin-top: 30px;
  font-family: "Google Sans Flex", sans-serif;
}

.contact-hero {
  padding-bottom: 100px;
}

.contact-media-section {
  padding-bottom: 170px;
  background: var(--white);
}

.contact-media-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(560px, 1.25fr);
  align-items: center;
  gap: 80px;
  min-height: 670px;
  padding: 76px;
  border-radius: var(--product-image-radius);
  background:
    radial-gradient(circle at 84% 18%, rgba(91, 140, 255, 0.22), transparent 30%),
    #f4f6fa;
}

.contact-media-copy h2 {
  margin: 20px 0 0;
  font-size: 48px;
  font-weight: 450;
  letter-spacing: -0.04em;
}

.contact-media-copy > p:not(.overline) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.contact-media-copy ul {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid #dce0e6;
  list-style: none;
}

.contact-media-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid #dce0e6;
  font-size: 14px;
}

.contact-media-copy li span {
  color: #858a92;
  font-family: "Google Sans Code", monospace;
  font-size: 9px;
}

.contact-options-section {
  padding: 0 0 160px;
  background: var(--white);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-options-grid article {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px;
  border-radius: 30px;
  background: #f5f6f8;
}

.contact-options-grid article:nth-child(2) {
  background: #eef4ff;
}

.contact-options-grid article > span {
  color: #747981;
  font-size: 14px;
}

.contact-options-grid h2 {
  max-width: 540px;
  margin: auto 0 0;
  font-size: 40px;
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.about-one-page {
  padding: 190px 0 180px;
  background: var(--soft);
}

.about-one-page-media {
  margin-top: 110px;
}

.about-product-image-inline {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--product-image-radius);
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(18, 24, 18, 0.18);
}

.about-one-page .about-principle-grid {
  margin-top: 110px;
}

.pricing-one-page {
  padding: 180px 0 170px;
  background: var(--white);
}

.pricing-heading {
  max-width: 900px;
}

.pricing-heading h2 {
  margin: 24px 0 0;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 450;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.pricing-heading > p:last-child {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.pricing-card {
  display: flex;
  min-height: 510px;
  padding: 34px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.pricing-card-featured {
  border-color: var(--ink);
  background: var(--soft);
}

.pricing-card-topline {
  display: flex;
  min-height: 30px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pricing-card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 550;
  letter-spacing: -0.025em;
}

.pricing-card-topline > span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pricing-price {
  display: flex;
  margin-top: 42px;
  align-items: baseline;
  gap: 10px;
}

.pricing-price strong {
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 450;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.pricing-price > span,
.pricing-card > p,
.pricing-note {
  color: var(--muted);
}

.pricing-card > p {
  min-height: 78px;
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.pricing-card ul {
  display: grid;
  margin: 28px 0 38px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}

.pricing-card li span {
  color: var(--green);
  font-weight: 700;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 24px 0 0;
  font-size: 14px;
}

.checkout-page {
  min-height: calc(100vh - 52px);
  padding: 96px 0 140px;
  background:
    radial-gradient(circle at 82% 6%, color-mix(in srgb, var(--blue) 10%, transparent), transparent 30%),
    var(--soft);
}

.checkout-shell {
  max-width: 1240px;
}

.checkout-intro {
  max-width: 780px;
}

.checkout-intro h1 {
  margin: 18px 0 0;
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.checkout-intro > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: 22px;
  margin-top: 68px;
}

.checkout-summary,
.checkout-details,
.checkout-result {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.checkout-summary {
  position: sticky;
  top: 78px;
  padding: 30px;
}

.checkout-kicker,
.shirt-size-fieldset legend {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
}

.checkout-plan-list {
  display: grid;
  gap: 9px;
}

.checkout-plan-option {
  display: grid;
  min-height: 64px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 13px 15px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.checkout-plan-option:hover {
  transform: translateY(-1px);
}

.checkout-plan-option.is-selected {
  border-color: var(--ink);
  background: var(--soft);
}

.checkout-plan-option input,
.shirt-size-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkout-plan-option > span {
  display: grid;
  gap: 2px;
}

.checkout-plan-option strong {
  font-size: 15px;
  font-weight: 550;
}

.checkout-plan-option small {
  color: var(--muted);
  font-size: 13px;
}

.checkout-plan-option i {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--white);
}

.checkout-plan-option.is-selected i {
  border-color: var(--ink);
  background: var(--ink);
}

.checkout-order-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: 16px;
  background: var(--soft);
}

.checkout-order-card > div:first-child,
.checkout-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.checkout-order-card > div:first-child span {
  font-size: 15px;
  font-weight: 550;
}

.checkout-order-card > div:first-child strong {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.checkout-order-card > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-total {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-total span {
  font-size: 14px;
}

.checkout-total strong {
  font-size: 18px;
  font-weight: 600;
}

.checkout-security-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
}

.checkout-security-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--soft);
  color: var(--ink);
  font-family: "Google Sans Code", monospace;
}

.checkout-security-note p {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.checkout-security-note strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 550;
}

.checkout-details {
  padding: 42px;
}

.checkout-section-heading {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.checkout-section-heading > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.checkout-section-heading h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 550;
  letter-spacing: -0.025em;
}

.checkout-section-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.checkout-fields label {
  display: grid;
  gap: 8px;
}

.checkout-fields label > span {
  font-size: 13px;
  font-weight: 550;
}

.checkout-fields label > span small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 450;
}

.checkout-fields input,
.checkout-fields select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.checkout-fields input:focus,
.checkout-fields select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 18%, transparent);
}

.field-wide {
  grid-column: 1 / -1;
}

.checkout-divider {
  height: 1px;
  margin: 42px 0;
  background: var(--line);
}

.shirt-size-fieldset {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.shirt-size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.shirt-size-options label {
  display: grid;
  min-height: 86px;
  cursor: pointer;
  place-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.shirt-size-options label:hover {
  transform: translateY(-1px);
}

.shirt-size-options label.is-selected {
  border-color: var(--ink);
  background: var(--soft);
}

.shirt-size-options strong {
  font-size: 19px;
  font-weight: 600;
}

.shirt-size-options span {
  color: var(--muted);
  font-size: 12px;
}

.checkout-agreement {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 28px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-agreement input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.checkout-message {
  margin: 20px 0 0;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 13px;
  line-height: 1.5;
}

.checkout-message-neutral {
  background: var(--soft);
  color: var(--muted);
}

.checkout-message-error {
  background: color-mix(in srgb, var(--red) 12%, var(--white));
  color: color-mix(in srgb, var(--red) 72%, var(--ink));
}

.checkout-submit {
  width: 100%;
  margin-top: 28px;
  cursor: pointer;
}

.checkout-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.checkout-fine-print {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.checkout-fine-print a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-result {
  max-width: 760px;
  margin-top: 68px;
  padding: 70px;
  text-align: center;
}

.checkout-result-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-green);
  color: #179c6a;
  font-size: 24px;
}

.checkout-result h2 {
  margin: 18px 0 0;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.checkout-result > p:not(.overline) {
  max-width: 530px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.checkout-result .button {
  margin-top: 30px;
}

.contact-one-page {
  padding: 190px 0;
  background: var(--contact-bg);
  color: var(--contact-text);
}

.contact-one-page-inner {
  max-width: 980px;
}

.contact-one-page .overline {
  color: #aeb5a9;
}

.contact-one-page h2 {
  max-width: 900px;
  margin: 24px 0 0;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 450;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.contact-one-page p:not(.overline) {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--contact-muted);
  font-size: 18px;
  line-height: 1.65;
}

.contact-one-page .button {
  margin-top: 44px;
}

section[id] {
  scroll-margin-top: 72px;
}

html[data-theme="dark"] .site-header,
html[data-theme="army"] .site-header {
  background: color-mix(in srgb, var(--white) 88%, transparent);
}

html[data-theme="dark"] .desktop-nav a,
html[data-theme="army"] .desktop-nav a,
html[data-theme="dark"] .button-text,
html[data-theme="army"] .button-text,
html[data-theme="dark"] .footer-links a,
html[data-theme="army"] .footer-links a {
  color: var(--muted);
}

html[data-theme="dark"] .product-media-blue,
html[data-theme="dark"] .product-media-violet,
html[data-theme="dark"] .product-media-green {
  background: #1b211e;
}

html[data-theme="army"] .product-media-blue,
html[data-theme="army"] .product-media-violet,
html[data-theme="army"] .product-media-green {
  background: #253022;
}

html[data-theme="dark"] .product-glyph-blue,
html[data-theme="dark"] .product-glyph-violet,
html[data-theme="dark"] .product-glyph-green,
html[data-theme="army"] .product-glyph-blue,
html[data-theme="army"] .product-glyph-violet,
html[data-theme="army"] .product-glyph-green {
  background: var(--soft);
  color: var(--ink);
}

html[data-theme="dark"] .site-footer,
html[data-theme="army"] .site-footer {
  background: var(--white);
}

.site-footer {
  padding: 82px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 110px;
}

.footer-brand > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 145px;
}

.footer-label {
  margin: 0 0 10px;
  color: #8a8e95;
  font-size: 12px;
}

.footer-links a {
  color: #44464b;
  font-size: 14px;
}

.footer-links a:hover {
  color: #315fc3;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 85px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #8b8f96;
  font-size: 12px;
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid #8fb0ff;
  outline-offset: 4px;
}

@keyframes cursor-blink {
  0%, 44% { opacity: 1; }
  45%, 100% { opacity: 0; }
}

@keyframes theme-icon-in {
  from { opacity: 0; transform: rotate(-70deg) scale(0.55); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@media (max-width: 1100px) {
  .site-shell {
    width: calc(100% - 80px);
  }

  .product-row {
    grid-template-columns: minmax(240px, 0.7fr) minmax(480px, 1.3fr);
    gap: 46px;
  }

  .product-row-media,
  .feature-media {
    padding: 38px;
  }

  .getting-started-stage,
  .contact-media-stage {
    grid-template-columns: 1fr;
  }

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

  .checkout-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
  }

  .checkout-details {
    padding: 34px;
  }
}

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

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 40px;
    height: 36px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 16px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: 44px;
    right: 0;
    display: grid;
    width: 240px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 22px 50px rgba(18, 19, 23, 0.14);
  }

  .mobile-menu nav a {
    display: flex;
    justify-content: space-between;
    padding: 13px;
    border-radius: 11px;
  }

  .mobile-menu nav a:hover {
    background: var(--soft);
  }

  .mobile-menu .theme-toggle {
    margin: 0 auto;
  }

  .home-hero h1 {
    font-size: 64px;
  }

  .terminal-content-grid {
    grid-template-columns: 1fr;
  }

  .route-map {
    display: none;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .product-row-copy {
    max-width: 650px;
  }

  .product-row-media {
    min-height: 520px;
  }

  .primary-feature-grid,
  .home-cta-grid,
  .contact-options-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }

  .pricing-card > p {
    min-height: 0;
  }

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

  .checkout-summary {
    position: static;
  }

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

  .benefit-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: 200px;
  }

  .availability-inner {
    display: grid;
    align-items: start;
  }

  .availability-inner .button {
    justify-self: start;
  }

  .editorial-split > .overline {
    grid-column: span 4;
  }

  .editorial-split > div {
    grid-column: 5 / span 8;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 23px;
  }

  .home-hero {
    height: 650px;
    min-height: 0;
  }

  .home-hero-inner {
    padding-top: 28px;
  }

  .home-hero h1 {
    align-items: flex-end;
    font-size: 52px;
    line-height: 1.02;
  }

  .headline-cursor {
    width: 3px;
    height: 0.9em;
    margin-left: 5px;
  }

  .home-hero-inner > div > p {
    font-size: 16px;
  }

  .home-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-stage,
  .product-showcase-stage,
  .about-media-stage {
    border-radius: var(--product-image-radius);
  }

  .showcase-section {
    padding-top: 44px;
  }

  .terminal-window {
    min-height: 315px;
  }

  .terminal-bar {
    grid-template-columns: 1fr auto;
  }

  .terminal-title {
    display: none;
  }

  .terminal-body,
  .terminal-compact .terminal-body {
    padding: 22px 18px 28px;
  }

  .terminal-brand-row {
    margin-bottom: 22px;
  }

  .terminal-brand-row strong {
    font-size: 18px;
  }

  .terminal-command {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
  }

  .terminal-line {
    font-size: 8px;
  }

  .terminal-compact {
    min-height: 250px;
  }

  .platform-intro {
    padding-bottom: 120px;
  }

  .platform-intro h2,
  .center-heading h2,
  .developer-heading h2 {
    font-size: 39px;
  }

  .product-rows {
    gap: 110px;
  }

  .product-row-copy h3 {
    font-size: 34px;
  }

  .product-glyph {
    margin-bottom: 35px;
  }

  .product-row-media,
  .feature-media {
    min-height: 390px;
    padding: 18px;
    border-radius: var(--product-image-radius);
  }

  .about-one-page,
  .pricing-one-page,
  .contact-one-page {
    padding: 120px 0;
  }

  .checkout-page {
    padding: 76px 0 100px;
  }

  .checkout-grid,
  .checkout-result {
    margin-top: 46px;
  }

  .checkout-summary,
  .checkout-details,
  .checkout-result {
    border-radius: 18px;
  }

  .checkout-summary,
  .checkout-details {
    padding: 22px;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .checkout-result {
    padding: 48px 24px;
  }

  .checkout-result h2 {
    font-size: 36px;
  }

  .developer-section,
  .feature-section,
  .getting-started-section,
  .principles-section-light {
    padding: 110px 0;
  }

  .benefit-grid,
  .secondary-benefit-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 80px;
  }

  .home-cta-card {
    min-height: 430px;
    padding: 32px;
  }

  .home-cta-card h2 {
    font-size: 36px;
  }

  .product-hero,
  .contact-hero {
    padding: 70px 0 54px;
  }

  .product-hero h1,
  .contact-hero h1 {
    font-size: 44px;
  }

  .product-hero p,
  .contact-hero p {
    font-size: 16px;
  }

  .primary-feature-grid {
    margin-top: 70px;
  }

  .getting-started-stage,
  .contact-media-stage {
    gap: 52px;
    min-height: 0;
    margin-top: 70px;
    padding: 28px;
    border-radius: 26px;
  }

  .getting-started-copy h3 {
    font-size: 34px;
  }

  .availability-section {
    padding: 105px 0;
  }

  .availability-inner {
    gap: 50px;
  }

  .availability-inner h2 {
    font-size: 42px;
  }

  .simple-page-hero {
    padding: 110px 0 85px;
  }

  .simple-page-hero h1 {
    font-size: 46px;
  }

  .about-media-brand {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .about-media-brand strong {
    font-size: 42px;
  }

  .about-story-section {
    padding: 110px 0;
  }

  .editorial-split {
    display: block;
  }

  .editorial-split > .overline {
    margin-bottom: 50px;
  }

  .editorial-split h2 {
    font-size: 40px;
  }

  .editorial-split .editorial-lede {
    font-size: 23px;
  }

  .about-principle-grid {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .about-closing-inner {
    font-size: 20px;
  }

  .about-closing-inner .button {
    justify-self: start;
  }

  .contact-media-section {
    padding-bottom: 110px;
  }

  .contact-media-copy h2 {
    font-size: 40px;
  }

  .contact-options-grid article {
    min-height: 390px;
    padding: 32px;
  }

  .contact-options-grid h2 {
    font-size: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px 28px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    display: grid;
    align-items: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Static package additions */
.static-plan-link { text-decoration: none; }
.static-checkout-note { display: none; }
.static-checkout-note.is-visible { display: block; }

/* raydeo motion homepage --------------------------------------------------
   The hero is intentionally code-native: every scene is a connected SVG
   network animated by assets/motion.js. */
:root {
  --motion-pace: 0.82;
  --motion-transition: 1200ms;
  --motion-hero-bg: #ffffff;
  --motion-hero-ink: #111214;
  --motion-hero-muted: #5f6368;
  --motion-line: rgba(17, 18, 20, 0.62);
  --motion-line-soft: rgba(17, 18, 20, 0.16);
  --motion-accent: #111214;
  --node-activity: 0.72;
}

html[data-theme="dark"] {
  --motion-hero-bg: #080a0d;
  --motion-hero-ink: #f7f8f4;
  --motion-hero-muted: #aeb4b1;
  --motion-line: rgba(245, 247, 244, 0.58);
  --motion-line-soft: rgba(245, 247, 244, 0.13);
  --motion-accent: #f7f8f4;
}

html[data-theme="army"] {
  --motion-hero-bg: #0a2416;
  --motion-hero-ink: #f0f3da;
  --motion-hero-muted: #b4bda0;
  --motion-line: rgba(205, 220, 107, 0.56);
  --motion-line-soft: rgba(205, 220, 107, 0.13);
  --motion-accent: #dce977;
}

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

/* A soft directional reveal is used when the browser supports the View
   Transition API.  Unsupported browsers retain the existing colour fade. */
html {
  view-transition-name: root;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: var(--motion-transition);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

::view-transition-old(root) {
  animation-name: raydeo-theme-out;
}

::view-transition-new(root) {
  animation-name: raydeo-theme-in;
}

@keyframes raydeo-theme-out {
  0% { filter: blur(0); opacity: 1; transform: scale(1); }
  100% { filter: blur(7px); opacity: 0.28; transform: scale(0.992); }
}

@keyframes raydeo-theme-in {
  0% {
    clip-path: circle(0 at calc(100% - 92px) 26px);
    filter: saturate(0.72) blur(3px);
  }
  100% {
    clip-path: circle(155% at calc(100% - 92px) 26px);
    filter: saturate(1) blur(0);
  }
}

.motion-home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--motion-hero-bg);
  color: var(--motion-hero-ink);
  transition: background-color var(--motion-transition) cubic-bezier(0.22, 1, 0.36, 1),
              color var(--motion-transition) ease;
}

.motion-home-hero::before,
.motion-home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.motion-home-hero::before {
  right: auto;
  width: min(77%, 1180px);
  background: linear-gradient(90deg,
    var(--motion-hero-bg) 0%,
    color-mix(in srgb, var(--motion-hero-bg) 97%, transparent) 40%,
    color-mix(in srgb, var(--motion-hero-bg) 76%, transparent) 66%,
    transparent 100%);
}

.motion-home-hero::after {
  z-index: 1;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--motion-hero-bg) 38%, transparent), transparent 24% 76%, color-mix(in srgb, var(--motion-hero-bg) 36%, transparent)),
    radial-gradient(circle at 74% 46%, transparent 0 25%, color-mix(in srgb, var(--motion-hero-bg) 14%, transparent) 72%);
}

.motion-hero-stage,
.motion-art-field,
.motion-scene,
.motion-scene svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.motion-hero-stage {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

.motion-art-field {
  transform-origin: center;
  will-change: transform;
}

.motion-scene {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  filter: blur(8px);
  transform: scale(1.018);
  transform-origin: 68% 48%;
  transition:
    opacity var(--motion-transition) cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear var(--motion-transition),
    filter var(--motion-transition) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--motion-transition) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.motion-scene.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: scale(1);
  transition-delay: 0s;
}

.motion-scene.is-leaving {
  opacity: 0;
  visibility: visible;
  filter: blur(6px);
  transform: scale(0.994);
}

/* A usable first frame before JavaScript starts. */
html:not(.motion-ready)[data-theme="light"] .motion-scene-weave,
html:not(.motion-ready)[data-theme="dark"] .motion-scene-packets,
html:not(.motion-ready)[data-theme="army"] .motion-scene-topology {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
}

.motion-scene svg {
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.motion-scene path,
.motion-scene ellipse,
.motion-scene circle,
.motion-scene rect {
  vector-effect: non-scaling-stroke;
}

.light-node circle,
.light-node rect,
.dark-node circle,
.dark-node rect,
.topology-pulse {
  transform-box: fill-box;
  transform-origin: center;
}

/* Concept 01 — a monochrome, reconfiguring node network on white. */
.light-links {
  fill: none;
  stroke: rgba(17, 18, 20, 0.38);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.05;
}

.light-links .light-link-main {
  stroke: rgba(17, 18, 20, 0.76);
  stroke-width: 1.55;
}

.light-links .light-link-secondary {
  stroke: rgba(17, 18, 20, 0.19);
  stroke-width: 1;
}

.light-links .light-link-secondary.light-link-dash {
  stroke: rgba(17, 18, 20, 0.32);
  stroke-dasharray: 2 16;
}

.light-nodes,
.dark-nodes,
.topology-nodes {
  opacity: var(--node-activity);
}

.light-node rect {
  fill: #ffffff;
  stroke: rgba(17, 18, 20, 0.48);
  stroke-width: 1.15;
}

.light-node-route rect {
  stroke: rgba(17, 18, 20, 0.94);
  stroke-width: 1.45;
}

.light-node circle {
  fill: #ffffff;
  stroke: rgba(17, 18, 20, 0.66);
  stroke-width: 1.1;
}

.light-node-route circle {
  stroke: #111214;
}

.light-node text {
  fill: rgba(17, 18, 20, 0.62);
  font-family: "Google Sans Code", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0.12em;
  dominant-baseline: middle;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

/* Concept 03 — a monochrome, reconfiguring node network on near-black. */
.motion-scene-packets {
  color: #f7f8f4;
}

.dark-links {
  fill: none;
  stroke: rgba(247, 248, 244, 0.40);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.dark-links .dark-link-main {
  stroke: rgba(247, 248, 244, 0.72);
  stroke-width: 1.55;
}

.dark-links .dark-link-secondary {
  stroke: rgba(247, 248, 244, 0.20);
  stroke-width: 1;
}

.dark-links .dark-link-secondary.dark-link-dash {
  stroke: rgba(247, 248, 244, 0.32);
  stroke-dasharray: 2 16;
}

.dark-nodes {
  opacity: var(--node-activity);
}

.dark-node rect {
  fill: #080a0d;
  stroke: rgba(247, 248, 244, 0.52);
  stroke-width: 1.15;
}

.dark-node-route rect {
  stroke: rgba(247, 248, 244, 0.92);
  stroke-width: 1.45;
}

.dark-node circle {
  fill: #080a0d;
  stroke: rgba(247, 248, 244, 0.66);
  stroke-width: 1.1;
}

.dark-node-route circle {
  stroke: #f7f8f4;
}

.dark-node text {
  fill: rgba(247, 248, 244, 0.62);
  font-family: "Google Sans Code", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0.12em;
  dominant-baseline: middle;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

/* Concept 04 — star/army topology. */
.motion-scene-topology {
  color: #dce977;
}

.contour-lines {
  fill: none;
  stroke: rgba(180, 198, 105, 0.20);
  stroke-width: 0.9;
}

.contour-lines path:nth-child(3n) {
  stroke: rgba(220, 233, 119, 0.30);
  stroke-dasharray: 3 12;
}

.topology-route {
  fill: none;
  stroke: #dce977;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
  filter: drop-shadow(0 0 7px rgba(220, 233, 119, 0.32));
}

.topology-nodes rect {
  fill: #0a2416;
  stroke: #dce977;
  stroke-width: 1.5;
}

.topology-nodes rect:nth-child(2n) {
  fill: #dce977;
  stroke: #0a2416;
}

.topology-pulse {
  fill: #dce977;
  stroke: rgba(220, 233, 119, 0.40);
  stroke-width: 10;
  filter: drop-shadow(0 0 11px rgba(220, 233, 119, 0.55));
}

.motion-home-hero .home-hero-inner {
  position: relative;
  z-index: 3;
}

.motion-hero-copy {
  position: relative;
  text-shadow: 0 1px 18px color-mix(in srgb, var(--motion-hero-bg) 42%, transparent);
}

.motion-home-hero h1 {
  color: var(--motion-hero-ink);
}

.motion-home-hero .headline-cursor {
  border-radius: 2px;
  background: var(--motion-hero-ink);
  box-shadow: none;
}

.motion-home-hero .home-hero-inner > div > p {
  color: var(--motion-hero-muted);
}

.motion-home-hero .button-dark {
  background: var(--motion-hero-ink);
  color: var(--motion-hero-bg);
}

.motion-home-hero .button-text {
  color: var(--motion-hero-muted);
}

.motion-home-hero .button-dark:hover {
  box-shadow: 0 14px 34px color-mix(in srgb, var(--motion-hero-ink) 16%, transparent);
}

.motion-scene-count {
  position: absolute;
  right: clamp(28px, 5vw, 82px);
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--motion-hero-muted);
  font-family: "Google Sans Code", ui-monospace, monospace;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  opacity: 0.74;
}

.motion-scene-count i {
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: var(--motion-line-soft);
}

.motion-scene-count i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--motion-accent);
  content: "";
  transform: scaleX(var(--scene-progress, 0.25));
  transform-origin: left;
  transition: transform var(--motion-transition) cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-transition-sweep {
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: -46%;
  z-index: 4;
  width: 38%;
  opacity: 0;
  background: linear-gradient(90deg,
    transparent,
    color-mix(in srgb, var(--motion-accent) 7%, transparent) 38%,
    color-mix(in srgb, var(--motion-accent) 18%, transparent) 50%,
    color-mix(in srgb, var(--motion-accent) 5%, transparent) 62%,
    transparent);
  filter: blur(1px);
  transform: skewX(-10deg);
  pointer-events: none;
}

.motion-home-hero.is-transitioning .motion-transition-sweep,
.motion-home-hero[data-transitioning="true"] .motion-transition-sweep {
  animation: raydeo-scene-sweep var(--motion-transition) cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes raydeo-scene-sweep {
  0% { left: -46%; opacity: 0; }
  18% { opacity: 0.9; }
  76% { opacity: 0.56; }
  100% { left: 114%; opacity: 0; }
}

@media (max-width: 1180px) {
  .motion-home-hero::before {
    width: 82%;
  }

  .motion-scene svg {
    width: 118%;
    left: -8%;
  }

}

@media (max-width: 820px) {
  .motion-home-hero {
    height: 720px;
    min-height: 680px;
  }

  .motion-home-hero::before {
    width: 96%;
    background: linear-gradient(90deg,
      var(--motion-hero-bg) 0%,
      color-mix(in srgb, var(--motion-hero-bg) 92%, transparent) 60%,
      transparent 100%);
  }

  .motion-scene svg {
    width: 150%;
    left: -28%;
    opacity: 0.78;
  }

  .motion-home-hero .home-hero-inner {
    padding-top: 50px;
  }

  .motion-home-hero h1 {
    max-width: 680px;
    font-size: clamp(54px, 8.2vw, 66px);
  }

}

@media (max-width: 640px) {
  .motion-home-hero {
    height: 670px;
    min-height: 620px;
  }

  .motion-home-hero::before {
    width: 100%;
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--motion-hero-bg) 98%, transparent) 0%,
      color-mix(in srgb, var(--motion-hero-bg) 86%, transparent) 47%,
      color-mix(in srgb, var(--motion-hero-bg) 28%, transparent) 78%,
      transparent 100%);
  }

  .motion-home-hero::after {
    background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--motion-hero-bg) 48%, transparent));
  }

  .motion-home-hero .home-hero-inner {
    align-items: flex-start;
    padding-top: 104px;
  }

  .motion-home-hero h1 {
    max-width: 430px;
    font-size: clamp(47px, 13vw, 56px);
    letter-spacing: -0.035em;
  }

  .motion-home-hero .home-hero-inner > div > p {
    max-width: 330px;
    margin-top: 18px;
  }

  .motion-home-hero .home-hero-actions {
    margin-top: 24px;
  }

  .motion-scene svg {
    top: 13%;
    left: -30%;
    width: 160%;
    height: 82%;
    opacity: 0.76;
  }

  .motion-scene-count {
    right: 18px;
    bottom: 18px;
  }

}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }

  .motion-scene {
    filter: none !important;
    transform: none !important;
  }

  .motion-transition-sweep {
    display: none;
  }

  .motion-art-field {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .motion-scene path,
  .motion-scene ellipse,
  .motion-scene circle,
  .motion-scene rect {
    stroke: CanvasText;
  }

}
