:root {
  --ink: #111411;
  --muted: #5d665f;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #d9ded9;
  --soft: #ecefeb;
  --green: #2da44e;
  --green-deep: #1f7a38;
  --red: #e52222;
  --yellow: #f3c63f;
  --dark: #0d1117;
  --dark-soft: #171c22;
  --shell: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(247, 248, 245, 0.96);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 760;
  line-height: 1;
}

.brand img {
  border-radius: 7px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 34px;
  font-size: 14px;
  font-weight: 620;
}

.desktop-nav a,
.footer-links a,
.text-link {
  transition: color 150ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--green);
}

.header-actions,
.hero-actions,
.store-links {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 10px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.button-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.button-primary:hover {
  background: #258d43;
  border-color: #258d43;
}

.button-quiet {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.button-large {
  min-height: 52px;
  padding: 0 23px;
  font-size: 15px;
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  border: 0;
  padding: 10px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100vh - 58px));
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  opacity: 0.68;
  filter: brightness(0.68) saturate(0.72) contrast(1.08);
  transform: scale(1.025);
}

.hero-shade {
  background: rgba(5, 9, 13, 0.72);
  clip-path: polygon(0 0, 64% 0, 54% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-copy {
  width: min(610px, 56%);
  padding: 64px 0 76px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: #b9f3c6;
  margin-bottom: 22px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3fce66;
  box-shadow: 0 0 0 5px rgba(63, 206, 102, 0.14);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.94;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-lead {
  margin: 22px 0 0;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.22;
  font-weight: 680;
}

.hero-description {
  max-width: 555px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero-meta span {
  position: relative;
}

.hero-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 24px;
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-strip {
  background: var(--yellow);
  border-bottom: 1px solid #cfaa36;
}

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

.proof-item {
  min-height: 112px;
  display: flex;
  align-items: baseline;
  gap: 13px;
  padding: 30px 28px;
  border-left: 1px solid rgba(17, 20, 17, 0.2);
}

.proof-item:last-child {
  border-right: 1px solid rgba(17, 20, 17, 0.2);
}

.proof-item strong {
  font-size: 32px;
  line-height: 1;
}

.proof-item span {
  max-width: 130px;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.section-heading h2,
.capabilities-intro h2,
.privacy-copy h2,
.open-source-copy h2,
.install-inner h2 {
  margin: 13px 0 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: 0;
}

.section-heading p,
.capabilities-intro p,
.open-source-copy p,
.install-inner > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 70px;
}

.step {
  position: relative;
  min-height: 176px;
  padding-right: 20px;
}

.step-number {
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 850;
}

.step-line {
  height: 1px;
  margin: 18px 0 24px;
  background: var(--line);
}

.step-line::before {
  content: "";
  display: block;
  width: 38%;
  height: 2px;
  background: var(--green);
}

.step h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-frame,
.feature-screen {
  margin: 0;
  overflow: hidden;
  border: 1px solid #303841;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 34px 80px rgba(15, 20, 17, 0.18);
}

.browser-bar {
  height: 54px;
  display: grid;
  grid-template-columns: 110px minmax(180px, 1fr) 180px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  color: #aeb7bf;
  background: #171c22;
  border-bottom: 1px solid #303841;
  font-size: 11px;
}

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

.browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5b636b;
}

.browser-dots i:first-child { background: #ff6257; }
.browser-dots i:nth-child(2) { background: #ffbd2f; }
.browser-dots i:last-child { background: #28c840; }

.address-bar {
  overflow: hidden;
  padding: 7px 14px;
  color: #7f8a94;
  background: #0d1117;
  border: 1px solid #303841;
  border-radius: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-secure {
  justify-self: end;
  color: #76d68d;
}

.product-frame > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-section {
  background: #eef1ec;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature-heading p {
  margin-left: auto;
  margin-right: auto;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-tab {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.feature-tab:hover {
  background: rgba(255, 255, 255, 0.55);
}

.feature-tab.is-active {
  background: var(--white);
  border-left-color: var(--green);
}

.tab-index {
  color: #829087;
  font-size: 11px;
  font-weight: 800;
}

.feature-tab strong,
.feature-tab small {
  display: block;
}

.feature-tab strong {
  font-size: 14px;
}

.feature-tab small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.feature-screen {
  box-shadow: 0 28px 70px rgba(15, 20, 17, 0.16);
}

.screen-topline {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  color: #9aa5ae;
  border-bottom: 1px solid #303841;
  font-size: 11px;
}

.screen-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.screen-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3fce66;
}

.feature-screen img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: opacity 120ms ease;
}

.feature-screen img.is-changing {
  opacity: 0.25;
}

.capabilities-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.capabilities-intro {
  position: sticky;
  top: 120px;
}

.capabilities-intro h2 {
  font-size: clamp(38px, 4.4vw, 58px);
}

.capability {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.capability:last-child {
  border-bottom: 1px solid var(--line);
}

.capability-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  border: 1px solid #9fcaaa;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.capability h3 {
  margin: 0;
  font-size: 20px;
}

.capability p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--dark);
  color: var(--white);
}

.privacy-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(#ffffff 1px, transparent 1px), linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, #000 36%, #000);
}

.privacy-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 100px;
  align-items: center;
}

.section-kicker.light {
  color: #83df99;
}

.privacy-copy h2 {
  max-width: 760px;
}

.privacy-copy p {
  max-width: 640px;
  margin: 26px 0 0;
  color: #abb5bd;
  font-size: 17px;
}

.privacy-points {
  border-top: 1px solid #39414a;
}

.privacy-points div {
  min-height: 66px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  border-bottom: 1px solid #39414a;
}

.privacy-points span {
  color: #70d288;
  font-size: 11px;
  font-weight: 800;
}

.privacy-points strong {
  font-size: 15px;
}

.audience-section {
  background: var(--white);
}

.audience-list {
  border-top: 1px solid var(--line);
}

.audience-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.audience-item span {
  color: var(--green-deep);
  font-weight: 800;
}

.audience-item p {
  margin: 0;
  color: var(--muted);
}

.open-source-section {
  padding: 110px 0;
  background: var(--yellow);
  border-top: 1px solid #cfaa36;
  border-bottom: 1px solid #cfaa36;
}

.open-source-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.78fr);
  gap: 90px;
  align-items: center;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 800;
}

.logo-lockup img {
  border-radius: 12px;
}

.open-source-copy h2 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.open-source-copy p {
  color: #4b421f;
}

.repo-panel {
  padding: 30px;
  color: var(--white);
  background: var(--dark);
  border: 1px solid #303841;
  border-radius: 8px;
  box-shadow: 10px 12px 0 rgba(17, 20, 17, 0.18);
}

.repo-path {
  padding-bottom: 22px;
  border-bottom: 1px solid #303841;
  font-size: 16px;
}

.repo-path span {
  color: #8d99a3;
}

.repo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 20px 0 26px;
  color: #aeb7bf;
  font-size: 12px;
}

.repo-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.repo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.repo-dot.green {
  background: #f1e05a;
}

.button-dark {
  width: 100%;
  color: var(--white);
  border-color: #48515b;
  background: #20262d;
}

.button-dark:hover {
  background: #2b333c;
}

.install-section {
  padding: 130px 0 140px;
  background: var(--paper);
}

.install-inner {
  text-align: center;
}

.install-inner h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.install-inner > p {
  margin-left: auto;
  margin-right: auto;
}

.store-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 45px;
}

.store-link {
  width: 230px;
  min-height: 72px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 13px 48px 13px 18px;
  color: var(--ink);
  border: 1px solid #bfc7c0;
  border-radius: 7px;
  background: var(--white);
  text-align: left;
  transition: transform 150ms ease, border-color 150ms ease;
}

.store-link:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}

.store-link.primary {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.store-link span {
  color: var(--muted);
  font-size: 10px;
}

.store-link.primary span {
  color: rgba(255, 255, 255, 0.7);
}

.store-link strong {
  font-size: 15px;
}

.store-link b {
  position: absolute;
  right: 18px;
  font-size: 16px;
}

.site-footer {
  padding: 48px 0;
  color: #a9b3bc;
  background: var(--dark);
}

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

.footer-brand {
  color: var(--white);
  font-size: 16px;
}

.footer-inner > div:first-child p {
  margin: 12px 0 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: #d9e0e5;
  font-size: 13px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #303841;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 24px;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

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

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
    font-weight: 700;
  }

  .hero-media img {
    object-position: 57% center;
    opacity: 0.52;
  }

  .hero-shade {
    background: rgba(5, 9, 13, 0.68);
    clip-path: polygon(0 0, 78% 0, 62% 100%, 0 100%);
  }

  .hero-copy {
    width: min(650px, 76%);
  }

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

  .proof-item:nth-child(3) {
    border-top: 1px solid rgba(17, 20, 17, 0.2);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid rgba(17, 20, 17, 0.2);
  }

  .feature-showcase,
  .capabilities-layout,
  .privacy-inner,
  .open-source-inner {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .feature-tab {
    scroll-snap-align: start;
  }

  .capabilities-layout,
  .privacy-inner,
  .open-source-inner {
    gap: 58px;
  }

  .capabilities-intro {
    position: static;
  }

  .privacy-section {
    padding: 100px 0;
  }

  .open-source-section {
    padding: 90px 0;
  }

  .repo-panel {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-actions .button-primary {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: calc(100svh - 32px);
  }

  .hero-media img {
    object-position: 58% center;
    opacity: 0.48;
    filter: brightness(0.58) saturate(0.68);
  }

  .hero-shade {
    background: rgba(5, 9, 13, 0.69);
    clip-path: none;
  }

  .hero-inner {
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding: 110px 0 68px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(52px, 18vw, 72px);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 25px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-caption {
    display: none;
  }

  .proof-item {
    min-height: 104px;
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
    padding: 22px 18px;
  }

  .proof-item strong {
    font-size: 26px;
  }

  .proof-item span {
    max-width: none;
  }

  .section {
    padding: 84px 0;
  }

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

  .section-heading h2,
  .capabilities-intro h2,
  .privacy-copy h2,
  .open-source-copy h2,
  .install-inner h2 {
    font-size: 38px;
  }

  .section-heading p,
  .capabilities-intro p,
  .privacy-copy p,
  .open-source-copy p,
  .install-inner > p {
    font-size: 15px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 48px;
  }

  .step {
    min-height: auto;
    padding: 0 0 24px;
  }

  .browser-bar {
    height: 42px;
    grid-template-columns: 74px minmax(100px, 1fr);
    gap: 8px;
    padding: 0 10px;
  }

  .browser-secure {
    display: none;
  }

  .browser-dots i {
    width: 7px;
    height: 7px;
  }

  .feature-showcase {
    gap: 18px;
  }

  .feature-tabs {
    grid-template-columns: repeat(5, 230px);
  }

  .feature-screen img {
    min-height: 270px;
    object-position: 12% center;
  }

  .capability {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .capability-mark {
    width: 36px;
    height: 36px;
  }

  .privacy-section {
    padding: 84px 0;
  }

  .privacy-inner {
    gap: 44px;
  }

  .audience-item {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .open-source-section {
    padding: 80px 0;
  }

  .open-source-inner {
    gap: 44px;
  }

  .logo-lockup img {
    width: 52px;
    height: 52px;
  }

  .repo-panel {
    padding: 22px;
    box-shadow: 7px 8px 0 rgba(17, 20, 17, 0.18);
  }

  .repo-path {
    overflow-wrap: anywhere;
  }

  .install-section {
    padding: 90px 0 100px;
  }

  .store-links {
    align-items: stretch;
    flex-direction: column;
  }

  .store-link {
    width: 100%;
  }

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

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

@media (max-width: 390px) {
  .hero-meta {
    flex-direction: column;
    gap: 5px;
  }

  .hero-meta span::after {
    display: none;
  }

  .section-heading h2,
  .capabilities-intro h2,
  .privacy-copy h2,
  .open-source-copy h2,
  .install-inner h2 {
    font-size: 34px;
  }
}
