:root {
  --primary: #f98587;
  --primary-strong: #ff5a60;
  --primary-soft: #fff1f2;
  --secondary: #7fabf6;
  --tertiary: #9064c3;
  --ink: #1d1d1f;
  --ink-soft: #2b2b2f;
  --muted: #6e6e73;
  --muted-strong: #424245;
  --paper: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --line: #d9d9de;
  --line-soft: #ececf0;
  --link: #0066cc;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100vw;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  padding-top: 49px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
.site-header,
.hero,
.section,
.footer {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(251, 251, 253, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav {
  width: min(1024px, calc(100% - 32px));
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.82rem;
  font-weight: 560;
}

.nav-links a {
  color: rgba(29, 29, 31, 0.76);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease, opacity 150ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1.03;
  font-weight: 760;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.08;
  font-weight: 740;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 46%, rgba(255, 255, 255, 0.62) 100%),
    radial-gradient(circle at 74% 24%, rgba(249, 133, 135, 0.18), transparent 30%),
    radial-gradient(circle at 90% 78%, rgba(127, 171, 246, 0.14), transparent 32%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 54px;
  text-align: left;
}

.hero-copy {
  width: 100%;
  max-width: 470px;
}

.hero h1 {
  font-size: clamp(4.4rem, 8vw, 7rem);
  font-weight: 780;
  line-height: 0.98;
}

.hero-lede {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.46;
}

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

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
  font-size: 0.94rem;
  font-weight: 620;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: #000000;
  border-color: #000000;
}

.button.secondary {
  color: var(--link);
  border-color: transparent;
  background: transparent;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: #004f9e;
  background: rgba(0, 102, 204, 0.07);
  border-color: transparent;
}

.button.ink {
  color: #ffffff;
  background: var(--ink);
}

.hero-availability {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 620;
}

.hero-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badge {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.badge::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 999px;
  vertical-align: 0.12em;
  background: var(--primary);
}

.hero-visual {
  position: relative;
  width: min(560px, 100%);
  min-height: 610px;
  display: grid;
  place-items: center;
  justify-self: center;
}

.hero-shot-stack {
  position: relative;
  width: min(100%, 520px);
  min-height: 560px;
}

.hero-shot {
  position: absolute;
  width: 278px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 52px rgba(29, 29, 31, 0.16));
}

.hero-shot > img,
.app-screenshot > img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-shot-back {
  top: 72px;
  left: 18px;
  opacity: 0.94;
  transform: rotate(-8deg);
}

.hero-shot-front {
  top: 0;
  right: 52px;
  z-index: 2;
  transform: rotate(4deg);
}

.app-orbit {
  position: absolute;
  right: 38px;
  bottom: 92px;
  z-index: 3;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(29, 29, 31, 0.12);
  transform: rotate(5deg);
}

.hero-app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(29, 29, 31, 0.16);
}

.preview-phone {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 1;
  width: min(78vw, 292px);
  padding: 14px;
  border: 7px solid #111113;
  border-radius: 34px;
  background: #111113;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  transform: none;
}

.preview-phone.has-screenshot {
  padding: 8px;
  overflow: visible;
}

.preview-phone::before {
  content: "";
  width: 76px;
  height: 18px;
  display: block;
  margin: -4px auto 10px;
  border-radius: 0 0 12px 12px;
  background: #111113;
}

.preview-phone.has-screenshot::before {
  display: none;
}

.preview-phone.has-screenshot .app-screenshot {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.preview-top,
.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: rgba(245, 245, 247, 0.72);
  font-size: 0.78rem;
  font-weight: 620;
}

.preview-profile,
.profile-strip {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 11px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-profile strong,
.preview-profile span,
.profile-strip strong,
.profile-strip span {
  display: block;
}

.preview-profile strong,
.profile-strip strong {
  font-size: 0.92rem;
  font-weight: 660;
  line-height: 1.25;
}

.preview-profile strong {
  color: #ffffff;
}

.preview-profile span {
  color: rgba(245, 245, 247, 0.66);
  font-size: 0.82rem;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--tertiary);
}

.avatar.primary,
.avatar.coral {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.bubble {
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 16px;
  color: var(--ink);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 560;
  line-height: 1.38;
  text-align: left;
}

.bubble.alt {
  margin-left: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mini-stats,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.mini-stats span,
.tag-row span {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 560;
}

.mini-stats span {
  color: rgba(245, 245, 247, 0.78);
  background: rgba(255, 255, 255, 0.11);
}

.tag-row span {
  color: var(--muted-strong);
  background: #f5f5f7;
}

.line {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.line.short {
  width: 58%;
}

.section {
  padding: 76px 0;
  background: var(--paper);
}

.section.compact {
  padding: 48px 0;
}

.section-head {
  width: 100%;
  max-width: 650px;
  margin-bottom: 28px;
}

.section-head.center {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p,
.page-lede {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.5;
}

.screenshot-section {
  background: #ffffff;
}

.showcase-list {
  margin-top: 28px;
  display: grid;
  gap: 88px;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(260px, 0.96fr);
  align-items: center;
  gap: 64px;
  min-height: 0;
}

.showcase-row.reverse {
  grid-template-columns: minmax(260px, 0.96fr) minmax(360px, 1.04fr);
}

.showcase-row.reverse .showcase-media {
  order: 2;
}

.showcase-row.reverse .showcase-copy {
  order: 1;
}

.showcase-media {
  min-height: 560px;
  height: auto;
  padding: 28px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 20%, rgba(249, 133, 135, 0.16), transparent 30%),
    radial-gradient(circle at 78% 70%, rgba(127, 171, 246, 0.14), transparent 32%),
    #f5f5f7;
  overflow: visible;
}

.showcase-copy {
  width: 100%;
  max-width: 360px;
}

.showcase-kicker {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-size: 0.86rem;
  font-weight: 680;
}

.showcase-copy h3 {
  max-width: 12ch;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  font-weight: 760;
  line-height: 1.06;
}

.showcase-copy p:not(.showcase-kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.phone-pair {
  position: relative;
  width: min(100%, 430px);
  min-height: 505px;
}

.phone-pair .device-frame {
  position: absolute;
  top: 34px;
}

.phone-pair .device-frame.back {
  left: 42px;
  transform: rotate(-4deg);
}

.phone-pair .device-frame.front {
  right: 42px;
  z-index: 2;
  transform: rotate(4deg);
}

.phone-pair.tilted .device-frame.back {
  transform: rotate(4deg);
}

.phone-pair.tilted .device-frame.front {
  transform: rotate(-4deg);
}

.device-frame {
  width: min(100%, 198px);
  padding: 8px;
  border: 6px solid #111113;
  border-radius: 36px;
  background: #111113;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.device-frame.solo {
  width: min(100%, 212px);
  transform: rotate(-2deg);
}

.device-frame.dark-frame {
  transform: rotate(2deg);
}

.device-screen {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 25px;
  background: #ffffff;
}

.app-screenshot {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.mock-screen {
  height: 100%;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fbfbfd;
}

.mock-screen.soft .mock-photo {
  background:
    linear-gradient(145deg, rgba(144, 100, 195, 0.72), rgba(249, 133, 135, 0.78)),
    #f5f5f7;
}

.mock-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-status span,
.mock-title,
.mock-row,
.mock-card-line,
.mock-input {
  display: block;
  border-radius: 999px;
  background: #e8e8ed;
}

.mock-status span:first-child {
  width: 34px;
  height: 7px;
}

.mock-status span:last-child {
  width: 24px;
  height: 7px;
}

.mock-title {
  width: 58%;
  height: 15px;
  margin-top: 4px;
  background: #1d1d1f;
}

.mock-title.centered {
  width: 66%;
  margin-right: auto;
  margin-left: auto;
}

.mock-photo {
  flex: 1;
  min-height: 210px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(249, 133, 135, 0.82), rgba(127, 171, 246, 0.82)),
    #f5f5f7;
}

.mock-row,
.mock-card-line {
  width: 100%;
  height: 12px;
}

.mock-row.short,
.mock-card-line.short {
  width: 64%;
}

.mock-message {
  width: 78%;
  min-height: 54px;
  border-radius: 18px 18px 18px 6px;
  background: #f0f0f4;
}

.mock-message.outgoing {
  width: 72%;
  align-self: flex-end;
  border-radius: 18px 18px 6px 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mock-message.small {
  width: 58%;
  min-height: 42px;
}

.mock-input {
  height: 34px;
  margin-top: auto;
}

.mock-avatar {
  width: 82px;
  height: 82px;
  margin: 18px auto 4px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
}

.mock-chip-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 10px;
}

.mock-chip-row span {
  width: 44px;
  height: 22px;
  border-radius: 999px;
  background: #f0f0f4;
}

.safety-mock {
  background: #111113;
}

.safety-mock .mock-title {
  background: #ffffff;
}

.safety-mock .mock-status span,
.safety-mock .mock-card-line {
  background: rgba(255, 255, 255, 0.22);
}

.mock-action {
  width: 74%;
  height: 38px;
  margin-top: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.screen,
.contact-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.card {
  padding: 28px;
}

.card h2,
.contact-panel h2 {
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  font-weight: 720;
  line-height: 1.12;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.26;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.feature-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 11px;
  color: #ffffff;
  background: var(--primary);
  font-size: 0.9rem;
  font-weight: 720;
}

.feature-icon.coral {
  background: var(--secondary);
}

.feature-icon.leaf {
  background: var(--tertiary);
}

.band {
  background: #ffffff;
  border-block: 1px solid var(--line-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

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

.screen {
  min-height: 238px;
  padding: 18px;
}

.screen.dark {
  color: #f5f5f7;
  border-color: #111113;
  background: #111113;
}

.screen:not(.dark) .screen-top {
  color: var(--muted);
}

.screen.dark .screen-top {
  color: rgba(245, 245, 247, 0.72);
}

.profile-strip {
  margin-bottom: 14px;
  background: #f5f5f7;
}

.profile-strip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.notice {
  position: relative;
  max-width: 68ch;
  margin: 0 0 30px;
  padding: 14px 16px 14px 44px;
  border-radius: 16px;
  color: var(--muted-strong);
  background: #f5f5f7;
  font-size: 0.95rem;
  line-height: 1.55;
}

.notice::before {
  content: "!";
  position: absolute;
  top: 15px;
  left: 16px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary);
  font-size: 0.72rem;
  font-weight: 760;
}

.notice strong {
  color: var(--ink);
  font-weight: 680;
}

.legal-page {
  background: #ffffff;
}

.page-hero {
  padding: 46px 0 30px;
  background: #f5f5f7;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero .container {
  width: min(820px, calc(100% - 32px));
}

.page-hero .eyebrow {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 4.7vw, 3.55rem);
  font-weight: 760;
  line-height: 1.04;
}

.page-hero p {
  max-width: 650px;
  margin-top: 12px;
  margin-bottom: 0;
}

.legal-content {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 84px;
  background: #ffffff;
}

.legal-content h2 {
  max-width: 68ch;
  margin: 34px 0 10px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: clamp(1.12rem, 1.75vw, 1.38rem);
  font-weight: 710;
  line-height: 1.28;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-content h3 {
  max-width: 68ch;
  margin: 24px 0 8px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  max-width: 68ch;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-content p {
  margin: 0 0 13px;
}

.legal-content ul {
  max-width: 68ch;
  margin: 8px 0 16px;
  padding-left: 20px;
}

.legal-content li {
  margin: 7px 0;
  padding-left: 2px;
}

.legal-content strong {
  color: var(--ink);
  font-weight: 660;
}

.legal-content a {
  color: var(--link);
  font-weight: 560;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page .section {
  padding: 42px 0;
  background: #ffffff;
}

.legal-page .section + .legal-content {
  padding-top: 8px;
}

.legal-page .container.grid.two {
  width: min(820px, calc(100% - 32px));
}

.contact-panel {
  padding: 28px;
  color: var(--ink);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--ink);
  font-weight: 720;
}

.contact-panel p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.contact-panel .button {
  color: var(--link);
  border-color: transparent;
  background: #f5f5f7;
  font-size: 0.92rem;
}

.contact-panel .button:hover,
.contact-panel .button:focus-visible {
  color: #004f9e;
  background: #eeeef2;
  border-color: transparent;
}

.footer {
  padding: 26px 0;
  color: var(--muted);
  background: #f5f5f7;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
}

.footer-inner {
  width: min(1024px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 980px) {
  .split,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .showcase-list {
    gap: 72px;
  }

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
  }

  .showcase-row.reverse .showcase-media,
  .showcase-row.reverse .showcase-copy {
    order: initial;
  }

  .showcase-copy {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .showcase-copy h3 {
    max-width: 18ch;
    margin: 0 auto;
  }

  .device-frame {
    width: min(100%, 198px);
  }

  .hero::before {
    inset: 16px;
    border-radius: 28px;
  }

  .hero-visual {
    min-height: 540px;
  }
}

@media (max-width: 820px) {
  body {
    padding-top: 51px;
  }

  .nav {
    width: min(720px, calc(100% - 28px));
    min-height: 50px;
  }

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

  .nav-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: absolute;
    top: 50px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: rgba(251, 251, 253, 0.98);
    box-shadow: var(--shadow-soft);
  }

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

  .nav-links a {
    width: 100%;
    padding: 12px;
    color: var(--ink);
    border-radius: 12px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: #f5f5f7;
  }

  .hero {
    padding: 38px 0 28px;
  }

  .hero-inner {
    width: min(720px, calc(100% - 28px));
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

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

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-lede {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.05rem;
  }

  .hero-actions,
  .hero-badges {
    justify-content: center;
  }

  .hero-badges {
    gap: 10px 14px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .app-orbit {
    right: calc(50% - 210px);
    bottom: 56px;
    width: 82px;
    height: 82px;
    border-radius: 22px;
    transform: rotate(5deg);
  }

  .hero-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .preview-phone {
    width: min(100%, 252px);
  }

  .hero-shot-stack {
    width: min(100%, 430px);
    min-height: 430px;
  }

  .hero-shot {
    width: 216px;
  }

  .hero-shot-back {
    top: 56px;
    left: 22px;
  }

  .hero-shot-front {
    right: 28px;
  }

  .grid.three,
  .phone-grid {
    grid-template-columns: 1fr;
  }

  .showcase-media {
    min-height: 535px;
    border-radius: 28px;
  }

  .phone-pair {
    width: min(100%, 390px);
    min-height: 485px;
  }

  .phone-pair .device-frame.back {
    left: 38px;
  }

  .phone-pair .device-frame.front {
    right: 38px;
  }

  .device-frame {
    width: min(100%, 188px);
  }

  .device-frame.solo {
    width: min(100%, 202px);
  }

  .section {
    padding: 58px 0;
  }

  .container,
  .legal-page .container.grid.two,
  .legal-content,
  .page-hero .container {
    width: min(720px, calc(100% - 28px));
  }

  .page-hero {
    padding: 34px 0 24px;
  }

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

  .legal-content {
    padding: 32px 0 64px;
  }

  .card,
  .contact-panel {
    padding: 22px;
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    left: 10px;
    right: 10px;
  }

  .hero::before {
    inset: 10px;
    border-radius: 24px;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
  }

  .button {
    width: 100%;
    max-width: 280px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .app-orbit {
    right: calc(50% - 164px);
    bottom: 50px;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    transform: rotate(5deg);
  }

  .hero-app-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .preview-phone {
    width: min(100%, 218px);
    border-width: 6px;
  }

  .hero-shot-stack {
    width: min(100%, 330px);
    min-height: 340px;
  }

  .hero-shot {
    width: 174px;
  }

  .hero-shot-back {
    top: 45px;
    left: 8px;
  }

  .hero-shot-front {
    right: 8px;
  }

  .showcase-list {
    gap: 48px;
  }

  .showcase-media {
    min-height: 440px;
    border-radius: 24px;
  }

  .showcase-copy h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .phone-pair {
    width: min(100%, 310px);
    min-height: 390px;
  }

  .phone-pair .device-frame {
    top: 28px;
  }

  .phone-pair .device-frame.back {
    left: 18px;
  }

  .phone-pair .device-frame.front {
    right: 18px;
  }

  .device-frame {
    width: min(100%, 148px);
    border-width: 5px;
    border-radius: 30px;
  }

  .device-frame.solo {
    width: min(100%, 168px);
    border-width: 5px;
    border-radius: 30px;
  }

  .device-screen {
    border-radius: 21px;
  }

  .footer-inner,
  .footer-links {
    flex-direction: column;
  }
}

/* Finished product-shot images: phone frame, shadow, and screen are baked into the PNG. */
.preview-phone,
.preview-phone.has-screenshot,
.device-frame,
.device-frame.solo,
.device-frame.dark-frame {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
  overflow: visible;
}

.device-screen,
.preview-phone.has-screenshot .app-screenshot {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.app-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.app-orbit {
  z-index: 4;
}

.preview-phone,
.preview-phone.has-screenshot {
  z-index: 2;
  width: min(78vw, 292px);
  filter: none;
}

.showcase-list {
  gap: 62px;
}

.showcase-row {
  grid-template-columns: minmax(380px, 1fr) minmax(300px, 0.92fr);
  gap: 56px;
}

.showcase-row.reverse {
  grid-template-columns: minmax(300px, 0.92fr) minmax(380px, 1fr);
}

.showcase-copy {
  max-width: 430px;
}

.showcase-copy h3 {
  max-width: 17ch;
  font-size: clamp(1.85rem, 2.7vw, 2.7rem);
  line-height: 1.07;
}

.showcase-media {
  min-height: 0;
  height: auto;
  padding: 26px 24px;
  border: 1px solid rgba(29, 29, 31, 0.045);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(249, 133, 135, 0.075), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(127, 171, 246, 0.075), transparent 36%),
    rgba(250, 250, 251, 0.86);
  overflow: visible;
}

.phone-pair {
  width: min(100%, 430px);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.phone-pair .device-frame {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform-origin: 50% 100%;
}

.phone-pair .device-frame.back,
.phone-pair.tilted .device-frame.back {
  transform: translateX(4px) translateY(4px) rotate(-9deg);
}

.phone-pair .device-frame.front,
.phone-pair.tilted .device-frame.front {
  z-index: 2;
  margin-left: -30px;
  transform: translateX(2px) translateY(4px) rotate(8deg);
}

.device-frame {
  width: min(45%, 188px);
}

.device-frame.solo,
.device-frame.dark-frame {
  width: min(100%, 270px);
}

@media (max-width: 820px) {
  .preview-phone,
  .preview-phone.has-screenshot {
    width: min(100%, 250px);
  }

  .showcase-list {
    gap: 52px;
  }

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .showcase-row.reverse .showcase-media,
  .showcase-row.reverse .showcase-copy {
    order: initial;
  }

  .showcase-copy {
    max-width: 620px;
  }

  .showcase-copy h3 {
    max-width: 20ch;
  }

  .device-frame {
    width: min(45%, 188px);
  }

  .device-frame.solo,
  .device-frame.dark-frame {
    width: min(100%, 242px);
  }

  .phone-pair {
    width: min(100%, 400px);
  }
}

@media (max-width: 520px) {
  .hero-inner,
  .container,
  .legal-page .container.grid.two,
  .legal-content,
  .page-hero .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .preview-phone,
  .preview-phone.has-screenshot {
    width: min(100%, 218px);
  }

  .showcase-list {
    gap: 42px;
  }

  .showcase-media {
    padding: 22px 12px;
  }

  .hero-copy,
  .section-head,
  .section-head.center,
  .showcase-copy,
  .hero-lede,
  .section-head p,
  .showcase-copy p:not(.showcase-kicker) {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .section-head h2,
  .showcase-copy h3 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .device-frame {
    width: min(45%, 148px);
  }

  .device-frame.solo,
  .device-frame.dark-frame {
    width: min(100%, 205px);
  }

  .showcase-media {
    padding: 22px 12px;
    border-radius: 26px;
  }

  .phone-pair .device-frame.back,
  .phone-pair.tilted .device-frame.back {
    transform: translateX(4px) translateY(3px) rotate(-6deg);
  }

  .phone-pair .device-frame.front,
  .phone-pair.tilted .device-frame.front {
    margin-left: -21px;
    transform: translateX(1px) translateY(3px) rotate(6deg);
  }
}
