:root {
  color-scheme: light;
  --paper: #fafbfe;
  --surface: #fff;
  --ink: #1e2436;
  --muted: #606a80;
  --line: #e3e7f0;
  --wash: #f0f2fa;
  --accent: #5b53db;
  --accent-wash: #eeecfd;
  --green: #26796a;
  --danger: #a43440;
  --shadow: 0 28px 90px -35px #34317c45;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
}
:root:has(input[name='theme'][value='dark']:checked) {
  color-scheme: dark;
  --paper: #11141e;
  --surface: #1a1f2d;
  --ink: #eef0fa;
  --muted: #afb6cc;
  --line: #303749;
  --wash: #202638;
  --accent: #b1a8ff;
  --accent-wash: #302b4f;
  --green: #91d8bb;
  --danger: #f39da6;
  --shadow: 0 28px 90px -35px #0008;
}
@media (prefers-color-scheme: dark) {
  :root:not(:has(input[name='theme'][value='light']:checked)) {
    color-scheme: dark;
    --paper: #11141e;
    --surface: #1a1f2d;
    --ink: #eef0fa;
    --muted: #afb6cc;
    --line: #303749;
    --wash: #202638;
    --accent: #b1a8ff;
    --accent-wash: #302b4f;
    --green: #91d8bb;
    --danger: #f39da6;
    --shadow: 0 28px 90px -35px #0008;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
.site-shell {
  max-width: 1220px;
  padding: 0 40px;
  margin: 0 auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 98px;
}
.brand {
  display: inline-flex;
  width: 148px;
  flex-shrink: 0;
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
}
.brand img.brand-dark {
  display: none;
}
:root:has(input[name='theme'][value='dark']:checked) .brand-light {
  display: none;
}
:root:has(input[name='theme'][value='dark']:checked) .brand img.brand-dark {
  display: block;
}
@media (prefers-color-scheme: dark) {
  :root:not(:has(input[name='theme'][value='light']:checked)) .brand-light {
    display: none;
  }
  :root:not(:has(input[name='theme'][value='light']:checked)) .brand img.brand-dark {
    display: block;
  }
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header-access {
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}
.header-access span {
  margin-left: 7px;
}
.theme-picker {
  display: flex;
  gap: 2px;
  border: 1px solid var(--line);
  padding: 3px;
  margin: 0;
  border-radius: 100px;
  background: var(--surface);
}
.theme-picker label {
  position: relative;
  cursor: pointer;
}
.theme-picker input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.theme-picker span {
  display: block;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 100px;
  color: var(--muted);
}
.theme-picker input:checked + span {
  background: var(--wash);
  color: var(--ink);
}
.theme-picker input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.hero {
  padding: 75px 0 44px;
  text-align: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--muted);
  margin: 0 0 22px;
}
.hero .eyebrow {
  justify-content: center;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--green);
}
h1,
h2,
h3 {
  font-weight: 600;
}
h1 {
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 1.06;
  letter-spacing: -3.8px;
  margin: 0 0 25px;
}
h1 span {
  color: var(--accent);
}
.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 29px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.button:hover {
  opacity: 0.9;
}
.button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.text-link {
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}
.text-link span {
  margin-left: 9px;
}
.note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 15px;
}
.providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.provider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.provider img {
  object-fit: contain;
}
.protocol-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  height: 24px;
  color: var(--accent);
}
.upcoming {
  color: var(--muted);
  font-weight: 400;
}
.provider small {
  font-size: 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
}
.product-preview {
  margin: 15px auto 70px;
  max-width: 980px;
}
.preview-window {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 17px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px 16px 0 0;
  font-size: 10px;
}
.preview-window > span:not(.preview-secure) {
  width: 7px;
  height: 7px;
  background: var(--line);
  border-radius: 50%;
}
.preview-window > div {
  margin: auto;
  color: var(--muted);
}
.preview-secure {
  color: var(--green);
  font-size: 9px;
}
.preview-app {
  display: grid;
  grid-template-columns: 190px 1fr;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.preview-sidebar {
  background: var(--wash);
  padding: 22px 12px 18px;
  font-size: 11px;
}
.preview-sidebar > strong {
  display: block;
  font-size: 17px;
  margin: 0 10px 20px;
  letter-spacing: -0.7px;
}
.preview-compose {
  display: inline-block;
  background: var(--surface);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 10px;
}
.preview-folder {
  padding: 7px 12px;
  margin: 2px 0;
  border-radius: 6px;
  color: var(--muted);
}
.preview-folder b {
  float: right;
  font-weight: 500;
}
.preview-folder.selected {
  background: var(--accent-wash);
  color: var(--accent);
  font-weight: 600;
}
.preview-sidebar p {
  letter-spacing: 1.5px;
  font-size: 8px;
  margin: 26px 12px 8px;
  color: var(--muted);
}
.preview-account {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
}
.preview-account i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.account-blue {
  background: #638fd3;
}
.account-purple {
  background: #9b7bd8;
}
.account-green {
  background: #57a991;
}
.preview-main {
  min-width: 0;
  padding: 18px 20px 8px;
}
.preview-search {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--wash);
  border-radius: 8px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 14px;
}
.preview-search span {
  font-size: 10px;
}
.preview-search kbd {
  margin-left: auto;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 5px;
}
.preview-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 22px 3px 12px;
}
.preview-toolbar strong {
  font-size: 13px;
}
.preview-toolbar > span {
  font-size: 9px;
  color: var(--muted);
}
.preview-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 16px 5px;
  font-size: 10px;
}
.preview-row.active {
  margin: 0 -8px;
  padding: 16px 13px;
  background: var(--accent-wash);
  border-radius: 7px;
  border-top-color: transparent;
}
.sender-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
  color: #414351;
}
.peach {
  background: #f6dfd2;
}
.lavender {
  background: #dedafa;
}
.mint {
  background: #d5ede4;
}
.blue {
  background: #d4e5f9;
}
.preview-row > div {
  min-width: 0;
}
.preview-row div > b,
.preview-row div > strong,
.preview-row div > span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-row div > b {
  font-size: 10px;
}
.preview-row div > b small {
  color: var(--muted);
  font-weight: 400;
}
.preview-row div > strong {
  font-weight: 500;
}
.preview-row div > span {
  color: var(--muted);
  font-size: 9px;
}
.preview-time {
  margin-left: auto;
  text-align: right;
  align-self: flex-start;
  font-size: 8px;
  color: var(--muted);
  white-space: nowrap;
}
.preview-time b {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 7px;
  color: var(--accent);
}
.preview-bottom {
  display: flex;
  justify-content: space-between;
  padding: 12px 5px 4px;
  font-size: 8px;
  color: var(--muted);
}
.preview-bottom .status-dot {
  width: 5px;
  height: 5px;
  margin-right: 3px;
}
figcaption {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  padding: 0 10px 75px;
}
.feature-number {
  font-size: 9px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.2px;
}
.features h2 {
  font-size: 19px;
  line-height: 1.45;
  margin: 13px 0 10px;
  letter-spacing: -0.4px;
}
.features p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.trust-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px 50px;
  padding: 42px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.section-intro h2,
.section-heading h2,
.beta-callout h2 {
  font-size: 33px;
  line-height: 1.22;
  letter-spacing: -1.1px;
  margin: 0 0 18px;
}
.section-intro > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.beta-callout > div > p:not(.eyebrow):not(.note) {
  font-size: 14px;
  color: var(--muted);
}
.section-intro .text-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
}
.trust-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid var(--line);
  width: 29px;
  height: 29px;
  border-radius: 8px;
  font-size: 16px;
  background: var(--surface);
}
.trust-grid h3 {
  font-size: 13px;
  line-height: 1.4;
  margin: 12px 0 8px;
}
.trust-grid p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.trust-clarification {
  grid-column: 1/-1;
  padding-top: 20px;
  margin: 2px 0 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.storage-section {
  padding: 78px 0;
}
.section-heading {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 35px;
}
.section-heading .eyebrow {
  justify-content: center;
}
.storage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.storage-grid article {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}
.storage-icon {
  color: var(--accent);
  font-size: 27px;
}
.storage-grid h3 {
  margin: 12px 0 10px;
  font-size: 17px;
}
.storage-grid p {
  font-size: 13px;
  color: var(--muted);
}
.storage-grid small {
  font-size: 10px;
  color: var(--accent);
}
.storage-section > .note {
  text-align: center;
}
.beta-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 40px 45px;
  background: var(--accent-wash);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.beta-callout > div:first-child {
  max-width: 510px;
}
.beta-callout .eyebrow {
  color: var(--accent);
}
.beta-callout h2 {
  font-size: 39px;
}
.beta-callout .note {
  text-align: center;
}
.contact-block {
  padding: 30px 0;
  max-width: 840px;
}
.contact-block p {
  font-size: 11px;
  color: var(--muted);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0 30px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.site-footer a {
  text-decoration: none;
}
.site-footer a[aria-current] {
  text-decoration: underline;
}
.legal {
  max-width: 760px;
  margin: 55px auto 64px;
  overflow-wrap: anywhere;
}
.legal h1 {
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.15;
}
.legal h2 {
  font-size: 21px;
  line-height: 1.35;
  margin: 36px 0 12px;
}
.legal p,
.legal li {
  color: var(--muted);
}
.legal strong {
  color: var(--ink);
  font-weight: 600;
}
.legal .updated {
  font-size: 12px;
  margin: -10px 0 28px;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  padding: 8px 16px;
  background: var(--surface);
  z-index: 1;
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.beta-page {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 65px;
  max-width: 960px;
  margin: 62px auto 90px;
}
.beta-intro h1 {
  font-size: 46px;
  letter-spacing: -2px;
  line-height: 1.15;
}
.beta-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}
.beta-steps {
  list-style: none;
  padding: 15px 0;
  counter-reset: steps;
}
.beta-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0;
  font-size: 13px;
  color: var(--muted);
}
.beta-steps li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 50%;
  background: var(--accent-wash);
  color: var(--accent);
  font-size: 11px;
}
.beta-form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 17px;
}
.beta-form-panel label,
.beta-form-panel legend {
  font-size: 12px;
  font-weight: 600;
}
.beta-form-panel input[type='email'],
.beta-form-panel input[type='number'],
.beta-form-panel textarea {
  width: 100%;
  margin: 7px 0 20px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
}
.beta-form-panel textarea {
  resize: vertical;
  min-height: 105px;
}
.beta-form-panel fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}
.provider-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
  margin-top: 9px;
}
.provider-choices label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}
.provider-choices input {
  accent-color: var(--accent);
}
.optional {
  color: var(--muted);
  font-weight: 400;
  font-size: 10px;
}
.beta-form-panel .button {
  width: 100%;
}
.beta-privacy,
.form-feedback {
  font-size: 11px;
  color: var(--muted);
}
.form-feedback {
  margin: 12px 0;
}
.form-feedback[data-state='error'] {
  color: var(--danger);
}
.form-feedback[data-state='success'] {
  color: var(--green);
  font-size: 14px;
  padding: 20px 0;
}
.form-feedback:empty {
  margin: 0;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.beta-form-panel noscript {
  display: block;
  font-size: 12px;
}
@media (max-width: 880px) {
  .site-shell {
    padding: 0 24px;
  }
  .trust-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  .section-intro {
    max-width: 600px;
  }
  .beta-callout {
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .beta-callout .note {
    text-align: left;
  }
  .features {
    gap: 24px;
  }
  .storage-grid article {
    padding: 20px;
  }
  .beta-page {
    gap: 32px;
  }
  .beta-intro h1 {
    font-size: 38px;
  }
}
@media (max-width: 600px) {
  .site-shell {
    padding: 0 19px;
  }
  .site-header {
    min-height: 104px;
    gap: 12px;
    align-items: flex-start;
    padding-top: 24px;
  }
  .brand {
    width: 119px;
    padding-top: 4px;
  }
  .header-controls {
    align-items: flex-end;
    gap: 12px;
    flex-direction: column-reverse;
  }
  .header-access {
    font-size: 11px;
  }
  .theme-picker span {
    padding: 3px 7px;
    font-size: 9px;
  }
  .hero {
    padding: 42px 0 30px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.15px;
  }
  .hero h1 {
    letter-spacing: -2px;
    font-size: 45px;
  }
  .lead {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 19px;
  }
  .hero .note {
    font-size: 10px;
  }
  .providers {
    gap: 14px;
    margin-top: 25px;
  }
  .provider {
    font-size: 11px;
  }
  .provider img {
    width: 21px;
    height: 21px;
  }
  .upcoming {
    width: 100%;
    justify-content: center;
    font-size: 10px;
  }
  .product-preview {
    margin-bottom: 42px;
  }
  .preview-window {
    padding: 10px;
  }
  .preview-window > div {
    font-size: 8px;
  }
  .preview-secure {
    display: none;
  }
  .preview-app {
    grid-template-columns: 1fr;
  }
  .preview-sidebar {
    display: none;
  }
  .preview-main {
    padding: 12px 12px 6px;
  }
  .preview-toolbar > span {
    display: none;
  }
  .preview-row {
    gap: 9px;
    padding: 13px 2px;
  }
  .preview-row.active {
    padding: 13px 10px;
  }
  .preview-row div > span {
    max-width: 180px;
  }
  .preview-row div > strong {
    font-size: 9px;
  }
  .preview-bottom > span:last-child {
    display: none;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0 45px;
  }
  .features h2 {
    margin-top: 6px;
  }
  .trust-section {
    padding: 23px;
    border-radius: 14px;
  }
  .section-intro h2,
  .section-heading h2 {
    font-size: 27px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .trust-grid article {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0 12px;
  }
  .trust-grid h3 {
    margin: 3px 0 7px;
  }
  .trust-grid p {
    grid-column: 2;
  }
  .trust-clarification {
    font-size: 10px;
  }
  .storage-section {
    padding: 46px 0;
  }
  .storage-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .storage-grid article {
    padding: 22px;
  }
  .storage-grid h3 {
    margin-top: 3px;
  }
  .beta-callout {
    padding: 24px;
    gap: 15px;
  }
  .beta-callout h2 {
    font-size: 33px;
  }
  .site-footer {
    flex-direction: column;
    gap: 13px;
  }
  .site-footer nav {
    gap: 10px 15px;
  }
  .legal {
    margin: 30px 0;
    font-size: 14px;
  }
  .beta-page {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 35px auto 50px;
  }
  .beta-intro h1 {
    font-size: 38px;
  }
  .beta-steps {
    padding: 0;
  }
  .beta-form-panel {
    padding: 23px;
  }
}
@media print {
  :root {
    --paper: white;
    --surface: white;
    --ink: black;
    --muted: #333;
    --line: #ccc;
    --wash: white;
    color-scheme: light;
  }
  .site-shell {
    padding: 0;
  }
  .header-controls,
  .skip-link,
  .button,
  .product-preview {
    display: none;
  }
  .legal {
    margin: 24px 0;
    max-width: none;
  }
  h2 {
    break-after: avoid;
  }
}
