:root {
  color-scheme: light;
  --background-top: #f1f4f4;
  --background-middle: #f6f4ef;
  --background-bottom: #d8e1e4;
  --surface: rgba(248, 247, 243, 0.9);
  --surface-strong: #f8f7f3;
  --surface-muted: #c9e0e8;
  --stroke: rgba(0, 75, 115, 0.18);
  --ink: #071f31;
  --muted: rgba(64, 91, 104, 0.94);
  --primary: #071f31;
  --secondary: #005f8f;
  --accent: #ff8d73;
  --soft-blue: #8fbfd1;
  --shadow: 0 24px 70px rgba(7, 31, 49, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 77% 27%, rgba(72, 189, 232, 0.12), transparent 24%),
    linear-gradient(180deg, var(--background-top) 0%, var(--background-middle) 48%, var(--background-bottom) 100%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 95, 143, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 95, 143, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 62%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, transparent 35%, rgba(12, 42, 59, 0.06) 100%);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), #72d1d4, var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 48vw;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.ambient-one {
  top: 5vh;
  right: -22vw;
  background: radial-gradient(circle, rgba(72, 189, 232, 0.22), rgba(72, 189, 232, 0) 68%);
}

.ambient-two {
  top: 92vh;
  left: -26vw;
  background: radial-gradient(circle, rgba(255, 141, 115, 0.12), rgba(255, 141, 115, 0) 70%);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 36px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 14px 38px rgba(18, 50, 74, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 20px rgba(18, 50, 74, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.menu-button {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  color: var(--primary);
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: color-mix(in srgb, var(--secondary) 12%, transparent);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  min-height: min(740px, calc(100vh - 92px));
  padding: 54px 0 34px;
  perspective: 1400px;
}

.hero-copy h1,
.section h2,
.policy-header h1,
.message-header h2 {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 16px;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 13ch;
  margin: 14px 0 16px;
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.02;
  text-wrap: balance;
}

.lede {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 25px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(18, 50, 74, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(18, 50, 74, 0.28);
}

.button-secondary {
  background: color-mix(in srgb, var(--secondary) 10%, transparent);
  border-color: color-mix(in srgb, var(--secondary) 34%, transparent);
  color: var(--primary);
}

.mail-preview {
  position: relative;
  justify-self: end;
  width: min(100%, 590px);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.preview-shadow {
  position: absolute;
  right: 8%;
  bottom: -5%;
  left: 8%;
  height: 18%;
  border-radius: 50%;
  background: rgba(7, 31, 49, 0.3);
  filter: blur(34px);
  transform: translateZ(-40px);
}

.window-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #91aebb;
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: 0 2px 1px rgba(255, 255, 255, 0.9) inset, 0 34px 80px rgba(7, 31, 49, 0.24), 0 10px 26px rgba(7, 31, 49, 0.15);
  transform: rotateY(-3deg) rotateX(1.5deg);
  transform-origin: center;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 600ms ease;
}

.mail-preview:hover .window-shell {
  box-shadow: 0 2px 1px rgba(255, 255, 255, 0.9) inset, 0 42px 96px rgba(7, 31, 49, 0.28), 0 12px 30px rgba(7, 31, 49, 0.16);
  transform: rotateY(0) rotateX(0) translateY(-5px);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  background: rgba(250, 254, 255, 0.82);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(18, 50, 74, 0.16);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.chip-private {
  top: -18px;
  right: 34px;
}

.chip-native {
  right: -20px;
  bottom: 40px;
}

.chip-native > span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 6px;
  background: var(--primary);
  color: white;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31a970;
  box-shadow: 0 0 0 5px rgba(49, 169, 112, 0.12);
}

.window-chrome {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--stroke);
  background: #d4e0e5;
}

.window-chrome span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6b5f;
}

.window-chrome span:nth-child(2) {
  background: #f7bd45;
}

.window-chrome span:nth-child(3) {
  background: #55c85a;
}

.mail-app {
  display: grid;
  grid-template-columns: 132px 180px minmax(0, 1fr);
  min-height: 360px;
  background: #e0e8eb;
}

.sidebar,
.message-list,
.reading-pane {
  min-width: 0;
}

.sidebar {
  padding: 18px 12px;
  border-right: 1px solid var(--stroke);
  background: #b9cdd8;
}

.sidebar-title {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mailbox {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.mailbox.active {
  background: #005f8f;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 31, 49, 0.16);
}

.message-list {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 8px;
  border-right: 1px solid var(--stroke);
  background: #e0e8eb;
}

.message-row {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(0, 95, 143, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.message-row span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

.message-row strong {
  color: var(--ink);
  font-size: 14px;
}

.message-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 17px;
}

.message-row.selected {
  border-color: #005f8f;
  background: #ffffff;
  box-shadow: 3px 0 0 #005f8f inset;
}

.reading-pane {
  padding: 20px;
  background: #f8f7f3;
}

.message-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.message-header h2 {
  margin: 8px 0 22px;
  font-size: 24px;
  line-height: 1.1;
}

.message-lines {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.message-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #c9d8de;
}

.message-lines span:nth-child(2) {
  width: 88%;
}

.message-lines span:nth-child(3) {
  width: 62%;
}

.assistant-strip {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--secondary) 24%, transparent);
  border-radius: var(--radius-md);
  background: #c9e0e8;
}

.assistant-strip strong {
  color: var(--primary);
  font-size: 13px;
}

.assistant-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 17px;
}

.section {
  padding: 54px 0;
  position: relative;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-intro {
  max-width: 66ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 26px;
}

.section h2,
.policy-header h1 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.policy-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 18px 42px rgba(18, 50, 74, 0.08);
}

.policy-card p,
.policy-list {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 23px;
}

.story-section,
.assistant-section {
  padding-top: 96px;
}

.story-section .section-heading,
.assistant-section .section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.app-artifact {
  overflow: hidden;
  border: 1px solid #91aebb;
  border-radius: 24px;
  background: #e0e8eb;
  box-shadow: 0 32px 90px rgba(16, 42, 59, 0.17), 0 2px 1px rgba(255, 255, 255, 0.95) inset;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.artifact-toolbar {
  display: grid;
  grid-template-columns: 130px minmax(240px, 1fr) minmax(220px, 340px) 90px;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  border-bottom: 1px solid #91aebb;
  background: #d4e0e5;
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff695f;
}

.traffic-lights i:nth-child(2) { background: #f4bc43; }
.traffic-lights i:nth-child(3) { background: #55c957; }

.toolbar-account {
  display: flex;
  align-items: center;
  gap: 7px;
}

.toolbar-account strong { margin-left: 3px; font-size: 14px; }
.toolbar-account small { color: var(--muted); font-size: 11px; }

.provider-mark {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.provider-mark.apple { background: #263a44; color: white; }
.provider-mark.google { background: #fff; color: #2674d9; border: 1px solid #d9e2e6; }

.toolbar-search {
  padding: 9px 13px;
  border: 1px solid #91aebb;
  border-radius: 9px;
  background: #fff;
  color: #6d8589;
  font-size: 12px;
}

.toolbar-actions { text-align: right; color: #405b68; font-weight: 800; }

.artifact-body {
  display: grid;
  grid-template-columns: 190px 310px minmax(0, 1fr);
  min-height: 540px;
}

.artifact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 12px 14px;
  border-right: 1px solid #91aebb;
  background: #b9cdd8;
}

.artifact-sidebar p {
  margin: 9px 10px 5px;
  color: #405b68;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.artifact-sidebar a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #071f31;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.artifact-sidebar a b { margin-left: auto; }
.artifact-sidebar a.selected { background: #005f8f; color: #ffffff; }

.sync-state {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: auto;
  padding: 12px 8px 4px;
  border-top: 1px solid rgba(0, 75, 115, 0.22);
}

.sync-state i { width: 8px; height: 8px; border-radius: 50%; background: #2fa772; box-shadow: 0 0 0 4px rgba(47, 167, 114, .12); }
.sync-state span { display: grid; gap: 2px; }
.sync-state strong { font-size: 11px; }
.sync-state small { color: var(--muted); font-size: 9px; }

.artifact-list { padding: 0 8px 8px; border-right: 1px solid #91aebb; background: #e0e8eb; }
.list-heading { display: flex; justify-content: space-between; padding: 18px 16px 12px; color: #071f31; font-size: 12px; }
.list-heading span { color: #6d8589; }

.artifact-message {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  margin-top: 7px;
  padding: 15px 14px;
  border: 1px solid rgba(0, 95, 143, 0.1);
  border-radius: 9px;
  background: #ffffff;
}

.artifact-message.selected { border-color: #005f8f; background: #ffffff; box-shadow: 3px 0 0 #005f8f inset; }
.artifact-message > div { min-width: 0; }
.artifact-message p { display: flex; justify-content: space-between; margin: 0 0 5px; font-size: 11px; }
.artifact-message time { color: #6d8589; }
.artifact-message h3 { margin: 0 0 5px; font-size: 13px; }
.artifact-message div > span { display: block; overflow: hidden; color: #405b68; font-size: 11px; line-height: 16px; text-overflow: ellipsis; white-space: nowrap; }
.artifact-message div > small { display: inline-block; margin-top: 8px; color: #005f8f; font-size: 9px; font-weight: 700; }

.sender-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.sender-avatar.teal { background: #005f8f; }
.sender-avatar.coral { background: #ff8d73; }
.sender-avatar.blue { background: #5574a8; }

.artifact-reader {
  position: relative;
  padding: 38px 42px;
  background: #f8f7f3;
  color: #071f31;
}

.reader-actions { position: absolute; top: 18px; right: 24px; color: #6d8589; font-size: 13px; }
.artifact-reader > small { color: #6d8589; font-size: 10px; }
.artifact-reader > h3 { max-width: 15ch; margin: 7px 0 22px; color: #071f31; font-size: 25px; line-height: 1.08; }
.artifact-reader > p { max-width: 48ch; margin: 16px 0; color: #405b68; font-size: 12px; line-height: 19px; }
.sender-line { display: flex; align-items: center; gap: 10px; padding: 12px 0 17px; border-bottom: 1px solid #c9d8de; }
.sender-line > span:last-child { display: grid; gap: 2px; font-size: 12px; }
.sender-line small { color: #6d8589; font-size: 10px; }

.decision-block { display: grid; gap: 8px; max-width: 340px; margin: 20px 0; padding: 14px; border-left: 3px solid #005f8f; background: #c9e0e8; }
.decision-block span { color: #005f8f; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.decision-block strong { font-size: 11px; }

.connection-artifact {
  overflow: hidden;
  border: 1px solid #91aebb;
  border-radius: 24px;
  background: #f8f7f3;
  box-shadow: 0 32px 90px rgba(16, 42, 59, .16);
}

.connection-titlebar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 20px;
  border-bottom: 1px solid #91aebb;
  background: #d4e0e5;
}

.connection-titlebar img { width: 34px; height: 34px; border-radius: 10px; }
.connection-titlebar > span { display: grid; gap: 2px; }
.connection-titlebar strong { font-size: 13px; }
.connection-titlebar small { color: #405b68; font-size: 10px; }
.connection-titlebar em { margin-left: auto; padding: 5px 9px; border-radius: 999px; background: #ddefe9; color: #207f5b; font-size: 9px; font-style: normal; font-weight: 800; }

.connection-stage {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(300px, 1.05fr) minmax(260px, .95fr);
  min-height: 430px;
}

.connection-stage > section { padding: 30px 26px; }
.connection-source { background: #e0e8eb; }
.local-bridge { position: relative; border-inline: 1px solid #244b5d; background: #071923; color: #e6f1f5; }
.connection-destination { background: #f8f7f3; }
.artifact-kicker { margin: 0 0 18px; color: #405b68; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.account-source,
.assistant-client {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #91aebb;
}

.account-source > span:nth-child(2),
.assistant-client > span:nth-child(2) { display: grid; gap: 3px; }
.account-source strong, .assistant-client strong { font-size: 11px; }
.account-source small, .assistant-client small { color: #405b68; font-size: 9px; }
.account-source > i, .assistant-client > i { margin-left: auto; color: #2fa772; font-size: 9px; font-style: normal; font-weight: 800; }
.account-source > i.muted-state { color: #405b68; }
.provider-mark.imap { background: #c9e0e8; color: #005f8f; }

.bridge-line { display: flex; justify-content: space-between; align-items: center; margin: 14px 0 30px; }
.bridge-line::before, .bridge-line::after { width: 39%; height: 1px; content: ""; background: #244b5d; }
.bridge-line i { width: 5px; height: 5px; border-radius: 50%; background: #48bde8; box-shadow: 0 0 12px #48bde8; }
.bridge-line i:nth-child(2) { display: none; }
.bridge-line i:nth-child(3) { display: none; }
.bridge-core { display: flex; align-items: center; gap: 13px; padding: 18px; border: 1px solid #244b5d; border-radius: 14px; background: #102a38; }
.bridge-core img { width: 43px; height: 43px; border-radius: 12px; }
.bridge-core span { display: grid; gap: 3px; }
.bridge-core strong { font-size: 12px; }
.bridge-core small { color: #98b2bd; font-size: 9px; }
.local-bridge ul { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; color: #e6f1f5; font-size: 10px; }
.local-bridge li { display: flex; align-items: center; gap: 9px; }
.local-bridge li i { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: #1d5f7c; color: #67cef0; font-size: 9px; font-style: normal; }

.client-symbol { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: #071f31; color: #fff; font-size: 10px; font-weight: 900; }
.available-access { margin-top: 24px; padding: 15px; border-radius: 12px; background: #c9e0e8; }
.available-access > p { display: flex; justify-content: space-between; margin: 0 0 10px; font-size: 10px; }
.available-access > p span { color: #005f8f; font-weight: 800; }
.available-access dl { margin: 0; }
.available-access dl div { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-top: 1px solid #91aebb; font-size: 9px; }
.available-access dt { color: #405b68; }
.available-access dd { margin: 0; color: #071f31; font-weight: 750; text-align: right; }

.connection-status { display: flex; gap: 10px; align-items: center; padding: 16px 20px; border-top: 1px solid #91aebb; background: #c9d8de; }
.status-signal { width: 9px; height: 9px; border-radius: 50%; background: #2fa772; box-shadow: 0 0 0 5px rgba(47, 167, 114, .12); }
.connection-status p { display: grid; gap: 3px; margin: 0; }
.connection-status strong { font-size: 11px; }
.connection-status small { color: #405b68; font-size: 9px; }
.connection-status > span:last-child { margin-left: auto; color: #405b68; font-size: 9px; font-weight: 750; }

.everyday-section {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
  padding-block: 112px 88px;
}

.everyday-heading {
  position: sticky;
  top: 120px;
}

.everyday-heading h2 {
  margin-top: 10px;
}

.everyday-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 25px;
}

.capability-ledger {
  border-top: 1px solid #91aebb;
}

.capability-ledger > div {
  display: grid;
  grid-template-columns: 34px minmax(150px, .7fr) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid #91aebb;
}

.capability-ledger span {
  color: #005f8f;
  font-size: 10px;
  font-weight: 850;
}

.capability-ledger strong {
  color: #071f31;
  font-size: 15px;
}

.capability-ledger p {
  margin: 0;
  color: #405b68;
  font-size: 13px;
  line-height: 20px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

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

.footer-links a {
  color: var(--primary);
  font-weight: 700;
}

.policy-main {
  padding: 54px 0;
}

.policy-shell {
  max-width: 820px;
  margin: 0 auto;
}

.policy-header {
  margin-bottom: 22px;
}

.policy-header p {
  color: var(--muted);
  font-size: 16px;
  line-height: 25px;
}

.policy-updated {
  margin: 12px 0 0;
  font-weight: 700;
}

.policy-card {
  padding: 22px;
  margin-top: 14px;
}

.policy-card h2 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 20px;
}

.policy-list {
  padding-left: 20px;
}

.reveal {
  opacity: 1;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.reveal {
  transition-delay: 80ms;
}

.mail-preview.reveal {
  transition-delay: 180ms;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ambient,
  .mail-preview,
  .floating-chip {
    transform: none;
    transition: none;
  }
}

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

  .everyday-heading {
    position: static;
  }

  .mail-preview {
    justify-self: stretch;
  }

  .chip-native {
    right: 12px;
  }

  .artifact-body {
    grid-template-columns: 165px 280px minmax(340px, 1fr);
    overflow-x: auto;
  }

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

  .local-bridge {
    border-inline: 0;
    border-block: 1px solid #365158;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
    padding-top: 12px;
  }

  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 8px;
  }

  .site-nav.is-open,
  .policy-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    background: color-mix(in srgb, var(--secondary) 9%, transparent);
  }

  .hero {
    min-height: auto;
    padding: 44px 0 24px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .mail-app {
    grid-template-columns: 1fr;
  }

  .window-shell {
    transform: none;
  }

  .floating-chip {
    display: none;
  }

  .sidebar {
    display: none;
  }

  .message-list {
    border-right: 0;
  }

  .reading-pane {
    display: none;
  }

  .story-section,
  .assistant-section {
    padding-top: 66px;
  }

  .artifact-toolbar {
    grid-template-columns: auto 1fr auto;
    min-width: 0;
  }

  .traffic-lights,
  .toolbar-account small,
  .toolbar-search {
    display: none;
  }

  .artifact-body {
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: visible;
  }

  .artifact-sidebar,
  .artifact-reader {
    display: none;
  }

  .artifact-list {
    border-right: 0;
  }

  .connection-stage > section {
    padding: 24px 20px;
  }

  .connection-status {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .connection-status > span:last-child {
    width: 100%;
    margin-left: 19px;
  }

  .capability-ledger > div {
    grid-template-columns: 28px 1fr;
  }

  .capability-ledger p {
    grid-column: 2;
  }

  .footer {
    flex-direction: column;
  }
}
