:root {
  color-scheme: dark;
  --bg: #07100e;
  --bg-soft: #0a1713;
  --panel: rgba(16, 34, 29, 0.72);
  --panel-solid: #10221d;
  --panel-light: #f2f5ee;
  --line: rgba(225, 244, 235, 0.12);
  --line-strong: rgba(225, 244, 235, 0.22);
  --text: #f5f8f4;
  --muted: #a8b9b2;
  --muted-dark: #53635c;
  --green: #5ff3ad;
  --green-bright: #86ffc3;
  --green-dark: #093c2b;
  --amber: #f5bd6b;
  --blue: #76b7ff;
  --ink: #0b1713;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(41, 160, 109, 0.14), transparent 28rem),
    radial-gradient(circle at 0 28%, rgba(31, 100, 77, 0.1), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.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: 10px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--green);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 16, 14, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(95, 243, 173, 0.28);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(95, 243, 173, 0.18), rgba(95, 243, 173, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 30px rgba(42, 196, 131, 0.08);
  color: var(--green);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand-copy small,
.footer-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav a {
  border-radius: 10px;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
}

.nav .nav-cta {
  margin-left: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-cta span {
  margin-left: 5px;
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .8fr);
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
  padding-block: 92px 112px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 6.6vw, 6.15rem);
  font-weight: 760;
  letter-spacing: -0.068em;
  line-height: .94;
}

h1 em {
  display: inline;
  background: linear-gradient(100deg, var(--green-bright), #d8ffe9 52%, #8ee6ff);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.lead {
  max-width: 630px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 790;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(70, 235, 161, 0.12);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-bright);
  box-shadow: 0 18px 42px rgba(70, 235, 161, 0.2);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.trust-list span {
  margin-right: 5px;
  color: var(--green);
}

.command-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(20, 43, 36, 0.9), rgba(10, 25, 21, 0.93));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
  padding: 22px;
}

.command-panel::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(73, 238, 165, 0.12);
  filter: blur(40px);
  content: "";
  pointer-events: none;
}

.command-topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.command-topline > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(95, 243, 173, .1), 0 0 12px var(--green);
}

kbd {
  min-width: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,.045);
  color: var(--muted);
  font: 700 11px/1.8 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.command-panel h2 {
  position: relative;
  margin-bottom: 18px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(4, 14, 11, 0.55);
  padding: 0 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-box:focus-within {
  border-color: rgba(95, 243, 173, .54);
  box-shadow: 0 0 0 4px rgba(95, 243, 173, .08);
}

.search-box svg {
  width: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}

.search-box input::placeholder {
  color: #73877e;
}

.command-list {
  display: grid;
  gap: 8px;
}

.command-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 11px;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.command-item:hover,
.command-item:focus-visible {
  transform: translateX(3px);
  border-color: var(--line);
  background: rgba(255,255,255,.045);
  outline: none;
}

.command-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: color-mix(in srgb, currentColor 9%, transparent);
  font-size: 18px;
}

.command-icon-green { color: var(--green); }
.command-icon-amber { color: var(--amber); }
.command-icon-blue { color: var(--blue); }

.command-item > span:nth-child(2) {
  min-width: 0;
  display: grid;
}

.command-item strong {
  font-size: 14px;
}

.command-item small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.command-arrow {
  color: #6f837a;
  font-size: 15px;
}

.search-empty {
  margin: 18px 8px 4px;
  color: var(--muted);
  font-size: 12px;
}

.spaces-section {
  position: relative;
  border-block: 1px solid var(--line);
  background: rgba(4, 12, 10, .4);
  padding-block: 108px 120px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.section-head h2,
.purpose-heading h2,
.closing-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.2vw, 4.25rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-head > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
}

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

.app-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 34, 29, .72), rgba(10, 23, 19, .92));
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 72px rgba(0,0,0,.3);
}

.app-card-featured {
  border-color: rgba(95, 243, 173, .27);
}

.preview-link {
  position: relative;
  height: 225px;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050c0a;
}

.preview-link::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 16, 14, .8), transparent 45%);
  content: "";
  pointer-events: none;
}

.preview-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.app-card:hover .preview-link img,
.preview-link:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.1) brightness(1.04);
}

.preview-glow {
  position: absolute;
  right: -30px;
  bottom: -65px;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(95, 243, 173, .3);
  filter: blur(38px);
}

.preview-glow-amber { background: rgba(245, 189, 107, .3); }
.preview-glow-blue { background: rgba(118, 183, 255, .28); }

.app-body {
  padding: 24px;
}

.app-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.app-number {
  color: #71837b;
  font: 700 11px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.status-live { color: var(--green); }
.status-beta { color: var(--amber); }
.status-staging { color: var(--blue); }

.app-body h3,
.purpose-card h3 {
  margin-bottom: 11px;
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.app-body > p {
  min-height: 84px;
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.app-tags {
  min-height: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.app-tags li {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,.025);
  padding: 4px 7px;
  color: #85988f;
  font-size: 10px;
  font-weight: 720;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 790;
  text-decoration: none;
}

.text-link span,
.purpose-card a span {
  color: var(--green);
  transition: transform 150ms ease;
}

.text-link:hover span,
.text-link:focus-visible span,
.purpose-card a:hover span,
.purpose-card a:focus-visible span {
  transform: translateX(3px);
}

.purpose-section {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
  padding-block: 128px;
}

.purpose-heading {
  align-self: start;
  position: sticky;
  top: 122px;
}

.purpose-grid {
  display: grid;
  gap: 12px;
}

.purpose-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon title link"
    "icon text link";
  align-items: center;
  column-gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
  transition: border-color 160ms ease, background 160ms ease;
}

.purpose-card:hover {
  border-color: var(--line-strong);
  background: rgba(20, 43, 36, .84);
}

.purpose-icon {
  grid-area: icon;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(95,243,173,.25);
  border-radius: 14px;
  background: rgba(95,243,173,.07);
  color: var(--green);
  font-size: 20px;
}

.purpose-card h3 {
  grid-area: title;
  margin: 0 0 4px;
  font-size: 19px;
}

.purpose-card p {
  grid-area: text;
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.purpose-card a {
  grid-area: link;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
}

.closing-card {
  position: relative;
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  overflow: hidden;
  margin-bottom: 110px;
  border-radius: var(--radius-lg);
  background: var(--panel-light);
  color: var(--ink);
  padding: clamp(38px, 6vw, 70px);
}

.closing-card > *:not(.closing-orb) {
  position: relative;
  z-index: 2;
}

.closing-card .eyebrow {
  color: #08794e;
}

.closing-card h2 {
  max-width: 720px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.button-light {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--text);
  white-space: nowrap;
}

.button-light:hover,
.button-light:focus-visible {
  background: #17372c;
  box-shadow: 0 18px 40px rgba(6, 32, 23, .18);
}

.closing-orb {
  position: absolute;
  right: 5%;
  bottom: -175px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(95,243,173,.8), rgba(18,130,84,.2) 50%, transparent 70%);
  filter: blur(2px);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 12, 10, .36);
}

.footer-inner {
  min-height: 154px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark-small {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.brand-mark-small svg {
  width: 20px;
}

.footer-brand > div {
  display: grid;
  line-height: 1.2;
}

.footer nav {
  display: flex;
  gap: 20px;
}

.footer nav a,
.footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
  text-decoration: none;
}

.footer nav a:hover,
.footer nav a:focus-visible {
  color: var(--text);
  outline: none;
}

.error-page {
  display: grid;
  place-items: center;
}

.error-layout {
  display: grid;
  place-items: center;
  padding-block: 48px;
}

.error-card {
  position: relative;
  width: min(100%, 820px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(20, 43, 36, .94), rgba(8, 22, 18, .97));
  box-shadow: var(--shadow);
  padding: clamp(32px, 7vw, 74px);
}

.error-card::after {
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(95, 243, 173, .12);
  filter: blur(50px);
  content: "";
  pointer-events: none;
}

.error-brand {
  width: fit-content;
  margin-bottom: clamp(62px, 12vw, 110px);
}

.error-code {
  position: absolute;
  top: 24px;
  right: clamp(28px, 6vw, 70px);
  margin: 0;
  color: rgba(95, 243, 173, .08);
  font-size: clamp(8rem, 23vw, 15rem);
  font-weight: 850;
  letter-spacing: -.09em;
  line-height: 1;
  pointer-events: none;
}

.error-card h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.4vw, 5.9rem);
}

.error-card .lead {
  max-width: 590px;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 72px 92px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .command-panel {
    width: min(100%, 620px);
  }

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

  .app-card {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  }

  .preview-link {
    height: 100%;
    min-height: 290px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .app-body > p {
    min-height: 0;
  }

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

  .purpose-heading {
    position: static;
  }

  .closing-card {
    grid-template-columns: 1fr;
  }

  .button-light {
    width: fit-content;
  }

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

  .footer-inner > p {
    grid-column: 1 / -1;
    padding-bottom: 28px;
  }
}

@media (max-width: 740px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(9, 23, 19, .98);
    box-shadow: var(--shadow);
    padding: 8px;
  }

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

  .nav a {
    padding: 12px 14px;
  }

  .nav .nav-cta {
    margin: 4px 0 0;
  }

  .hero {
    gap: 44px;
    padding-block: 58px 74px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .command-panel {
    padding: 16px;
  }

  .spaces-section {
    padding-block: 78px 86px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-head h2,
  .purpose-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .app-card {
    display: block;
  }

  .preview-link {
    height: 215px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-body {
    padding: 21px;
  }

  .purpose-section {
    gap: 38px;
    padding-block: 88px;
  }

  .purpose-card {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon text"
      ". link";
    row-gap: 8px;
    padding: 20px;
  }

  .purpose-icon {
    width: 44px;
    height: 44px;
  }

  .purpose-card a {
    margin-top: 7px;
  }

  .closing-card {
    min-height: 360px;
    align-items: start;
    margin-bottom: 74px;
    padding: 34px 26px;
  }

  .closing-card h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .button-light {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 38px;
  }

  .footer-inner > p {
    grid-column: auto;
    padding-bottom: 0;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .hero {
    padding-top: 44px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .command-item {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .command-icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
