:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --faint: #8b8b91;
  --page: #f5f5f7;
  --card: rgba(255, 255, 255, 0.76);
  --card-solid: #ffffff;
  --line: rgba(29, 29, 31, 0.1);
  --blue: rgb(73 157 222);
  --green: rgb(161 232 137);
  --yellow: rgb(240 162 59);
  --purple: rgb(125 98 171);
  --red: rgb(233 90 63);
  --shadow-soft: 0 28px 90px rgba(15, 23, 42, 0.16);
  --shadow-tight: 0 18px 48px rgba(15, 23, 42, 0.12);
  --radius-xl: 44px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(73, 157, 222, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(161, 232, 137, 0.18), transparent 30rem),
    linear-gradient(180deg, #fff 0%, var(--page) 42%, #eeeff4 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

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

.site-header,
.site-footer,
.section-pad,
.document-page {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 14px;
  min-height: 64px;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 12px;
}

.brand.small {
  font-size: 0.96rem;
}

.brand.small img {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 620;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease, opacity 160ms ease;
}

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

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.app-store-badge {
  width: 180px;
  height: auto;
}

.header-store .app-store-badge {
  width: 132px;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0.82rem 1.15rem;
  font-weight: 720;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.secondary-action:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.section-pad {
  padding: 6.5rem 0;
}

.hero {
  min-height: calc(100svh - 86px);
  padding-top: 5rem;
  text-align: center;
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
}

.hero-icon {
  width: 96px;
  margin: 0 auto 1.45rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 122, 255, 0.18);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #0071e3;
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: -0.064em;
  line-height: 0.96;
}

h1 {
  max-width: 12.5ch;
  margin: 0 auto 1.2rem;
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: -0.041em;
}

h2 {
  max-width: 12.5ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.38rem, 2vw, 1.8rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  line-height: 1.48;
}

.hero-text {
  max-width: 790px;
  margin-inline: auto;
  font-size: clamp(1.24rem, 2vw, 1.56rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.95rem;
  margin-top: 2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  padding: 0.55rem 0.78rem;
  font-size: 0.9rem;
  font-weight: 680;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.82fr;
  align-items: end;
  gap: clamp(0.8rem, 3vw, 2rem);
  width: min(1120px, 100%);
  margin: 4.2rem auto 0;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(32px, 5vw, 64px);
  background:
    radial-gradient(circle at 20% 8%, rgba(73, 157, 222, 0.2), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(240, 162, 59, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
}

.shot-frame,
.glass-device {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-tight);
}

.shot-frame {
  border-radius: 36px;
  padding: 0.42rem;
}

.shot-frame img {
  border-radius: 30px;
}

.shot-remote {
  transform: translateY(-2.2rem);
}

.shot-connections,
.shot-terminal {
  opacity: 0.92;
}

.feature-intro {
  text-align: center;
}

.feature-intro h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.feature-card {
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 1.45rem;
  text-align: left;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}

.feature-card p {
  font-size: 1rem;
}

.feature-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  background: #0071e3;
  color: #fff;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

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

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 0;
}

.mini-stats div {
  min-width: 155px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  padding: 1rem;
}

.mini-stats dt {
  margin-bottom: 0.25rem;
  font-size: 1.55rem;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.mini-stats dd {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.glass-device {
  border-radius: var(--radius-xl);
  padding: 0.55rem;
}

.glass-device img {
  border-radius: calc(var(--radius-xl) - 0.55rem);
}

.ipad-device {
  width: min(100%, 720px);
  justify-self: end;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 2rem;
  min-height: 790px;
  overflow: hidden;
  border-radius: 44px;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  box-shadow: var(--shadow-tight);
}

.product-card h2 {
  max-width: 10ch;
  font-size: clamp(2.35rem, 4.6vw, 4.3rem);
}

.product-card p {
  max-width: 560px;
}

.product-card.dark {
  background:
    radial-gradient(circle at 20% 12%, rgba(73, 157, 222, 0.32), transparent 32%),
    #111114;
  color: #f5f5f7;
}

.product-card.dark p {
  color: rgba(245, 245, 247, 0.72);
}

.product-card.dark .eyebrow {
  color: #8fd4ff;
}

.product-card.light {
  background:
    radial-gradient(circle at 74% 8%, rgba(161, 232, 137, 0.34), transparent 34%),
    #ffffff;
}

.phone-device {
  width: min(100%, 360px);
  align-self: end;
  justify-self: center;
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: center;
  border-radius: 48px;
  background:
    radial-gradient(circle at 12% 14%, rgba(161, 232, 137, 0.38), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(73, 157, 222, 0.28), transparent 32%),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-tight);
  padding: clamp(2rem, 6vw, 4.5rem);
}

.privacy-band h2 {
  max-width: 13ch;
}

.privacy-list {
  display: grid;
  gap: 0.78rem;
}

.privacy-list div {
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.privacy-list strong {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.privacy-list span {
  color: var(--muted);
  line-height: 1.35;
}

.cta-section {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-bottom: 7rem;
}

.cta-section img:not(.app-store-badge) {
  width: 88px;
  margin-bottom: 1.1rem;
  border-radius: 22px;
}

.cta-section h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.cta-section p {
  max-width: 640px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.2rem 0 3rem;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-weight: 650;
}

.document-page {
  padding: 5rem 0 7rem;
}

.document-hero {
  max-width: 900px;
  margin-bottom: 2rem;
}

.document-hero h1 {
  margin-inline: 0;
  max-width: 12ch;
  font-size: clamp(3.3rem, 8vw, 6.6rem);
}

.document-hero p {
  max-width: 760px;
}

.updated {
  color: var(--faint);
  font-size: 0.98rem;
}

.document-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.document-card + .document-card {
  margin-top: 1rem;
}

.document-card h2 {
  max-width: none;
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
}

.document-card p {
  margin-bottom: 0;
}

.document-card a {
  color: #0071e3;
  font-weight: 720;
}

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

.support-grid .document-card {
  margin: 0;
}

@media (max-width: 980px) {
  .feature-grid,
  .product-strip,
  .privacy-band,
  .showcase-row,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: unset;
  }

  .hero-stage {
    grid-template-columns: 1fr 1fr;
  }

  .shot-terminal {
    display: none;
  }

  .shot-remote {
    transform: translateY(-1rem);
  }

  .ipad-device {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer,
  .section-pad,
  .document-page {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    top: 10px;
  }

  .nav-links {
    display: none;
  }

  .brand span {
    display: none;
  }

  .header-store .app-store-badge {
    width: 116px;
  }

  .section-pad {
    padding: 4.6rem 0;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .hero-icon {
    width: 78px;
    border-radius: 19px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .secondary-action {
    width: min(100%, 260px);
  }

  .hero-stage {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
    margin-top: 3rem;
  }

  .shot-connections {
    display: none;
  }

  .shot-remote {
    transform: none;
  }

  .product-card {
    min-height: 690px;
  }

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

  .privacy-band {
    border-radius: 34px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .header-store .app-store-badge {
    width: 108px;
  }

  .hero-text,
  p {
    font-size: 1.05rem;
  }

  .feature-card,
  .document-card {
    border-radius: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
