:root {
  color-scheme: light;
  --canvas: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --ink: #182238;
  --muted: #68758b;
  --blue: #5269e8;
  --blue-dark: #4054c7;
  --blue-soft: #e9edff;
  --violet: #7861d8;
  --violet-soft: #f0ecff;
  --coral: #ed7f6c;
  --coral-soft: #fff0ec;
  --mint: #3eb58b;
  --mint-soft: #e7f8f1;
  --sun: #eeae48;
  --sun-soft: #fff6df;
  --line: #e2e7f0;
  --line-strong: #d2d9e7;
  --shadow-soft: 0 14px 42px rgba(37, 52, 85, 0.08);
  --shadow-lifted: 0 24px 64px rgba(37, 52, 85, 0.14);
  --display: "Avenir Next", "Segoe UI Variable Display", Inter, ui-sans-serif, system-ui, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

p {
  text-wrap: pretty;
}

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

h1,
h2,
h3,
.brand-copy strong,
.profile-card b,
.floating-card strong {
  font-family: var(--display);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 10px;
  font-weight: 750;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

:where(a, button):focus-visible {
  outline: 3px solid rgba(82, 105, 232, 0.38);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(37, 52, 85, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  height: 82px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 43px;
  height: 43px;
  color: #fff;
  background: linear-gradient(145deg, #667cf0, #4f63dd);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(82, 105, 232, 0.24);
}

.brand-mark::after {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 12px;
  height: 12px;
  background: var(--mint);
  border: 3px solid var(--surface);
  border-radius: 50%;
  content: "";
}

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

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

.brand-copy strong {
  font-size: 1rem;
  font-weight: 820;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 29px;
  color: #4f5d73;
  font-size: 0.86rem;
  font-weight: 720;
}

.site-menu > a:not(.nav-cta) {
  position: relative;
}

.site-menu > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-menu > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(24, 34, 56, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-cta:hover {
  box-shadow: 0 10px 24px rgba(24, 34, 56, 0.22);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 800px;
  padding: 150px 0 104px;
  overflow: hidden;
  background:
    linear-gradient(rgba(82, 105, 232, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 105, 232, 0.026) 1px, transparent 1px),
    var(--canvas);
  background-size: 38px 38px;
}

.hero::before {
  position: absolute;
  top: -170px;
  left: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(117, 143, 248, 0.17), rgba(117, 143, 248, 0) 69%);
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 180px;
  right: -210px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(108, 210, 170, 0.17), rgba(108, 210, 170, 0) 68%);
}

.hero-orb-two {
  bottom: -260px;
  left: 36%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(142, 117, 219, 0.11), rgba(142, 117, 219, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(530px, 1.14fr);
  align-items: center;
  gap: clamp(50px, 7vw, 95px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 25px;
  padding: 8px 12px 7px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid #d9e0ff;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 840;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(62, 181, 139, 0.12);
}

.eyebrow-soft {
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 6.25vw, 6rem);
  font-weight: 780;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.18rem);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-size: 0.93rem;
  font-weight: 770;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: #fff;
  background: linear-gradient(145deg, #6579eb, #4c61dc);
  border-color: #4d62dc;
  box-shadow: 0 10px 24px rgba(82, 105, 232, 0.27);
}

.button-primary:hover {
  box-shadow: 0 14px 30px rgba(82, 105, 232, 0.34);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.button-secondary:hover {
  background: var(--surface);
  box-shadow: 0 9px 22px rgba(37, 52, 85, 0.09);
  transform: translateY(-2px);
}

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

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

.product-stage {
  position: relative;
  min-width: 0;
  padding: 42px 0 45px;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(82, 105, 232, 0.15);
  border-radius: 50%;
}

.orbit-one {
  inset: 4px 15px 15px -25px;
}

.orbit-two {
  inset: 72px -36px -8px 85px;
  border-color: rgba(62, 181, 139, 0.2);
}

.product-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #d5dce9;
  border-radius: 25px;
  box-shadow: 0 32px 80px rgba(37, 52, 85, 0.18), 0 5px 0 rgba(37, 52, 85, 0.05);
  transform: rotate(1deg);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 39px;
  padding: 0 14px;
  color: #768298;
  background: #f1f4f9;
  border-bottom: 1px solid var(--line);
  font-size: 0.52rem;
  font-weight: 720;
  letter-spacing: 0.03em;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i,
.terminal-bar i {
  width: 7px;
  height: 7px;
  background: #c5cdda;
  border-radius: 50%;
}

.window-live {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 4px;
  color: #278162;
}

.window-live i,
.preview-live i {
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
}

.app-preview {
  background:
    radial-gradient(circle at 0 0, rgba(82, 105, 232, 0.08), transparent 40%),
    #f6f8fc;
}

.app-preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 21px;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--line);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.preview-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #fff;
  background: linear-gradient(145deg, #667cf0, #4f63dd);
  border-radius: 10px;
  box-shadow: 0 5px 11px rgba(82, 105, 232, 0.22);
}

.preview-mark svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.preview-brand > span:last-child {
  display: grid;
}

.preview-brand strong {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: -0.02em;
}

.preview-brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.37rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.preview-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  color: #278162;
  background: var(--mint-soft);
  border-radius: 999px;
  font-size: 0.48rem;
  font-weight: 760;
}

.preview-body {
  padding: 23px;
}

.preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.preview-kicker {
  color: var(--blue-dark);
  font-size: 0.42rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-heading h2 {
  margin: 4px 0 0;
  font-size: 1.36rem;
  line-height: 1;
}

.preview-heading time {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.preview-message {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 8px 10px;
  color: #4054c7;
  background: var(--blue-soft);
  border: 1px solid #dce2ff;
  border-radius: 10px;
  font-size: 0.51rem;
  font-weight: 650;
}

.preview-message svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.preview-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.preview-section-heading > div {
  display: grid;
}

.preview-section-heading strong {
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: -0.02em;
}

.preview-section-heading small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.37rem;
}

.preview-section-heading > span {
  color: var(--muted);
  font-size: 0.41rem;
  font-weight: 700;
}

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

.profile-card {
  position: relative;
  min-width: 0;
  padding: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(37, 52, 85, 0.05);
}

.profile-card-highlight {
  background: linear-gradient(145deg, #f5f1ff, #fff 72%);
  border-color: #e3dcfa;
}

.profile-person {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin-bottom: 13px;
}

.profile-person > div {
  display: grid;
  min-width: 0;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 780;
}

.avatar-blue { background: #6579e8; }
.avatar-violet { background: #8e75db; }
.avatar-coral { background: #ed8a76; }
.avatar-mint { background: #57b995; }

.profile-person strong {
  overflow: hidden;
  font-size: 0.52rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-person small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.36rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-label {
  display: block;
  color: var(--muted);
  font-size: 0.33rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.profile-card b {
  display: block;
  margin: 3px 0 12px;
  overflow: hidden;
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status {
  display: inline-flex;
  width: fit-content;
  padding: 4px 6px;
  border-radius: 999px;
  font-size: 0.36rem;
  font-style: normal;
  font-weight: 750;
}

.status-coral { color: #ae513f; background: var(--coral-soft); }
.status-violet { color: #6650bb; background: var(--violet-soft); }
.status-mint { color: #278162; background: var(--mint-soft); }

.preview-chore {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.chore-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--violet);
  background: var(--violet-soft);
  border-radius: 9px;
}

.chore-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.preview-chore > div,
.approval-item > div {
  display: grid;
  min-width: 0;
}

.preview-chore strong {
  overflow: hidden;
  font-size: 0.49rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-chore small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.35rem;
}

.reward {
  padding: 5px 6px;
  color: #278162;
  background: var(--mint-soft);
  border-radius: 999px;
  font-size: 0.37rem;
  font-weight: 760;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(37, 52, 85, 0.16);
}

.floating-card > div {
  display: grid;
}

.floating-card strong {
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.48rem;
}

.floating-time {
  top: 11px;
  right: 20px;
  transform: rotate(3deg);
}

.floating-time svg {
  width: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-chore {
  bottom: 8px;
  left: -23px;
  transform: rotate(-3deg);
}

.floating-chore > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #fff;
  background: var(--mint);
  border-radius: 9px;
  font-size: 0.7rem;
  font-weight: 850;
}

.proof-strip {
  position: relative;
  z-index: 2;
  padding: 28px 0;
  color: #fff;
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  align-items: center;
  gap: 24px;
}

.proof-grid p {
  margin: 0;
  color: #aab7ff;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 750;
}

.proof-grid div {
  display: grid;
  gap: 3px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-grid strong {
  font-size: 0.75rem;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.64rem;
}

.section {
  padding: 120px 0;
}

.spaces-section {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: 50px 84px;
  margin-bottom: 58px;
}

.section-heading h2,
.flow-copy h2,
.hosting-copy h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  font-weight: 770;
  line-height: 0.99;
}

.section-heading > div > .eyebrow {
  margin-bottom: 21px;
}

.section-heading > p,
.flow-copy > p,
.hosting-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

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

.space-card {
  position: relative;
  min-height: 555px;
  padding: 34px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 4px 0 rgba(37, 52, 85, 0.04);
}

.space-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  background: var(--card-glow);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
}

.space-kiosk { --card-glow: var(--blue-soft); background: linear-gradient(145deg, #f0f3ff, #fff 70%); border-color: #dce3ff; }
.space-family { --card-glow: var(--violet-soft); background: linear-gradient(145deg, #f7f3ff, #fff 70%); border-color: #e6defa; }
.space-admin { --card-glow: var(--mint-soft); background: linear-gradient(145deg, #eefaf5, #fff 70%); border-color: #d8efe6; }

.space-number {
  position: absolute;
  top: 34px;
  right: 34px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.space-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 42px;
  border-radius: 20px;
}

.space-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.space-icon-blue { color: var(--blue); background: var(--blue-soft); }
.space-icon-violet { color: var(--violet); background: var(--violet-soft); }
.space-icon-mint { color: #278162; background: var(--mint-soft); }

.card-kicker {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.space-card h3 {
  max-width: 9.5em;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
  line-height: 1.08;
}

.space-card > p:not(.card-kicker) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.68;
}

.space-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.space-card li {
  position: relative;
  padding-left: 19px;
  color: #47556c;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.space-card li::before {
  position: absolute;
  top: 0.36em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  content: "";
}

.space-family li::before { background: var(--violet); }
.space-kiosk li::before { background: var(--blue); }

.features-section {
  background: var(--canvas);
}

.feature-heading {
  margin-bottom: 48px;
}

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

.feature-panel {
  position: relative;
  min-height: 485px;
  padding: 36px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 27px;
  box-shadow: 0 4px 0 rgba(37, 52, 85, 0.04);
}

.feature-panel-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.78fr) minmax(450px, 1.22fr);
  align-items: center;
  gap: 54px;
  min-height: 440px;
  padding: 48px;
}

.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-pill {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature-pill-dark {
  color: #d7ddff;
  background: rgba(145, 162, 255, 0.14);
}

.feature-pill-coral {
  color: #a34c3c;
  background: rgba(255, 240, 236, 0.86);
}

.feature-pill-violet {
  color: #6650bb;
  background: var(--violet-soft);
}

.feature-panel h3 {
  max-width: 12em;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.05;
}

.feature-panel p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mini-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 25px;
  color: #526078;
  font-size: 0.72rem;
  font-weight: 680;
}

.mini-checks span::first-letter {
  color: var(--mint);
}

.allowance-visual,
.approval-visual {
  position: relative;
  z-index: 1;
  padding: 27px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow-lifted);
  transform: rotate(1deg);
}

.allowance-head,
.approval-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 27px;
}

.allowance-head > div,
.approval-heading > div {
  display: grid;
}

.allowance-head small,
.approval-heading small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.allowance-head strong,
.approval-heading strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.allowance-head > span {
  padding: 7px 9px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 700;
}

.day-bars {
  display: grid;
  gap: 11px;
}

.day-bars > div {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border-radius: 8px;
}

.day-bars span {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 750;
}

.day-bars i {
  height: 7px;
  overflow: hidden;
  background: #edf0f6;
  border-radius: 999px;
}

.day-bars b {
  display: block;
  width: var(--bar);
  height: 100%;
  background: linear-gradient(90deg, #6478e8, #8d78dc);
  border-radius: inherit;
}

.day-bars small {
  color: #4d5a70;
  font-size: 0.55rem;
  font-weight: 700;
  text-align: right;
}

.day-bars .day-today {
  background: var(--blue-soft);
}

.day-today i {
  background: rgba(82, 105, 232, 0.14);
}

.allowance-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 23px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.allowance-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.57rem;
}

.allowance-footer i {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

.allowance-footer strong {
  font-size: 0.67rem;
}

.feature-panel-dark {
  color: #f4f6fb;
  background: #192231;
  border-color: #2d394b;
}

.feature-panel-dark::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(145, 162, 255, 0.2), rgba(145, 162, 255, 0) 70%);
  content: "";
}

.feature-panel-dark h3 {
  color: #f4f6fb;
}

.feature-panel-dark p {
  color: #aab4c5;
}

.theme-visual {
  position: relative;
  z-index: 1;
  height: 195px;
  margin: -6px -5px 31px;
  padding: 23px;
  background: #202b3c;
  border: 1px solid #344154;
  border-radius: 21px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.23);
  transform: rotate(1.5deg);
}

.theme-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.theme-header > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: #5269e8;
  border-radius: 12px;
}

.theme-header svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.theme-header i {
  width: 55px;
  height: 22px;
  background: #252f55;
  border-radius: 999px;
}

.theme-header i::after {
  display: block;
  width: 17px;
  height: 17px;
  margin: 2.5px 3px 0 auto;
  background: #aab7ff;
  border-radius: 50%;
  content: "";
}

.theme-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 55px;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 10px;
  background: #192231;
  border: 1px solid #2d394b;
  border-radius: 12px;
}

.theme-row b {
  width: 27px;
  height: 27px;
  background: #30284e;
  border-radius: 9px;
}

.theme-row span {
  width: 70%;
  height: 6px;
  background: #3a4658;
  border-radius: 999px;
}

.theme-row em {
  width: 42px;
  height: 17px;
  background: #1d3b35;
  border-radius: 999px;
}

.feature-panel-coral {
  background: linear-gradient(150deg, #fff0ec, #fff 68%);
  border-color: #f5ded8;
}

.assignment-visual {
  position: relative;
  min-height: 205px;
  margin: -6px -5px 26px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #efdcd8;
  border-radius: 21px;
  box-shadow: 0 17px 40px rgba(125, 66, 54, 0.1);
  transform: rotate(-1.5deg);
}

.assignment-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.assignment-item + .assignment-item {
  margin-top: 10px;
}

.assignment-item .avatar {
  width: 36px;
  height: 36px;
}

.assignment-item > div {
  display: grid;
}

.assignment-item strong {
  font-size: 0.7rem;
}

.assignment-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.52rem;
}

.assignment-item i {
  padding: 6px 8px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.47rem;
  font-style: normal;
  font-weight: 730;
}

.assignment-item + .assignment-item i {
  color: #6650bb;
  background: var(--violet-soft);
}

.assignment-line {
  position: absolute;
  z-index: 0;
  top: 45px;
  bottom: 45px;
  left: 45px;
  border-left: 2px dashed #efc7be;
}

.feature-panel-reward {
  background: linear-gradient(145deg, #f8f5ff, #fff 66%);
  border-color: #e5defa;
}

.approval-heading > span {
  padding: 7px 9px;
  color: #a56600;
  background: var(--sun-soft);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 720;
}

.approval-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 11px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.approval-item + .approval-item {
  margin-top: 9px;
}

.approval-item strong {
  font-size: 0.67rem;
}

.approval-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.5rem;
}

.approval-item button {
  padding: 7px 9px;
  color: #278162;
  background: var(--mint-soft);
  border: 0;
  border-radius: 8px;
  font-size: 0.5rem;
  font-weight: 750;
  pointer-events: none;
}

.approval-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  padding-top: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.53rem;
}

.approval-note span {
  color: var(--violet);
  font-size: 0.8rem;
  font-weight: 800;
}

.flow-section {
  background: var(--surface);
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(470px, 1.26fr);
  gap: clamp(70px, 10vw, 140px);
}

.flow-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.flow-copy h2 {
  margin-bottom: 25px;
}

.flow-copy > p {
  margin-bottom: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 760;
}

.text-link span {
  transition: transform 0.2s ease;
}

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

.flow-list {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list::before {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 28px;
  border-left: 2px dashed #d9dfeb;
  content: "";
}

.flow-list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 26px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.flow-list li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--blue);
  border: 5px solid var(--blue-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #ced6ff;
  font-size: 0.68rem;
  font-weight: 800;
}

.flow-list li:nth-child(2) > span { background: var(--violet); border-color: var(--violet-soft); box-shadow: 0 0 0 1px #ddd4fb; }
.flow-list li:nth-child(3) > span { background: var(--coral); border-color: var(--coral-soft); box-shadow: 0 0 0 1px #f6d8d1; }
.flow-list li:nth-child(4) > span { background: var(--mint); border-color: var(--mint-soft); box-shadow: 0 0 0 1px #caeadd; }

.flow-list h3 {
  margin-bottom: 7px;
  font-size: 1.16rem;
}

.flow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.hosting-section {
  padding-top: 42px;
  background: var(--surface);
}

.hosting-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  align-items: center;
  gap: clamp(54px, 8vw, 100px);
  padding: 70px;
  overflow: hidden;
  color: #fff;
  background: #182238;
  border: 1px solid #29354a;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(24, 34, 56, 0.18);
}

.hosting-card::before {
  position: absolute;
  top: -180px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(82, 105, 232, 0.24), rgba(82, 105, 232, 0) 70%);
  content: "";
}

.hosting-card::after {
  position: absolute;
  right: -150px;
  bottom: -230px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 181, 139, 0.16), rgba(62, 181, 139, 0) 70%);
  content: "";
}

.hosting-copy,
.terminal-card {
  position: relative;
  z-index: 1;
}

.eyebrow-on-dark {
  color: #d7ddff;
  background: rgba(145, 162, 255, 0.13);
  border-color: rgba(170, 183, 255, 0.22);
}

.hosting-copy h2 {
  color: #fff;
  margin-bottom: 24px;
}

.hosting-copy > p {
  color: #aab4c5;
}

.hosting-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: #d8deea;
  font-size: 0.74rem;
  font-weight: 650;
  list-style: none;
}

.hosting-copy li span {
  margin-right: 5px;
  color: #69d1aa;
}

.terminal-card {
  overflow: hidden;
  background: #111722;
  border: 1px solid #344154;
  border-radius: 21px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
  transform: rotate(1.5deg);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 43px;
  padding: 0 15px;
  color: #8f9bad;
  background: #202b3c;
  border-bottom: 1px solid #344154;
  font-size: 0.58rem;
}

.terminal-bar i:first-child { background: #ed7f6c; }
.terminal-bar i:nth-child(2) { background: #eeae48; }
.terminal-bar i:nth-child(3) { background: #3eb58b; }

.terminal-bar span {
  margin-left: auto;
}

.terminal-body {
  padding: 28px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.71rem;
  line-height: 1.8;
}

.terminal-body p {
  margin-bottom: 6px;
}

.prompt {
  margin-right: 8px;
  color: #91a2ff;
}

.terminal-muted {
  color: #6e7b8f;
}

.terminal-check {
  color: #69d1aa;
}

.terminal-url {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 22px;
  padding: 15px;
  background: #192231;
  border: 1px solid #2d394b;
  border-radius: 13px;
}

.terminal-url > div {
  display: grid;
}

.terminal-url span {
  color: #8592a6;
  font-family: var(--body);
  font-size: 0.52rem;
}

.terminal-url strong {
  margin-top: 2px;
  color: #fff;
  font-size: 0.73rem;
}

.terminal-url > i {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  color: #69d1aa;
  background: #1d3b35;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.49rem;
  font-style: normal;
  font-weight: 700;
}

.terminal-url b {
  width: 5px;
  height: 5px;
  background: #69d1aa;
  border-radius: 50%;
}

.final-cta {
  padding: 125px 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(82, 105, 232, 0.1), transparent 28rem),
    radial-gradient(circle at 90% 50%, rgba(62, 181, 139, 0.1), transparent 25rem),
    var(--canvas);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 55px 95px;
}

.final-cta h2 {
  max-width: 820px;
}

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

.final-actions p {
  max-width: 280px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

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

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

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

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

.footer-brand .brand-mark::after {
  width: 10px;
  height: 10px;
  border-width: 2px;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 19px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 680;
}

.footer-links a:hover {
  color: var(--blue-dark);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.space-grid .reveal:nth-child(2),
.feature-showcase .reveal:nth-child(2),
.flow-list .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.space-grid .reveal:nth-child(3),
.feature-showcase .reveal:nth-child(3),
.flow-list .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.flow-list .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 5.8vw, 5rem);
  }

  .profile-card-last {
    display: none;
  }

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

  .space-card {
    padding: 29px;
  }

  .feature-panel-wide {
    gap: 38px;
    padding: 40px;
  }

  .hosting-card {
    padding: 55px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

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

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

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

  .site-menu {
    position: fixed;
    top: 70px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 4px;
    padding: 13px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lifted);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-menu a {
    padding: 13px 14px;
    border-radius: 11px;
  }

  .site-menu > a:not(.nav-cta)::after {
    display: none;
  }

  .site-menu > a:not(.nav-cta):hover {
    background: var(--surface-soft);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .hero {
    padding: 132px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

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

  .hero h1 {
    font-size: clamp(3.8rem, 10vw, 5.9rem);
  }

  .product-stage {
    width: min(690px, 94%);
    margin-inline: auto;
  }

  .profile-card-last {
    display: block;
  }

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

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-grid p {
    grid-column: 1 / -1;
    text-align: center;
  }

  .proof-grid div:first-of-type {
    border-left: 0;
  }

  .section-heading,
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

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

  .space-card h3 {
    max-width: 13em;
  }

  .feature-panel-wide,
  .hosting-card {
    grid-template-columns: 1fr;
  }

  .feature-panel-wide {
    gap: 42px;
  }

  .feature-panel-wide .feature-copy {
    max-width: 620px;
  }

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

  .flow-copy {
    position: static;
    max-width: 680px;
  }

  .hosting-card {
    padding: 60px;
  }

  .hosting-copy {
    max-width: 680px;
  }

  .final-actions {
    margin-top: 7px;
  }

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

  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-shell,
  .nav-shell {
    width: min(100% - 32px, 1180px);
  }

  .nav-shell {
    height: 70px;
  }

  .site-header.is-scrolled .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 13px;
  }

  .hero {
    min-height: 0;
    padding: 116px 0 75px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.45rem);
    line-height: 0.96;
  }

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

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
  }

  .product-stage {
    width: 100%;
    padding: 35px 0 40px;
  }

  .window-bar,
  .floating-time,
  .floating-chore,
  .preview-message,
  .preview-chore,
  .profile-card-last {
    display: none;
  }

  .product-window {
    transform: none;
  }

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

  .preview-body {
    padding: 17px;
  }

  .proof-strip {
    padding: 31px 0;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proof-grid p {
    text-align: left;
  }

  .proof-grid div {
    padding: 0 0 0 16px;
    border-left: 2px solid rgba(170, 183, 255, 0.35);
  }

  .proof-grid div:first-of-type {
    border-left: 2px solid rgba(170, 183, 255, 0.35);
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .flow-copy h2,
  .hosting-copy h2,
  .final-cta h2 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }

  .space-card,
  .feature-panel {
    padding: 27px;
    border-radius: 22px;
  }

  .space-icon {
    margin-bottom: 34px;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-panel-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 27px;
  }

  .allowance-visual,
  .approval-visual {
    margin: 0 -8px -8px;
    padding: 20px;
    transform: none;
  }

  .allowance-head > span {
    display: none;
  }

  .feature-panel-dark,
  .feature-panel-coral {
    min-height: 0;
  }

  .theme-visual,
  .assignment-visual {
    margin-right: -8px;
    margin-left: -8px;
  }

  .flow-list li {
    gap: 15px;
    padding: 21px;
  }

  .flow-list::before {
    left: 44px;
  }

  .hosting-section {
    padding-top: 10px;
  }

  .hosting-card {
    width: min(100% - 20px, 1180px);
    padding: 45px 25px;
    border-radius: 26px;
  }

  .hosting-copy ul {
    grid-template-columns: 1fr;
  }

  .terminal-card {
    transform: none;
  }

  .terminal-body {
    padding: 20px;
    font-size: 0.6rem;
  }

  .terminal-url {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta {
    padding: 90px 0;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

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