:root {
  color-scheme: dark;
  --bg: #09090a;
  --surface: #111113;
  --surface-light: #171719;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f2ed;
  --muted: #a5a19b;
  --accent: #ff4da6;
  --accent-light: #ff8bc4;
  --acid: #d9ff4f;
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 16px;
  color: #0b0b0c;
  background: var(--acid);
  transform: translateY(-150%);
  transition: transform 180ms ease-out;
}

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(9, 9, 10, 0.78);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--accent);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

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

.desktop-nav a {
  position: relative;
  color: #8e8a85;
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease-out;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

.desktop-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -26px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.age-badge {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.header-cta {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  transition:
    background 180ms ease-out,
    border-color 180ms ease-out;
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, 100svh);
  padding: 168px clamp(24px, 7vw, 112px) 96px;
  overflow: hidden;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 64px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  pointer-events: none;
  content: "";
  background: linear-gradient(transparent, var(--bg));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-glow-one {
  top: -240px;
  right: -160px;
  width: 670px;
  height: 670px;
  opacity: 0.18;
  background: radial-gradient(circle, var(--accent), transparent 67%);
}

.hero-glow-two {
  bottom: -300px;
  left: 18%;
  width: 560px;
  height: 560px;
  opacity: 0.06;
  background: radial-gradient(circle, var(--acid), transparent 67%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #c9c4bd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px rgba(217, 255, 79, 0.8);
}

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

h1 {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(48px, 5.35vw, 86px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 span {
  color: var(--accent);
  font-style: italic;
}

.hero-description {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
}

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

.primary-button,
.secondary-button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  overflow: hidden;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease-out,
    background 180ms ease-out,
    border-color 180ms ease-out;
}

.primary-button {
  color: #160c12;
  background: var(--accent);
}

.primary-button::after {
  position: absolute;
  top: 0;
  left: -110%;
  width: 70%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 500ms ease-out;
}

.primary-button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.primary-button:hover::after {
  left: 130%;
}

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

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.primary-button svg,
.secondary-button svg {
  width: 18px;
  height: 18px;
}

.hero-meta {
  display: flex;
  margin-top: 34px;
  gap: 24px;
  color: #817e79;
  font-size: 11px;
  font-weight: 600;
}

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

.hero-meta svg {
  width: 17px;
  height: 17px;
  color: #aaa59f;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 810px;
  justify-self: end;
  perspective: 1300px;
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 77, 166, 0.16);
  border-radius: 50%;
}

.orbit-one {
  top: -20%;
  right: -6%;
  width: 610px;
  height: 610px;
}

.orbit-two {
  top: 5%;
  right: 6%;
  width: 480px;
  height: 480px;
  border-style: dashed;
  animation: orbit 40s linear infinite;
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: #101012;
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.62),
    0 0 80px rgba(255, 77, 166, 0.08);
  transform: rotateY(-5deg) rotateX(2deg);
  transform-origin: center center;
}

.window-bar {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #161618;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8b4ae;
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.mini-mark {
  width: 12px;
  height: 12px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  box-shadow: inset -3px 0 0 var(--accent);
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #39393c;
}

.editor {
  display: grid;
  height: clamp(390px, 38vw, 530px);
  grid-template-columns: 52px minmax(280px, 1fr) 170px;
}

.editor-sidebar {
  display: flex;
  align-items: center;
  padding: 16px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: #131315;
  flex-direction: column;
  gap: 11px;
}

.editor-tool {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 3px;
  color: #646468;
}

.editor-tool svg {
  width: 18px;
  height: 18px;
}

.active-tool {
  color: var(--accent);
  background: rgba(255, 77, 166, 0.13);
}

.editor-canvas {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0c0c0e;
  background-size: 24px 24px;
}

.portrait {
  position: relative;
  width: 73%;
  height: 87%;
  overflow: hidden;
  border-radius: 80px 80px 5px 5px;
  background: #1a1218;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.portrait-photo {
  position: absolute;
  inset: -8%;
  z-index: 1;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center 18%;
  filter: blur(18px) saturate(1.15) brightness(0.92);
  transform: scale(1.08);
}

.portrait-blur {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(12, 8, 14, 0.15), rgba(18, 8, 16, 0.55)),
    radial-gradient(circle at 50% 35%, transparent 20%, rgba(9, 9, 10, 0.35) 100%);
  backdrop-filter: blur(2px);
}

.portrait-noise {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.scan-line {
  position: absolute;
  z-index: 8;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  animation: scan 4.5s ease-in-out infinite;
}

.focus-point {
  position: absolute;
  z-index: 8;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.point-one {
  top: 33%;
  left: 39%;
}

.point-two {
  top: 50%;
  right: 26%;
}

.point-three {
  bottom: 24%;
  left: 27%;
}

.generation-pill {
  position: absolute;
  z-index: 9;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: #c8c4be;
  background: rgba(12, 12, 14, 0.8);
  backdrop-filter: blur(10px);
  font-size: 8px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.generation-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 9px rgba(217, 255, 79, 0.8);
}

.settings-panel {
  padding: 24px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: #131315;
}

.panel-label {
  margin-bottom: 30px;
  color: #a7a3a0;
  font-size: 10px;
  font-weight: 700;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #747478;
  font-size: 8px;
}

.setting-row b {
  color: #b8b4b1;
  font-size: 8px;
}

.range {
  height: 2px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #2b2b2e;
}

.range i {
  display: block;
  height: 100%;
  background: var(--accent);
}

.settings-panel button {
  width: 100%;
  min-height: 34px;
  margin-top: 14px;
  border: 0;
  border-radius: 2px;
  color: #1c0b14;
  background: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(23, 23, 25, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.privacy-card {
  bottom: -26px;
  left: -34px;
  gap: 11px;
  padding: 13px 17px;
}

.floating-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--acid);
  background: rgba(217, 255, 79, 0.1);
}

.floating-icon svg {
  width: 19px;
  height: 19px;
}

.floating-card b,
.floating-card small {
  display: block;
}

.floating-card b {
  margin-bottom: 3px;
  font-size: 10px;
}

.floating-card small {
  color: #7e7a77;
  font-size: 8px;
}

.speed-card {
  top: 17%;
  right: -28px;
  align-items: flex-start;
  padding: 14px 16px;
  flex-direction: column;
}

.speed-value {
  color: var(--accent-light);
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.05em;
}

.speed-value span {
  margin-left: 2px;
  color: #b1aca8;
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: clamp(24px, 7vw, 112px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #5f5c59;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, #5f5c59, transparent);
}

.feature-strip {
  position: relative;
  display: grid;
  padding: 0 clamp(24px, 7vw, 112px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0c0d;
  grid-template-columns: repeat(3, 1fr);
}

.feature-strip article {
  display: grid;
  min-height: 230px;
  padding: 48px 36px;
  grid-template-columns: 34px 1fr;
  gap: 18px;
}

.feature-strip article + article {
  border-left: 1px solid var(--line);
}

.feature-strip article > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 9px;
}

.feature-strip h2 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.feature-strip p {
  margin-bottom: 0;
  color: #7d7975;
  font-size: 13px;
  line-height: 1.65;
}

.privacy-section,
.download-section {
  display: grid;
  padding: 120px clamp(24px, 10vw, 160px);
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.section-kicker {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-section h2,
.download-section h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.privacy-section > p {
  max-width: 570px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.download-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 110%, rgba(255, 77, 166, 0.2), transparent 36%),
    #111113;
}

.download-section::after {
  position: absolute;
  top: -80%;
  right: -8%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.015),
    0 0 0 200px rgba(255, 255, 255, 0.01);
}

.download-button {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-radius: 3px;
  color: #16100f;
  background: var(--acid);
  transition:
    transform 180ms ease-out,
    background 180ms ease-out,
    opacity 180ms ease-out;
}

.download-button-mac {
  color: #160c12;
  background: var(--accent);
}

.download-button.is-empty {
  opacity: 0.55;
}

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

.download-button:hover:not(.download-button-mac) {
  background: #e5ff7b;
}

.download-button-mac:hover {
  background: var(--accent-light);
}

.download-button small,
.download-button strong {
  display: block;
}

.download-button small {
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-button strong {
  font-size: 17px;
}

.download-button svg {
  width: 28px;
  height: 28px;
}

footer {
  display: grid;
  min-height: 140px;
  align-items: center;
  padding: 32px clamp(24px, 7vw, 112px);
  color: #696662;
  grid-template-columns: 1fr auto 1fr;
  font-size: 11px;
}

.footer-brand {
  color: var(--text);
}

footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-self: end;
  gap: 24px;
}

.footer-links a {
  transition: color 180ms ease-out;
}

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

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  max-width: min(390px, calc(100vw - 48px));
  min-height: 52px;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #cfcbc5;
  background: #19191b;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 180ms ease-out,
    transform 180ms ease-out;
}

.toast.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast button {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  color: #908c87;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

@keyframes scan {
  0%,
  100% {
    top: 17%;
    opacity: 0;
  }
  10%,
  90% {
    opacity: 0.8;
  }
  50% {
    top: 84%;
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 148px;
    padding-bottom: 120px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 760px;
    justify-self: center;
  }

  .privacy-card {
    left: 16px;
  }

  .speed-card {
    right: 10px;
  }

  .feature-strip {
    padding: 0 24px;
  }

  .feature-strip article {
    padding: 40px 22px;
  }

  .privacy-section,
  .download-section {
    padding: 96px 48px;
  }

  footer {
    padding-inline: 48px;
  }
}

@media (max-width: 760px) {
  .header {
    height: 64px;
    padding: 0 20px;
  }

  .brand {
    font-size: 13px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .age-badge,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
  }

  .menu-button span {
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease-out;
  }

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

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

  .mobile-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: flex;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 9, 10, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease-out,
      transform 180ms ease-out;
    flex-direction: column;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    font-weight: 600;
  }

  .hero {
    padding: 122px 20px 90px;
    gap: 66px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(43px, 13vw, 62px);
  }

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

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .app-window {
    transform: none;
  }

  .window-bar {
    height: 42px;
  }

  .editor {
    height: 340px;
    grid-template-columns: 40px 1fr;
  }

  .editor-sidebar {
    padding-inline: 4px;
  }

  .settings-panel {
    display: none;
  }

  .portrait {
    width: 75%;
    height: 85%;
  }

  .privacy-card {
    bottom: -38px;
    left: 8px;
  }

  .speed-card {
    top: 12%;
    right: -4px;
  }

  .scroll-cue {
    display: none;
  }

  .feature-strip {
    display: block;
    padding: 0 20px;
  }

  .feature-strip article {
    min-height: auto;
    padding: 38px 0;
  }

  .feature-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .privacy-section,
  .download-section {
    padding: 76px 20px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .privacy-section > p {
    font-size: 14px;
  }

  .download-button {
    min-height: 88px;
    padding: 20px;
  }

  .download-button strong {
    font-size: 15px;
  }

  footer {
    display: flex;
    padding: 42px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    justify-self: auto;
    flex-wrap: wrap;
    gap: 16px 22px;
  }
}

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

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