@font-face {
  font-family: "Wotfard";
  src: url("/fonts/wotfard-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Editorial New";
  src: url("/fonts/editorial-new-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("/fonts/geomanist-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Geomanist";
  src: url("/fonts/geomanist-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "MG12";
  src: url("/fonts/mg12-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Geist;
  src: url("/fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("/fonts/geist-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: light dark;
  --paper: #fff;
  --paper-2: #f6f7f8;
  --card: #fff;
  --ink: #202124;
  --ink-2: #494c51;
  --muted: #6b6e74;
  --line: #e5e6e8;
  --line-2: #d5d7da;
  --accent: #303034;
  --accent-soft: #eeeef0;
  --ok: #267558;
  --ok-soft: #eaf5ef;
  --chip: #eef0f2;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #09090b;
    --paper-2: #0e0e10;
    --card: #121214;
    --ink: #f3f3f4;
    --ink-2: #c5c5ca;
    --muted: #919198;
    --line: #252528;
    --line-2: #39393e;
    --accent: #eeeef0;
    --accent-soft: #202024;
    --ok: #8bd4b0;
    --ok-soft: #1b3127;
    --chip: #2b2e33;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Wotfard", Geist, system-ui, sans-serif;
  font-synthesis: none;
  font-size: 16px;
  line-height: 1.65;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
svg {
  vertical-align: middle;
  flex-shrink: 0;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: var(--accent);
  color: var(--paper);
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
.mono,
.eyebrow {
  font-family: "Geist Mono", monospace;
}
.wrap {
  width: min(1200px, 100% - 96px);
  margin-inline: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Editorial New", Georgia, serif;
  font-synthesis: none;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 400;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}
p {
  color: var(--muted);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
/* Quiet navigation leaves the product room to breathe. */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 27px;
  letter-spacing: -1.3px;
  font-weight: 650;
}
.logo svg {
  color: var(--accent);
  width: 22px;
  height: 29px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.875rem;
  font-weight: 450;
}
.nav-links > a:not(.btn) {
  color: var(--ink-2);
}
.nav-links > a:not(.btn):hover {
  color: var(--accent);
}
.nav-sep {
  height: 18px;
  width: 1px;
  background: var(--line);
  margin: 0 1px;
}
.nav-ext svg {
  margin-left: 3px;
}
.menu-toggle {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 11px 18px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 550;
  line-height: 1.4;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 2px 3px #0000000a;
}
.btn-primary:hover {
  background: var(--ink-2);
  box-shadow: 0 5px 12px #00000014;
}
.btn-ghost {
  border-color: var(--line-2);
  background: var(--card);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--paper-2);
}
.btn-lg {
  padding: 16px 23px;
  font-size: 0.9375rem;
}
.btn-block {
  width: 100%;
}
/* The first fold pairs expressive type with a real product surface. */

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
}

.preview-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 5px 15px;
  color: var(--muted);
  font-size: 0.8125rem;
}
.preview-caption .mono {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
}
.preview-caption > span:last-child {
  display: flex;
  gap: 17px;
}
.preview-caption > span:last-child > span {
  font-size: 21px;
  color: var(--accent);
}

.frame {
  position: relative;
  overflow: hidden;
  background: var(--card);
  text-align: left;
}

.strip {
  border-block: 1px solid var(--line);
  margin-top: 22px;
}
.strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 27px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-2);
}
.strip .strip-intro {
  color: var(--muted);
  font-weight: 400;
}
/* Section rhythm alternates spacious editorial blocks and product details. */
section {
  padding: 112px 0;
}
.sec-head {
  max-width: 640px;
  margin-bottom: 49px;
}
.sec-head h2 {
  margin-bottom: 20px;
}
.sec-head > p:last-child:not(.eyebrow) {
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.75;
}
.alt {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}
.setup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.step {
  display: flex;
  gap: 20px;
}
.num {
  font-family: "Geist Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--accent);
  padding-top: 6px;
  width: 27px;
  flex: none;
}
.num::before {
  content: "0";
}
.step h3 {
  font-size: 1.0625rem;
  letter-spacing: -0.025em;
  margin-bottom: 9px;
  line-height: 1.35;
}
.step p {
  font-size: 0.9375rem;
  line-height: 1.75;
}
.dns {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  box-shadow: 0 16px 50px -25px #242a3b25;
  overflow: hidden;
  min-width: 0;
  transform: none;
}
.dns-head {
  padding: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.8125rem;
}
.dns-head .d {
  font-size: 0.8125rem;
}
.badge {
  margin-left: auto;
  border-radius: 5px;
  background: var(--chip);
  color: var(--muted);
  font-size: 0.6875rem;
  padding: 3px 8px;
  white-space: nowrap;
}
.badge.done {
  background: var(--ok-soft);
  color: var(--ok);
}
.rec {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 21px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
}
.rec .k {
  font-weight: 550;
  width: 50px;
  flex: none;
}
.rec .v {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.6875rem;
}
.st {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  flex: none;
}
.ring {
  width: 13px;
  height: 13px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
}
.spin,
.tick {
  display: none;
}
.tick svg {
  width: 14px;
  height: 14px;
}
.rec.ok .ring {
  display: none;
}
.rec.ok .tick {
  display: block;
  color: var(--ok);
}
.rec.checking .ring {
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
.dns-foot {
  padding: 18px 22px;
  color: var(--muted);
  font-size: 0.75rem;
  min-height: 73px;
  display: flex;
  align-items: center;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.feat {
  padding: 32px;
  background: var(--paper-2);
}
.ic {
  color: var(--accent);
  margin-bottom: 24px;
}
.ic svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}
.feat h3 {
  font-size: 1.125rem;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.feat p {
  font-size: 0.9375rem;
  line-height: 1.75;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 31px 28px;
  display: flex;
  flex-direction: column;
  background: var(--card);
}
.plan.hot {
  border: 1px solid var(--line-2);
  box-shadow: 0 0 0 4px var(--paper-2);
}
.plan > .tag {
  position: absolute;
  top: -13px;
  right: 23px;
  background: var(--accent);
  color: var(--paper);
  border: 4px solid var(--paper);
  border-radius: 6px;
  font-size: 0.6875rem;
  padding: 1px 10px;
  font-weight: 500;
}
.plan h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.blurb {
  font-size: 0.875rem;
  line-height: 1.65;
  min-height: 68px;
  padding-top: 13px;
}
.price {
  margin-top: 21px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.amt {
  font-size: 2.875rem;
  letter-spacing: -0.065em;
  font-weight: 550;
  line-height: 1.2;
  display: inline-block;
  transition:
    opacity 0.13s,
    transform 0.13s;
}
.amt.bump {
  opacity: 0.4;
  transform: translateY(-3px);
}
.price small {
  color: var(--muted);
  font-size: 0.8125rem;
}
.per {
  font-size: 0.75rem;
  margin-top: 7px;
  min-height: 22px;
}
.stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-top: 24px;
  padding: 7px 9px 7px 12px;
  min-height: 46px;
}
.stepper .lab {
  margin-right: auto;
  font-size: 0.8125rem;
  color: var(--ink-2);
}
.stepper button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
}
.stepper button:hover:not(:disabled) {
  background: var(--chip);
}
.stepper button:disabled {
  opacity: 0.35;
  cursor: default;
}
.stepper .ct {
  font-family: "Geist Mono", monospace;
  min-width: 21px;
  text-align: center;
  font-size: 0.875rem;
}
.stepper.muted {
  color: var(--muted);
  background: var(--paper-2);
}
.plan ul {
  list-style: none;
  margin: 25px 0 29px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.8125rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.plan li svg {
  color: var(--ok);
  margin-top: 4px;
  width: 12px;
  height: 12px;
}
.plan li.off,
.plan li.off svg {
  color: var(--muted);
}
.plan.hot .btn-primary {
  background: var(--accent);
  color: var(--paper);
}
.plan-support-note {
  margin: 0 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.7;
}
.plan-support-note a {
  color: var(--ink-2);
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-underline-offset: 3px;
}
.plan-support-note a:hover {
  color: var(--ink);
}
.price-note {
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 30px;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
}
.tr h3 {
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.tr p {
  font-size: 0.875rem;
  line-height: 1.75;
}
.faq {
  max-width: 760px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.5;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
  flex: none;
}
.faq details[open] summary::after {
  content: "−";
  color: var(--accent);
}
.faq .ans {
  color: var(--muted);
  font-size: 0.9375rem;
  padding: 0 38px 25px 0;
  line-height: 1.8;
}
.final {
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 100%, var(--chip), transparent 65%),
    var(--paper-2);
}
.final h2 {
  font-size: clamp(2.75rem, 5.6vw, 5rem);
  font-weight: 450;
  margin-bottom: 20px;
}
.final p {
  font-size: 1rem;
  margin-bottom: 28px;
}

/* Content is visible by default; motion is an optional enhancement. */
[data-reveal].enter {
  animation: arrive 0.65s var(--ease) both;
  animation-delay: var(--d, 0ms);
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 1100px) {
  #faq > .wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 75px;
  }
  #faq .sec-head {
    margin: 0;
  }
  #faq .sec-head h2 {
    max-width: 290px;
  }
}
@media (max-width: 1100px) {
  .nav-links {
    gap: 16px;
  }
  .nav-links .nav-ext,
  .nav-sep {
    display: none;
  }
  .setup {
    gap: 45px;
  }
  .plan {
    padding: 30px 22px;
  }
  .grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 50px;
  }
  .strip .wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
  }
  .strip-intro {
    flex-basis: 100%;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .nav {
    min-height: 74px;
    gap: 16px;
  }
  .logo {
    font-size: 25px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links .hide-sm {
    display: none;
  }

  .setup {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .dns {
    max-width: 560px;
    transform: none;
  }
  .grid3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plans {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 550px;
    margin-inline: auto;
  }
  .blurb {
    min-height: 0;
  }
  .plan {
    padding: 30px;
  }
  .plan > .tag {
    right: 28px;
  }
  .plan ul {
    margin-top: 22px;
  }
  .plan .price {
    margin-top: 22px;
  }
  .grid4 {
    gap: 32px;
  }

  section {
    padding: 80px 0;
  }

  .sec-head {
    margin-bottom: 36px;
  }
}
@media (max-width: 540px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    min-height: 70px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px #0000000b;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a:not(.btn),
  .nav-links .hide-sm {
    display: block;
    flex-basis: calc(50% - 10px);
    padding: 10px 0;
  }
  .nav-links .nav-sep {
    display: none;
  }
  .nav-links .btn {
    flex-basis: 100%;
    margin-top: 5px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 6px;
    width: 44px;
    height: 42px;
    padding: 12px;
    cursor: pointer;
    color: var(--ink);
  }
  .menu-toggle span {
    display: block;
    height: 1px;
    width: 18px;
    background: currentColor;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .btn-lg {
    padding: 14px 17px;
    font-size: 0.875rem;
    gap: 10px;
  }

  .preview-caption .mono {
    font-size: 0.5625rem;
  }
  .preview-caption > span:last-child {
    font-size: 0.6875rem;
    gap: 6px;
  }

  .sender small,
  .sender time {
    font-size: 0.625rem;
  }

  .bar .strip {
    margin-top: 12px;
  }
  .strip .wrap {
    padding-block: 22px;
    font-size: 0.75rem;
    gap: 8px 20px;
  }
  .strip .strip-intro {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }
  section {
    padding: 65px 0;
  }
  .sec-head h2 {
    font-size: 2.1rem;
  }
  .sec-head > p:last-child:not(.eyebrow) {
    font-size: 0.9375rem;
  }
  .eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 17px;
  }
  .step {
    gap: 12px;
  }
  .step p {
    font-size: 0.875rem;
  }
  .step h3 {
    font-size: 1rem;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .feat {
    padding: 26px;
  }
  .ic {
    margin-bottom: 15px;
  }
  .feat p {
    font-size: 0.9375rem;
  }
  .grid4 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dns-head {
    padding: 18px 15px;
    gap: 7px;
  }
  .dns-head .d {
    font-size: 0.75rem;
  }
  .rec {
    padding: 18px 15px;
    gap: 10px;
  }
  .rec .k {
    width: 43px;
    font-size: 0.6875rem;
  }
  .rec .v {
    font-size: 0.625rem;
  }
  .dns-foot {
    padding: 15px;
    font-size: 0.6875rem;
  }
  .plan {
    padding: 27px 24px;
  }
  .price-note {
    font-size: 0.75rem;
  }
  .faq summary {
    font-size: 0.9375rem;
    padding: 20px 0;
  }
  .faq .ans {
    font-size: 0.875rem;
    padding-right: 14px;
  }
  .final h2 {
    font-size: 2.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* Faithful, responsive reconstruction of the Postra webmail layout. */
.wm {
  display: grid;
  grid-template-columns: 155px 268px minmax(0, 1fr);
  grid-template-rows: 36px 1fr;
  height: 590px;
  background: var(--card);
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.45;
  --wm-hover: var(--chip);
}
.wm-sidebar {
  grid-column: 1;
  grid-row: 1 / 3;
  border-right: 1px solid var(--line);
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.wm-brand {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.wm-brand > svg:first-child {
  height: 17px;
  width: 13px;
  color: var(--ink);
}
.wm-brand strong {
  font-size: 12px;
  font-weight: 650;
  color: var(--ink);
}
.wm-brand > svg:last-child {
  margin-left: auto;
  color: var(--muted);
  width: 12px;
}
.wm-account {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 7px;
  margin: 5px 5px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  min-width: 0;
}
.wm-account > span:nth-child(2) {
  min-width: 0;
}
.wm-account strong {
  font-size: 10px;
  display: block;
  font-weight: 550;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wm-account small {
  font-size: 9px;
  display: block;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wm-caret {
  font-size: 9px;
  line-height: 0.9;
  margin-left: auto;
  color: var(--muted);
}
.wm-avatar {
  width: 22px;
  height: 23px;
  border-radius: 5px;
  flex: none;
  background: var(--avatar);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 450;
}
.wm-avatar svg {
  width: 10px;
  height: 14px;
}
.wm-account .wm-avatar {
  border-radius: 50%;
  font-size: 9px;
}
.wm-compose {
  margin: 0 6px 7px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px;
  font-size: 11px;
  font-weight: 450;
}
.wm-compose svg {
  width: 12px;
}
.wm-folder {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 1px 5px;
  padding: 5px 7px;
  font-size: 11px;
  color: var(--muted);
  border-radius: 3px;
}
.wm-folder svg {
  width: 12px;
  height: 12px;
}
.wm-folder.selected {
  color: var(--ink);
  background: var(--wm-hover);
}
.wm-label-heading {
  font-size: 9px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  padding: 21px 11px 9px;
}
.wm-label {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 11px;
  color: var(--muted);
}
.wm-label i {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--label);
}
.wm-storage {
  margin-top: auto;
  padding: 12px 9px 7px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
  font-size: 8px;
  color: var(--muted);
}
.wm-storage i {
  width: 100%;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
}
.wm-settings {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px 10px;
  font-size: 10px;
  color: var(--muted);
}
.wm-settings svg {
  width: 11px;
  height: 11px;
}
.wm-topbar {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 13px;
  border-bottom: 1px solid var(--line);
}
.wm-global-search {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 4px 8px;
  width: min(425px, 80%);
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
.wm-global-search svg {
  width: 11px;
  height: 11px;
}
.wm-global-search kbd {
  margin-left: auto;
  padding: 0 3px;
  font: inherit;
  font-size: 9px;
  background: var(--chip);
  border-radius: 2px;
}
.wm-list {
  min-width: 0;
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.wm-list-toolbar {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 0 11px;
  font-size: 10px;
}
.wm-list-toolbar strong {
  margin-right: auto;
  font-weight: 550;
  color: var(--ink);
}
.wm-list-count {
  font-size: 9px;
  color: var(--muted);
  white-space: nowrap;
}
.wm-checkbox {
  width: 11px;
  height: 11px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  flex: none;
}
.wm-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  height: 43px;
}
.wm-row.selected {
  background: var(--wm-hover);
}
.wm-row-copy {
  min-width: 0;
  flex: 1;
}
.wm-row-copy > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wm-row-copy strong {
  font-size: 10px;
  font-weight: 450;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wm-row-copy time {
  margin-left: auto;
  flex: none;
  color: var(--muted);
  font-size: 8px;
}
.wm-row-copy p {
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
  color: var(--muted);
}
.wm-reader {
  min-width: 0;
  overflow: hidden;
}
.wm-reader-toolbar {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 0 14px;
  height: 35px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}
.wm-reader-toolbar > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wm-reader-tools {
  margin-left: auto;
  display: flex;
  gap: 11px !important;
}
.wm-reader-tools svg {
  width: 11px;
  height: 11px;
}
.wm-reader-tools b {
  font-size: 15px;
  line-height: 1;
}
.wm-reader-body {
  padding: 18px 15px;
}
.wm-reader h4 {
  font-size: 13px;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 1px 0 19px;
  color: var(--ink);
}
.wm-email {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px;
  box-shadow: 0 1px 2px #0000000d;
}
.wm-email-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 11px;
  font-size: 10px;
  line-height: 1.4;
}
.wm-email-header strong {
  color: var(--ink);
  font-weight: 600;
}
.wm-email-avatar {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ink);
  flex: none;
}
.wm-email-avatar svg {
  width: 11px;
  height: 15px;
}
.wm-email-address {
  font-size: 9px;
  color: var(--muted);
  margin-left: 3px;
}
.wm-email-header small {
  display: block;
  font-size: 9px;
  color: var(--muted);
}
.wm-email-header time {
  font-size: 8px;
  color: var(--muted);
  margin-left: auto;
  white-space: nowrap;
}
.wm-email-content {
  min-height: 351px;
  border: 1px solid #242426;
  border-radius: 3px;
  background: #050506;
  color: #f5f5f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 18px 24px;
}
.wm-email-logo {
  display: grid;
  place-items: center;
  border: 1px solid #29292d;
  background: linear-gradient(135deg, #151517, #08080a);
  width: 45px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 4px 12px #000;
  margin-bottom: 24px;
}
.wm-email-logo svg {
  width: 19px;
  height: 25px;
}
.wm-email-content h5 {
  font-size: clamp(22px, 2.5vw, 33px);
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin-bottom: 13px;
}
.wm-email-content > p {
  font-size: 10px;
  line-height: 1.65;
  color: #95959e;
  max-width: 320px;
}
.wm-email-cta {
  font-size: 10px;
  font-weight: 550;
  background: #fafafa;
  color: #171719;
  padding: 9px 22px;
  border-radius: 6px;
  margin-top: 24px;
}
.wm-email-signoff {
  font-size: 9px;
  color: #767680;
  line-height: 1.7;
  margin-top: 35px;
}
.wm-email-signoff span {
  color: #a2a2aa;
}
.wm-bottom-replies {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  font-size: 9px;
}
.wm-bottom-replies span {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 4px 7px;
}

@media (max-width: 1100px) {
  .wm {
    grid-template-columns: 135px 218px minmax(0, 1fr);
    height: 565px;
  }
  .wm-list-toolbar {
    gap: 8px;
  }
  .wm-email-address {
    display: none;
  }
  .wm-email-header time {
    font-size: 7px;
  }
  .wm-email-content {
    padding-inline: 13px;
    min-height: 351px;
  }
  .wm-email-content > p {
    font-size: 9px;
  }
  .wm-reader-toolbar {
    gap: 12px;
  }
}
@media (max-width: 850px) {
  .wm {
    grid-template-columns: 122px 193px minmax(0, 1fr);
  }
  .wm-reader-toolbar {
    gap: 9px;
    padding-inline: 11px;
  }
  .wm-reader-toolbar .wm-reply-all {
    display: none;
  }
  .wm-reader-tools svg:first-child {
    display: none;
  }
  .wm-reader-body {
    padding: 17px 10px;
  }
  .wm-email {
    padding: 8px;
  }
  .wm-email-header time {
    display: none;
  }
  .wm-account {
    gap: 4px;
    padding-inline: 4px;
  }
  .wm-account small {
    font-size: 8px;
  }
  .wm-list-toolbar {
    gap: 7px;
    font-size: 9px;
    padding-inline: 8px;
  }
  .wm-list-toolbar > svg {
    display: none;
  }
  .wm-row {
    padding-inline: 9px;
  }
  .wm-email-content > p br {
    display: none;
  }
  .wm-email-content h5 {
    font-size: 23px;
  }
  .wm-email-content {
    min-height: 363px;
  }
}
@media (max-width: 700px) {
  .wm {
    grid-template-columns: 116px 160px minmax(0, 1fr);
    height: 555px;
  }
  .wm-row {
    padding-inline: 7px;
    gap: 6px;
  }
  .wm-row-copy time {
    display: none;
  }
  .wm-list-count {
    font-size: 8px;
  }
  .wm-list-toolbar {
    gap: 6px;
  }
  .wm-global-search {
    font-size: 10px;
  }
  .wm-reader-toolbar {
    gap: 12px;
  }
  .wm-reader-toolbar > span:not(.wm-reader-tools) {
    display: none;
  }
  .wm-reader h4 {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .wm-email-content h5 {
    font-size: 20px;
  }
  .wm-email-content > p {
    font-size: 9px;
  }
  .wm-email-signoff {
    font-size: 8px;
  }
  .wm-email-cta {
    font-size: 9px;
    padding-inline: 12px;
  }
  .wm-email-content {
    padding-inline: 10px;
    min-height: 339px;
  }
  .wm-bottom-replies > span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 540px) {
  .wm {
    grid-template-columns: 77px minmax(0, 1fr);
    grid-template-rows: 31px 1fr;
    height: 484px;
  }
  .wm-sidebar {
    grid-row: 1 / 3;
  }
  .wm-topbar {
    grid-column: 2;
  }
  .wm-list {
    display: none;
  }
  .wm-reader {
    grid-column: 2;
    grid-row: 2;
  }
  .wm-brand {
    height: 31px;
    gap: 4px;
    padding-inline: 7px;
  }
  .wm-brand strong {
    font-size: 10px;
  }
  .wm-brand > svg:first-child {
    width: 10px;
    height: 14px;
  }
  .wm-brand > svg:last-child {
    display: none;
  }
  .wm-account {
    justify-content: center;
    margin: 5px 5px 7px;
    padding: 6px 2px;
  }
  .wm-account > span:not(.wm-avatar) {
    display: none;
  }
  .wm-compose {
    font-size: 8px;
    gap: 4px;
    margin-inline: 4px;
    padding: 6px 3px;
  }
  .wm-compose svg {
    width: 9px;
    height: 9px;
  }
  .wm-folder {
    font-size: 8px;
    gap: 5px;
    margin-inline: 3px;
    padding: 5px 3px;
  }
  .wm-folder svg {
    width: 10px;
    height: 10px;
  }
  .wm-label-heading {
    font-size: 7px;
    padding: 14px 7px 7px;
  }
  .wm-label-heading svg {
    width: 9px;
    height: 9px;
  }
  .wm-label {
    padding: 5px 7px;
    font-size: 8px;
    gap: 7px;
  }
  .wm-label i {
    width: 5px;
    height: 5px;
  }
  .wm-storage {
    padding: 8px 5px 4px;
    font-size: 6px;
  }
  .wm-settings {
    font-size: 8px;
    gap: 4px;
    padding-inline: 6px;
  }
  .wm-topbar {
    padding: 4px 8px;
  }
  .wm-global-search {
    width: 90%;
    font-size: 9px;
    padding: 3px 5px;
  }
  .wm-global-search kbd {
    font-size: 8px;
  }
  .wm-topbar > svg {
    width: 10px;
    height: 10px;
  }
  .wm-reader-toolbar {
    height: 30px;
    padding-inline: 9px;
  }
  .wm-reader-toolbar > svg {
    width: 12px;
    height: 12px;
  }
  .wm-reader-toolbar > span:not(.wm-reader-tools) {
    display: flex;
    font-size: 8px;
  }
  .wm-reader-toolbar > span.wm-reply-all {
    display: none;
  }
  .wm-reader-tools {
    gap: 6px !important;
  }
  .wm-reader-tools svg {
    display: none;
  }
  .wm-reader-body {
    padding: 12px 8px;
  }
  .wm-reader h4 {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .wm-email {
    padding: 6px;
  }
  .wm-email-header {
    gap: 5px;
    font-size: 8px;
    padding-bottom: 7px;
    margin-bottom: 7px;
  }
  .wm-email-header small {
    font-size: 7px;
  }
  .wm-email-avatar {
    width: 16px;
  }
  .wm-email-avatar svg {
    width: 9px;
    height: 12px;
  }
  .wm-email-content {
    min-height: 287px;
    padding: 18px 9px;
  }
  .wm-email-content h5 {
    font-size: 20px;
  }
  .wm-email-content > p {
    font-size: 8px;
  }
  .wm-email-logo {
    width: 34px;
    height: 35px;
    border-radius: 9px;
    margin-bottom: 22px;
  }
  .wm-email-logo svg {
    width: 14px;
    height: 20px;
  }
  .wm-email-cta {
    margin-top: 20px;
    font-size: 8px;
    padding: 8px 11px;
  }
  .wm-email-signoff {
    margin-top: 26px;
    font-size: 7px;
  }
  .wm-bottom-replies {
    margin-top: 12px;
    font-size: 7px;
    gap: 4px;
  }
  .wm-bottom-replies span {
    padding: 3px 5px;
  }
  .wm-bottom-replies svg {
    width: 9px;
    height: 9px;
  }
}

/* An editorial hero with expressive type and a gently moving sculptural image. */
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/instrument-serif-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
header,
.hero {
  color-scheme: dark;
  --paper: #09090b;
  --paper-2: #0e0e10;
  --card: #121214;
  --ink: #f3f3f4;
  --ink-2: #c5c5ca;
  --muted: #919198;
  --line: #252528;
  --line-2: #39393e;
  --accent: #eeeef0;
  --accent-soft: #202024;
  --chip: #202024;
  color: var(--ink);
}
header {
  border-bottom-color: transparent;
  background: #09090bf0;
}
.nav {
  min-height: 76px;
}
.logo {
  font-size: 25px;
}
header .btn-primary,
.hero .btn-primary {
  border: 1px solid #ffffff15;
  background: linear-gradient(180deg, #272729, #1b1b1d);
  color: #f3f3f4;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 #ffffff0a,
    0 2px 4px #0003;
}
header .btn-primary:hover,
.hero .btn-primary:hover {
  background: linear-gradient(180deg, #323235, #232326);
  border-color: #ffffff30;
}
header .btn-primary {
  border-radius: 999px;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: #09090b;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 24px;
  min-height: 790px;
  padding-block: 110px 140px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-left: 24px;
}
.hero-eyebrow {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 5px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(110deg, #091113, #101014 60%, #120d17) padding-box,
    linear-gradient(110deg, #267e79, #555233 48%, #592b74) border-box;
  color: #d8d8dc;
  font-family: "Wotfard", Geist, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

@property --eyebrow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(
    from var(--eyebrow-angle),
    #267e79,
    #65bcb0 12%,
    #555233 35%,
    #592b74 58%,
    #9a60af 70%,
    #267e79 100%
  );
  animation: eyebrow-edge-turn 10s linear infinite;
  animation-play-state: paused;
}
.hero-eyebrow::before {
  z-index: -1;
  filter: blur(7px);
  opacity: 0.3;
  animation:
    eyebrow-edge-turn 10s linear infinite,
    eyebrow-glow-breathe 5s ease-in-out infinite;
  animation-play-state: paused;
}
.hero-eyebrow::after {
  padding: 1px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.hero-eyebrow.is-playing::before,
.hero-eyebrow.is-playing::after {
  animation-play-state: running;
}
@keyframes eyebrow-edge-turn {
  to {
    --eyebrow-angle: 360deg;
  }
}
@keyframes eyebrow-glow-breathe {
  0%,
  100% {
    opacity: 0.22;
  }
  50% {
    opacity: 0.42;
  }
}

.hero h1 {
  margin: 0 0 28px;
  color: #f7f7f8;
  font-family: "Editorial New", Georgia, serif;
  font-size: clamp(3.75rem, 6.1vw, 5.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  word-spacing: 0.015em;
  line-height: 1.04;
}
.hero h1 > span {
  white-space: nowrap;
  color: #a4a4ab;
}
.hero p.sub {
  max-width: 450px;
  margin: 0 0 31px;
  color: #929298;
  font-size: 1.0625rem;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero .btn-lg {
  min-height: 49px;
  padding: 13px 20px;
  font-size: 0.9375rem;
}
.hero .btn-primary svg {
  display: none;
}
.hero .btn-ghost {
  border-color: transparent;
  background: none;
  color: #b4b4bc;
  box-shadow: none;
}
.hero .btn-ghost:hover {
  color: #fff;
  background: #ffffff05;
}
.hero-note {
  margin-top: 19px;
  font-size: 0.75rem;
  color: #73737d;
}
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  width: 112%;
  margin-left: -5%;
  pointer-events: none;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mask-image: radial-gradient(
    ellipse 64% 62% at center,
    #000 55%,
    transparent 82%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 64% 62% at center,
    #000 55%,
    transparent 82%
  );
}
.product-stage {
  position: relative;
  margin-top: 0;
}
@media (min-width: 1500px) {
  .hero-layout {
    min-height: 870px;
    padding-block: 145px 160px;
  }
}
@media (max-width: 1100px) {
  .hero-layout {
    min-height: 700px;
    gap: 4px;
    padding-block: 100px 120px;
  }
  .hero-copy {
    padding-left: 0;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 6.4vw, 5rem);
  }
  .hero p.sub {
    max-width: 400px;
    font-size: 1rem;
  }
}
@media (max-width: 760px) {
  .hero-layout {
    min-height: 610px;
    padding-block: 80px 90px;
    grid-template-columns: 1.2fr 1fr;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 3.5rem);
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    padding-inline: 10px;
  }
  .hero-visual {
    width: 132%;
    margin-left: -15%;
  }
  .hero p.sub {
    font-size: 0.9375rem;
  }
  .hero-note {
    max-width: 240px;
  }
}
@media (max-width: 540px) {
  .nav {
    min-height: 70px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
    padding-top: 65px;
    padding-bottom: 30px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-eyebrow {
    margin-bottom: 26px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 12.6vw, 4.2rem);
    line-height: 0.98;
    margin-bottom: 24px;
  }
  .hero p.sub {
    font-size: 1rem;
    max-width: 350px;
    margin-bottom: 27px;
  }
  .hero-ctas {
    gap: 9px;
  }
  .hero .btn-lg {
    font-size: 0.875rem;
    padding: 13px 18px;
  }
  .hero-note {
    max-width: none;
    font-size: 0.75rem;
  }
  .hero-visual {
    width: 90%;
    max-width: 360px;
    margin: 10px auto -8px;
  }
  .preview-caption .mono {
    font-size: 0.5625rem;
  }
}

/* A quiet closing statement, with the same dark palette as the hero. */
.final {
  color-scheme: dark;
  background: #09090b;
  border-top: 1px solid #202023;
  border-bottom: 0;
  color: #f3f3f4;
  padding-block: 110px 115px;
}
.final h2 {
  font-family: "Editorial New", Georgia, serif;
  font-size: clamp(3.75rem, 6.7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}
.final p {
  color: #919198;
  margin-top: 24px;
}
.final .btn-primary {
  color: #f3f3f4;
  background: linear-gradient(180deg, #272729, #1b1b1d);
  border: 1px solid #ffffff15;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 #ffffff0a;
}
.final .btn-primary:hover {
  background: #29292c;
  border-color: #ffffff30;
}
.site-footer {
  color-scheme: dark;
  background: #050506;
  color: #f3f3f4;
  overflow: clip;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  padding-block: 78px 86px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.footer-logo svg {
  width: 21px;
  height: 27px;
}
.footer-intro p {
  margin-top: 20px;
  color: #85858f;
  font-size: 0.9375rem;
  line-height: 1.75;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.875rem;
  color: #a0a0a9;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-column h3 {
  font-family: "Editorial New", Georgia, serif;
  color: #ededf0;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 2px 0 8px;
}
.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #85858f;
  font-size: 0.875rem;
  line-height: 1.6;
}
.site-footer a {
  transition: color 0.18s ease;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer a:focus-visible {
  outline-color: #d9d9de;
}
.footer-signature {
  overflow: hidden;
  border-top: 1px solid #ffffff12;
  border-bottom: 1px solid #ffffff12;
  background: #050506;
}
.footer-signature > .wrap {
  height: clamp(120px, 22vw, 335px);
  padding-top: clamp(24px, 4vw, 60px);
}
.footer-wordmark {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  width: max-content;
  margin-inline: auto;
  font-size: clamp(6rem, 30vw, 29rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.06em;
  text-align: center;
  user-select: none;
  color: #141416;
  background: linear-gradient(180deg, #1c1c1e, #0c0c0e 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-wordmark::before,
.footer-wordmark::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  color: #727276;
  -webkit-text-fill-color: #727276;
  /* Follow the filled glyph silhouette to keep the silver edge continuous. */
  text-shadow:
    -0.65px 0 #dcdce2,
    0.65px 0 #dcdce2,
    0 -0.65px #dcdce2,
    0 0.65px #dcdce2;
  mask-image: radial-gradient(
    circle 220px at var(--glow-x) var(--glow-y),
    #000 0%,
    #000b 22%,
    #0004 48%,
    transparent 75%
  );
  transition: opacity 450ms ease;
}
.footer-wordmark::before {
  filter: blur(16px);
}
.footer-wordmark::after {
  -webkit-text-fill-color: #29292c;
}
@media (hover: hover) and (pointer: fine) {
  .footer-signature.is-lit .footer-wordmark::before {
    opacity: 0.65;
  }
  .footer-signature.is-lit .footer-wordmark::after {
    opacity: 1;
  }
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #202023;
  padding-block: 25px 30px;
  color: #777780;
  font-size: 0.75rem;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 55px;
  }
  .footer-intro p {
    margin-top: 14px;
  }
  .footer-contact {
    margin-top: 17px;
  }
}
@media (max-width: 540px) {
  .final {
    padding-block: 75px;
  }
  .final h2 {
    font-size: 4rem;
  }
  .final p {
    font-size: 0.9375rem;
  }
  .footer-top {
    gap: 40px;
    padding-top: 44px;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 33px 20px;
  }
  .footer-column {
    gap: 13px;
  }
  .footer-signature > .wrap {
    height: 24vw;
    min-height: 92px;
    padding-top: 22px;
  }
  .footer-wordmark {
    font-size: 30vw;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 22px 27px;
    font-size: 0.75rem;
  }
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
.frame-hold {
  position: relative;
}
/* The image stays available when WebGL is unavailable. */
.hero-art {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-art img {
  user-select: none;
  -webkit-user-drag: none;
}
.hero-art canvas {
  visibility: hidden;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-visual.is-3d .hero-art canvas {
  visibility: visible;
}
.hero-visual.is-3d .hero-art img {
  visibility: hidden;
}
.envelope-control {
  position: absolute;
  inset: 7% 4% 8%;
  width: 92%;
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  color: #85858d;
  pointer-events: auto;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.envelope-control[hidden] {
  display: none;
}
.envelope-control:focus-visible {
  outline: 1px solid #66666e;
  outline-offset: 4px;
}
.envelope-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font:
    11px Geist,
    sans-serif;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.25s;
}
.envelope-control:hover .envelope-hint,
.envelope-control:focus-visible .envelope-hint {
  opacity: 1;
}
@media (hover: none) {
  .envelope-hint {
    opacity: 0.7;
  }
}

/* Low-contrast graphite light behind the hero, fading before the inbox. */
.hero-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 950px;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 94% 12%, #ffffff0b, transparent 62%),
    linear-gradient(16deg, transparent 20%, #ffffff05 24%, transparent 29%);
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 70%,
    transparent
  );
}
.hero-atmosphere canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-layout,
.product-stage {
  position: relative;
  z-index: 1;
}

/* The initial breathing room scrolls away; the compact bar then sticks at zero. */
.nav-spacer {
  height: 20px;
  background: transparent;
}
header {
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
header.is-stuck {
  background: #09090bb3;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: #ffffff0c;
  box-shadow: 0 4px 20px #00000010;
}
header .nav {
  min-height: 64px;
}
header .logo {
  font-size: 22px;
  gap: 8px;
  letter-spacing: -1px;
}
header .logo svg {
  width: 19px;
  height: 25px;
}
header .nav-links {
  font-size: 0.8125rem;
  gap: 22px;
}
header .btn-primary {
  min-height: 38px;
  padding: 8px 17px;
  font-size: 0.8125rem;
}
@media (max-width: 800px) {
  header .nav-links {
    gap: 15px;
  }
}
@media (max-width: 540px) {
  .nav-spacer {
    height: 12px;
  }
  header .nav {
    min-height: 60px;
  }
  header .nav-links {
    top: 100%;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  header {
    transition: none;
  }
}

/* Small product scenes carry the hero's brushed, softly lit visual language. */
.section-emblem {
  width: 74px;
  height: 74px;
  position: relative;
  margin-bottom: 32px;
  perspective: 500px;
}
.section-emblem::before {
  content: "";
  position: absolute;
  inset: 15% -10% -15%;
  background: radial-gradient(ellipse, #7b8eac30, transparent 68%);
  filter: blur(10px);
}
.emblem-core {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 20px;
  border: 1px solid #ffffff20;
  color: #bfc4cd;
  background: linear-gradient(145deg, #39393f, #111114 48%, #1b1c22);
  box-shadow:
    inset 0 1px 1px #ffffff30,
    inset 0 -3px 5px #0008,
    0 12px 30px #0003;
  transform: rotateY(-13deg) rotateX(10deg);
  animation: emblem-drift 9s ease-in-out infinite;
}
.emblem-core svg {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 2px #000);
}
#setup .sec-head,
#pricing .sec-head {
  margin-inline: auto;
  text-align: center;
  max-width: 680px;
}
#setup .sec-head > p:last-child,
#pricing .sec-head > p:last-child {
  margin-inline: auto;
}
#setup .section-emblem,
#pricing .section-emblem {
  margin-inline: auto;
}
#features {
  background: var(--paper);
  border: 0;
}
#features .grid3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  border: 0;
  background: none;
  overflow: visible;
}
#features .feat {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  padding: 0 32px 32px;
  background: var(--paper);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
#features .feat:hover {
  border-color: var(--line-2);
  box-shadow: 0 8px 35px #0000000d;
}
#features .ic {
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--chip), var(--paper));
}
#features .ic svg {
  width: 17px;
  height: 17px;
}
#features .feat h3 {
  font-size: 1.0625rem;
}
#features .feat p {
  font-size: 0.875rem;
  max-width: 430px;
}
.whitelabel-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  margin-top: 22px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}
.whitelabel-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.whitelabel-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  flex: none;
  border: 1px solid #b8a1d134;
  border-radius: 21px;
  background:
    radial-gradient(ellipse at 50% 120%, #a37ddd30, transparent 65%),
    linear-gradient(140deg, #2c2c33, #121216);
  color: #c3bacf;
  box-shadow: 0 1px 0 #ffffff09 inset;
}
.whitelabel-label {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  color: var(--ink-2);
}
.whitelabel-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.whitelabel-copy > p {
  margin: 0;
  max-width: 430px;
  color: var(--muted);
  font-size: 0.875rem;
}
.coming-soon {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #b3a2cc2b;
  border-radius: 999px;
  background: #b3a2cc08;
  color: #b6adc3;
  font-size: 0.6875rem;
  line-height: 1.6;
}
.whitelabel-details {
  list-style: none;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 26px 0 0;
}
.whitelabel-details li {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 12px;
  font-size: 0.8125rem;
}
.whitelabel-details strong {
  color: var(--ink-2);
  font-weight: 400;
}
.whitelabel-details span {
  color: var(--muted);
}
.whitelabel-preview {
  min-width: 0;
  padding: 24px 0;
}
.brand-webmail {
  overflow: hidden;
  border: 1px solid #ffffff25;
  border-radius: 12px;
  background: #111214;
  box-shadow: 0 24px 45px #0008;
  transform: perspective(900px) rotateY(-6deg) rotateX(3deg);
  font-size: 10px;
}
.brand-webmail-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid #ffffff0b;
}
.brand-symbol {
  color: #c3b4df;
  font-size: 22px;
  line-height: 1;
}
.brand-webmail-header strong {
  color: #dedee4;
  font-weight: 400;
  font-size: 12px;
}
.brand-window-controls {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.brand-window-controls i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #484951;
}
.brand-webmail-body {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
}
.brand-sidebar {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 14px 10px;
  border-right: 1px solid #ffffff0b;
  color: #92939e;
  background: #ffffff02;
  font-size: 9px;
}
.brand-compose {
  padding: 5px 7px;
  border-radius: 5px;
  background: #b4a1d32b;
  color: #d5c8eb;
}
.brand-folder {
  display: flex;
  justify-content: space-between;
  color: #e1d8ee;
}
.brand-folder small {
  font-size: 8px;
  color: #a498b3;
}
.brand-messages {
  min-width: 0;
}
.brand-search {
  padding: 11px 14px;
  color: #72757e;
  border-bottom: 1px solid #ffffff0b;
  font-size: 9px;
}
.brand-message {
  padding: 13px 14px;
  border-bottom: 1px solid #ffffff0b;
}
.brand-message:nth-child(2) {
  background: #b4a1d30a;
  animation: brand-mail-glow 8s ease-in-out infinite;
}
.brand-sender {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
  color: #bbbcc6;
  font-size: 9px;
}
.brand-sender small {
  color: #747783;
  font-size: 8px;
}
.brand-message > strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 10px;
  color: #d6d3df;
  font-weight: 400;
}
.brand-message p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 4px 0 0;
  color: #777a85;
  font-size: 9px;
}
.brand-account {
  padding: 12px 14px;
  font-size: 8px;
  color: #96909f;
}
.brand-palette {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.brand-palette span {
  font-size: 10px;
  color: #919198;
  margin-right: 4px;
}
.brand-palette i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ae96d2;
  border: 2px solid #111214;
  outline: 1px solid #ae96d275;
  animation: brand-swatch-glow 8s ease-in-out infinite;
}
.brand-palette i:nth-of-type(2) {
  background: #7eb4a4;
  outline-color: #7eb4a444;
  animation-delay: 2s;
}
.brand-palette i:nth-of-type(3) {
  background: #82a7cc;
  outline-color: #82a7cc44;
  animation-delay: 4s;
}
.brand-palette i:nth-of-type(4) {
  background: #d0b68e;
  outline-color: #d0b68e44;
  animation-delay: 6s;
}
.brand-preview-caption {
  text-align: center;
  font-size: 10px;
  color: #64646e;
  margin: 18px 0 0;
}
@keyframes brand-mail-glow {
  0%,
  100% {
    background-color: #b4a1d30a;
  }
  50% {
    background-color: #b4a1d31a;
  }
}
@keyframes brand-swatch-glow {
  0%,
  35%,
  100% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
}
@media (max-width: 900px) {
  .whitelabel-note {
    gap: 28px;
    padding: 32px;
  }
  .whitelabel-details li {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
@media (max-width: 640px) {
  .whitelabel-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
    margin-top: 18px;
  }
  .whitelabel-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }
  .whitelabel-heading {
    gap: 14px;
  }
  .brand-webmail-body {
    grid-template-columns: 66px minmax(0, 1fr);
  }
  .brand-sidebar {
    padding-inline: 7px;
    font-size: 8px;
  }
  .brand-message,
  .brand-search {
    padding-inline: 10px;
  }
  .brand-webmail-header {
    padding: 12px;
  }
  .whitelabel-preview {
    padding-bottom: 0;
  }
}
.feature-scene {
  position: relative;
  height: 235px;
  margin: 0 -32px 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(ellipse at 50% 0%, #24252b55, transparent 68%), #0b0b0e;
  color: #b4b5bf;
  font:
    12px Geist,
    sans-serif;
  border-bottom: 1px solid #ffffff08;
}
.feature-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    #0b0b0e 0%,
    transparent 18%,
    transparent 85%,
    #0b0b0e22
  );
}
.scene-mail {
  padding: 25px;
}
.scene-mail::after {
  background: linear-gradient(0deg, #0b0b0e55, transparent 24%);
}
.mailbox-preview {
  position: relative;
  width: 100%;
  max-width: 350px;
  flex: none;
  border: 1px solid #ffffff20;
  border-radius: 13px;
  background: #111214;
  box-shadow:
    0 18px 45px #0009,
    0 1px 0 #ffffff08 inset;
  transform: perspective(900px) rotateY(-7deg) rotateX(4deg);
  overflow: hidden;
  font-family: "Wotfard", Geist, sans-serif;
}
.mailbox-account {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-bottom: 1px solid #ffffff0b;
  background: linear-gradient(115deg, #ffffff04, transparent);
}
.mailbox-monogram {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  flex: none;
  border: 1px solid #c4d1cb28;
  border-radius: 50%;
  background: linear-gradient(140deg, #687d72, #36443d);
  color: #e3ede7;
  font-size: 12px;
}
.mailbox-identity {
  min-width: 0;
}
.mailbox-identity strong,
.mailbox-identity small {
  display: block;
}
.mailbox-identity strong {
  font-size: 11px;
  font-weight: 400;
  color: #e3e4e7;
}
.mailbox-identity small {
  margin-top: 3px;
  font-size: 9px;
  color: #92959b;
}
.mailbox-account > svg {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: #777d84;
}
.mailbox-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-bottom: 1px solid #ffffff0b;
}
.mailbox-toolbar svg {
  width: 14px;
  height: 14px;
  color: #aeb3bc;
}
.mailbox-toolbar strong {
  font-size: 10px;
  font-weight: 400;
  color: #d4d6dc;
}
.mailbox-count {
  font-size: 8px;
  color: #9eabb6;
  border: 1px solid #ffffff0e;
  border-radius: 4px;
  padding: 1px 4px;
}
.mailbox-toolbar .mailbox-search {
  margin-left: auto;
}
.mailbox-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
}
.mailbox-message + .mailbox-message {
  border-top: 1px solid #ffffff08;
}
.mailbox-message.is-unread {
  background: #81b5eb0a;
  animation: mailbox-receive 7s ease-in-out infinite;
}
.mailbox-avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  border: 1px solid #9bb9df24;
  background: linear-gradient(135deg, #435d7b, #28384e);
  color: #cfdef1;
  font-size: 8px;
}
.mailbox-avatar.avatar-studio {
  background: linear-gradient(135deg, #655776, #3c3349);
  color: #dacfe6;
  border-color: #c1a3d224;
}
.mailbox-message-copy {
  min-width: 0;
}
.mailbox-message-copy strong,
.mailbox-message-copy small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mailbox-message-copy strong {
  font-size: 10px;
  font-weight: 400;
  color: #d8dbe2;
}
.mailbox-message-copy small {
  margin-top: 4px;
  font-size: 9px;
  color: #9297a1;
}
.mailbox-message-meta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  font-size: 8px;
  color: #7f8792;
}
.mailbox-message-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #96bee8;
  box-shadow: 0 0 7px #96bee840;
}
.team-avatars > i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff12;
  border-radius: 8px;
  background: #33383e;
  color: #c7cbd0;
  font-size: 9px;
  font-style: normal;
}
.search-demo-result b {
  display: block;
  font-weight: 450;
  font-size: 11px;
  color: #c8c8cf;
}
.search-demo-result small {
  display: block;
  font-size: 10px;
  color: #75757f;
  margin-top: 4px;
}
.scene-alias {
  gap: 0;
}
.alias-origins {
  flex: none;
  display: grid;
  gap: 18px;
  z-index: 1;
}
.alias-origins > span {
  width: 91px;
  padding: 9px 12px;
  background: linear-gradient(130deg, #27272d, #151518);
  border: 1px solid #ffffff17;
  border-radius: 7px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
}
.routing-lines {
  width: 130px;
  flex: 1;
  max-width: 160px;
  height: 150px;
  fill: none;
  stroke: #ffffff14;
  stroke-width: 1;
  overflow: visible;
}
.routing-pulse {
  stroke: #a4b8c6;
  stroke-dasharray: 12 230;
  animation: route-flow 5s linear infinite;
}
.alias-destination {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 95px;
  font-size: 10px;
}
.destination-glyph {
  display: grid;
  place-items: center;
  width: 57px;
  height: 57px;
  font-size: 30px;
  border: 1px solid #ffffff25;
  border-radius: 15px;
  background: linear-gradient(140deg, #42434a, #17181d 65%);
  box-shadow: 0 5px 22px #0006;
}
.team-demo {
  width: 100%;
  max-width: 330px;
  text-align: center;
}
.team-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ffffff16;
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 11px;
  background: #18181d;
}
.team-avatars {
  display: flex;
  justify-content: center;
  margin: 24px 0 17px;
}
.team-avatars > i {
  width: 42px;
  height: 42px;
  border: 3px solid #101014;
  border-radius: 50%;
  margin-left: -7px;
  background: #42454c;
  animation: teammate-wave 7s ease-in-out infinite;
}
.team-avatars > i:nth-child(2) {
  background: #414b48;
  animation-delay: 0.4s;
}
.team-avatars > i:nth-child(3) {
  background: #484452;
  animation-delay: 0.8s;
}
.team-reply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  color: #85858f;
}
.typing-dots {
  display: flex;
  gap: 3px;
}
.typing-dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #a3b7ac;
  animation: typing-pulse 1.8s ease-in-out infinite;
}
.typing-dots i:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dots i:nth-child(3) {
  animation-delay: 0.4s;
}
.search-demo {
  width: 100%;
  max-width: 370px;
  padding: 9px;
  background: #16161b;
  border: 1px solid #ffffff20;
  border-radius: 12px;
  box-shadow: 0 15px 40px #0006;
  transform: perspective(800px) rotateY(-5deg);
}
.search-demo-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 9px 16px;
  color: #c3c3cb;
  font-size: 12px;
}
.search-demo-input > span:first-child {
  font-size: 22px;
  line-height: 1;
  color: #797984;
}
.search-demo-input kbd {
  margin-left: auto;
  font:
    9px "Geist Mono",
    monospace;
  color: #71717e;
  border: 1px solid #ffffff12;
  border-radius: 4px;
  padding: 3px;
  white-space: nowrap;
}
.demo-caret {
  display: inline-block;
  height: 12px;
  border-right: 1px solid #aaa;
  vertical-align: middle;
  margin-left: 3px;
  animation: typing-pulse 1.6s infinite;
}
.search-demo-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border: 1px solid #ffffff10;
  background: #24242c;
  border-radius: 6px;
  animation: search-match 7s ease-in-out infinite;
}
.search-mail-icon {
  font-size: 22px;
  color: #9dabbc;
}
.result-return {
  margin-left: auto;
  color: #777784;
}
.search-demo-hint {
  padding: 13px 4px 3px;
  font-size: 9px;
  color: #666673;
}
.auth-demo {
  width: 100%;
  max-width: 280px;
  text-align: center;
}
.auth-route {
  display: flex;
  align-items: center;
  margin: 0 32px 24px;
}
.auth-node,
.auth-shield {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 23px;
  border: 1px solid #ffffff20;
  border-radius: 12px;
  background: linear-gradient(145deg, #303237, #151619);
}
.auth-shield {
  color: #a3bfad;
  border-radius: 12px 12px 20px 20px;
}
.auth-track {
  flex: 1;
  height: 1px;
  background: #ffffff16;
  position: relative;
  overflow: hidden;
}
.auth-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #b9d6c4, transparent);
  animation: auth-send 4s ease-in-out infinite;
}
.auth-checks {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.auth-checks > span {
  font:
    9px "Geist Mono",
    monospace;
  border: 1px solid #95b7a322;
  color: #9cad9f;
  background: #8eb79a08;
  border-radius: 5px;
  padding: 7px 8px;
  animation: verify-glow 6s ease-in-out infinite;
}
.auth-checks > span:nth-child(2) {
  animation-delay: 0.5s;
}
.auth-checks > span:nth-child(3) {
  animation-delay: 1s;
}
.auth-checks i {
  font-style: normal;
  margin-right: 3px;
}
.auth-demo > small {
  font-size: 10px;
  color: #6f7474;
}
.backup-demo {
  position: relative;
  width: 250px;
  height: 180px;
  display: grid;
  justify-items: center;
  align-content: center;
}
.backup-halo {
  position: absolute;
  width: 190px;
  height: 150px;
  top: 0;
  background: radial-gradient(ellipse, #97a7c024, transparent 65%);
  animation: halo-breathe 7s ease-in-out infinite;
}
.backup-rack {
  position: relative;
  width: 154px;
  height: 122px;
  transform-style: preserve-3d;
  transform: perspective(650px) rotateX(12deg) rotateY(-24deg) rotateZ(-3deg);
}
.backup-module {
  position: absolute;
  width: 154px;
  height: 30px;
  transform-style: preserve-3d;
  animation: rack-settle 7s ease-in-out infinite;
}
.backup-module:nth-child(1) {
  top: 4px;
  z-index: 3;
}
.backup-module:nth-child(2) {
  top: 44px;
  z-index: 2;
  animation-delay: 0.25s;
}
.backup-module:nth-child(3) {
  top: 84px;
  z-index: 1;
  animation-delay: 0.5s;
}
.rack-front {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid #ada8bd50;
  border-radius: 4px;
  background: linear-gradient(180deg, #55515f, #2a2832 46%, #373440);
  transform: translateZ(18px);
  box-shadow:
    inset 0 1px 0 #ffffff22,
    0 8px 12px #0005;
}
.rack-top {
  position: absolute;
  width: 154px;
  height: 36px;
  top: -18px;
  border: 1px solid #aaa3ba45;
  border-radius: 4px;
  background: linear-gradient(120deg, #6a6575, #383540 70%);
  transform: rotateX(90deg);
}
.rack-side {
  position: absolute;
  width: 36px;
  height: 30px;
  left: 136px;
  border: 1px solid #8f879d40;
  border-radius: 3px;
  background: linear-gradient(90deg, #332f3a, #1c1a22);
  transform: rotateY(90deg);
}
.rack-slots {
  flex: 1;
  height: 9px;
  margin-right: 12px;
  background: repeating-linear-gradient(
    90deg,
    #17161c 0 2px,
    transparent 2px 5px
  );
  border-block: 1px solid #ffffff0c;
}
.rack-front i {
  width: 4px;
  height: 4px;
  flex: none;
  border-radius: 50%;
  background: #a8c9b6;
  box-shadow: 0 0 5px #a8c9b64a;
  animation: rack-transfer 4s ease-in-out infinite;
}
.rack-front i:last-child {
  background: #a69bbd;
  animation-delay: 0.4s;
}
.backup-module:nth-child(2) .rack-front i {
  animation-delay: 0.7s;
}
.backup-module:nth-child(3) .rack-front i {
  animation-delay: 1.4s;
}
.backup-lock {
  position: absolute;
  right: -18px;
  bottom: -1px;
  z-index: 4;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #c2bbd45a;
  border-radius: 10px;
  color: #c6bed9;
  background: linear-gradient(140deg, #44404f, #23212b);
  box-shadow:
    inset 0 1px 0 #ffffff20,
    0 4px 12px #0006;
  transform: translateZ(30px);
}
@keyframes rack-settle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes rack-transfer {
  0%,
  20%,
  60%,
  100% {
    opacity: 0.5;
  }
  35%,
  45% {
    opacity: 1;
    box-shadow: 0 0 7px #b9d6c480;
  }
}
.backup-caption {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  margin-top: 17px;
  color: #94969e;
}
.tr h3 svg {
  padding: 8px;
  box-sizing: content-box;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--chip);
}
.motion-scene *,
.motion-scene *::before,
.motion-scene *::after {
  animation-play-state: paused !important;
}
.motion-scene.is-playing *,
.motion-scene.is-playing *::before,
.motion-scene.is-playing *::after {
  animation-play-state: running !important;
}
@keyframes emblem-drift {
  0%,
  100% {
    transform: rotateY(-13deg) rotateX(10deg) translateY(0);
  }
  50% {
    transform: rotateY(10deg) rotateX(4deg) translateY(-4px);
  }
}
@keyframes mailbox-receive {
  0%,
  100% {
    background-color: #81b5eb0a;
  }
  45%,
  60% {
    background-color: #81b5eb16;
  }
}
@keyframes route-flow {
  to {
    stroke-dashoffset: -242;
  }
}
@keyframes teammate-wave {
  0%,
  30%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes typing-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}
@keyframes search-match {
  0%,
  100% {
    border-color: #ffffff10;
  }
  45% {
    border-color: #a8bed345;
    background: #282a33;
  }
}
@keyframes auth-send {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes verify-glow {
  0%,
  100% {
    border-color: #95b7a322;
  }
  50% {
    border-color: #95b7a366;
    color: #bfd5c7;
  }
}
@keyframes halo-breathe {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 640px) {
  #features .grid3 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #features .feat {
    padding: 0 24px 28px;
  }
  .feature-scene {
    margin-inline: -24px;
    padding: 25px;
    height: 215px;
  }
  .section-emblem {
    width: 62px;
    height: 62px;
    margin-bottom: 26px;
  }
  .emblem-core {
    border-radius: 17px;
  }
  .emblem-core svg {
    width: 37px;
    height: 37px;
  }
  .alias-origins > span {
    width: 78px;
    padding-inline: 9px;
    font-size: 9px;
  }
}

/* Jewel-toned reflections sit inside the graphite icon housings. */
#setup {
  --metal-accent: 69 204 194;
}
#features {
  --metal-accent: 91 171 245;
}
#pricing {
  --metal-accent: 163 111 243;
}
#faq {
  --metal-accent: 230 174 98;
}
.section-emblem::before {
  background: radial-gradient(
    ellipse,
    rgb(var(--metal-accent) / 0.3),
    transparent 67%
  );
}
.emblem-core {
  color: rgb(var(--metal-accent));
  border-color: rgb(var(--metal-accent) / 0.25);
  background:
    radial-gradient(
      ellipse at 50% 120%,
      rgb(var(--metal-accent) / 0.4),
      transparent 63%
    ),
    linear-gradient(145deg, #39393f, #111114 48%, #1b1c22);
  box-shadow:
    inset 0 1px 1px #ffffff30,
    inset 0 -2px 5px rgb(var(--metal-accent) / 0.22),
    0 12px 30px #0003;
}
.emblem-core svg {
  filter: drop-shadow(0 0 7px rgb(var(--metal-accent) / 0.25))
    drop-shadow(0 2px 2px #000);
}
#features .feat:nth-child(1) {
  --metal-accent: 89 173 238;
}
#features .feat:nth-child(2) {
  --metal-accent: 163 131 243;
}
#features .feat:nth-child(3) {
  --metal-accent: 80 197 185;
}
#features .feat:nth-child(4) {
  --metal-accent: 121 156 247;
}
#features .feat:nth-child(5) {
  --metal-accent: 107 204 150;
}
#features .feat:nth-child(6) {
  --metal-accent: 182 125 239;
}
#features .ic {
  color: rgb(var(--metal-accent));
  border-color: rgb(var(--metal-accent) / 0.25);
  background:
    radial-gradient(
      ellipse at 50% 110%,
      rgb(var(--metal-accent) / 0.25),
      transparent 75%
    ),
    linear-gradient(140deg, #2d2e35, #151519);
  box-shadow:
    inset 0 1px 0 #ffffff12,
    0 4px 12px rgb(var(--metal-accent) / 0.06);
}
.destination-glyph,
.auth-node {
  color: rgb(var(--metal-accent));
  border-color: rgb(var(--metal-accent) / 0.3);
  background:
    radial-gradient(
      ellipse at 50% 110%,
      rgb(var(--metal-accent) / 0.28),
      transparent 70%
    ),
    linear-gradient(140deg, #37373f, #17181d 65%);
}
.routing-pulse {
  stroke: #b397ef;
}
.auth-shield {
  color: #8ad7a7;
  border-color: #8ad7a740;
  box-shadow: inset 0 -8px 16px #73c68e15;
}
.backup-halo {
  background: radial-gradient(ellipse, #a470e538, transparent 65%);
}

.tr:nth-child(1) {
  --metal-accent: 91 171 245;
}
.tr:nth-child(2) {
  --metal-accent: 107 204 150;
}
.tr:nth-child(3) {
  --metal-accent: 163 131 243;
}
.tr:nth-child(4) {
  --metal-accent: 230 174 98;
}
.tr h3 svg {
  color: rgb(var(--metal-accent));
  border-color: rgb(var(--metal-accent) / 0.23);
  background:
    radial-gradient(
      ellipse at 50% 110%,
      rgb(var(--metal-accent) / 0.2),
      transparent 80%
    ),
    #1a1b20;
}

/* Fixed metal housings, independently articulated 3D objects inside. */
.section-emblem {
  width: 88px;
  height: 88px;
}
.emblem-core.has-sculpture {
  position: relative;
  transform: none;
  animation: none;
  border-radius: 23px;
  background:
    radial-gradient(
      ellipse at 50% 115%,
      rgb(var(--metal-accent) / 0.3),
      transparent 63%
    ),
    linear-gradient(145deg, #313137, #101013 55%, #1b1c22);
}
.sculpture-canvas {
  display: none;
  pointer-events: none;
}
.has-sculpture {
  position: relative;
}
.has-sculpture > svg {
  visibility: hidden;
}
.has-sculpture > .sculpture-canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#features .ic.has-sculpture {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
@media (max-width: 640px) {
  .section-emblem {
    width: 76px;
    height: 76px;
  }
  .emblem-core.has-sculpture {
    border-radius: 20px;
  }
}

/* A restrained silver finish, with legible graphite tones in light sections. */
:root {
  --heading-metal: linear-gradient(
    174deg,
    #191a1e 8%,
    #484b54 54%,
    #24262c 100%
  );
}
@media (prefers-color-scheme: dark) {
  :root {
    --heading-metal: linear-gradient(
      174deg,
      #fafafa 7%,
      #d8d8dd 42%,
      #a3a4ac 76%,
      #83858f 100%
    );
  }
}
.hero,
.final {
  --heading-metal: linear-gradient(
    174deg,
    #fafafa 7%,
    #d8d8dd 42%,
    #a3a4ac 76%,
    #83858f 100%
  );
}
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero h1,
  .sec-head h2,
  .final h2,
  .feat h3,
  .step h3,
  .plan h3 {
    background-image: var(--heading-metal);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .hero h1 > span {
    color: inherit;
    -webkit-text-fill-color: inherit;
  }
}
@media (forced-colors: active) {
  .hero h1,
  .sec-head h2,
  .final h2,
  .feat h3,
  .step h3,
  .plan h3 {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
}

/* Serif titles paired with a clear sans serif for reading and navigation. */
.hero h1,
.sec-head h2,
.final h2,
.step h3,
.feat h3,
.plan h3,
.tr h3 {
  font-family: "Editorial New", Georgia, serif;
  font-weight: 400;
  font-synthesis: none;
}

/* Silver streaks originate at the lower-right, with a matching static fallback. */
.hero-atmosphere {
  background:
    radial-gradient(ellipse at 108% 89%, #b7b7bd20, transparent 73%),
    repeating-linear-gradient(
      130deg,
      transparent 0 12%,
      #c8c8ce08 15%,
      transparent 19% 28%
    ),
    #09090b;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 82%,
    transparent
  );
}

.hero h1,
.sec-head h2,
.final h2 {
  letter-spacing: -0.025em;
  padding-block: 0.04em 0.12em;
}
.eyebrow,
#faq summary {
  font-family: "Wotfard", Geist, sans-serif;
  font-weight: 400;
}
.footer-wordmark,
.footer-column h3 {
  font-family: "Wotfard", Geist, sans-serif;
  font-weight: 400;
  font-synthesis: none;
}

/* Use Wotfard for the brand labels; synthesize weight until Bold is supplied. */
header .logo,
.footer-logo,
.wm-brand strong {
  font-family: "Wotfard", Geist, sans-serif;
  font-weight: 700;
  font-synthesis: weight;
  letter-spacing: -0.035em;
}

/* Solid black backdrop variant. The atmospheric shader remains available separately. */
body.solid-background {
  color-scheme: dark;
  --paper: #000;
  --paper-2: #000;
  --card: #121214;
  --ink: #f3f3f4;
  --ink-2: #c5c5ca;
  --muted: #919198;
  --line: #252528;
  --line-2: #39393e;
  --accent: #eeeef0;
  --accent-soft: #202024;
  --chip: #2b2e33;
  --heading-metal: linear-gradient(
    174deg,
    #fafafa 7%,
    #d8d8dd 42%,
    #a3a4ac 76%,
    #83858f 100%
  );
  background: #000;
}
.solid-background main > section,
.solid-background .hero,
.solid-background .site-footer,
.solid-background .footer-signature {
  background: #000;
}
.solid-background header {
  background: transparent;
}
.solid-background header.is-stuck {
  background: #000000b3;
}
