:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f9fbfd;
  --surface: #ffffff;
  --surface-soft: #f4f7fa;
  --border: #eaeff4;
  --border-strong: #d9dfe4;
  --fg: #0b1015;
  --fg-muted: #4b545c;
  --fg-subtle: #6a737b;
  --action: #005c21;
  --action-hover: #003f17;
  --accent-soft-bg: #e7f7e9;
  --accent-soft-border: #a7e2b2;
  --privacy-band: #003414;
  --privacy-band-soft: #ccf0d2;
  --footer: #0b1015;
  --footer-fg: #bec5cc;
  --focus: rgba(0, 92, 33, 0.36);
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--fg);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}

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

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

.container {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(217, 223, 228, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  overflow: hidden;
  background: #e9f4fe;
  box-shadow: inset 0 0 0 1px rgba(7, 12, 17, 0.08);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: block;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand-parent {
  display: block;
  margin-top: 3px;
  color: var(--fg-subtle);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

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

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface);
  color: var(--fg);
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 750;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

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

.btn-primary {
  background: var(--action);
  color: #fff;
}

.btn-primary:hover {
  background: var(--action-hover);
}

.btn-small {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 14px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-buttons a {
  display: inline-flex;
  text-decoration: none;
  transition: transform 140ms ease, filter 140ms ease;
}

.store-buttons a:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.hero {
  padding: 90px 0 80px;
  background: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--action);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: none;
}

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

h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.mobile-hero-title,
.mobile-hero-lead {
  display: none;
}

h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.25rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-top: 20px;
  color: var(--fg-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.hero .lead {
  max-width: 540px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
}

.hero-partner {
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin-top: 32px;
}

.hero-partner p {
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.hero-partner strong {
  color: var(--fg);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.hero .store-buttons {
  margin-top: 18px;
}

.free-line {
  margin-top: 14px;
  color: var(--action);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
}

.reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 500;
}

.reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.check-icon {
  width: 14px;
  height: 14px;
  color: var(--action);
}

.screen-panel {
  position: relative;
  width: min(100%, 372px);
  margin-left: auto;
  margin-right: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.screen-panel img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
}

.trust-strip-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.trust-item > div {
  display: grid;
  gap: 2px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-soft-border);
  border-radius: 10px;
  background: var(--accent-soft-bg);
  color: var(--action);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.trust-item strong {
  display: block;
  color: var(--fg);
  font-size: 14px;
  font-weight: 600;
}

.trust-item span {
  color: var(--fg-subtle);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  align-items: center;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

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

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

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 24px;
}

.card p {
  margin-top: 9px;
  color: var(--fg-muted);
}

.icon-tile {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid var(--accent-soft-border);
  border-radius: 12px;
  background: var(--accent-soft-bg);
  color: var(--action);
  font-weight: 800;
}

.icon-tile svg {
  width: 20px;
  height: 20px;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--fg-muted);
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--action);
}

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

.audience-card {
  min-height: 220px;
}

.privacy-band {
  background: var(--privacy-band);
  color: #fff;
}

.privacy-band .eyebrow {
  color: var(--privacy-band-soft);
}

.privacy-band .eyebrow-dot {
  background: var(--privacy-band-soft);
}

.privacy-band .lead,
.privacy-band p {
  color: var(--privacy-band-soft);
}

.privacy-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.privacy-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 5px;
}

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

.privacy-stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  color: #fff;
}

.privacy-stat strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.privacy-stat span {
  display: block;
  margin-top: 4px;
  color: var(--privacy-band-soft);
  font-size: 13px;
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 750;
}

.faq-list p {
  margin-top: 10px;
  color: var(--fg-muted);
}

.final-cta {
  padding: 90px 0;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.final-cta h2,
.final-cta .lead {
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.final-cta .lead {
  max-width: 580px;
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.55;
}

.final-cta .store-buttons {
  justify-content: center;
  margin-top: 30px;
}

.cta-free {
  margin-top: 18px;
  color: var(--action);
  font-size: 14px;
  font-weight: 600;
}

.page-hero {
  padding: 80px 0 42px;
  background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
}

.effective {
  margin-top: 16px;
  color: var(--fg-subtle);
  font-size: 14px;
}

.policy-content {
  display: grid;
  gap: 32px;
  max-width: 760px;
}

.policy-intro {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
}

.policy-content h2 {
  font-size: 24px;
}

.policy-content p,
.support-copy {
  margin-top: 10px;
  color: var(--fg-muted);
}

.mono {
  font-family: var(--font-mono);
  color: var(--action);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-primary {
  display: grid;
  gap: 16px;
  background: var(--bg-soft);
}

.support-email {
  font-family: var(--font-mono);
  color: var(--fg);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.site-footer {
  background: var(--footer);
  color: var(--footer-fg);
  padding: 60px 0 32px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 280px;
}

.footer-tagline {
  color: rgba(190, 197, 204, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.footer-parent {
  color: rgba(190, 197, 204, 0.6);
  font-size: 12px;
  line-height: 1.55;
}

.footer-brand .footer-logo-mark {
  width: 32px;
  height: 32px;
  background: transparent;
  overflow: hidden;
}

.footer-brand .footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-grid h5 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(190, 197, 204, 0.78);
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
}

.external::after {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  opacity: 0.62;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M7%207h10v10%27/%3E%3Cpath%20d%3D%27M7%2017%2017%207%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M7%207h10v10%27/%3E%3Cpath%20d%3D%27M7%2017%2017%207%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(190, 197, 204, 0.6);
  font-size: 12px;
  line-height: 1.55;
}

.footer-bottom .footer-legal {
  margin-top: 0;
}

.footer-domain a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #fff;
  color: var(--footer);
  font-size: 16px;
  font-weight: 820;
}

.footer-legal {
  margin-top: 10px;
  line-height: 1.6;
}

.footer-domain {
  color: rgba(190, 197, 204, 0.68);
  font-weight: 650;
}

.footer-bottom .brand-name {
  color: #fff;
}

.footer-bottom .brand-parent {
  color: rgba(190, 197, 204, 0.68);
}

.mobile-footer {
  display: none;
}

@media (max-width: 920px) {
  .hero-inner,
  .split,
  .privacy-band-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .split,
  .privacy-band-inner {
    gap: 42px;
  }

  .trust-strip,
  .privacy-stats,
  .grid-3,
  .help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 44px, 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: #fff;
    padding: 10px 22px 18px;
  }

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

  .nav-links a {
    padding: 13px 0;
  }

  .nav-actions .btn {
    display: none;
  }

  h2 {
    font-size: 26px;
  }

  .lead {
    font-size: 16px;
  }

  .screen-panel {
    padding: 0;
    width: min(100%, 300px);
  }

  .section {
    padding: 52px 0;
  }

  .grid-2,
  .grid-3,
  .audience-grid,
  .trust-strip,
  .privacy-stats,
  .help-grid {
    grid-template-columns: 1fr;
  }

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

  .card {
    padding: 18px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid a {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .brand {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 68px !important;
  }

  .brand {
    gap: 9px !important;
  }

  .brand-mark {
    width: 30px !important;
    height: 30px !important;
    border-radius: 9px !important;
  }

  .brand-name {
    font-size: 15px !important;
  }

  .menu-button {
    width: 40px !important;
    height: 40px !important;
    border-radius: 11px !important;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .hero {
    order: 1;
    padding: 32px 0 36px !important;
  }

  .hero > div {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    align-items: start !important;
  }

  .hero-eyebrow {
    font-size: 0 !important;
  }

  .hero-eyebrow::after {
    content: "Backup for a Busy Mind";
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .desktop-hero-title,
  .desktop-hero-lead {
    display: none !important;
  }

  .mobile-hero-title {
    display: block !important;
    max-width: 100% !important;
    margin: 14px 0 0 !important;
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
  }

  .mobile-hero-lead {
    display: block !important;
    max-width: 100% !important;
    margin: 14px 0 0 !important;
    color: #4b545c !important;
    font-size: 15.5px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
  }

  .hero-partner,
  .hero-partner-design {
    max-width: 100% !important;
    margin-top: 22px !important;
  }

  .hero-partner p {
    font-size: 14px !important;
  }

  .hero-partner strong {
    font-size: 16px !important;
  }

  .hero-partner-design > div:first-child {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .hero-partner-design > div:last-child {
    margin-top: 5px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .hero [aria-label="Download Glia Memor"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .store-buttons {
    align-items: center;
    flex-direction: column;
  }

  .free-line {
    margin-top: 12px !important;
    font-size: 13px !important;
  }

  .hero-reassurance,
  .reassurance {
    display: none !important;
  }

  .hero [aria-label="Memor Home screen"] {
    justify-content: center !important;
    margin-top: 28px !important;
  }

  .hero .screen-panel {
    width: min(100%, 260px) !important;
    margin: 0 auto !important;
  }

  #upower {
    order: 2;
    padding: 40px 0 !important;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  #upower h2 {
    margin-top: 12px !important;
    margin-bottom: 14px !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
  }

  #upower .lead {
    margin: 0 !important;
    font-size: 15.5px !important;
    line-height: 1.55 !important;
  }

  #upower .bullet-list {
    gap: 10px !important;
    margin-top: 18px !important;
    color: #2d373f !important;
    font-size: 14.5px !important;
    line-height: 1.45 !important;
  }

  #upower .bullet-list li {
    padding-left: 20px !important;
  }

  #upower .bullet-list li::before {
    top: 0.6em !important;
    width: 7px !important;
    height: 7px !important;
  }

  #upower .screen-panel {
    width: min(100%, 240px) !important;
    margin-top: 24px !important;
  }

  #audience {
    order: 3;
    padding: 48px 0 !important;
  }

  #audience h2 {
    margin-top: 12px !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
  }

  #audience .lead {
    margin-top: 12px !important;
    margin-bottom: 20px !important;
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }

  .audience-grid {
    gap: 11px !important;
    margin-top: 0 !important;
  }

  .audience-card {
    min-height: 0 !important;
    padding: 18px !important;
  }

  .audience-card .audience-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 10px !important;
    border-radius: 10px !important;
  }

  .audience-card h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
  }

  .audience-card p {
    margin-top: 6px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .trust-strip-band {
    order: 4;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding: 18px 0 !important;
  }

  .trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: transparent !important;
    padding: 0 !important;
  }

  .trust-icon {
    display: none !important;
  }

  .trust-item > div {
    display: block !important;
  }

  .trust-item strong {
    display: inline !important;
    color: var(--action) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
  }

  .trust-item strong::before {
    content: "\00b7  ";
  }

  .trust-item span {
    display: none !important;
  }

  #features {
    order: 5;
    padding: 40px 0 !important;
  }

  #features h2 {
    margin-top: 12px !important;
    margin-bottom: 22px !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
  }

  #features .grid {
    gap: 11px !important;
    margin-top: 0 !important;
  }

  #features .icon-tile {
    display: none !important;
  }

  #features .card h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
  }

  #features .card p {
    margin-top: 7px !important;
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }

  #privacy {
    order: 6;
    padding: 40px 0 !important;
  }

  #privacy .privacy-band-inner {
    gap: 22px !important;
  }

  #privacy h2 {
    margin-top: 12px !important;
    font-size: 26px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
  }

  #privacy .lead {
    margin-top: 12px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  #privacy .privacy-stats {
    display: none !important;
  }

  #faq {
    display: none !important;
  }

  #get-app {
    order: 7;
    scroll-margin-top: 84px;
    padding: 52px 0 44px !important;
  }

  #get-app h2 {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  #get-app h2 + p {
    max-width: 100% !important;
    margin-top: 10px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  #get-app [aria-label="Download Glia Memor"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .hero [role="img"][aria-label],
  #get-app [role="img"][aria-label],
  .support-hero [role="img"][aria-label] {
    width: 168px !important;
    min-width: 168px !important;
    height: 50px !important;
    padding: 10px 13px !important;
    gap: 8px !important;
    box-sizing: border-box !important;
  }

  .hero [role="img"][aria-label] svg,
  #get-app [role="img"][aria-label] svg,
  .support-hero [role="img"][aria-label] svg {
    width: 24px !important;
    height: 24px !important;
  }

  .hero [role="img"][aria-label] > div > div:first-child,
  #get-app [role="img"][aria-label] > div > div:first-child,
  .support-hero [role="img"][aria-label] > div > div:first-child {
    font-size: 8.5px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .hero [role="img"][aria-label] > div > div:last-child,
  #get-app [role="img"][aria-label] > div > div:last-child,
  .support-hero [role="img"][aria-label] > div > div:last-child {
    font-size: 15.5px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .site-footer {
    order: 8;
    padding: 42px 0 32px !important;
    text-align: left !important;
  }

  .site-footer .container {
    width: min(100% - 44px, 1120px) !important;
  }

  .site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: left !important;
  }

  .site-footer .footer-grid h5 {
    margin-bottom: 12px !important;
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
  }

  .site-footer .footer-grid ul {
    gap: 9px !important;
  }

  .site-footer .footer-grid a {
    justify-content: flex-start !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  .site-footer .footer-bottom {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 34px !important;
    padding-top: 24px !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
    text-align: left !important;
  }

  .footer-domain {
    justify-self: start;
  }

  .mobile-footer {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 36px, 1120px);
  }

  .brand-parent {
    display: none;
  }

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

@media (min-width: 521px) {
  .hero {
    padding: 90px 0 80px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .hero .lead {
    max-width: 540px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.55;
  }

  .hero-partner {
    gap: 6px;
    max-width: 520px;
    margin-top: 32px;
  }

  .hero-partner p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-partner strong {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
  }

  .hero .store-buttons,
  .final-cta .store-buttons {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .free-line {
    margin-top: 14px;
    font-size: 13.5px;
  }

  .reassurance {
    gap: 18px;
    margin-top: 18px;
    font-size: 13px;
  }

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

  .final-cta h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

  .final-cta .lead {
    max-width: 580px;
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.55;
  }

  .cta-free {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--action);
  }

}
