:root {
  color-scheme: dark;
  --bg: #050913;
  --bg-2: #07101f;
  --panel: rgba(8, 16, 31, 0.82);
  --panel-strong: rgba(9, 19, 36, 0.96);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(0, 214, 143, 0.36);
  --text: #f7fbff;
  --muted: #95a3bb;
  --muted-2: #60708c;
  --green: #00d68f;
  --green-2: #12f4aa;
  --blue: #4b8eff;
  --amber: #f5b731;
  --red: #ff4d63;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius: 20px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 214, 143, 0.12), transparent 32rem),
    radial-gradient(circle at 12% 26%, rgba(75, 142, 255, 0.11), transparent 30rem),
    linear-gradient(140deg, #03060d 0%, #050913 44%, #071327 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(0, 214, 143, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 142, 255, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.65) 42%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(0, 214, 143, 0.08) 20%, transparent 34%),
    linear-gradient(to bottom, transparent 0%, rgba(5, 9, 19, 0.72) 82%, #050913 100%);
  pointer-events: none;
}

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

button,
summary {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 32px), 1480px);
  height: 76px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 16px 0 18px;
  border: 1px solid transparent;
  border-radius: 0 0 22px 22px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 19, 0.84);
  border-color: var(--line);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 18px rgba(0, 214, 143, 0.22));
}

.brand strong {
  color: var(--green);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #d9e4f6;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--green);
  background: rgba(0, 214, 143, 0.06);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.nav-download svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 82px;
  left: 16px;
  right: 16px;
  z-index: 29;
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 14, 27, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu a {
  padding: 13px 14px;
  border-radius: 10px;
  color: #d9e4f6;
  font-weight: 800;
}

.mobile-menu a:last-child {
  color: #00130d;
  background: var(--green);
}

.mobile-menu.is-open {
  display: grid;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(620px, 1.14fr);
  gap: 42px;
  align-items: start;
  min-height: 100vh;
  padding: 132px 0 86px;
}

.hero::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 214, 143, 0.38), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(58px, 6vw, 106px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.045em;
}

h1::first-line {
  color: var(--text);
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: var(--text);
}

.hero h1 span:last-child {
  color: var(--green);
  text-shadow: 0 0 42px rgba(0, 214, 143, 0.2);
}

.hero-copy p {
  max-width: 620px;
  margin-top: 26px;
  color: #c4cee0;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.button-primary {
  color: #00130d;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 20px 44px rgba(0, 214, 143, 0.2);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.button-ghost:hover,
.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(0, 214, 143, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: #aebbd0;
  font-size: 14px;
  font-weight: 750;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 214, 143, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, var(--green) 43% 57%, transparent 58%),
    linear-gradient(45deg, transparent 48%, var(--green) 49% 60%, transparent 61%);
}

.hero-product {
  position: relative;
  z-index: 1;
  min-width: 0;
  perspective: 1200px;
}

.product-frame {
  position: relative;
  width: 96%;
  margin-left: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 214, 143, 0.42);
  border-radius: 24px;
  background: #050913;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.5),
    0 0 76px rgba(0, 214, 143, 0.16);
  transform: rotateX(2deg) rotateY(-8deg) rotateZ(1deg);
  transform-origin: center;
}

.product-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 28%, transparent 72%, rgba(0, 214, 143, 0.1));
  mix-blend-mode: screen;
  opacity: 0.55;
}

.frame-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 7, 15, 0.92);
}

.frame-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #33425f;
}

.frame-topbar span:first-child {
  background: var(--red);
}

.frame-topbar span:nth-child(2) {
  background: var(--amber);
}

.frame-topbar span:nth-child(3) {
  background: var(--green);
}

.frame-topbar strong {
  margin-left: 8px;
  color: #aebbd0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 5px;
  min-width: 206px;
  padding: 17px 18px;
  border: 1px solid rgba(0, 214, 143, 0.34);
  border-radius: 16px;
  background: rgba(7, 15, 29, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.floating-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card strong {
  color: var(--text);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 21px;
}

.floating-card span {
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}

.equity-card {
  left: -34px;
  bottom: 54px;
}

.signal-card {
  top: 54px;
  right: -12px;
}

.metrics-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: -52px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 16, 31, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metrics-bar div {
  min-height: 96px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.metrics-bar div:last-child {
  border-right: 0;
}

.metrics-bar strong {
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(24px, 2.4vw, 37px);
  line-height: 1;
}

.metrics-bar span {
  color: #aab6ca;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.feature-section,
.performance-section,
.video-section,
.screenshots-section,
.security-section,
.faq-section,
.final-cta {
  padding-top: 118px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.performance-copy h2,
.security-copy h2,
.final-cta h2 {
  color: var(--text);
  font-size: clamp(40px, 4vw, 68px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading p,
.performance-copy p,
.security-copy p,
.final-cta p {
  margin-top: 18px;
  color: #adbad0;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
}

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

.feature-card,
.security-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(9, 19, 36, 0.86), rgba(6, 13, 25, 0.72));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.feature-card {
  min-height: 312px;
  padding: 24px;
}

.feature-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 214, 143, 0.34);
  border-radius: 18px;
  color: var(--green);
  background: rgba(0, 214, 143, 0.08);
}

.feature-icon.blue {
  color: var(--blue);
  border-color: rgba(75, 142, 255, 0.36);
  background: rgba(75, 142, 255, 0.08);
}

.feature-icon.amber {
  color: var(--amber);
  border-color: rgba(245, 183, 49, 0.36);
  background: rgba(245, 183, 49, 0.08);
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-top: 22px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.feature-card p {
  min-height: 96px;
  margin-top: 12px;
  color: #aab6ca;
  font-size: 15px;
  line-height: 1.48;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chips span {
  padding: 6px 9px;
  border: 1px solid rgba(0, 214, 143, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(0, 214, 143, 0.07);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
}

.performance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: center;
}

.performance-copy {
  max-width: 560px;
}

.performance-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.performance-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #d4def0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}

.performance-list span,
.security-item span {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(0, 214, 143, 0.45);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 43%, var(--green) 44% 58%, transparent 59%),
    linear-gradient(45deg, transparent 50%, var(--green) 51% 62%, transparent 63%);
}

.performance-panel,
.video-frame,
.screenshot-preview {
  overflow: hidden;
  border: 1px solid rgba(0, 214, 143, 0.28);
  border-radius: 24px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.performance-panel img,
.screenshot-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.video-frame {
  padding: 12px;
}

.video-frame video {
  width: 100%;
  border-radius: 16px;
  background: #02050b;
}

.screenshot-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 22px;
}

.screenshot-tabs {
  display: grid;
  gap: 12px;
  align-content: start;
  align-self: start;
}

.screenshot-tabs button {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #dbe6f8;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.screenshot-tabs button:hover,
.screenshot-tabs button.active {
  border-color: var(--line-strong);
  background: rgba(0, 214, 143, 0.08);
  transform: translateX(3px);
}

.screenshot-tabs strong {
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 18px;
}

.screenshot-tabs span {
  font-size: 16px;
  font-weight: 850;
}

.screenshot-preview {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.screenshot-preview img {
  max-height: 590px;
}

.screenshot-preview figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(4, 10, 20, 0.84);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.security-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: start;
}

.security-copy {
  position: sticky;
  top: 116px;
}

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

.security-item {
  min-height: 188px;
  padding: 24px;
}

.security-item strong {
  display: block;
  margin-top: 20px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.security-item p {
  margin-top: 10px;
  color: #aab6ca;
  font-size: 15px;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 0 20px;
  color: #aab6ca;
  font-size: 15px;
  line-height: 1.5;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 110px;
  margin-bottom: 56px;
  padding: 34px;
  border: 1px solid rgba(0, 214, 143, 0.3);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 214, 143, 0.12), transparent 34%),
    rgba(8, 16, 31, 0.9);
  box-shadow: var(--shadow);
}

.final-cta > div:first-child {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.final-cta img {
  grid-row: span 2;
  filter: drop-shadow(0 0 22px rgba(0, 214, 143, 0.25));
}

.final-cta h2 {
  font-size: clamp(32px, 3.4vw, 54px);
}

.final-cta p {
  max-width: 680px;
  margin-top: 8px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.site-footer p {
  max-width: 520px;
  margin-top: 12px;
  color: #8fa0ba;
  font-size: 14px;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  color: #bfcbde;
  font-size: 14px;
  font-weight: 800;
}

.risk-note {
  grid-column: 1 / -1;
  max-width: none !important;
  margin-top: 0 !important;
  color: #6d7c97 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 230ms;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .nav-download,
  .screenshot-tabs button {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 128px;
  }

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

  .hero-product {
    width: min(100%, 900px);
    margin: 0 auto;
    transform: none;
  }

  .product-frame {
    width: 100%;
  }

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

  .metrics-bar div:nth-child(2n) {
    border-right: 0;
  }

  .metrics-bar div:nth-child(1),
  .metrics-bar div:nth-child(2),
  .metrics-bar div:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .performance-section,
  .security-section {
    grid-template-columns: 1fr;
  }

  .performance-copy,
  .security-copy {
    max-width: 760px;
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 20px);
    height: 68px;
  }

  .nav-download {
    display: none;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: auto;
    padding: 112px 0 68px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .hero-copy p,
  .section-heading p,
  .performance-copy p,
  .security-copy p,
  .final-cta p {
    font-size: 17px;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .product-frame {
    border-radius: 18px;
    transform: none;
  }

  .frame-topbar strong {
    font-size: 10px;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .metrics-bar,
  .feature-grid,
  .security-grid,
  .faq-list,
  .screenshot-layout {
    grid-template-columns: 1fr;
  }

  .metrics-bar {
    margin-top: 0;
  }

  .metrics-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-bar div:last-child {
    border-bottom: 0;
  }

  .feature-section,
  .performance-section,
  .video-section,
  .screenshots-section,
  .security-section,
  .faq-section,
  .final-cta {
    padding-top: 82px;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card p {
    min-height: 0;
  }

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

  .screenshot-tabs button {
    min-height: 74px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .final-cta {
    display: grid;
    padding: 24px;
  }

  .final-cta > div:first-child {
    grid-template-columns: 1fr;
  }

  .final-cta img {
    grid-row: auto;
  }

  .site-footer {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .brand span {
    font-size: 16px;
  }

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

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

  .screenshot-tabs {
    grid-template-columns: 1fr;
  }
}
