:root {
  color-scheme: dark;
  --ink: #060a0e;
  --ink-soft: #091016;
  --panel: #0b131a;
  --panel-raised: #101b24;
  --line: #2a3a47;
  --line-soft: #17232d;
  --paper: #edf2f0;
  --muted: #8f9ca7;
  --blue: #7eaaff;
  --cyan: #5fe0cc;
  --content: min(1240px, calc(100vw - 48px));
  --sans: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --mono: "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 7%, rgba(75, 128, 172, .13), transparent 31rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line-soft);
  background: rgba(6, 10, 14, .92);
  backdrop-filter: blur(16px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  text-decoration: none;
}
.wordmark strong, .wordmark small { display: block; }
.wordmark strong { font-size: 13px; letter-spacing: .16em; }
.wordmark small { margin-top: 3px; color: var(--muted); font: 9px/1 var(--mono); letter-spacing: .14em; }
.vault-glyph {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border: 1px solid #385069;
}
.vault-glyph::before, .vault-glyph i, .vault-glyph b {
  position: absolute;
  display: block;
  content: "";
  width: 2px;
  height: 16px;
  top: 7px;
  background: var(--cyan);
  transform-origin: center bottom;
}
.vault-glyph::before { left: 8px; transform: rotate(-24deg); }
.vault-glyph i { left: 14px; transform: rotate(24deg); }
.vault-glyph b { right: 7px; top: 7px; height: 11px; opacity: .45; transform: rotate(24deg); }
.site-header nav { display: flex; gap: 30px; }
.site-header nav a { color: #a8b2bd; font-size: 13px; text-decoration: none; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--paper); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.language-toggle, .header-entry {
  min-height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font: 700 11px/1 var(--mono);
  letter-spacing: .08em;
}
.language-toggle { width: 44px; cursor: pointer; }
.header-entry { display: inline-grid; place-items: center; padding: 0 17px; text-decoration: none; }
.language-toggle:hover, .header-entry:hover { border-color: var(--blue); }

.release-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 38px;
  padding: 8px 24px;
  border-bottom: 1px solid #23443f;
  background: linear-gradient(90deg, rgba(44, 128, 117, .14), rgba(25, 56, 76, .18));
  color: #aebcc5;
  font: 9px/1.3 var(--mono);
  letter-spacing: .06em;
  text-align: center;
}
.release-bar > span:first-child { display: inline-flex; align-items: center; gap: 7px; color: var(--cyan); font-weight: 800; }
.release-bar > span:first-child i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(95, 224, 204, .09); }
.release-bar strong { color: var(--paper); font-size: 10px; }

.hero {
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(590px, 1.2fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
  width: var(--content);
  min-height: 740px;
  margin: 0 auto;
  padding: 88px 0 80px;
}
.hero-copy { min-width: 0; }
.section-code {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--muted);
  font: 700 10px/1.2 var(--mono);
  letter-spacing: .11em;
}
.section-code > span:first-child {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 31px;
  height: 24px;
  border: 1px solid #31516d;
  color: var(--blue);
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(57px, 6.25vw, 88px);
  line-height: .92;
  letter-spacing: -.062em;
  font-weight: 590;
}
h1 em, h2 em { color: var(--blue); font-style: normal; font-weight: inherit; }
.hero-lead { max-width: 610px; color: #b4bdc6; font-size: clamp(17px, 1.45vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero-product-map { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; max-width: 610px; margin-top: 34px; }
.hero-product-card { display: grid; grid-template-columns: 31px minmax(0, 1fr) auto; gap: 12px; align-items: center; min-height: 88px; padding: 14px 15px; overflow: hidden; border: 1px solid #304652; background: rgba(9, 18, 24, .82); text-decoration: none; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.hero-product-card > span:first-child { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid #3b5665; color: #91a7b5; font: 750 8px/1 var(--mono); }
.hero-product-card small, .hero-product-card strong, .hero-product-card b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-product-card small { margin-bottom: 7px; font: 750 7px/1 var(--mono); letter-spacing: .09em; }
.hero-product-card strong { color: #edf2f0; font-size: 13px; }
.hero-product-card b { margin-top: 5px; color: #758895; font-size: 9px; font-weight: 500; }
.hero-product-card > i { color: #67889d; font-size: 17px; font-style: normal; transition: transform .2s ease; }
.hero-product-card.product-live { border-color: #3f6d87; background: linear-gradient(110deg, rgba(55, 106, 142, .18), rgba(9, 18, 24, .82)); }
.hero-product-card.product-live small { color: var(--cyan); }
.hero-product-card.product-planned { border-color: #3a5e5c; background: linear-gradient(110deg, rgba(42, 106, 99, .14), rgba(9, 18, 24, .82)); }
.hero-product-card.product-planned small { color: #99c6bf; }
.hero-product-card:hover, .hero-product-card:focus-visible { z-index: 1; transform: translateY(-3px); border-color: #6c9eba; background: #101f29; box-shadow: 0 16px 34px rgba(0, 0, 0, .24); }
.hero-product-card:hover > i { transform: translateX(4px); }
.hero-product-map + .hero-proof { margin-top: 18px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 610px; margin-top: 40px; border-block: 1px solid var(--line-soft); }
.hero-proof > span { display: grid; gap: 7px; min-width: 0; padding: 15px 13px; }
.hero-proof > span + span { border-left: 1px solid var(--line-soft); }
.hero-proof b { color: var(--cyan); font: 800 10px/1 var(--mono); letter-spacing: .08em; }
.hero-proof small { color: #8795a0; font-size: 10px; line-height: 1.35; }
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 235px;
  min-height: 54px;
  padding: 0 20px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}
.primary-link i { font-style: normal; font-size: 20px; }
.primary-link:hover i { transform: translateX(4px); }
.text-link { color: #c7cdd3; font-size: 14px; text-underline-offset: 6px; }

.conversation-demo {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #354858;
  background: #070d12;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
}
.demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 700 9px/1 var(--mono);
  letter-spacing: .08em;
}
.live-state { display: inline-flex; align-items: center; gap: 8px; color: #b9c4ce; }
.live-state i { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 3px rgba(95, 224, 204, .08); }
.demo-workspace {
  display: grid;
  grid-template-columns: 50px 138px minmax(245px, 1fr) 112px;
  min-height: 456px;
}
.demo-server-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  border-right: 1px solid var(--line-soft);
  background: #060b0f;
}
.demo-server-rail > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #263744;
  background: #0c161e;
  color: #9aa8b4;
  font: 700 8px/1 var(--mono);
  clip-path: polygon(0 0, 76% 0, 100% 24%, 100% 100%, 24% 100%, 0 76%);
}
.demo-server-rail .server-home { border-color: #3a645f; color: var(--cyan); }
.demo-server-rail .server-active { border-color: #5c82b3; background: #182c3c; color: var(--paper); }
.demo-server-rail .server-add { margin-top: auto; color: var(--cyan); font-size: 15px; }
.demo-channel-rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px 10px 10px;
  border-right: 1px solid var(--line-soft);
  background: #0a1218;
}
.demo-community-name { min-width: 0; padding: 0 5px 15px; border-bottom: 1px solid var(--line-soft); }
.demo-community-name strong { display: block; overflow: hidden; font-size: 11px; letter-spacing: .04em; text-overflow: ellipsis; white-space: nowrap; }
.demo-community-name small { display: block; margin-top: 5px; color: #668091; font: 7px/1.2 var(--mono); letter-spacing: .07em; }
.demo-channel-rail > p { margin: 17px 6px 7px; color: #647583; font: 700 8px/1 var(--mono); letter-spacing: .09em; }
.demo-channel {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 5px;
  align-items: center;
  min-height: 29px;
  padding: 0 7px;
  color: #8e9ca8;
  font-size: 10px;
}
.demo-channel > span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-channel > b { display: grid; min-width: 16px; height: 16px; place-items: center; background: #1d4263; color: #dceaff; font: 7px/1 var(--mono); }
.demo-channel.active { background: #142535; color: #e2e9ee; }
.demo-channel-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-top: auto;
  padding: 10px 5px 0;
  border-top: 1px solid var(--line-soft);
}
.mini-avatar { display: grid; flex: 0 0 auto; width: 25px; height: 25px; place-items: center; background: #305672; color: #eef7f8; font: 700 7px/1 var(--mono); }
.demo-channel-footer > span:last-child { min-width: 0; }
.demo-channel-footer strong, .demo-channel-footer small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-channel-footer strong { font-size: 9px; }
.demo-channel-footer small { margin-top: 3px; color: var(--cyan); font: 6px/1 var(--mono); }
.demo-thread { display: grid; min-width: 0; grid-template-rows: 55px minmax(0, 1fr) 53px; background: #0b131a; }
.demo-thread > header { display: flex; align-items: center; justify-content: space-between; min-width: 0; padding: 0 14px; border-bottom: 1px solid var(--line-soft); }
.demo-thread > header > span:first-child { display: grid; min-width: 0; gap: 4px; }
.demo-thread header strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.demo-thread header small { color: var(--cyan); font: 7px/1.2 var(--mono); }
.room-tools { display: flex; gap: 5px; }
.room-tools i { display: block; width: 7px; height: 7px; border: 1px solid #536675; }
.demo-messages { min-width: 0; padding: 0 14px 15px; overflow: hidden; }
.dayline { margin: 20px 0 17px; color: #647280; font: 8px/1 var(--mono); text-align: center; }
.demo-message { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 9px; margin-top: 17px; }
.demo-avatar { display: grid; width: 30px; height: 30px; place-items: center; background: #265f8b; color: #edf6fb; font: 800 9px/1 var(--mono); }
.demo-avatar.alt { background: #22675d; }
.demo-message p { min-width: 0; margin: 0; }
.demo-message p > strong, .demo-message p > span { display: block; }
.demo-message strong { font-size: 10px; }
.demo-message time { margin-left: 5px; color: #657483; font: 7px/1 var(--mono); font-weight: 400; }
.demo-message p > span { margin-top: 5px; color: #b6c0c8; font-size: 10px; line-height: 1.45; overflow-wrap: anywhere; }
.demo-system { display: flex; align-items: center; gap: 9px; width: min(100%, 215px); margin: 18px 0 0 39px; padding: 10px; border: 1px solid #31556b; background: #0a171e; }
.demo-system > span { display: grid; flex: 0 0 auto; width: 28px; height: 28px; place-items: center; border: 1px solid #45778e; border-radius: 50%; color: var(--cyan); font: 8px/1 var(--mono); }
.demo-system div { display: grid; min-width: 0; gap: 3px; }
.demo-system strong, .demo-system small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-system strong { font-size: 9px; }
.demo-system small { color: var(--muted); font-size: 8px; }
.demo-composer { display: grid; grid-template-columns: 21px minmax(0, 1fr) 28px; gap: 7px; align-items: center; min-width: 0; margin: 0 10px 10px; padding: 0 7px; border: 1px solid #233441; background: #080f15; color: #657481; font-size: 9px; }
.demo-composer > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-composer > span:first-child { color: #8394a1; font-size: 15px; }
.demo-composer b { display: grid; width: 23px; height: 23px; place-items: center; justify-self: end; background: var(--blue); color: var(--ink); border-radius: 50%; }
.demo-members { min-width: 0; padding: 17px 9px; border-left: 1px solid var(--line-soft); background: #081016; }
.demo-members > p { margin: 0 3px 14px; color: #647583; font: 700 7px/1 var(--mono); letter-spacing: .08em; }
.demo-members > div { display: grid; grid-template-columns: 25px minmax(0, 1fr); gap: 7px; align-items: center; margin: 13px 0; }
.member-avatar { position: relative; display: grid; width: 25px; height: 25px; place-items: center; background: #275f89; color: white; font: 700 8px/1 var(--mono); }
.member-avatar.jonas { background: #24675d; }
.member-avatar.noa { background: #604d7e; }
.member-avatar i { position: absolute; right: -2px; bottom: -2px; width: 7px; height: 7px; border: 2px solid #081016; border-radius: 50%; background: var(--cyan); }
.demo-members strong, .demo-members small { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-members strong { font-size: 9px; }
.demo-members small { margin-top: 3px; color: #6e8292; font: 6px/1 var(--mono); }

.positioning {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border-block: 1px solid var(--line-soft);
  background: rgba(9, 16, 22, .62);
}
.positioning p { display: flex; gap: 18px; align-items: center; min-height: 76px; margin: 0; padding: 0 max(24px, calc((100vw - 1240px) / 6)); border-right: 1px solid var(--line-soft); }
.positioning p:last-child { border-right: 0; }
.positioning span { color: var(--cyan); font: 10px/1 var(--mono); }
.positioning strong { font-size: 12px; letter-spacing: .02em; }

.app-showcase, .privacy-manifesto, .product-story, .comparison, .security-boundary, .current-scope, .membership, .beta-callout, .site-footer { width: var(--content); margin-inline: auto; }
.app-showcase { position: relative; padding: 126px 0 118px; border-bottom: 1px solid var(--line-soft); }
.app-showcase::before {
  position: absolute;
  z-index: -1;
  inset: 180px -12vw 90px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(62, 137, 179, .16), transparent 27rem),
    radial-gradient(circle at 82% 46%, rgba(62, 188, 169, .12), transparent 23rem);
}
.app-showcase-heading { display: grid; grid-template-columns: .65fr 1.35fr; column-gap: 70px; align-items: start; margin-bottom: 72px; }
.app-showcase-heading .section-code { grid-row: 1 / span 2; }
.app-showcase-heading h2 { margin: 0; font-size: clamp(48px, 5.6vw, 80px); line-height: .95; letter-spacing: -.058em; font-weight: 580; }
.app-showcase-heading > p:last-child { grid-column: 2; max-width: 780px; margin: 30px 0 0; color: #aab5be; font-size: 17px; line-height: 1.72; }
.device-stage { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); gap: 28px; align-items: stretch; }
.device-stage::before { position: absolute; inset: 50px 5% auto; height: 56%; content: ""; border-radius: 50%; background: rgba(0, 0, 0, .36); filter: blur(60px); pointer-events: none; }
.desktop-product, .mobile-product { position: relative; min-width: 0; }
.product-panel { padding: 22px; overflow: hidden; border: 1px solid #314754; background: linear-gradient(145deg, rgba(14, 26, 35, .97), rgba(6, 12, 17, .98)); box-shadow: 0 28px 68px rgba(0, 0, 0, .2); scroll-margin-top: 112px; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.product-panel::before { position: absolute; inset: 0 0 auto; height: 3px; content: ""; background: linear-gradient(90deg, #568ed1, #5fe0cc 70%, transparent); opacity: .78; }
.mobile-product::before { background: linear-gradient(90deg, #5fe0cc, #477da3 70%, transparent); }
.product-panel:hover { transform: translateY(-4px); border-color: #52788b; box-shadow: 0 38px 82px rgba(0, 0, 0, .3); }
.product-panel:hover .desktop-shell { transform: translateY(-3px); }
.product-panel:hover .phone-shell { transform: rotate(.35deg) translateY(-3px); }
.product-identity { position: relative; z-index: 2; display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; gap: 15px; align-items: center; min-height: 92px; margin: -2px -2px 22px; padding: 12px 10px 18px; border-bottom: 1px solid #2a3e49; }
.product-index { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid #456a7b; color: var(--blue); font: 800 14px/1 var(--mono); }
.mobile-identity .product-index { border-color: #3f746c; color: var(--cyan); }
.product-identity > span:nth-child(2) { min-width: 0; }
.product-identity small, .product-identity strong, .product-identity b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-identity small { color: #728994; font: 750 7px/1 var(--mono); letter-spacing: .12em; }
.product-identity strong { margin-top: 8px; color: #eff4f2; font-size: clamp(20px, 2vw, 29px); line-height: 1; letter-spacing: -.035em; }
.product-identity b { margin-top: 6px; color: #81919b; font-size: 9px; font-weight: 500; }
.product-status { display: inline-flex; align-items: center; gap: 8px; min-height: 30px; padding: 0 10px; border: 1px solid; background: transparent; font: 750 7px/1 var(--mono); letter-spacing: .08em; white-space: nowrap; }
.product-status i { width: 6px; height: 6px; border-radius: 50%; }
.status-live { border-color: #3c8278; color: #bff4eb; }
.status-live i { background: var(--cyan); box-shadow: 0 0 0 4px rgba(95, 224, 204, .08); }
.status-planned { border-color: #42635f; color: #a9c8c3; }
.status-planned i { border: 1px solid #6fa99f; background: #203e3b; }
.product-kicker { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 9px; min-height: 30px; padding: 0 12px; margin-bottom: 13px; border: 1px solid #395464; background: #091219; color: #b6c2ca; font: 750 8px/1 var(--mono); letter-spacing: .11em; }
.product-kicker i { width: 6px; height: 6px; border-radius: 50%; }
.product-kicker.live { border-color: #3d8379; color: #c9f9f1; }
.product-kicker.live i { background: var(--cyan); box-shadow: 0 0 0 4px rgba(95, 224, 204, .08); }
.product-kicker.preview { border-color: #665b3b; color: #decf9f; }
.product-kicker.preview i { background: #e3bd57; box-shadow: 0 0 0 4px rgba(227, 189, 87, .08); }
.desktop-shell { position: relative; z-index: 1; overflow: hidden; border: 1px solid #466172; border-radius: 12px; background: #05090c; box-shadow: 0 42px 90px rgba(0, 0, 0, .46), 0 0 0 1px rgba(112, 171, 201, .04); transition: transform .22s ease; }
.desktop-shell::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(124deg, rgba(255, 255, 255, .025), transparent 28%); }
.desktop-chrome { display: grid; grid-template-columns: 24px 1fr auto; gap: 8px; align-items: center; min-height: 38px; padding: 0 13px; border-bottom: 1px solid #263945; background: linear-gradient(180deg, #111c24, #0b141b); color: #b8c4cc; font-size: 9px; }
.chrome-mark { display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid #3a6d81; color: var(--cyan); font: 800 8px/1 var(--mono); }
.window-controls { display: flex; gap: 10px; }
.window-controls i { width: 7px; height: 7px; border: 1px solid #59707d; border-radius: 50%; }
.desktop-screen { display: grid; grid-template-columns: 46px 150px minmax(250px, 1fr) 126px; min-height: 438px; background: #081016; }
.showcase-servers { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 14px 6px; border-right: 1px solid #1d2a33; background: #050a0e; }
.showcase-servers > * { display: grid; width: 29px; height: 29px; place-items: center; margin: 0; border: 1px solid #293d4a; background: #0b151c; color: #8293a0; font: 750 7px/1 var(--mono); font-style: normal; }
.showcase-servers b { border-color: #438478; color: var(--cyan); }
.showcase-servers span:first-of-type { border-color: #6891c3; background: #172b3b; color: var(--paper); }
.showcase-servers i { margin-top: auto; color: var(--cyan); font-size: 13px; }
.showcase-rooms { display: flex; min-width: 0; flex-direction: column; padding: 16px 9px 10px; border-right: 1px solid #1d2a33; background: #091219; }
.showcase-rooms header { padding: 0 6px 14px; border-bottom: 1px solid #1e2c35; }
.showcase-rooms header small, .showcase-rooms header strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.showcase-rooms header small { color: #66808f; font: 650 6px/1.3 var(--mono); letter-spacing: .08em; }
.showcase-rooms header strong { margin-top: 5px; font-size: 11px; }
.showcase-rooms > p { margin: 18px 7px 8px; color: #617585; font: 750 7px/1 var(--mono); letter-spacing: .1em; }
.showcase-rooms > span { display: grid; grid-template-columns: 13px minmax(0, 1fr) auto; gap: 4px; align-items: center; min-height: 29px; padding: 0 7px; color: #718391; font: 9px/1.2 var(--sans); }
.showcase-rooms > span b { overflow: hidden; font-weight: 520; text-overflow: ellipsis; white-space: nowrap; }
.showcase-rooms > span i { display: grid; width: 16px; height: 16px; place-items: center; border-radius: 50%; background: var(--blue); color: #061018; font: 800 7px/1 var(--mono); }
.showcase-rooms > span.selected { border: 1px solid #3e7193; background: #132534; color: #e6eef2; }
.showcase-rooms footer { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 7px; align-items: center; margin-top: auto; padding: 10px 5px 0; border-top: 1px solid #1e2c35; }
.showcase-rooms footer > i { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #2a746a, #2d5881); color: white; font: 750 7px/1 var(--mono); font-style: normal; }
.showcase-rooms footer strong, .showcase-rooms footer small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.showcase-rooms footer strong { font-size: 8px; }
.showcase-rooms footer small { margin-top: 3px; color: var(--cyan); font: 6px/1 var(--mono); }
.showcase-chat { display: grid; min-width: 0; grid-template-rows: 52px minmax(0, 1fr) 48px; background: #0a1219; }
.showcase-chat > header { display: flex; justify-content: space-between; align-items: center; padding: 0 15px; border-bottom: 1px solid #21313b; }
.showcase-chat > header strong, .showcase-chat > header small { display: block; }
.showcase-chat > header strong { font-size: 11px; }
.showcase-chat > header small { margin-top: 4px; color: var(--cyan); font: 6px/1 var(--mono); }
.chat-actions { display: flex; gap: 7px; }
.chat-actions i { width: 19px; height: 19px; border: 1px solid #334a59; }
.showcase-chat-body { min-width: 0; padding: 18px 15px; overflow: hidden; }
.showcase-date { display: flex; align-items: center; gap: 8px; margin: 0 0 24px; color: #607583; font: 650 6px/1 var(--mono); letter-spacing: .1em; }
.showcase-date::before, .showcase-date::after { height: 1px; flex: 1; content: ""; background: #1c2a33; }
.showcase-chat-body article { display: grid; grid-template-columns: 31px minmax(0, 1fr); gap: 9px; margin: 18px 0; }
.device-stage .avatar { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: #2c668f; color: white; font: 750 8px/1 var(--mono); font-style: normal; }
.device-stage .avatar.jonas { background: #2b7368; }
.device-stage .avatar.noa { background: #6b528d; }
.showcase-chat-body article p { min-width: 0; margin: 0; }
.showcase-chat-body article strong, .showcase-chat-body article span { display: block; }
.showcase-chat-body article strong { color: #dbe4e9; font-size: 9px; }
.showcase-chat-body article time { margin-left: 5px; color: #596d7a; font: 6px/1 var(--mono); }
.showcase-chat-body article span { margin-top: 6px; color: #9fadb6; font-size: 9px; line-height: 1.5; }
.talk-card { display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; gap: 9px; align-items: center; max-width: 390px; margin: 25px 0 0 39px; padding: 12px; border: 1px solid #346d66; background: linear-gradient(110deg, rgba(54, 149, 137, .18), rgba(24, 55, 71, .18)); }
.talk-card > i { display: grid; width: 26px; height: 26px; place-items: center; color: var(--cyan); font-style: normal; }
.talk-card strong, .talk-card small { display: block; }
.talk-card strong { color: #d8f8f3; font: 750 7px/1 var(--mono); letter-spacing: .08em; }
.talk-card small { margin-top: 5px; color: #748b96; font-size: 7px; }
.talk-card > b { padding: 7px 8px; border: 1px solid #4b837c; color: var(--cyan); font: 750 6px/1 var(--mono); }
.showcase-chat > footer { display: grid; grid-template-columns: auto 1fr 23px; gap: 9px; align-items: center; margin: 0 12px 10px; padding: 0 11px; border: 1px solid #2a3e4b; background: #0d1820; color: #6e808d; font-size: 8px; }
.showcase-chat > footer b { display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; background: var(--blue); color: #061018; }
.showcase-members { min-width: 0; padding: 18px 9px; border-left: 1px solid #1d2a33; background: #071016; }
.showcase-members > small { color: #627482; font: 700 6px/1 var(--mono); letter-spacing: .09em; }
.showcase-members > p { display: grid; grid-template-columns: 27px minmax(0, 1fr); gap: 7px; align-items: center; margin: 17px 0; }
.showcase-members .avatar { width: 26px; height: 26px; }
.showcase-members p strong, .showcase-members p small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.showcase-members p strong { font-size: 8px; }
.showcase-members p small { margin-top: 4px; color: #6e8290; font: 6px/1 var(--mono); }
.product-copy { position: relative; z-index: 2; margin-top: 18px; padding: 26px; border: 1px solid #2d424e; background: rgba(8, 16, 22, .9); }
.product-copy > span { color: var(--cyan); font: 750 8px/1 var(--mono); letter-spacing: .12em; }
.product-copy h3 { margin: 27px 0 13px; font-size: clamp(26px, 3vw, 39px); line-height: 1; letter-spacing: -.045em; }
.product-copy > p { max-width: 670px; margin: 0; color: #94a3ad; font-size: 13px; line-height: 1.68; }
.product-copy ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 0; padding: 0; list-style: none; }
.product-copy li { padding: 7px 9px; border: 1px solid #304752; color: #aeb9c0; font: 650 7px/1.2 var(--mono); letter-spacing: .04em; }
.product-copy > a { display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; min-width: 210px; margin-top: 24px; padding-bottom: 8px; border-bottom: 1px solid #6386a2; color: #e7edf0; font-size: 12px; text-decoration: none; }
.product-copy > a i { color: var(--blue); font-size: 18px; font-style: normal; transition: transform .18s ease; }
.product-copy > a:hover i { transform: translateX(4px); }
.phone-shell { position: relative; z-index: 2; width: min(100%, 318px); min-height: 620px; margin: 5px auto 0; padding: 16px 13px 13px; overflow: hidden; border: 7px solid #192934; border-radius: 39px; background: linear-gradient(180deg, #0a141b, #071016); box-shadow: 0 40px 82px rgba(0, 0, 0, .5), 0 0 0 1px #405b6b; transform: rotate(.85deg); transform-origin: 50% 100%; transition: transform .22s ease; }
.phone-shell::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 82% 2%, rgba(80, 178, 170, .14), transparent 14rem); }
.phone-hardware { position: absolute; z-index: 3; top: 7px; left: 50%; width: 82px; height: 20px; border-radius: 0 0 13px 13px; background: #192934; transform: translateX(-50%); }
.phone-hardware span { position: absolute; top: 6px; left: 31px; width: 21px; height: 3px; border-radius: 4px; background: #344b58; }
.phone-status { position: relative; display: flex; justify-content: space-between; align-items: center; height: 25px; padding: 0 5px; color: #aeb8bf; font: 650 7px/1 var(--mono); }
.phone-status span { font-size: 6px; letter-spacing: 3px; }
.phone-brand { position: relative; display: grid; grid-template-columns: 29px 1fr auto; gap: 8px; align-items: center; padding: 13px 5px 16px; border-bottom: 1px solid #233540; }
.phone-brand > i { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid #3f7182; color: var(--cyan); font: 800 9px/1 var(--mono); font-style: normal; }
.phone-brand strong, .phone-brand small { display: block; }
.phone-brand strong { font-size: 11px; }
.phone-brand small { margin-top: 3px; color: var(--cyan); font: 6px/1 var(--mono); letter-spacing: .08em; }
.phone-brand > b { color: #91a2ad; font-size: 15px; }
.phone-section-label { position: relative; display: flex; justify-content: space-between; padding: 20px 4px 9px; color: #667b88; font: 750 6px/1 var(--mono); letter-spacing: .1em; }
.phone-section-label b { color: var(--cyan); }
.phone-conversation { position: relative; display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 9px; align-items: center; min-height: 68px; padding: 9px 7px; border-bottom: 1px solid #182830; }
.phone-conversation.active { margin-inline: -4px; padding-inline: 11px; border: 1px solid #386879; background: linear-gradient(90deg, rgba(55, 126, 151, .2), rgba(42, 104, 98, .08)); }
.phone-conversation .avatar { width: 34px; height: 34px; }
.phone-conversation span { min-width: 0; }
.phone-conversation strong, .phone-conversation small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.phone-conversation strong { font-size: 9px; }
.phone-conversation time { float: right; color: #526874; font: 6px/1 var(--mono); }
.phone-conversation small { margin-top: 6px; color: #85959f; font-size: 8px; }
.phone-conversation > b { display: grid; width: 17px; height: 17px; place-items: center; border-radius: 50%; background: var(--cyan); color: #07100f; font: 800 6px/1 var(--mono); }
.phone-privacy { position: relative; display: grid; grid-template-columns: 28px 1fr; gap: 9px; align-items: center; margin: 23px 2px 68px; padding: 13px; border: 1px solid #34554f; background: rgba(48, 127, 116, .09); }
.phone-privacy > i { color: var(--cyan); font-size: 18px; font-style: normal; }
.phone-privacy strong, .phone-privacy small { display: block; }
.phone-privacy strong { color: #d5ebe7; font-size: 8px; }
.phone-privacy small { margin-top: 5px; color: #6f858d; font-size: 7px; }
.phone-nav { position: absolute; inset: auto 10px 10px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; min-height: 57px; border-top: 1px solid #253741; background: rgba(7, 16, 22, .97); }
.phone-nav > span { display: grid; gap: 5px; place-items: center; color: #627682; font: 11px/1 var(--mono); }
.phone-nav small { font: 6px/1 var(--sans); }
.phone-nav > span.active { color: var(--cyan); }
.mobile-copy { margin-top: 28px; }
.mobile-copy h3 { font-size: clamp(28px, 3.2vw, 43px); }
.development-label { display: inline-flex; align-items: center; gap: 8px; margin-top: 23px; color: #ddc780; font: 750 7px/1.3 var(--mono); letter-spacing: .08em; }
.development-label i { width: 6px; height: 6px; border-radius: 50%; background: #e3bd57; }
.cross-device-rail { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; border: 1px solid #2c414d; background: rgba(8, 16, 22, .72); }
.cross-device-rail > span { display: flex; align-items: center; gap: 13px; min-height: 66px; padding: 0 20px; }
.cross-device-rail > span + span { border-left: 1px solid #2c414d; }
.cross-device-rail b { color: var(--cyan); font: 750 8px/1 var(--mono); }
.cross-device-rail small { color: #a3b0b9; font-size: 10px; line-height: 1.35; }
.privacy-manifesto { padding: 118px 0; border-bottom: 1px solid var(--line-soft); }
.privacy-heading { display: grid; grid-template-columns: .65fr 1.35fr; column-gap: 70px; align-items: start; }
.privacy-heading .section-code { grid-row: 1 / span 2; }
.privacy-heading h2 { margin: 0; font-size: clamp(48px, 5.5vw, 78px); line-height: .96; letter-spacing: -.057em; font-weight: 580; }
.privacy-heading > p:last-child { grid-column: 2; max-width: 760px; margin: 28px 0 0; color: #aab5be; font-size: 17px; line-height: 1.72; }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 68px; border: 1px solid #29414e; background: #29414e; }
.privacy-grid article { min-height: 255px; padding: 29px; background: linear-gradient(145deg, #0d1820, #091118); }
.privacy-grid article > span { color: var(--cyan); font: 750 9px/1 var(--mono); letter-spacing: .11em; }
.privacy-grid h3 { margin: 55px 0 14px; font-size: 25px; letter-spacing: -.035em; }
.privacy-grid p { margin: 0; color: #94a2ad; font-size: 13px; line-height: 1.7; }
.privacy-truth { display: grid; grid-template-columns: .7fr 1.5fr auto; gap: 34px; align-items: center; padding: 26px 29px; border: 1px solid #53606a; border-top: 0; background: rgba(11, 17, 22, .72); }
.privacy-truth strong { color: #e8edf0; font-size: 14px; }
.privacy-truth p { margin: 0; color: #8997a2; font-size: 12px; line-height: 1.65; }
.privacy-truth a { color: var(--blue); font: 750 10px/1.4 var(--mono); text-decoration: none; white-space: nowrap; }
.product-story { padding: 116px 0 118px; }
.section-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; margin-bottom: 60px; }
.section-heading h2, .comparison-heading h2, .boundary-copy h2 {
  margin: 0;
  font-size: clamp(45px, 5.5vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 580;
}
.product-ledger { border-top: 1px solid var(--line); }
.product-ledger article { display: grid; grid-template-columns: 110px 1fr; min-height: 166px; padding: 33px 0; border-bottom: 1px solid var(--line); }
.ledger-number { color: var(--blue); font: 15px/1 var(--mono); }
.product-ledger article div { display: grid; grid-template-columns: .65fr 1fr; gap: 50px; }
.product-ledger h3 { margin: 0; font-size: 25px; letter-spacing: -.025em; }
.product-ledger p { max-width: 650px; margin: 0; color: #9eabb7; line-height: 1.7; }

.comparison { position: relative; padding: 114px 0 120px; border-top: 1px solid var(--line-soft); }
.comparison::before { position: absolute; z-index: -1; inset: 60px -6vw 40px; content: ""; pointer-events: none; background: radial-gradient(circle at 23% 34%, rgba(73, 219, 199, .09), transparent 39%), radial-gradient(circle at 82% 52%, rgba(117, 75, 85, .07), transparent 34%); }
.comparison-strike { display: grid; grid-template-columns: auto minmax(30px, 1fr) auto; gap: 16px; align-items: center; padding: 14px 16px; margin-bottom: 58px; border: 1px solid #3e8c86; color: #d9f7f3; background: linear-gradient(90deg, rgba(68, 196, 182, .18), rgba(39, 78, 103, .06)); box-shadow: inset 4px 0 0 #55d6c4; font: 800 10px/1 var(--mono); letter-spacing: .12em; }
.comparison-strike span { color: var(--cyan); }
.comparison-strike i { height: 1px; background: #345564; }
.comparison-strike strong { font-size: 9px; font-weight: 650; }
.comparison-heading { display: grid; grid-template-columns: .65fr 1.35fr; column-gap: 70px; margin-bottom: 64px; }
.comparison-heading .section-code { grid-column: 1; grid-row: 1 / span 2; }
.comparison-heading h2 { grid-column: 2; }
.comparison-heading > p:last-child { grid-column: 2; max-width: 790px; margin: 30px 0 0; color: #aab5be; font-size: 17px; line-height: 1.7; }
.comparison-verdicts { display: grid; grid-template-columns: 1.08fr .92fr; margin-bottom: 30px; border: 1px solid #344956; box-shadow: 0 28px 70px rgba(0, 0, 0, .18); }
.comparison-verdict { min-height: 190px; padding: 29px 30px; }
.comparison-verdict + .comparison-verdict { border-left: 1px solid #344956; }
.comparison-verdict > span { font: 750 9px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.comparison-verdict h3 { max-width: 490px; margin: 29px 0 12px; font-size: clamp(24px, 3vw, 37px); line-height: 1.02; letter-spacing: -.04em; }
.comparison-verdict p { max-width: 520px; margin: 0; color: #9daab4; font-size: 13px; line-height: 1.6; }
.vaultsec-verdict { position: relative; background: linear-gradient(135deg, rgba(66, 179, 167, .24), rgba(23, 56, 70, .1)); }
.vaultsec-verdict::after { position: absolute; inset: 0 0 auto; height: 3px; content: ""; background: linear-gradient(90deg, #58dfca, #4b95bc); }
.vaultsec-verdict > span, .vaultsec-verdict h3 { color: #d9fff8; }
.discord-verdict { position: relative; background: linear-gradient(135deg, rgba(35, 29, 34, .76), rgba(25, 31, 38, .58)); }
.discord-verdict::after { position: absolute; inset: 0 0 auto; height: 3px; content: ""; background: #5b454d; }
.discord-verdict > span { color: #7f8b96; }
.discord-verdict h3 { color: #c3cbd1; }
.comparison-table { border-top: 2px solid #4b6773; }
.comparison-row { display: grid; grid-template-columns: .62fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.comparison-row > * { min-width: 0; padding: 24px 21px; overflow-wrap: anywhere; }
.comparison-row > * + * { border-left: 1px solid var(--line-soft); }
.comparison-row > :first-child { padding-left: 0; color: #93a1ad; font-size: 13px; }
.comparison-row > :nth-child(2) { border-left-color: #365d63; background: linear-gradient(90deg, rgba(55, 130, 125, .2), rgba(55, 108, 118, .1)); color: #e9fffa; font-size: 14px; line-height: 1.58; }
.comparison-row > :nth-child(3) { color: #8f9aa3; background: rgba(27, 25, 29, .34); font-size: 14px; line-height: 1.58; }
.comparison-head > * { color: #70808d !important; background: transparent !important; font: 700 9px/1 var(--mono) !important; letter-spacing: .1em; text-transform: uppercase; }
.comparison-head > :nth-child(2) { color: var(--cyan) !important; }
.comparison-note { max-width: 760px; margin: 20px 0 0; color: #73818c; font-size: 11px; line-height: 1.6; }

.security-boundary { display: grid; grid-template-columns: .92fr 1.08fr; gap: 95px; padding: 110px 0; border-block: 1px solid var(--line-soft); }
.boundary-copy > p:last-child { max-width: 570px; margin-top: 34px; color: #a8b2bd; line-height: 1.75; }
.boundary-flow { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.boundary-flow li { display: grid; grid-template-columns: 64px 1fr; gap: 8px; min-height: 120px; align-items: center; border-bottom: 1px solid var(--line); }
.boundary-flow li > span { color: var(--cyan); font: 10px/1 var(--mono); }
.boundary-flow div { display: grid; gap: 8px; }
.boundary-flow strong { font-size: 19px; }
.boundary-flow small { color: var(--muted); line-height: 1.55; }

.current-scope { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; padding: 115px 0; }
.current-scope h2 { margin: 0; font-size: clamp(40px, 4vw, 60px); letter-spacing: -.045em; }
.current-scope ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.current-scope li { display: grid; grid-template-columns: 10px 1fr auto; gap: 14px; align-items: center; min-height: 70px; border-bottom: 1px solid var(--line); }
.current-scope li i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.current-scope li span { font-size: 15px; }
.current-scope li b { color: var(--cyan); font: 9px/1 var(--mono); letter-spacing: .08em; }
.current-scope li.muted i { background: #665f54; }
.current-scope li.muted b { color: #b19d80; }

.membership { padding: 116px 0; border-top: 1px solid var(--line-soft); }
.membership-heading { display: grid; grid-template-columns: .65fr 1.35fr; column-gap: 70px; align-items: start; margin-bottom: 58px; }
.membership-heading .section-code { grid-row: 1 / span 2; }
.membership-heading h2 { margin: 0; font-size: clamp(45px, 5.5vw, 76px); line-height: .98; letter-spacing: -.055em; font-weight: 580; }
.membership-heading > p:last-child { grid-column: 2; max-width: 760px; margin: 28px 0 0; color: #aab5be; font-size: 17px; line-height: 1.7; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.plan-grid article { position: relative; min-height: 232px; padding: 27px; overflow: hidden; border: 1px solid #314654; background: #0a131a; }
.plan-grid article::before { position: absolute; inset: 0 auto 0 0; width: 2px; content: ""; background: #3b5c6d; }
.plan-grid .plan-featured { border-color: #3b8b82; background: linear-gradient(145deg, rgba(42, 122, 112, .24), #0a141a 62%); }
.plan-grid .plan-featured::before { width: 4px; background: var(--cyan); }
.plan-grid article > span { color: #8fa1ae; font: 750 9px/1 var(--mono); letter-spacing: .11em; }
.plan-grid article > strong { display: block; margin: 49px 0 14px; font-size: clamp(37px, 4vw, 51px); line-height: 1; letter-spacing: -.05em; }
.plan-grid article > p { margin: 0; color: #8f9da8; font-size: 12px; line-height: 1.55; }
.plan-grid article > b { position: absolute; top: 24px; right: 24px; color: var(--cyan); font: 750 8px/1 var(--mono); letter-spacing: .09em; }
.payment-path { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 14px; margin-top: 14px; padding: 24px 27px; border: 1px solid #314654; background: rgba(9, 17, 23, .76); }
.payment-path > span { display: flex; align-items: center; gap: 12px; min-width: 0; }
.payment-path b { color: var(--cyan); font: 750 9px/1 var(--mono); }
.payment-path small { color: #aeb8c0; font-size: 11px; line-height: 1.4; }
.payment-path > i { color: #526674; font-style: normal; }
.membership-action { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 28px; }
.membership-action p { max-width: 690px; margin: 0; color: #7f8e99; font-size: 12px; line-height: 1.65; }
.membership-action .primary-link { flex: 0 0 auto; }

.beta-callout {
  min-height: 390px;
  padding: 70px;
  overflow: hidden;
  border: 1px solid #2c4b59;
  background:
    radial-gradient(circle at 86% 30%, rgba(58, 151, 145, .16), transparent 19rem),
    #0b171e;
  color: var(--paper);
}
.beta-callout .section-code { color: #82909a; }
.beta-callout h2 { margin-bottom: 18px; font-size: clamp(54px, 6vw, 84px); line-height: .95; letter-spacing: -.055em; }
.beta-callout > p:not(.section-code) { max-width: 610px; color: #aebbc3; font-size: 17px; line-height: 1.6; }
.primary-link.inverse { margin-top: 18px; background: var(--cyan); color: #06100f; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 140px; }
.footer-wordmark { pointer-events: none; }
.site-footer p { margin: 0; color: var(--muted); font: 9px/1 var(--mono); letter-spacing: .08em; }
.site-footer > a { justify-self: end; color: #bbc4cc; font-size: 12px; text-decoration: none; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.primary-link i, .header-entry, .language-toggle, .site-header nav a { transition: transform .18s ease, color .18s ease, border-color .18s ease; }

/* The member-access page shares the mark and focus language without changing its API form contract. */
.access-page { overflow-x: hidden; background: radial-gradient(circle at 78% 17%, rgba(50, 107, 151, .16), transparent 27rem), var(--ink); }
.access-page::before { background: none; }
.access-page .access-panel { border-color: #365063; background: rgba(8, 16, 22, .96); box-shadow: 0 26px 75px rgba(0, 0, 0, .38); }
.access-page .field-hint { display: block; color: #788895; font-size: 11px; line-height: 1.5; }
.access-page .release, .access-page .release * { min-width: 0; }
.access-page .release small { overflow-wrap: anywhere; word-break: break-word; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 790px; }
  .conversation-demo { width: min(100%, 860px); }
  .app-showcase-heading, .privacy-heading, .section-heading, .comparison-heading, .security-boundary, .current-scope, .membership-heading { grid-template-columns: 1fr; gap: 48px; }
  .app-showcase-heading .section-code, .privacy-heading .section-code, .membership-heading .section-code { grid-row: auto; }
  .app-showcase-heading > p:last-child, .privacy-heading > p:last-child, .membership-heading > p:last-child { grid-column: auto; }
  .device-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .desktop-screen { grid-template-columns: 44px 140px minmax(230px, 1fr); }
  .showcase-members { display: none; }
  .comparison-heading { display: block; }
  .comparison-heading h2 { max-width: 850px; }
  .product-ledger article div { grid-template-columns: .8fr 1fr; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
}

@media (max-width: 760px) {
  :root { --content: min(100% - 32px, 650px); }
  .site-header { min-height: 66px; padding: 0 16px; }
  .header-entry { min-height: 36px; padding: 0 11px; font-size: 9px; }
  .hero { gap: 54px; padding: 62px 0 64px; }
  .hero h1 { font-size: clamp(50px, 14vw, 70px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .release-bar { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .demo-workspace {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto minmax(365px, 1fr) auto;
    grid-template-areas:
      "servers channels"
      "servers thread"
      "members members";
  }
  .demo-server-rail { grid-area: servers; padding-inline: 5px; }
  .demo-server-rail > span { width: 29px; height: 29px; }
  .demo-channel-rail {
    grid-area: channels;
    display: grid;
    grid-template-columns: minmax(90px, .9fr) minmax(120px, 1.1fr);
    align-items: center;
    gap: 7px;
    min-height: 54px;
    padding: 7px 9px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .demo-community-name { padding: 0 8px 0 0; border: 0; border-right: 1px solid var(--line-soft); }
  .demo-channel-rail > p, .demo-channel-rail > .demo-channel:not(.active), .demo-channel-footer { display: none; }
  .demo-channel.active { min-width: 0; }
  .demo-thread { grid-area: thread; }
  .demo-members { grid-area: members; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line-soft); border-left: 0; }
  .demo-members > p { display: none; }
  .demo-members > div { margin: 0; }
  .positioning { grid-template-columns: 1fr; }
  .positioning p { min-height: 58px; padding-inline: 16px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .app-showcase, .privacy-manifesto, .product-story, .comparison, .security-boundary, .current-scope, .membership { padding-block: 80px; }
  .app-showcase-heading { gap: 28px; margin-bottom: 50px; }
  .device-stage { grid-template-columns: 1fr; gap: 62px; }
  .mobile-product { padding-top: 0; }
  .phone-shell { width: min(100%, 330px); transform: none; }
  .mobile-copy { max-width: 650px; margin-inline: auto; }
  .cross-device-rail { grid-template-columns: 1fr; }
  .cross-device-rail > span + span { border-top: 1px solid #2c414d; border-left: 0; }
  .privacy-heading, .membership-heading { gap: 28px; }
  .privacy-grid, .plan-grid { grid-template-columns: 1fr; }
  .privacy-grid article { min-height: 205px; }
  .privacy-grid h3 { margin-top: 34px; }
  .privacy-truth { grid-template-columns: 1fr; gap: 14px; }
  .section-heading { gap: 30px; margin-bottom: 40px; }
  .product-ledger article { grid-template-columns: 44px 1fr; }
  .product-ledger article div { grid-template-columns: 1fr; gap: 13px; }
  .comparison-heading { margin-bottom: 42px; }
  .comparison-heading > p:last-child { margin-top: 24px; }
  .comparison-strike { margin-bottom: 42px; }
  .comparison-verdicts { grid-template-columns: 1fr; }
  .comparison-verdict + .comparison-verdict { border-top: 1px solid #344956; border-left: 0; }
  .comparison-head { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .comparison-row:not(.comparison-head) { grid-template-columns: 1fr 1fr; }
  .comparison-row:not(.comparison-head) > :first-child { grid-column: 1 / -1; padding: 17px 0 10px; border-left: 0; color: #d7dfe4; font: 700 10px/1.3 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
  .comparison-row:not(.comparison-head) > :nth-child(2), .comparison-row:not(.comparison-head) > :nth-child(3) { padding: 30px 13px 17px; border-left: 0; font-size: 12px; }
  .comparison-row:not(.comparison-head) > :nth-child(2) { position: relative; padding-left: 0; padding-right: 16px; }
  .comparison-row:not(.comparison-head) > :nth-child(3) { position: relative; border-left: 1px solid var(--line-soft); }
  .comparison-row:not(.comparison-head) > :nth-child(2)::before, .comparison-row:not(.comparison-head) > :nth-child(3)::before { position: absolute; top: 10px; color: #71818d; font: 700 7px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
  .comparison-row:not(.comparison-head) > :nth-child(2)::before { left: 0; color: var(--cyan); content: "VaultSec"; }
  .comparison-row:not(.comparison-head) > :nth-child(3)::before { left: 13px; content: "Discord"; }
  .security-boundary { gap: 50px; }
  .current-scope { gap: 40px; }
  .current-scope li { grid-template-columns: 10px 1fr; padding: 13px 0; }
  .current-scope li b { grid-column: 2; }
  .payment-path { grid-template-columns: 1fr; }
  .payment-path > i { display: none; }
  .payment-path > span { min-height: 36px; }
  .membership-action { align-items: flex-start; flex-direction: column; }
  .beta-callout { min-height: 440px; padding: 52px 28px; }
  .site-footer { min-height: 110px; }
}

@media (max-width: 540px) {
  :root { --content: calc(100vw - 24px); }
  .site-header { padding-inline: 12px; }
  .site-header .wordmark > span:last-child { display: none; }
  .header-actions { gap: 7px; }
  .language-toggle { width: 38px; }
  .header-entry { padding-inline: 8px; font-size: 8px; }
  .hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero-product-map { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof > span + span { border-top: 1px solid var(--line-soft); border-left: 0; }
  .primary-link { min-width: min(100%, 235px); }
  .app-showcase-heading h2 { font-size: clamp(42px, 13vw, 60px); }
  .product-panel { padding: 15px; }
  .product-identity { grid-template-columns: 45px minmax(0, 1fr); gap: 11px; padding-inline: 4px; }
  .product-index { width: 43px; height: 43px; }
  .product-status { grid-column: 2; justify-self: start; }
  .desktop-screen { grid-template-columns: 38px minmax(0, 1fr); min-height: 400px; }
  .showcase-rooms { display: none; }
  .showcase-chat { grid-template-rows: 48px minmax(0, 1fr) 45px; }
  .talk-card { margin-left: 0; }
  .product-copy { padding: 22px 18px; }
  .phone-shell { width: min(100%, 304px); min-height: 600px; }
  .demo-topline { padding-inline: 10px; }
  .demo-members strong { font-size: 8px; }
  .demo-members small { font-size: 5px; }
  .demo-system { margin-left: 0; }
  .privacy-heading h2, .section-heading h2, .comparison-heading h2, .boundary-copy h2, .membership-heading h2 { font-size: clamp(40px, 12vw, 58px); }
  .product-ledger h3 { font-size: 21px; }
  .beta-callout { padding-inline: 22px; }
  .site-footer .wordmark > span:last-child { display: none; }
}

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