:root {
  color-scheme: dark;
  --content-left: max(28px, calc((100vw - 1180px) / 2));
  --content-right: calc(100vw - var(--content-left));
  --ink: #f4f1ea;
  --ink-2: rgba(244, 241, 234, 0.82);
  --muted: rgba(244, 241, 234, 0.66);
  --soft: #121515;
  --soft-2: #0e1010;
  --line: rgba(255, 255, 255, 0.115);
  --line-strong: rgba(255, 255, 255, 0.2);
  --green: #9fd7b2;
  --green-soft: rgba(159, 215, 178, 0.13);
  --blue: #9fc5ff;
  --rose: #f0aaa3;
  --gold: #e8c682;
  --white: #141717;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 2%, rgba(176, 211, 255, 0.09), transparent 37.5rem),
    radial-gradient(circle at calc(var(--content-left) + 80px) 23%, rgba(159, 215, 178, 0.07), transparent 30rem),
    radial-gradient(circle at calc(var(--content-right) - 130px) 39%, rgba(232, 198, 130, 0.055), transparent 27.5rem),
    radial-gradient(circle at calc(var(--content-left) + 190px) 56%, rgba(159, 197, 255, 0.055), transparent 32rem),
    radial-gradient(circle at calc(var(--content-right) - 70px) 73%, rgba(159, 215, 178, 0.06), transparent 30rem),
    radial-gradient(circle at calc(var(--content-left) + 330px) 90%, rgba(240, 170, 163, 0.045), transparent 28rem),
    #080909;
  line-height: 1.5;
}

img,
video,
canvas {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 9, 0.82);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: var(--ink);
}

.brand-glyph {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(45, 139, 103, 0.2));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 720;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.2);
}

.nav-cta:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 56px));
  min-height: 372px;
  max-height: 468px;
  height: min(468px, calc(60svh - 71px));
  margin: 0 auto;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 22, 21, 0.88), rgba(8, 10, 10, 0.7)),
    #0e1010;
}

.hero-fabric-canvas {
  opacity: 0.95;
}

.hero-surface {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.92) 0%, rgba(8, 9, 9, 0.74) 36%, rgba(8, 9, 9, 0.18) 66%, transparent 100%),
    linear-gradient(180deg, rgba(8, 9, 9, 0.08) 0%, rgba(8, 9, 9, 0.55) 100%);
}

.hero-content {
  width: 100%;
  margin: 0 auto;
  padding-top: 47px;
}

.eyebrow,
.tile-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 6.4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-line {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 2rem;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.waitlist-form {
  position: relative;
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.waitlist-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-form input {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  border-radius: 8px;
  padding: 14px 15px;
  outline: none;
  box-shadow: 0 15px 38px rgba(51, 65, 82, 0.08);
}

.waitlist-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(45, 139, 103, 0.12);
}

.waitlist-form button {
  border: 0;
  border-radius: 8px;
  padding: 14px 17px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease;
}

.waitlist-form button:hover {
  transform: translateY(-1px);
  background: #243443;
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-note {
  grid-column: 1 / -1;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0;
}

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

.section h2,
.pricing-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.2rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.pricing-section p,
.vault-copy > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.video-groups {
  display: grid;
  gap: 54px;
}

.video-group-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.1;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.video-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(51, 65, 82, 0.09);
}

.feature-video {
  grid-row: span 2;
}

.video-tile video,
.video-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #e8efe9;
}

.video-tile div {
  padding: 20px 22px 23px;
}

.video-tile h3,
.feature-grid h3,
.feature-cell h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.video-tile p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 6px;
}

.device-section {
  padding-top: 42px;
}

.sync-visual {
  position: relative; isolation: isolate; overflow: hidden; margin: 0;
  padding: 32px 38px 26px; border: 1px solid var(--line); border-radius: 20px;
  background: radial-gradient(ellipse at 52% 48%, #78bda31c, transparent 55%), linear-gradient(145deg, #171d1c, #0c1010 70%);
  box-shadow: inset 0 1px #ffffff09, 0 30px 80px #0003;
}
.sync-visual::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .18; background-image: radial-gradient(#b5d3c7 0.7px, transparent .7px); background-size: 22px 22px; mask-image: radial-gradient(ellipse, #000, transparent 70%); }
.sync-caption { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sync-eyebrow { color: var(--green); text-transform: uppercase; font-size: .65rem; letter-spacing: .16em; font-weight: 650; }
.sync-caption h3 { margin: 6px 0 0; font-size: clamp(1.25rem, 2.4vw, 1.8rem); letter-spacing: -.04em; font-weight: 550; }
.sync-motion { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); color: var(--muted); background: #ffffff05; cursor: pointer; }
.sync-motion:hover, .sync-edit:hover { color: var(--ink); border-color: #9fd7b260; background: #9fd7b20c; }
.sync-visual button:focus-visible { outline: 2px solid var(--green); outline-offset: 5px; }
.sync-scene { position: relative; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(140px, .65fr) minmax(0, .85fr); gap: 28px; align-items: center; padding: 42px 0 24px; }
.sync-connections { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.sync-connections path { fill: none; stroke: #9fd7b24d; stroke-width: 1.5; stroke-dasharray: 3 7; }
.sync-connections path { --flow-direction: normal; }
.sync-connections [data-sync-route="phone"], .sync-visual[data-origin="phone"] [data-sync-route="laptop"] { --flow-direction: reverse; }
.sync-visual[data-origin="phone"] [data-sync-route="phone"] { --flow-direction: normal; }
.sync-visual[data-phase="folder"][data-origin="laptop"] [data-sync-route="laptop"],
.sync-visual[data-phase="folder"][data-origin="phone"] [data-sync-route="phone"],
.sync-visual[data-phase="arriving"][data-origin="laptop"] [data-sync-route="phone"],
.sync-visual[data-phase="arriving"][data-origin="phone"] [data-sync-route="laptop"] {
  stroke: var(--green); animation: sync-flow 1s linear infinite;
  animation-direction: var(--flow-direction); filter: drop-shadow(0 0 5px #9fd7b288);
}
@keyframes sync-flow { to { stroke-dashoffset: -40; } }
.sync-client { position: relative; z-index: 1; min-width: 0; }
.sync-device-label { display: flex; align-items: center; gap: 7px; margin: 0 5px 12px; font-size: .73rem; color: var(--ink-2); }
.sync-device-label > span:last-child { margin-left: auto; color: var(--muted); font-size: .62rem; }
.sync-device-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px #9fd7b25c; }
.sync-laptop { aspect-ratio: 16 / 10; display: flex; flex-direction: column; container-type: inline-size; overflow: hidden; border: 1px solid #67706b88; border-radius: 11px 11px 4px 4px; background: #19191f; box-shadow: 0 20px 45px #0006, inset 0 1px #ffffff15; }
.sync-window-bar { height: 35px; display: flex; align-items: center; gap: 6px; padding: 0 11px; color: #c9c8ce; font-size: .64rem; border-bottom: 1px solid #ffffff0d; background: #131318; }
.sync-window-bar img, .sync-phone-app img { width: 15px; height: 15px; }
.sync-window-dots { margin-right: auto; font-size: 7px; letter-spacing: 3px; color: #77757f; }
.sync-window-menu { margin-left: auto; }
.sync-workspace { display: flex; min-height: 280px; }
.sync-mini-sidebar { display: flex; flex-direction: column; align-items: center; gap: 19px; padding: 19px 12px; background: #15151b; border-right: 1px solid #ffffff08; }
.sync-mini-sidebar svg { width: 18px; height: 18px; fill: none; stroke: #9897a4; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sync-mini-sidebar svg:first-child { stroke: #d1cadf; }
.sync-note { flex: 1; min-width: 0; padding: 22px; color: #ceccd6; }
.sync-note-path { color: #85828f; font-size: .58rem; letter-spacing: .01em; white-space: nowrap; }
.sync-note-path span { margin: 0 5px; color: #5d5b65; }
.sync-note h4 { margin: 16px 0 8px; color: #e6e3ec; font-size: 1.32rem; letter-spacing: -.04em; font-weight: 620; }
.sync-note-intro { font-size: .72rem; line-height: 1.65; color: #a09ca9; margin: 0 0 19px; max-width: 230px; }
.sync-task { display: flex; align-items: center; gap: 9px; margin: 9px -6px; padding: 3px 6px; border-radius: 5px; font-size: .76rem; line-height: 1.4; transition: background .35s, color .35s; }
.sync-check { display: grid; place-items: center; width: 15px; height: 15px; flex: 0 0 15px; border: 1px solid #9b96a6; border-radius: 50%; color: transparent; font-size: 10px; transition: background .25s, color .25s, border-color .25s; }
.sync-task--done > span:last-child { text-decoration: line-through; color: #807d8c; }
.sync-task--done .sync-check { color: #bfdacb; background: #9fd7b21b; border-color: #90bda5; }
.sync-task.is-changed { background: #9fd7b21a; }
.sync-note-link { display: inline-flex; gap: 6px; margin-top: 12px; padding: 3px 7px; border-radius: 5px; background: #c2b5e30a; color: #b5accc; font-size: .68rem; }
.sync-note-tags { display: flex; gap: 7px; margin-top: 12px; font-size: .64rem; color: #a4bfae; }
.sync-note-caret { width: 1px; height: 12px; background: #d4cce1; margin-top: 19px; opacity: .8; }
.sync-file-footer { display: flex; justify-content: space-between; padding: 6px 10px; border-top: 1px solid #ffffff08; font-size: .51rem; color: #88838f; }
.sync-laptop-base {
  position: relative; height: 16px; margin: 0 -14px;
  border-top: 1px solid #a5afa9;
  border-radius: 1px 1px 50% 50% / 1px 1px 12px 12px;
  background: linear-gradient(#818e86, #626e66 22%, #3d4941 28%, #29362d 72%, #18221c);
  box-shadow: inset 0 1px #d7e1da55, 0 10px 18px #0006;
}
.sync-laptop-base::before {
  content: ""; position: absolute; top: -1px; left: calc(50% - 30px);
  width: 60px; height: 5px; border-radius: 0 0 7px 7px;
  background: #27362d; box-shadow: inset 0 1px 2px #0006, 0 1px #c8d6cc44;
}
/* Keep the task being synced readable inside a landscape laptop screen. */
.sync-laptop .sync-window-bar { height: clamp(24px, 7cqw, 35px); flex-shrink: 0; }
.sync-laptop .sync-workspace { min-height: 0; flex: 1; overflow: hidden; }
.sync-laptop .sync-note { padding: 3cqw 4cqw; }
.sync-laptop .sync-note-path { font-size: clamp(7px, 2cqw, 9px); }
.sync-laptop .sync-note h4 { font-size: clamp(12px, 4.5cqw, 20px); margin: 2cqw 0; }
.sync-laptop .sync-note-intro, .sync-laptop .sync-note-caret { display: none; }
.sync-laptop .sync-task { font-size: clamp(9px, 2.8cqw, 12px); margin: 1.6cqw 0; padding: 2px 0; }
.sync-laptop .sync-check { width: clamp(10px, 3.5cqw, 15px); height: clamp(10px, 3.5cqw, 15px); flex-basis: clamp(10px, 3.5cqw, 15px); }
.sync-laptop .sync-note-link { font-size: clamp(8px, 2.5cqw, 11px); margin-top: 1.5cqw; }
.sync-laptop .sync-note-tags { font-size: clamp(8px, 2.3cqw, 10px); margin-top: 1.5cqw; }
.sync-laptop .sync-file-footer { flex-shrink: 0; padding: 4px 8px; font-size: clamp(6px, 1.8cqw, 8px); }
.sync-edit { display: flex; align-items: center; justify-content: center; gap: 9px; width: max-content; max-width: 100%; margin: 18px auto 0; border: 1px solid transparent; padding: 7px 10px; border-radius: 7px; color: var(--muted); font-size: .68rem; background: none; cursor: pointer; transition: color .2s, background .2s; }
.sync-edit:disabled { cursor: default; opacity: .5; }
.sync-vault { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; align-self: center; padding-bottom: 5px; }
.sync-vault-art { position: relative; isolation: isolate; width: 144px; height: 144px; display: grid; place-items: center; margin-bottom: 5px; }
.sync-vault-orbit { position: absolute; inset: -8px; border: 1px solid #9fd7b21a; border-radius: 50%; transition: border-color .5s, box-shadow .5s; }
.sync-vault-orbit--outer { inset: -23px; border-style: dashed; opacity: .5; }
.sync-vault-folder { position: absolute; width: 118px; height: 95px; bottom: 12px; transition: transform .5s; }
/* The papers sit in the pocket, between the folder's back and front. */
.sync-vault-folder--back { z-index: 1; filter: drop-shadow(0 12px 13px #0005); }
.sync-vault-folder--front { z-index: 4; filter: drop-shadow(0 2px 2px #0003); }
.sync-file-sheet { position: absolute; z-index: 2; width: 70px; height: 90px; top: 8px; left: 36px; border: 1px solid #b5c9c44a; border-radius: 6px; background: linear-gradient(150deg,#3d4a49,#202a29); transform: rotate(-13deg); box-shadow: 0 4px 12px #0004; }
.sync-file-sheet--front { z-index: 3; transform: rotate(9deg); left: 49px; top: 4px; padding: 9px; transition: transform .5s; }
.sync-file-sheet b { font-size: 9px; color: #c3decf; font-weight: 500; letter-spacing: .08em; }
.sync-file-sheet i { display: block; width: 38px; height: 2px; margin-top: 7px; background: #c3decf42; }
.sync-file-sheet i:last-child { width: 24px; }
.sync-vault-seal { position: absolute; z-index: 5; bottom: 8px; right: 7px; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; border: 3px solid #16201c; color: #183123; background: #acd8ba; font-size: 13px; box-shadow: 0 0 20px #9fd7b227; }
.sync-vault > strong { margin-top: 17px; font-size: .79rem; font-weight: 550; }
.sync-vault > code { margin-top: 5px; padding: 4px 8px; border: 1px solid #9fd7b214; border-radius: 5px; color: #bbd2c5; background: #111b17; font-size: .61rem; }
.sync-vault-provider { margin-top: 12px; font-size: .59rem; line-height: 1.8; color: var(--muted); }
.sync-vault-provider br::after { content: " "; }
.sync-visual[data-phase="folder"] .sync-vault-orbit { border-color: #9fd7b26b; box-shadow: 0 0 26px #9fd7b215; }
.sync-visual[data-phase="folder"] .sync-file-sheet--front { transform: rotate(4deg) translateY(-9px); }
.sync-phone { position: relative; width: min(100%, 240px); margin: 0 auto; min-height: 376px; border: 3px solid #68716d; border-radius: 26px; padding: 28px 0 23px; background: #19191f; box-shadow: 0 20px 45px #0005, inset 0 0 0 2px #070909; }
.sync-phone-camera { position: absolute; top: 8px; left: 50%; width: 50px; height: 11px; transform: translateX(-50%); border-radius: 99px; background: #09090d; }
.sync-phone-app { display: flex; align-items: center; gap: 6px; padding: 5px 15px 10px; font-size: .7rem; color: #d8d4df; border-bottom: 1px solid #ffffff0b; }
.sync-phone-app > span { margin-left: auto; }
.sync-phone .sync-note { padding: 17px 15px; }
.sync-phone .sync-note h4 { font-size: 1.1rem; margin-top: 13px; }
.sync-phone .sync-note-path { font-size: .5rem; }
.sync-phone .sync-note-intro { font-size: .63rem; }
.sync-phone .sync-task { font-size: .66rem; gap: 7px; }
.sync-phone .sync-note-link { font-size: .59rem; }
.sync-phone .sync-note-tags { font-size: .57rem; }
.sync-phone-home { position: absolute; bottom: 8px; width: 55px; height: 3px; border-radius: 4px; left: calc(50% - 27px); background: #928f98; }
.sync-story { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 40px; text-align: center; }
.sync-story p { margin: 0; color: #cddbd2; font-size: .83rem; }
.sync-story-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: 0 0 5px; }
.sync-proof { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 24px; margin: 22px 0 0; border-top: 1px solid #ffffff0b; padding-top: 19px; font-size: .69rem; color: var(--ink-2); }
.sync-proof span::before { content: "✓"; color: var(--green); padding-right: 7px; }
.sync-footnote { text-align: center; margin: 10px 0 0; color: var(--muted); font-size: .65rem; }
.sync-visual[data-paused="true"] .sync-connections path { animation-play-state: paused; }
@media (max-width: 1000px) {
  .sync-visual { padding: 26px; }
  .sync-scene { gap: 18px; grid-template-columns: minmax(0,1.3fr) 140px minmax(0,.85fr); }
  .sync-mini-sidebar { display: none; }
  .sync-note { padding: 18px; }
  .sync-device-label > span:last-child { display: none; }
}
@media (max-width: 760px) {
  .sync-visual { padding: 22px 18px; }
  .sync-scene { grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: 12px 20px; padding: 30px 0 18px; align-items: start; }
  .sync-client--laptop { grid-column: 1 / -1; }
  .sync-client--phone { grid-column: 2; grid-row: 2; }
  .sync-vault { grid-column: 1; grid-row: 2; margin: 16px 0 0; }
  .sync-vault-art { width: 120px; height: 120px; margin-bottom: 0; }
  .sync-vault-orbit--outer { inset: -15px; }
  .sync-vault-provider br { display: initial; }
  .sync-vault-provider { margin-top: 7px; }
  .sync-vault > strong { margin-top: 10px; }
  .sync-note h4 { font-size: 1.02rem; }
  .sync-note-intro, .sync-phone .sync-note-intro { display: none; }
  .sync-note { padding: 16px 12px; }
  .sync-task { font-size: .65rem; }
  .sync-note-path { white-space: normal; font-size: .49rem; }
  .sync-workspace { min-height: 257px; }
  .sync-phone { min-height: 299px; }
  .sync-phone .sync-note { padding: 14px 10px; }
  .sync-phone .sync-note h4 { font-size: .96rem; }
  .sync-phone .sync-task { font-size: .61rem; }
  .sync-note h4 { margin-bottom: 19px; }
  .sync-edit { font-size: .6rem; padding: 6px 0; gap: 3px; }
  .sync-file-footer > span:last-child, .sync-window-dots { display: none; }
  .sync-story p { font-size: .75rem; }
  .sync-proof { font-size: .62rem; gap: 6px 14px; }
  .sync-caption h3 { font-size: 1.25rem; }
}

.device-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.device-card {
  grid-column: span 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 16px 42px rgba(51, 65, 82, 0.08);
  display: grid;
  gap: 20px;
  align-content: space-between;
  min-height: 410px;
}

.device-card--wide {
  grid-column: span 6;
}

.device-card--phones {
  grid-template-columns: minmax(0, 1.08fr) minmax(190px, 0.92fr);
  align-items: center;
  align-content: center;
}

.device-stage {
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.device-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.device-frame-wrap {
  width: calc(var(--device-width) * var(--device-scale));
  height: calc(var(--device-height) * var(--device-scale));
}

.device-frame-wrap > .device {
  transform: scale(var(--device-scale));
  transform-origin: top left;
}

.device-section .device-screen {
  object-fit: fill;
}

.device-frame-wrap--iphone {
  --device-width: 428px;
  --device-height: 868px;
  --device-scale: 0.28;
}

.device-frame-wrap--android {
  --device-width: 404px;
  --device-height: 862px;
  --device-scale: 0.28;
}

.device-frame-wrap--macbook {
  --device-width: 740px;
  --device-height: 444px;
  --device-scale: 0.5;
}

.device-frame-wrap--windows-pc {
  --device-width: 640px;
  --device-height: 506px;
  --device-scale: 0.58;
}

.device-frame-wrap--windows-laptop {
  --device-width: 728px;
  --device-height: 424px;
  --device-scale: 0.52;
}

.device-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.device-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.vault-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.vault-copy h2 {
  margin: 0 0 18px;
  font-size: 3.35rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.clean-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(45, 139, 103, 0.12);
}

.vault-effect {
  position: relative;
  min-height: 540px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(159, 215, 178, 0.035)),
    #0e1010;
  box-shadow: var(--shadow);
}

.vault-effect::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(8, 9, 9, 0.12), transparent 58%, rgba(45, 139, 103, 0.06)),
    linear-gradient(24deg, rgba(211, 154, 62, 0.06), transparent 44%);
  opacity: 0.62;
}

.vault-effect-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.vault-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(390px, calc(100% - 56px));
  max-height: calc(100% - 56px);
  transform: translate(-50%, -50%);
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(17, 20, 19, 0.72);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.22),
    inset 0 9px 30px rgba(45, 83, 66, 0.07),
    0 20px 60px rgba(51, 65, 82, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  z-index: 2;
}

.vault-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px 8px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.vault-panel-header strong {
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 2px 8px;
}

.vault-card {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.vault-card:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 139, 103, 0.45);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 28px rgba(51, 65, 82, 0.1);
}

.vault-card__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  background: radial-gradient(
    260px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(45, 139, 103, 0.18),
    rgba(66, 111, 155, 0.1) 42%,
    transparent 72%
  );
}

.vault-card:hover .vault-card__glow {
  opacity: 1;
}

.vault-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 15px;
}

.vault-card__top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.vault-card__icon {
  display: block;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(45, 139, 103, 0.16));
}

.vault-card__name {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 780;
}

.vault-card__status {
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 0.72rem;
  font-weight: 760;
}

.vault-card__path,
.vault-card__meta {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 27px;
}

.feature-section {
  padding-top: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 16px 38px rgba(51, 65, 82, 0.07);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 880;
}

.feature-grid article:nth-child(2n) .feature-icon {
  color: var(--blue);
  background: #e2edf7;
}

.feature-grid article:nth-child(3n) .feature-icon {
  color: var(--rose);
  background: #f4e6e9;
}

.feature-note {
  margin-top: 9px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.pricing-section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto 64px;
  padding: 42px;
  scroll-margin-top: 88px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #111414;
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  justify-items: center;
  overflow: hidden;
}

.pricing-section > div {
  width: min(780px, 100%);
}

.pricing-section > div > p:last-child {
  margin-bottom: 0;
}

.pricing-section .eyebrow {
  margin-top: 0;
  color: #9de2c8;
}

.pricing-section h2 {
  color: var(--ink);
}

.pricing-section p {
  max-width: 780px;
  color: #c6d2dc;
}

.pricing-section .license-info-link { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

.pricing-section .waitlist-form {
  width: min(780px, 100%);
}

.pricing-section .waitlist-form button {
  background: var(--ink);
  color: #111414;
}

.pricing-section .waitlist-form button:hover {
  background: #eef5f0;
}

.site-footer {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 820;
}

/* Keep when refreshing this file from a design variant: legal pages link here. */
.footer-legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  :root {
    --content-left: 16px;
    --content-right: calc(100vw - 16px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    width: calc(100% - 32px);
    min-height: 390px;
    height: auto;
  }

  .hero-surface {
    background:
      linear-gradient(180deg, rgba(8, 9, 9, 0.02) 0%, rgba(8, 9, 9, 0.16) 100%);
  }

  .hero-content {
    width: min(100%, 640px);
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 4.5rem;
    -webkit-text-stroke: 1px rgba(247, 249, 247, 0.24);
    text-shadow:
      0 1px 1px rgba(255, 255, 255, 0.82),
      0 0 18px rgba(247, 249, 247, 0.52);
  }

  .hero-line {
    font-size: 1.6rem;
  }

  .hero-line span,
  .hero-copy span {
    padding: 0.04em 0.16em 0.08em;
    border-radius: 0.22em;
    background: rgba(8, 9, 9, 0.14);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.04);
  }

  .video-grid,
  .vault-section,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .device-showcase {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .device-card,
  .device-card--wide {
    grid-column: span 3;
  }

  .device-card--phones {
    grid-template-columns: 1fr;
  }

  .section,
  .hero,
  .pricing-section,
  .site-footer {
    width: calc(100% - 32px);
  }

  .section {
    padding: 68px 0;
  }

  .section h2,
  .pricing-section h2,
  .vault-copy h2 {
    font-size: 2.35rem;
  }

  .feature-video {
    grid-row: auto;
  }

  .vault-effect {
    min-height: 500px;
  }

  .pricing-section {
    padding: 30px;
  }

  .site-footer {
    flex-direction: column;
  }
}



@media (max-width: 560px) {
  .pricing-section {
    padding: 24px;
  }

  .waitlist-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-cta {
    padding: 9px 10px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .waitlist-form button {
    width: 100%;
  }

  .device-showcase {
    grid-template-columns: 1fr;
  }


  .device-card,
  .device-card--wide {
    grid-column: auto;
    min-height: 350px;
    padding: 18px;
  }

  .device-pair {
    gap: 12px;
  }

  .device-stage {
    min-height: 235px;
  }

  .device-frame-wrap--iphone {
    --device-scale: 0.25;
  }

  .device-frame-wrap--android {
    --device-scale: 0.25;
  }

  .device-frame-wrap--macbook {
    --device-scale: 0.36;
  }

  .device-frame-wrap--windows-pc {
    --device-scale: 0.42;
  }

  .device-frame-wrap--windows-laptop {
    --device-scale: 0.38;
  }

  .vault-panel {
    left: 50%;
    top: 50%;
    width: calc(100% - 32px);
    max-height: calc(100% - 32px);
    transform: translate(-50%, -50%);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Every demo is captured at 1024 square; preserve the complete recording. */
.video-tile video {
  object-fit: contain;
  background: #1b1a22;
}

.site-refined .video-group {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 25px;
  border-top: 1px solid var(--line-strong);
  scroll-margin-top: 100px;
}

.site-refined .video-group-title {
  position: sticky;
  top: 100px;
  margin: 0;
  padding-left: 15px;
  border-left: 2px solid var(--green);
  font-size: 1.18rem;
  line-height: 1.4;
  font-weight: 550;
}

.site-refined :is(.video-tile, .feature-grid article, .sync-visual, .pricing-section) {
  position: relative;
  border-radius: 20px;
  transition: transform 280ms ease, box-shadow 350ms ease;
}

.site-refined :is(.video-tile, .feature-grid article, .sync-visual, .pricing-section)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(340px circle at var(--card-light-x, 50%) var(--card-light-y, 50%), #c9ffe1e6, #9fd7b259 45%, transparent 80%);
  -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;
  opacity: 0;
  transition: opacity 450ms ease;
}

.site-refined :is(.video-tile, .feature-grid article, .sync-visual, .pricing-section)[data-card-hover]::after {
  opacity: 1;
}

.site-refined :is(.video-tile, .feature-grid article, .sync-visual, .pricing-section):focus-within::after {
  opacity: 1;
  background: linear-gradient(120deg, #baf6d888, #9fd7b22b);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .site-refined :is(.video-tile, .feature-grid article, .sync-visual, .pricing-section)[data-card-hover] {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px #0005;
  }
}

@media (max-width: 1000px) {
  .site-refined .video-group { grid-template-columns: 125px minmax(0, 1fr); gap: 20px; }
}

@media (max-width: 900px) {
  .site-refined .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-refined .video-group { display: block; }
  .site-refined .video-group-title { position: static; margin-bottom: 22px; }
}

@media (max-width: 560px) {
  .site-refined .video-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .site-refined :is(.video-tile, .feature-grid article, .sync-visual, .pricing-section),
  .site-refined :is(.video-tile, .feature-grid article, .sync-visual, .pricing-section)::after { transition: none; }
}

/* One featured demo keeps the same media size as its two-column neighbors. */
.video-tile.video-tile--feature { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.video-tile--feature > div { padding: clamp(24px, 4vw, 48px); }
.meeting-demo-points { display: grid; gap: 15px; margin: 26px 0; padding-left: 20px; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.video-tile .meeting-demo-note { font-size: .74rem; opacity: .75; }
@media (max-width: 680px) {
  .video-tile.video-tile--feature { grid-template-columns: minmax(0, 1fr); }
}

.waitlist-security { grid-column: 1 / -1; min-width: 0; }
