:root {
  color-scheme: dark;
  --ink: #0a0a0c;
  --ink-2: #111116;
  --ink-3: #18181f;
  --paper: #f5f1e8;
  --paper-2: #d9d4ca;
  --muted: #96949f;
  --line: rgba(255, 255, 255, 0.15);
  --violet: #8d72ff;
  --violet-soft: #b6a7ff;
  --mint: #62f6a4;
  --danger: #ff8d8d;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --display: clamp(3.2rem, 7.4vw, 7.4rem);
  --h2: clamp(2.5rem, 5.2vw, 5.5rem);
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.97;
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--mint);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  width: min(100%, var(--max));
  min-height: 84px;
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.brand-mark::before {
  left: 1px;
  transform: rotate(-6deg);
}

.brand-mark::after {
  right: 1px;
  color: var(--violet);
  transform: rotate(6deg);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.site-header nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--paper-2);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-header nav .nav-cta {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
}

.hero {
  width: min(100%, var(--max));
  min-height: calc(100svh - 84px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 112px) var(--gutter) clamp(72px, 9vw, 124px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--mint);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(98, 246, 164, 0.8);
}

.hero h1 {
  max-width: 10ch;
  font-size: var(--display);
}

.hero h1 em {
  color: var(--violet);
  font-style: normal;
}

.hero-lede {
  max-width: 630px;
  margin-top: 32px;
  color: var(--paper-2);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button-primary {
  background: var(--violet);
  color: #09090c;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--paper-2);
  text-underline-offset: 5px;
}

.hero-note {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.85rem;
}

.transfer-stage {
  min-height: 590px;
  position: relative;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.transfer-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 114, 255, 0.24), rgba(141, 114, 255, 0) 68%);
}

.phone-shell {
  width: 226px;
  height: 452px;
  position: absolute;
  left: 2%;
  top: 4%;
  padding: 9px;
  border: 2px solid #3c3c48;
  border-radius: 42px;
  background: #08080a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(-5deg);
}

.phone-top {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 76px;
  height: 21px;
  border-radius: 20px;
  background: #08080a;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 46px 22px 22px;
  border-radius: 33px;
  background:
    radial-gradient(circle at 20% 18%, rgba(98, 246, 164, 0.7), transparent 20%),
    radial-gradient(circle at 72% 72%, rgba(141, 114, 255, 0.95), transparent 40%),
    linear-gradient(145deg, #182235, #281d56 50%, #8d72ff);
}

.screen-time {
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
}

.screen-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.screen-grid span {
  aspect-ratio: 1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.capture-state {
  position: absolute;
  right: 14px;
  bottom: 18px;
  left: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(7, 7, 9, 0.82);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.capture-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.transfer-line {
  width: 46%;
  height: 1px;
  position: absolute;
  top: 46%;
  left: 30%;
  z-index: -1;
  background: linear-gradient(90deg, var(--violet), var(--mint));
  transform: rotate(8deg);
}

.packet {
  width: 13px;
  height: 13px;
  position: absolute;
  top: -6px;
  border-radius: 3px;
  background: var(--mint);
  box-shadow: 0 0 20px rgba(98, 246, 164, 0.9);
  animation: packet-travel 2.7s linear infinite;
}

.packet-two {
  animation-delay: -1.35s;
}

.clipboard-card {
  width: min(340px, 68%);
  position: absolute;
  right: 0;
  bottom: 8%;
  padding: 18px;
  border: 1px solid #3b3b46;
  border-radius: 20px;
  background: rgba(21, 21, 27, 0.95);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.desktop-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.75rem;
}

.desktop-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b4b55;
}

.desktop-bar span {
  margin-left: auto;
}

.hotkey {
  margin: 22px 0 16px;
  padding: 18px 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0d0d11;
}

kbd {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #484854;
  border-bottom-width: 3px;
  border-radius: 8px;
  background: #202027;
  color: white;
  font: 700 1.25rem/1 ui-sans-serif, system-ui, sans-serif;
}

.success-row {
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(98, 246, 164, 0.25);
  border-radius: 12px;
  background: rgba(98, 246, 164, 0.08);
}

.success-row > span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-weight: 900;
}

.success-row p {
  display: grid;
}

.success-row strong {
  font-size: 0.88rem;
}

.success-row small {
  color: var(--muted);
}

.setup-strip {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 22px var(--gutter) 56px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.setup-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.setup-strip span {
  color: var(--paper-2);
  white-space: nowrap;
}

.statement-section,
.flow-section,
.faq-section,
.privacy-note {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) var(--gutter);
}

.statement-section {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr);
  gap: 32px;
  background: var(--paper);
  color: var(--ink);
}

.statement-section h2,
.section-heading h2,
.principles h2,
.waitlist-copy h2 {
  font-size: var(--h2);
}

.statement-section h2 span {
  color: var(--violet);
}

.statement-section div > p {
  max-width: 650px;
  margin-top: 34px;
  color: #57535c;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.flow-section {
  padding-bottom: clamp(100px, 13vw, 180px);
}

.section-heading {
  margin-bottom: clamp(54px, 7vw, 94px);
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr);
  gap: 32px;
}

.section-heading h2 {
  max-width: 11ch;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  min-height: 210px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: minmax(60px, 0.18fr) minmax(100px, 0.23fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.step-number {
  align-self: start;
  color: var(--muted);
  font-size: 0.75rem;
}

.step-icon {
  color: var(--violet-soft);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
}

.steps h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.steps p {
  max-width: 590px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.principles {
  padding: clamp(90px, 12vw, 170px) max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 140px);
  background: var(--violet);
  color: #0a0910;
}

.principles .section-index {
  color: rgba(10, 9, 16, 0.6);
}

.principles-copy > p:last-child {
  max-width: 580px;
  margin-top: 32px;
  color: rgba(10, 9, 16, 0.75);
  font-size: 1.08rem;
}

.principle-list {
  border-top: 1px solid rgba(10, 9, 16, 0.3);
}

.principle-list > div {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  border-bottom: 1px solid rgba(10, 9, 16, 0.3);
}

.principle-list dt {
  font-size: 0.72rem;
  font-weight: 800;
}

.principle-list dd {
  display: grid;
  gap: 6px;
}

.principle-list strong {
  font-size: 1.25rem;
}

.principle-list span {
  color: rgba(10, 9, 16, 0.7);
}

.waitlist-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.waitlist-copy h2 {
  max-width: 10ch;
  margin-top: 24px;
}

.waitlist-copy > p:not(.section-index) {
  max-width: 570px;
  margin-top: 28px;
  color: var(--paper-2);
  font-size: 1.1rem;
}

.waitlist-copy ul {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  list-style: none;
}

.waitlist-copy li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--mint);
}

.waitlist-form {
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.form-heading {
  margin-bottom: 32px;
  display: grid;
  gap: 5px;
}

.form-heading span {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading strong {
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.waitlist-form > label:not(.consent-row) {
  margin: 18px 0 8px;
  color: var(--paper-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.waitlist-form label span {
  color: var(--muted);
  font-weight: 400;
}

.waitlist-form input[type="email"],
.waitlist-form input[type="text"],
.waitlist-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid #393943;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
}

.waitlist-form input::placeholder {
  color: #777580;
}

.consent-row {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--violet);
}

.consent-row a {
  color: var(--paper-2);
}

.button-submit {
  width: 100%;
  justify-content: space-between;
  background: var(--mint);
  color: var(--ink);
}

.button-submit:disabled {
  opacity: 0.62;
  cursor: wait;
}

.form-status {
  min-height: 22px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status[data-state="success"] {
  color: var(--mint);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

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

.faq-section {
  padding-top: 40px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 86px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--paper);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--violet);
  font-size: 2rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 0 28px;
  color: var(--muted);
}

.privacy-note {
  padding-top: 0;
  color: var(--muted);
}

.privacy-note h2 {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.privacy-note p {
  max-width: 900px;
  font-size: 0.85rem;
}

.privacy-note a {
  color: var(--paper-2);
}

.site-footer {
  padding: clamp(80px, 12vw, 160px) max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter))) 36px;
  background: var(--paper);
  color: var(--ink);
}

.site-footer > p {
  max-width: 13ch;
  font-size: clamp(2.6rem, 7vw, 6.7rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.site-footer > div {
  margin-top: clamp(74px, 10vw, 130px);
  padding-top: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(10, 10, 12, 0.22);
  color: #615d64;
  font-size: 0.78rem;
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

@keyframes packet-travel {
  from { left: 0; transform: rotate(-8deg) scale(0.7); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  to { left: calc(100% - 13px); transform: rotate(-8deg) scale(1); opacity: 0; }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 38px rgba(141, 114, 255, 0.24);
  }

  .site-header nav a:hover,
  .text-link:hover,
  .site-footer a:hover {
    color: var(--violet-soft);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .transfer-stage {
    min-height: 550px;
  }

  .transfer-stage::before {
    width: 430px;
    height: 430px;
  }

  .phone-shell {
    left: 7%;
  }

  .clipboard-card {
    right: 5%;
  }

  .principles,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .transfer-stage {
    min-height: 470px;
    margin-inline: -10px;
  }

  .phone-shell {
    width: 170px;
    height: 340px;
    left: 0;
    border-radius: 34px;
  }

  .phone-screen {
    padding: 38px 16px 16px;
    border-radius: 26px;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-grid span {
    border-radius: 10px;
  }

  .capture-state {
    right: 8px;
    bottom: 12px;
    left: 8px;
    font-size: 0.65rem;
  }

  .clipboard-card {
    width: 240px;
    right: 0;
    bottom: 2%;
    padding: 14px;
  }

  .hotkey {
    gap: 5px;
    margin-block: 16px 12px;
    padding: 13px 6px;
  }

  kbd {
    min-width: 34px;
    height: 36px;
    font-size: 1rem;
  }

  .success-row {
    padding: 10px;
  }

  .setup-strip,
  .statement-section,
  .section-heading {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .setup-strip div {
    justify-content: flex-start;
  }

  .statement-section {
    margin-inline: 12px;
    width: calc(100% - 24px);
    border-radius: 22px;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
  }

  .step-icon {
    grid-column: 2;
  }

  .steps li > div:last-child {
    grid-column: 2;
  }

  .site-footer > div {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .site-header nav .nav-cta {
    padding-inline: 13px;
    font-size: 0.8rem;
  }

  .clipboard-card {
    width: 220px;
  }

  .phone-shell {
    left: 0;
  }
}

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

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