:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --panel: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.12);
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --teal: #0f766e;
  --green: #3f7f58;
  --amber: #a15c12;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  --soft-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  padding: 10px 30px;
  background: rgba(245, 245, 247, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(180%) blur(22px);
}

.brand,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  justify-self: start;
  font-size: 15px;
  font-weight: 700;
}

.brand img,
.eyebrow img,
.final-cta img {
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #3d3d40;
  font-size: 13px;
}

.nav-links a:hover,
footer a:hover,
.text-button:hover {
  color: var(--blue);
}

.nav-cta {
  justify-self: end;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.nav-cta:hover,
.primary-button:hover {
  background: var(--blue-hover);
}

.store-badge {
  display: inline-block;
  width: 180px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge:hover {
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.18));
  transform: translateY(-1px);
}

.store-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.hero {
  position: relative;
  min-height: clamp(520px, 56vh, 580px);
  overflow: hidden;
  padding: 68px 24px 42px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.16) 0%, rgba(245, 245, 247, 0.98) 36%, rgba(245, 245, 247, 0.96) 58%, rgba(0, 113, 227, 0.13) 78%, rgba(161, 92, 18, 0.12) 100%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 78%, rgba(245, 245, 247, 0) 100%);
  text-align: center;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(245, 245, 247, 0), var(--bg) 92%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  animation: liftIn 650ms ease both;
}

.eyebrow {
  justify-content: center;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  margin-top: 20px;
  font-size: 66px;
  line-height: 0.98;
  font-weight: 760;
}

.hero-copy p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #4f4f54;
  font-size: 24px;
  line-height: 1.34;
}

.hero-actions,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-actions {
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.primary-button,
.text-button {
  font-size: 17px;
  font-weight: 700;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.22);
}

.text-button {
  color: var(--blue);
}

.mac-window {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.mac-window.marketing-shot {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mac-window.marketing-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.traffic-lights {
  display: flex;
  gap: 8px;
  height: 34px;
  align-items: center;
  padding: 0 14px;
  background: #f1f1f3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.traffic-lights span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.traffic-lights span:nth-child(1) { background: #ff5f57; }
.traffic-lights span:nth-child(2) { background: #ffbd2e; }
.traffic-lights span:nth-child(3) { background: #28c840; }

.story-grid,
.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0;
}

.story-grid {
  padding-top: 28px;
}

.story-grid article,
.details div {
  --card-accent: var(--blue);
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 32px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.98));
  box-shadow: var(--soft-shadow);
}

.story-grid article::before,
.details div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--card-accent);
}

.story-grid article:nth-child(2),
.details div:nth-child(2) {
  --card-accent: var(--teal);
}

.story-grid article:nth-child(3),
.details div:nth-child(3) {
  --card-accent: var(--amber);
}

.step,
.section-kicker {
  font-size: 14px;
  font-weight: 780;
  text-transform: uppercase;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  border-radius: 999px;
  color: var(--card-accent);
  background: color-mix(in srgb, var(--card-accent) 11%, white);
}

.section-kicker {
  color: #8d8d93;
}

.story-grid h2,
.details h2 {
  margin-top: 46px;
  font-size: 34px;
  line-height: 1.06;
}

.story-grid p,
.details p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.showcase,
.mac-section {
  padding: 94px 24px;
  background: #fff;
}

.showcase-copy,
.privacy-copy,
.mac-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.showcase h2,
.privacy-band h2,
.mac-section h2,
.final-cta h2 {
  margin-top: 12px;
  font-size: 56px;
  line-height: 1;
}

.showcase-copy p:not(.section-kicker),
.privacy-copy p:not(.section-kicker),
.mac-copy p:not(.section-kicker),
.final-cta p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.38;
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 34px;
  margin-top: 60px;
}

figure {
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: #f5f5f7;
}

figure img {
  height: 620px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.15);
}

figcaption {
  padding: 18px 4px 2px;
  color: #3b3b3f;
  font-size: 18px;
  font-weight: 650;
  text-align: center;
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 56px;
  width: min(1160px, calc(100% - 48px));
  margin: 86px auto;
  padding: 64px;
  border-radius: 8px;
  background: #101113;
  color: #fff;
}

.privacy-copy {
  margin: 0;
  text-align: left;
}

.privacy-band .section-kicker,
.privacy-band p {
  color: #b7bbc3;
}

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

.privacy-list div {
  position: relative;
  padding: 20px 20px 20px 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.privacy-list div::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #5eead4;
  box-shadow: 0 0 0 6px rgba(94, 234, 212, 0.11);
}

.privacy-list strong,
.privacy-list span {
  display: block;
}

.privacy-list strong {
  font-size: 18px;
}

.privacy-list span {
  margin-top: 6px;
  color: #c8cbd1;
  font-size: 15px;
  line-height: 1.4;
}

.mac-feature {
  width: min(1100px, 100%);
  margin: 58px auto 0;
}

.ipad-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 480px));
  justify-content: center;
  gap: 28px;
  width: min(1040px, 100%);
  margin: 58px auto 0;
}

.ipad-showcase img {
  width: 100%;
  aspect-ratio: 2064 / 2752;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
}

.mac-window.large {
  border-radius: 22px;
}

.mac-window.large .traffic-lights {
  height: 42px;
}

.final-cta {
  min-height: 520px;
  flex-direction: column;
  padding: 82px 24px;
  text-align: center;
}

.final-cta h2 {
  margin-top: 24px;
}

.final-cta .primary-button {
  margin-top: 30px;
}

.final-cta .store-badge {
  margin-top: 30px;
}

.privacy-page {
  padding: 42px 24px 96px;
}

.privacy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 52px;
  width: min(1180px, 100%);
  min-height: 680px;
  margin: 42px auto 26px;
  padding: 70px 68px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #101113;
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.18);
}

.privacy-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -30% 42%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(38, 154, 170, 0.36), rgba(16, 17, 19, 0));
  pointer-events: none;
}

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

.privacy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #c6c9d0;
  font-size: 16px;
  font-weight: 760;
  text-transform: uppercase;
}

.privacy-eyebrow img {
  border-radius: 13px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.privacy-hero h1 {
  max-width: 720px;
  margin-top: 34px;
  font-size: 70px;
  line-height: 0.94;
}

.privacy-hero p {
  max-width: 620px;
  margin-top: 26px;
  color: #d4d7de;
  font-size: 23px;
  line-height: 1.36;
}

.privacy-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.privacy-hero-meta span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #e8edf5;
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 760;
}

.policy-date {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d9dce3;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.privacy-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.privacy-phone {
  width: min(310px, 100%);
  margin-left: auto;
  padding: 10px;
  border-radius: 48px;
  background: #050506;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.42), inset 0 0 0 2px #1b1b1f, inset 0 0 0 4px #050506;
}

.privacy-phone img {
  width: 100%;
  border-radius: 38px;
}

.privacy-panel {
  position: absolute;
  left: 0;
  bottom: 52px;
  width: min(290px, 78%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(8, 18, 22, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.privacy-panel span,
.privacy-panel strong {
  display: block;
}

.privacy-panel span {
  color: #c7d8e4;
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.privacy-panel strong {
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.privacy-principles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto 20px;
}

.privacy-principles article {
  grid-column: span 2;
  min-height: 238px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 18px 48px rgba(0, 0, 0, 0.05);
}

.privacy-principles span,
.policy-section > span {
  color: #8d8d93;
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.privacy-principles h2 {
  margin-top: 48px;
  font-size: 25px;
  line-height: 1.04;
}

.privacy-principles p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.privacy-principles article:nth-child(4) {
  grid-column: 2 / span 2;
}

.privacy-principles article:nth-child(5) {
  grid-column: 4 / span 2;
}

.policy-content {
  margin-top: 18px;
  padding: 0 42px;
  border-radius: 8px;
  background: #fff;
  width: min(940px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.policy-section {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 34px;
  padding: 38px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.1);
}

.policy-section:first-child {
  border-top: 0;
}

.policy-content h2,
.policy-contact h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.policy-content p {
  margin-top: 12px;
  color: #505056;
  font-size: 18px;
  line-height: 1.55;
}

.policy-content a {
  color: var(--blue);
  font-weight: 700;
}

.policy-contact {
  width: min(940px, 100%);
  margin: 18px auto 0;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: #101113;
}

.policy-contact .section-kicker,
.policy-contact p {
  color: #b7bbc3;
}

.policy-contact h2 {
  margin-top: 12px;
  color: #fff;
}

.policy-contact p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.5;
}

.policy-contact .text-button {
  display: inline-flex;
  margin-top: 24px;
  color: #6eb3ff;
}

.support-page {
  padding: 42px 24px 96px;
}

.support-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
  width: min(1180px, 100%);
  min-height: 620px;
  margin: 42px auto 22px;
  padding: 64px 68px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #101113;
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.18);
}

.support-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% 38%;
  height: 72%;
  background: radial-gradient(closest-side, rgba(0, 113, 227, 0.32), rgba(16, 17, 19, 0));
  pointer-events: none;
}

.support-hero-copy,
.support-hero-visual {
  position: relative;
  z-index: 1;
}

.support-hero h1 {
  max-width: 560px;
  margin-top: 34px;
  font-size: 72px;
  line-height: 0.94;
}

.support-hero p {
  max-width: 560px;
  margin-top: 24px;
  color: #d4d7de;
  font-size: 23px;
  line-height: 1.36;
}

.support-mac-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.32);
}

.support-ipad-frame {
  width: min(460px, 100%);
  margin-left: auto;
  padding: 10px;
  border-radius: 28px;
  background: #050506;
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.32), inset 0 0 0 2px #1b1b1f, inset 0 0 0 4px #050506;
}

.support-ipad-frame img {
  width: 100%;
  aspect-ratio: 2064 / 2752;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto 20px;
}

.support-cards article {
  --card-accent: var(--blue);
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 30px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
  box-shadow: var(--soft-shadow);
}

.support-cards article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--card-accent);
}

.support-cards article:nth-child(2) {
  --card-accent: var(--teal);
}

.support-cards article:nth-child(3) {
  --card-accent: var(--green);
}

.support-cards span,
.support-section > span {
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.support-cards span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--card-accent);
  background: color-mix(in srgb, var(--card-accent) 10%, white);
}

.support-section > span {
  color: #8d8d93;
}

.support-cards h2 {
  margin-top: 54px;
  font-size: 31px;
  line-height: 1.04;
}

.support-cards p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.support-content {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: 0;
  border-radius: 8px;
}

.support-section {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.support-section + .support-section {
  margin-top: 14px;
}

.support-section > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf4ff;
}

.support-section h2,
.support-contact h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.support-section p,
.support-contact p:not(.section-kicker) {
  margin-top: 12px;
  color: #505056;
  font-size: 18px;
  line-height: 1.55;
}

.support-section a {
  color: var(--blue);
  font-weight: 700;
}

.support-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  width: min(940px, 100%);
  margin: 18px auto 0;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: #101113;
}

.support-contact .section-kicker,
.support-contact p {
  color: #b7bbc3;
}

.support-contact h2 {
  margin-top: 12px;
  color: #fff;
}

.support-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 16px;
  font-weight: 760;
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 10px 18px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  .hero-copy p {
    font-size: 21px;
  }

  .story-grid,
  .details,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .privacy-page {
    padding: 28px 18px 82px;
  }

  .privacy-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 52px 44px;
  }

  .privacy-hero h1 {
    font-size: 52px;
  }

  .privacy-hero-visual {
    min-height: 430px;
  }

  .privacy-phone {
    margin: 0 auto;
  }

  .privacy-panel {
    left: 8%;
    bottom: 34px;
  }

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

  .privacy-principles article,
  .privacy-principles article:nth-child(4),
  .privacy-principles article:nth-child(5) {
    grid-column: auto;
  }

  .privacy-band {
    padding: 42px;
  }

  .privacy-principles article {
    min-height: 0;
  }

  .showcase h2,
  .privacy-band h2,
  .mac-section h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .support-page {
    padding: 28px 18px 82px;
  }

  .support-hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 0;
    padding: 52px 44px 0;
  }

  .support-hero h1 {
    font-size: 52px;
  }

  .support-hero p {
    font-size: 21px;
  }

  .support-hero-visual {
    width: 100%;
    overflow: hidden;
  }

  .support-mac-window {
    width: 100%;
    border-radius: 18px 18px 0 0;
  }

  .support-ipad-frame {
    margin: 0 auto -28px;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .support-cards article {
    min-height: 0;
  }

  .support-cards h2 {
    margin-top: 34px;
  }

  .support-content,
  .support-contact {
    width: min(100%, 680px);
  }

  .support-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 46px 16px 36px;
  }

  .eyebrow {
    font-size: 15px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy p,
  .showcase-copy p:not(.section-kicker),
  .privacy-copy p:not(.section-kicker),
  .mac-copy p:not(.section-kicker),
  .final-cta p {
    font-size: 19px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .primary-button,
  .store-badge {
    width: 180px;
  }

  .story-grid,
  .details {
    width: min(100% - 28px, 520px);
    padding: 52px 0;
  }

  .story-grid {
    padding-top: 34px;
  }

  .story-grid article,
  .details div {
    min-height: 0;
    padding: 24px;
  }

  .story-grid h2,
  .details h2 {
    margin-top: 30px;
    font-size: 30px;
  }

  .showcase,
  .mac-section {
    padding: 66px 14px;
  }

  .ipad-showcase {
    grid-template-columns: minmax(0, 360px);
    gap: 22px;
  }

  .showcase h2,
  .privacy-band h2,
  .mac-section h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .privacy-page {
    padding: 20px 14px 70px;
  }

  .privacy-hero {
    padding: 32px 20px;
  }

  .privacy-hero h1 {
    margin-top: 22px;
    font-size: 39px;
  }

  .privacy-hero p {
    font-size: 18px;
  }

  .privacy-hero-meta {
    gap: 8px;
  }

  .privacy-hero-meta span {
    font-size: 13px;
  }

  .privacy-hero-visual {
    min-height: 360px;
  }

  .privacy-phone {
    width: 205px;
  }

  .privacy-panel {
    left: 0;
    bottom: 18px;
    width: 210px;
    padding: 14px;
  }

  .privacy-panel strong {
    font-size: 18px;
  }

  .privacy-principles {
    grid-template-columns: 1fr;
  }

  .screen-row {
    grid-template-columns: minmax(0, 340px);
    gap: 22px;
  }

  figure img {
    height: 560px;
  }

  .privacy-band {
    width: min(100% - 28px, 520px);
    margin: 58px auto;
    padding: 30px 22px;
  }

  .policy-content {
    padding: 26px 22px;
  }

  .privacy-principles {
    margin-top: 0;
  }

  .privacy-principles article {
    padding: 24px;
  }

  .privacy-principles h2 {
    margin-top: 30px;
    font-size: 30px;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0;
  }

  .policy-contact {
    padding: 30px 22px;
  }

  .support-page {
    padding: 20px 14px 70px;
  }

  .support-hero {
    margin-top: 22px;
    padding: 32px 20px 0;
  }

  .support-hero h1 {
    margin-top: 24px;
    font-size: 39px;
    line-height: 0.98;
  }

  .support-hero p {
    font-size: 18px;
  }

  .support-mac-window {
    border-radius: 16px 16px 0 0;
  }

  .support-ipad-frame {
    width: min(310px, 100%);
    border-radius: 24px 24px 0 0;
  }

  .support-cards {
    width: min(100%, 520px);
  }

  .support-cards article {
    padding: 24px;
  }

  .support-cards h2 {
    margin-top: 30px;
    font-size: 30px;
  }

  .support-content {
    padding: 0;
  }

  .support-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .support-section h2,
  .support-contact h2 {
    font-size: 30px;
  }

  .support-contact {
    padding: 30px 22px;
  }

  .support-email {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
