:root {
  color-scheme: light;
  --navy-950: #04183e;
  --navy-900: #07245b;
  --navy-800: #0b3177;
  --blue: #0a8ff0;
  --blue-soft: #dff2ff;
  --green: #2cc45e;
  --green-soft: #e4f8e9;
  --yellow: #e8f500;
  --ink: #0b1730;
  --muted: #59667c;
  --line: #dfe5ec;
  --paper: #fffef9;
  --surface: #f4f6f8;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgb(7 36 91 / 9%);
  --shadow-lg: 0 30px 80px rgb(7 36 91 / 18%);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(11 23 48 / 8%);
  background: rgb(255 254 249 / 90%);
  backdrop-filter: blur(18px) saturate(140%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgb(7 36 91 / 18%);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: #263650;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 650;
}

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

.nav-actions {
  gap: 13px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switch a,
.language-switch span {
  min-width: 34px;
  padding: 5px 7px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-switch [aria-current="true"] {
  color: var(--white);
  background: var(--navy-900);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  font: inherit;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 24px rgb(7 36 91 / 18%);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 750;
}

.button:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
}

.button-light:hover {
  background: #f1f7ff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 90px;
  background:
    radial-gradient(circle at 85% 22%, rgb(10 143 240 / 14%), transparent 28%),
    radial-gradient(circle at 60% 80%, rgb(44 196 94 / 10%), transparent 24%),
    linear-gradient(180deg, #fffef9 0%, #f7f9fa 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 430px;
  height: 620px;
  right: -160px;
  bottom: -360px;
  border: 2px solid rgb(7 36 91 / 8%);
  border-radius: 220px 220px 0 0;
}

.hero::after {
  width: 1px;
  height: 430px;
  right: 54px;
  bottom: -120px;
  background: rgb(7 36 91 / 8%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 46px;
}

.hero-grid > *,
.sharing-grid > *,
.feature-row > * {
  min-width: 0;
}

.hero-copy {
  padding: 40px 0;
}

.hero h1,
.section-heading h2,
.sharing-copy h2,
.feature-copy h2,
.cta-card h2,
.page-hero h1 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.5rem, 6.7vw, 6.3rem);
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.availability {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.device-stage {
  position: relative;
  min-height: 590px;
}

.device-stage::before {
  position: absolute;
  content: "";
  width: 74%;
  height: 62%;
  right: 5%;
  bottom: 5%;
  border-radius: 50%;
  background: rgb(10 143 240 / 14%);
  filter: blur(38px);
}

.device {
  position: absolute;
  overflow: hidden;
  border: 7px solid #07152b;
  background: #07152b;
  box-shadow: var(--shadow-lg);
}

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

.device-ipad {
  width: 94%;
  aspect-ratio: 4 / 3;
  top: 42px;
  right: -7%;
  border-radius: 25px;
  transform: rotate(1.2deg);
}

.device-iphone {
  z-index: 2;
  width: 31%;
  min-width: 180px;
  aspect-ratio: 1179 / 2556;
  left: 0;
  bottom: 10px;
  border-radius: 38px;
  transform: rotate(-4deg);
}

.live-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgb(11 23 48 / 9%);
  border-radius: 999px;
  color: var(--navy-950);
  background: rgb(255 255 255 / 93%);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgb(44 196 94 / 14%);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  padding: 23px 34px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--navy-950);
}

.section {
  padding: 112px 0;
}

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

.section-heading {
  max-width: 740px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.sharing-copy h2,
.feature-copy h2,
.cta-card h2 {
  font-size: clamp(2.45rem, 5vw, 4.6rem);
}

.section-heading p,
.sharing-copy > p,
.feature-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

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

.pillar-card,
.use-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.pillar-card {
  min-height: 330px;
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.pillar-number {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-950);
  background: var(--yellow);
  font-weight: 850;
}

.pillar-card:nth-child(2) .pillar-number {
  color: var(--white);
  background: var(--blue);
}

.pillar-card:nth-child(3) .pillar-number {
  color: var(--white);
  background: var(--green);
}

.pillar-card h3 {
  max-width: 280px;
  margin: 70px 0 14px;
  color: var(--navy-950);
  font-size: 1.62rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.pillar-card::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  top: -90px;
  right: -90px;
  border: 1px solid rgb(10 143 240 / 15%);
  border-radius: 50%;
}

.sharing-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.sharing-section::before {
  position: absolute;
  content: "";
  width: 580px;
  height: 580px;
  top: -300px;
  left: -260px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgb(255 255 255 / 2%), 0 0 0 160px rgb(255 255 255 / 2%);
}

.sharing-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.sharing-copy h2,
.sharing-copy > p {
  color: var(--white);
}

.sharing-copy > p {
  color: #c7d4ea;
}

.sharing-copy .eyebrow {
  color: #83caff;
}

.sharing-points {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.sharing-points li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 12px;
  color: #e8effc;
}

.sharing-points li::before {
  content: "✓";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
}

.following-frame {
  position: relative;
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 34px;
  background: rgb(255 255 255 / 7%);
  box-shadow: 0 34px 90px rgb(0 0 0 / 32%);
  transform: rotate(1deg);
}

.following-frame img {
  border-radius: 21px;
}

.event-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  color: #dce7f9;
  background: rgb(255 255 255 / 7%);
  font-size: 0.77rem;
  font-weight: 700;
}

.event-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

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

.use-card {
  min-height: 295px;
  padding: 34px;
  border-radius: var(--radius-md);
}

.use-card:nth-child(1) {
  background: var(--blue-soft);
}

.use-card:nth-child(2) {
  background: var(--green-soft);
}

.use-card:nth-child(3) {
  background: #f3f0ff;
}

.use-card:nth-child(4) {
  background: #fff8cd;
}

.use-kicker {
  display: block;
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.use-card h3 {
  max-width: 390px;
  margin: 84px 0 12px;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.use-card p {
  max-width: 480px;
  margin: 0;
  color: #47566e;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 80px;
}

.feature-row + .feature-row {
  margin-top: 110px;
}

.feature-row.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-copy h2 {
  font-size: clamp(2.35rem, 4.4vw, 4rem);
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #33435d;
  font-weight: 650;
}

.feature-list li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 0.57em;
  left: 0;
  border-radius: 50%;
  background: var(--blue);
}

.screenshot-cluster {
  position: relative;
  min-height: 650px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgb(255 255 255 / 38%), rgb(255 255 255 / 38%)),
    repeating-linear-gradient(90deg, transparent 0 24.8%, rgb(7 36 91 / 5%) 25%),
    #eaf2f8;
  box-shadow: inset 0 0 0 1px rgb(7 36 91 / 6%);
}

.phone-shot {
  position: absolute;
  overflow: hidden;
  width: 40%;
  border: 7px solid #091932;
  border-radius: 38px;
  background: #091932;
  box-shadow: var(--shadow-lg);
}

.phone-shot:first-child {
  left: 12%;
  bottom: -25px;
  transform: rotate(-4deg);
}

.phone-shot:last-child {
  right: 12%;
  top: -25px;
  transform: rotate(4deg);
}

.tablet-shot {
  overflow: hidden;
  padding: 10px;
  border-radius: 34px;
  background: #091932;
  box-shadow: var(--shadow-lg);
}

.tablet-shot img {
  border-radius: 23px;
}

.privacy-card,
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.privacy-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 60px;
  padding: 64px;
  color: var(--white);
  background: var(--navy-900);
}

.privacy-mark {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  background: rgb(255 255 255 / 7%);
  box-shadow: 0 0 0 24px rgb(255 255 255 / 3%);
}

.privacy-mark svg {
  width: 96px;
  height: 96px;
  overflow: visible;
}

.privacy-lock-shackle,
.privacy-lock-body,
.privacy-lock-key {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-lock-shackle {
  fill: none;
  stroke: var(--white);
  stroke-width: 6;
}

.privacy-lock-body {
  fill: rgb(255 255 255 / 7%);
  stroke: var(--white);
  stroke-width: 5;
}

.privacy-lock-key {
  fill: var(--yellow);
  stroke: var(--yellow);
  stroke-width: 5;
}

.privacy-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.privacy-copy p {
  margin: 20px 0 28px;
  color: #cbd7eb;
}

.cta-card {
  padding: 82px 40px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgb(232 245 0 / 28%), transparent 28%),
    linear-gradient(135deg, #dff2ff, #e8f8ec);
}

.cta-card p {
  max-width: 560px;
  margin: 20px auto 30px;
  color: #40516c;
}

.site-footer {
  padding: 64px 0 36px;
  color: #c9d5e8;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, 1fr);
  gap: 60px;
}

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

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #9fb0ca;
  font-size: 0.9rem;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #c9d5e8;
  text-decoration: none;
  font-size: 0.92rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #879ab7;
  font-size: 0.77rem;
}

/* Supporting pages */
.page-hero {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 80% 20%, rgb(10 143 240 / 13%), transparent 25%),
    var(--surface);
}

.page-hero .container {
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.prose-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  justify-content: center;
  gap: 70px;
  padding: 80px 0 110px;
}

.prose-nav {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.prose-nav a {
  padding: 7px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 650;
}

.prose-nav a:hover {
  color: var(--blue);
}

.prose {
  min-width: 0;
}

.prose section + section {
  margin-top: 58px;
  padding-top: 8px;
}

.prose h2 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.prose h3 {
  margin: 32px 0 10px;
  color: var(--navy-950);
  font-size: 1.18rem;
}

.prose p,
.prose li {
  color: #3f4f68;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 9px;
}

.prose a {
  color: #0679c9;
  font-weight: 650;
}

.notice {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--blue-soft);
  color: #27405c;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-list summary {
  padding: 20px 52px 20px 22px;
  color: var(--navy-950);
  font-weight: 750;
  cursor: pointer;
}

.faq-list details p,
.faq-list details ul {
  margin: 0;
  padding: 0 22px 22px;
}

.faq-list details ul {
  padding-left: 42px;
}

.contact-card {
  padding: 32px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--navy-900);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p {
  color: #cbd7eb;
}

.contact-card a {
  color: var(--yellow);
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 16px;
  }

  .device-stage {
    min-height: 520px;
  }

  .sharing-grid,
  .feature-row,
  .feature-row.reverse {
    gap: 45px;
  }

  .screenshot-cluster {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
  }

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

  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

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

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .sharing-grid,
  .feature-row,
  .feature-row.reverse,
  .privacy-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 5.6rem);
  }

  .device-stage {
    min-height: 590px;
    margin-top: 14px;
  }

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

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

  .pillar-card h3 {
    margin-top: 42px;
  }

  .sharing-grid {
    gap: 50px;
  }

  .feature-row.reverse .feature-copy {
    order: 0;
  }

  .feature-row + .feature-row {
    margin-top: 85px;
  }

  .feature-copy {
    max-width: 640px;
  }

  .screenshot-cluster {
    min-height: 670px;
  }

  .privacy-card {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
  }

  .prose-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .prose-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

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

  .brand span {
    display: none;
  }

  .site-footer .brand span {
    display: inline;
  }

  .hero {
    padding-bottom: 60px;
  }

  .hero h1 {
    letter-spacing: -0.06em;
  }

  .hero-lead {
    margin-top: 22px;
  }

  .device-stage {
    min-height: 440px;
  }

  .device-ipad {
    width: 108%;
    top: 36px;
    right: -22%;
    border-width: 5px;
    border-radius: 18px;
  }

  .device-iphone {
    width: 34%;
    min-width: 132px;
    left: 0;
    bottom: 2px;
    border-width: 5px;
    border-radius: 27px;
  }

  .live-badge {
    top: 2px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .trust-item {
    padding: 14px 10px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 78px 0;
  }

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

  .pillar-card,
  .use-card {
    padding: 27px;
  }

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

  .use-card {
    min-height: 255px;
  }

  .use-card h3 {
    margin-top: 60px;
  }

  .following-frame {
    padding: 8px;
    border-radius: 22px;
  }

  .following-frame img {
    border-radius: 15px;
  }

  .screenshot-cluster {
    min-height: 490px;
    overflow: visible;
  }

  .phone-shot {
    width: 46%;
    border-width: 5px;
    border-radius: 27px;
  }

  .phone-shot:first-child {
    left: 9%;
    bottom: -18px;
  }

  .phone-shot:last-child {
    top: -18px;
    right: 9%;
  }

  .tablet-shot {
    padding: 6px;
    border-radius: 22px;
  }

  .tablet-shot img {
    border-radius: 16px;
  }

  .privacy-card {
    gap: 38px;
    padding: 45px 25px;
  }

  .privacy-mark {
    width: 130px;
    height: 130px;
  }

  .privacy-mark svg {
    width: 70px;
    height: 70px;
  }

  .cta-card {
    padding: 58px 22px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 58px 0 50px;
  }

  .prose-shell {
    padding: 55px 0 80px;
  }

  .prose-nav {
    grid-template-columns: 1fr;
  }
}

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

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