:root {
  --ink: #101d2d;
  --ink-soft: #586577;
  --paper: #f8f7f3;
  --paper-deep: #eeece5;
  --white: #ffffff;
  --line: rgba(16, 29, 45, 0.14);
  --cobalt: #466cf2;
  --cobalt-soft: #dce4ff;
  --coral: #ff765e;
  --mint: #bce8d6;
  --yellow: #f5df83;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--paper);
  background: var(--cobalt);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 3px;
  width: 0;
  background: var(--coral);
  transform-origin: left;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1280px);
  padding: 30px 0;
  color: var(--paper);
  transform: translateX(-50%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.wordmark-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.brand-symbol {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(70, 108, 242, 0.24));
}

.wordmark-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wordmark-name {
  font-size: 15px;
  letter-spacing: 0.18em;
  line-height: 1;
}

.wordmark-sub {
  color: rgba(248, 247, 243, 0.47);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  gap: 35px;
  margin-left: 110px;
  color: rgba(248, 247, 243, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.desktop-nav a,
.header-cta,
.text-link,
.light-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid rgba(248, 247, 243, 0.28);
  border-radius: 100px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-cta:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.section-shell {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: max(32px, calc((100% - 1280px) / 2));
  padding-left: max(32px, calc((100% - 1280px) / 2));
  min-height: 830px;
  overflow: hidden;
  background:
    radial-gradient(700px 560px at 78% 42%, rgba(70, 108, 242, 0.2), transparent 70%),
    radial-gradient(520px 420px at 8% 88%, rgba(255, 118, 94, 0.1), transparent 72%),
    var(--ink);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  top: -500px;
  left: -350px;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(248, 247, 243, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(248, 247, 243, 0.02), 0 0 0 160px rgba(248, 247, 243, 0.014);
  content: "";
}

.hero::after {
  position: absolute;
  right: -20vw;
  bottom: -38vw;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 108, 242, 0.18), transparent 65%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  padding: 108px 0 42px;
}

.eyebrow,
.section-kicker,
.mini-label,
.feature-number,
.form-intro,
.footer-meta,
.floating-label,
.visual-caption,
.preview-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  color: var(--mint);
}

.eyebrow-dot,
.form-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 118, 94, 0.15);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.06em;
}

h1 {
  max-width: 660px;
  margin-bottom: 32px;
  font-size: clamp(60px, 7.6vw, 108px);
  font-weight: 700;
  line-height: 0.94;
}

h1 em,
h2 em {
  color: var(--coral);
  font-style: normal;
}

.hero-lede {
  max-width: 480px;
  margin-bottom: 37px;
  color: rgba(248, 247, 243, 0.69);
  font-size: 16px;
  line-height: 1.75;
}

.hero-superpower {
  max-width: 500px;
  margin: -16px 0 37px;
  padding-left: 14px;
  border-left: 2px solid var(--coral);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 53px;
  padding: 0 22px;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-primary {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 9px 24px rgba(255, 118, 94, 0.19);
}

.button-primary:hover {
  background: #ff947f;
  box-shadow: 0 12px 28px rgba(255, 118, 94, 0.29);
}

.text-link,
.light-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  color: rgba(248, 247, 243, 0.72);
}

.text-link:hover,
.light-link:hover {
  color: var(--coral);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 65px;
  color: rgba(248, 247, 243, 0.48);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.avatar-stack {
  display: flex;
  padding-left: 5px;
}

.avatar-stack i {
  display: block;
  width: 19px;
  height: 19px;
  margin-left: -5px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.avatar-stack i:nth-child(1) {
  background: var(--coral);
}

.avatar-stack i:nth-child(2) {
  background: var(--yellow);
}

.avatar-stack i:nth-child(3) {
  background: var(--mint);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  transform-style: preserve-3d;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
}

.visual-glow-one {
  top: 12%;
  left: 23%;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(70, 108, 242, 0.34), transparent 68%);
}

.visual-glow-two {
  right: 10%;
  bottom: 7%;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(255, 118, 94, 0.22), transparent 70%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 53%;
  border: 1px solid rgba(188, 232, 214, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-21deg);
}

.orbit-one {
  width: 490px;
  height: 232px;
  animation: orbitFloat 10s ease-in-out infinite;
}

.orbit-two {
  width: 620px;
  height: 300px;
  border-color: rgba(70, 108, 242, 0.21);
  transform: translate(-50%, -50%) rotate(28deg);
  animation: orbitFloat 13s ease-in-out -2s infinite reverse;
}

.orbit-three {
  width: 710px;
  height: 410px;
  border-color: rgba(255, 118, 94, 0.13);
  transform: translate(-50%, -50%) rotate(70deg);
  animation: orbitFloat 17s ease-in-out -5s infinite;
}

.orbit-node {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.06);
}

.node-blue {
  margin: -125px 0 0 -247px;
  background: var(--cobalt);
}

.node-coral {
  margin: 82px 0 0 228px;
  background: var(--coral);
}

.node-mint {
  margin: 46px 0 0 -292px;
  background: var(--mint);
}

.ownership-card {
  position: absolute;
  top: 50%;
  left: 52%;
  width: min(353px, 70%);
  padding: 24px;
  border: 1px solid rgba(248, 247, 243, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(43, 60, 82, 0.93), rgba(20, 33, 49, 0.96));
  box-shadow: 0 38px 75px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) rotate(-5deg);
  animation: cardHover 7s ease-in-out infinite;
}

.ownership-card-top,
.product-meta,
.ownership-card-bottom,
.action-header,
.window-top,
.transfer-surface-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-label {
  color: rgba(248, 247, 243, 0.47);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
}

.verified-badge span {
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  font-size: 8px;
}

.product-symbol {
  position: relative;
  height: 145px;
  margin: 23px 0 12px;
}

.product-screen {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 177px;
  height: 111px;
  border: 6px solid #aeb9c8;
  border-bottom-width: 10px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(135deg, #7789a1, #18283a 54%, #466cf2);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.27), inset 0 0 0 2px rgba(255, 255, 255, 0.27);
  transform: translateX(-50%);
}

.product-screen::after {
  position: absolute;
  right: 14px;
  bottom: 13px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  content: "";
}

.product-base {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 228px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(#d9e0e8, #7f8ca0);
  box-shadow: 0 7px 5px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%);
}

.product-brand {
  margin: 0 0 6px;
  color: rgba(248, 247, 243, 0.44);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.ownership-card h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.product-meta {
  color: rgba(248, 247, 243, 0.5);
  font-family: var(--mono);
  font-size: 9px;
}

.product-meta strong {
  color: var(--paper);
  font-weight: 500;
}

.card-divider {
  height: 1px;
  margin: 18px 0 14px;
  background: rgba(248, 247, 243, 0.12);
}

.ownership-card-bottom {
  color: rgba(248, 247, 243, 0.58);
  font-family: var(--mono);
  font-size: 9px;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(188, 232, 214, 0.1);
}

.card-arrow {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(248, 247, 243, 0.18);
  border-radius: 50%;
  color: var(--paper);
  font-size: 14px;
}

.floating-card {
  --float-scale: 1;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(248, 247, 243, 0.18);
  border-radius: 10px;
  background: rgba(24, 39, 57, 0.78);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  animation: floatCard 6s ease-in-out -2s infinite reverse;
}

.floating-card strong {
  display: block;
  margin-top: 4px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
}

.floating-label {
  color: rgba(248, 247, 243, 0.42);
  font-size: 7px;
}

.warranty-card {
  top: 19%;
  left: 1%;
}

.value-card {
  right: 1%;
  bottom: 22%;
  animation-delay: -4s;
}

.transfer-card {
  top: 67%;
  left: 5%;
  padding: 9px 13px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
}

.floating-icon,
.transfer-check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 17px;
}

.icon-cobalt {
  background: rgba(70, 108, 242, 0.22);
  color: #aebcff;
}

.icon-coral {
  background: rgba(255, 118, 94, 0.18);
  color: var(--coral);
}

.transfer-check {
  width: 21px;
  height: 21px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  font-size: 11px;
}

.visual-caption {
  position: absolute;
  right: 5%;
  bottom: 4%;
  display: flex;
  gap: 14px;
  color: rgba(248, 247, 243, 0.39);
}

.visual-caption span:first-child {
  color: var(--coral);
}

.marquee-strip {
  overflow: hidden;
  padding: 24px 0;
  background: var(--coral);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: max-content;
  animation: marquee 30s linear infinite;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.marquee-track b {
  margin: 0 36px;
  font-size: 17px;
  font-weight: 400;
}

.intro,
.feature-section,
.workflow-section,
.transfer-section,
.waitlist-section,
.pricing-section {
  padding-top: 160px;
  padding-bottom: 160px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cobalt);
}

.section-kicker .line {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section-kicker span:first-child {
  color: var(--coral);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 110px;
  align-items: end;
  margin-top: 55px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(45px, 6vw, 82px);
  font-weight: 600;
  line-height: 1.03;
}

.intro-copy {
  padding-bottom: 3px;
}

.intro-copy p,
.section-heading p,
.workflow-copy > p,
.transfer-copy > p,
.privacy-inner > div:nth-child(2) > p,
.waitlist-heading > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.copy-highlight {
  max-width: 360px;
  margin-top: 27px;
  padding-left: 16px;
  border-left: 2px solid var(--coral);
  color: var(--ink) !important;
  font-weight: 700;
}

.fragment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 83px;
}

.fragment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 177px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.fragment-muted {
  background: rgba(238, 236, 229, 0.5);
  color: var(--ink-soft);
}

.fragment-connected {
  overflow: hidden;
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--paper);
}

.fragment-icon {
  margin-bottom: auto;
  color: var(--coral);
  font-size: 27px;
}

.fragment-connected .fragment-icon {
  color: var(--mint);
}

.fragment-card strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.fragment-card > span:last-of-type {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.connection-line {
  position: absolute;
  top: 45px;
  left: -17px;
  width: 55px;
  height: 1px;
  background: var(--coral);
  transform: rotate(-30deg);
  transform-origin: left;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 54px;
}

.section-heading h2 {
  min-width: 510px;
}

.section-heading p {
  max-width: 335px;
  margin: 0 0 6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 78px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 28px;
  border-radius: 5px;
}

.feature-card-dark {
  background: var(--ink);
  color: var(--paper);
}

.feature-card-cream {
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.feature-card-blue {
  background: var(--cobalt);
  color: var(--paper);
}

.feature-number {
  opacity: 0.62;
}

.feature-art {
  position: relative;
  height: 255px;
  margin: 38px 0 40px;
}

.inbox-window {
  position: absolute;
  top: 26px;
  left: 10px;
  width: calc(100% - 22px);
  overflow: hidden;
  border: 1px solid rgba(248, 247, 243, 0.18);
  border-radius: 10px;
  background: #1d2e43;
  transform: rotate(-4deg);
  box-shadow: 17px 19px 0 rgba(70, 108, 242, 0.25);
}

.window-top {
  justify-content: flex-start;
  gap: 5px;
  padding: 13px;
  border-bottom: 1px solid rgba(248, 247, 243, 0.1);
  color: rgba(248, 247, 243, 0.44);
  font-family: var(--mono);
  font-size: 8px;
}

.window-top span {
  margin-left: 8px;
}

.window-top i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.window-top i:nth-child(2) {
  background: var(--yellow);
}

.window-top i:nth-child(3) {
  background: var(--mint);
}

.email-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 15px 13px;
  border-bottom: 1px solid rgba(248, 247, 243, 0.07);
  color: rgba(248, 247, 243, 0.42);
  font-family: var(--mono);
  font-size: 8px;
}

.email-row small {
  opacity: 0.65;
}

.email-active {
  color: var(--paper);
}

.email-dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--coral);
  border-radius: 50%;
}

.email-active .email-dot {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 118, 94, 0.14);
}

.scan-ring {
  position: absolute;
  top: 0;
  right: 15px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  opacity: 0.72;
  animation: ringPulse 3.2s ease-in-out infinite;
}

.scan-ring::before,
.scan-ring::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(188, 232, 214, 0.48);
  border-radius: inherit;
  content: "";
}

.scan-ring::after {
  inset: 31px;
}

.scan-label {
  position: absolute;
  right: 28px;
  bottom: 6px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.feature-card p {
  max-width: 320px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.feature-card-dark p,
.feature-card-blue p {
  color: rgba(248, 247, 243, 0.65);
}

.action-art {
  padding: 18px 0;
}

.action-header {
  margin-bottom: 17px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.action-header strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.action-row {
  display: grid;
  grid-template-columns: 35px 1fr 15px;
  gap: 11px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.action-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.action-row b {
  font-size: 11px;
}

.action-row small {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
}

.action-row > i {
  color: var(--ink-soft);
  font-style: normal;
  font-size: 18px;
}

.action-glyph {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  font-size: 20px;
}

.glyph-warranty {
  background: #f7c2b6;
  color: #d14c38;
}

.glyph-value {
  background: var(--cobalt-soft);
  color: var(--cobalt);
}

.glyph-manual {
  background: var(--mint);
  color: #26866b;
}

.pass-art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.pass-node {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(248, 247, 243, 0.55);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 8px;
  text-align: center;
}

.pass-node i {
  position: absolute;
  right: -4px;
  bottom: 1px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
}

.pass-buyer {
  border-color: var(--coral);
}

.pass-buyer i {
  background: var(--coral);
}

.pass-line {
  display: flex;
  gap: 5px;
  align-items: center;
  width: 55px;
}

.pass-line span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  animation: dotTravel 2.2s ease-in-out infinite;
}

.pass-line span:nth-child(2) {
  animation-delay: 0.25s;
}

.pass-line span:nth-child(3) {
  animation-delay: 0.5s;
}

.pass-receipt {
  position: absolute;
  bottom: 6px;
  left: 50%;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 78%;
  padding: 11px 13px;
  border: 1px solid rgba(248, 247, 243, 0.2);
  border-radius: 4px;
  background: rgba(16, 29, 45, 0.22);
  color: rgba(248, 247, 243, 0.65);
  font-family: var(--mono);
  font-size: 7px;
  transform: translateX(-50%) rotate(3deg);
}

.pass-receipt b {
  margin-left: auto;
  color: var(--mint);
  font-weight: 500;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(450px, 1.15fr);
  gap: 140px;
  align-items: center;
  background: var(--paper-deep);
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100% - 1280px) / 2));
  padding-left: max(32px, calc((100% - 1280px) / 2));
}

.workflow-copy h2 {
  max-width: 560px;
  margin: 51px 0 27px;
  font-size: clamp(43px, 5vw, 69px);
}

.workflow-copy > p {
  max-width: 420px;
  margin-bottom: 30px;
}

.workflow-copy .text-link {
  color: var(--ink);
}

.workflow-copy .text-link:hover {
  color: var(--cobalt);
}

.workflow-steps {
  position: relative;
  max-width: 620px;
  padding: 4px 0;
}

.workflow-line {
  position: absolute;
  top: 28px;
  bottom: 92px;
  left: 45px;
  width: 1px;
  background: rgba(16, 29, 45, 0.17);
}

.workflow-line span {
  display: block;
  height: 33.3%;
  background: var(--cobalt);
  transition: height 350ms ease;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 27px 38px 1fr;
  gap: 19px;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.step-index {
  color: rgba(16, 29, 45, 0.37);
  font-family: var(--mono);
  font-size: 9px;
}

.step-icon {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(16, 29, 45, 0.2);
  border-radius: 50%;
  background: var(--paper-deep);
  color: rgba(16, 29, 45, 0.53);
  font-size: 15px;
  transition: border 180ms ease, color 180ms ease, background 180ms ease;
}

.workflow-step.is-active .step-index {
  color: var(--cobalt);
}

.workflow-step.is-active .step-icon {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--paper);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-content strong {
  font-size: 14px;
}

.step-content small {
  color: var(--ink-soft);
  font-size: 11px;
}

.workflow-preview {
  margin: 23px 0 0 84px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 29, 45, 0.16);
  border-radius: 4px;
  background: rgba(248, 247, 243, 0.54);
}

.preview-eyebrow {
  color: var(--cobalt);
  font-size: 8px;
}

.workflow-preview p {
  min-height: 25px;
  margin: 13px 0 15px;
  font-size: 13px;
  font-weight: 700;
}

.preview-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(16, 29, 45, 0.12);
}

.preview-progress span {
  display: block;
  width: 33%;
  height: 100%;
  background: var(--coral);
  transition: width 350ms ease;
}

.transfer-section {
  display: grid;
  grid-template-columns: minmax(400px, 1.1fr) minmax(300px, 0.9fr);
  gap: 130px;
  align-items: center;
}

.transfer-visual {
  padding: 30px 10% 30px 3%;
}

.transfer-surface {
  position: relative;
  max-width: 540px;
  padding: 28px 27px;
  border: 1px solid rgba(16, 29, 45, 0.15);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 15px 15px 0 var(--cobalt-soft);
  transform: rotate(2deg);
}

.transfer-surface-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.secure-label {
  color: #308c73;
  font-size: 8px;
}

.history-item {
  display: grid;
  grid-template-columns: 15px 1fr 20px;
  gap: 13px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.history-marker {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(70, 108, 242, 0.1);
}

.history-marker-blue {
  background: var(--cobalt);
}

.history-marker-coral {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 118, 94, 0.1);
}

.history-marker-mint {
  background: #48b993;
  box-shadow: 0 0 0 5px rgba(72, 185, 147, 0.13);
}

.history-item span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.history-item b {
  font-size: 12px;
}

.history-item small {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
}

.history-item i {
  color: #48b993;
  font-size: 15px;
  font-style: normal;
}

.history-item-active {
  padding-bottom: 24px;
}

.transfer-share {
  display: grid;
  grid-template-columns: 43px 1fr 25px;
  gap: 13px;
  align-items: center;
  margin-top: 21px;
  padding: 14px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
}

.qr-pattern {
  width: 43px;
  height: 43px;
  background: conic-gradient(from 90deg, var(--paper) 25%, transparent 0 50%, var(--paper) 0 75%, transparent 0);
  background-size: 12px 12px;
  opacity: 0.86;
}

.transfer-share span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.transfer-share small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.transfer-share b {
  font-size: 11px;
  font-weight: 600;
}

.share-arrow {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(248, 247, 243, 0.3);
  border-radius: 50%;
}

.transfer-copy h2 {
  margin: 48px 0 28px;
  font-size: clamp(43px, 5vw, 69px);
}

.transfer-copy > p {
  max-width: 430px;
  margin-bottom: 28px;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
}

.trust-points i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--mint);
  color: #26866b;
  font-size: 10px;
  font-style: normal;
}

.privacy-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.privacy-inner {
  display: grid;
  grid-template-columns: 90px minmax(300px, 1fr) minmax(250px, 0.75fr);
  gap: 50px;
  align-items: start;
  padding-top: 130px;
  padding-bottom: 130px;
}

.privacy-emblem {
  display: grid;
  place-items: center;
  width: 63px;
  height: 63px;
  border: 1px solid rgba(188, 232, 214, 0.5);
  border-radius: 50%;
  color: var(--mint);
  font-size: 26px;
  animation: emblemPulse 4s ease-in-out infinite;
}

.section-kicker-light {
  color: var(--mint);
}

.privacy-inner h2 {
  margin: 48px 0 25px;
  font-size: clamp(43px, 5vw, 69px);
}

.privacy-inner h2 em {
  color: var(--mint);
}

.privacy-inner > div:nth-child(2) > p {
  max-width: 500px;
  color: rgba(248, 247, 243, 0.61);
}

.light-link {
  margin-top: 14px;
  color: var(--paper);
}

.privacy-list {
  margin-top: 74px;
}

.privacy-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 3px 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(248, 247, 243, 0.15);
}

.privacy-list span {
  grid-row: span 2;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 9px;
}

.privacy-list b {
  font-size: 12px;
}

.privacy-list small {
  color: rgba(248, 247, 243, 0.48);
  font-size: 10px;
  line-height: 1.55;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(400px, 1.2fr);
  gap: 140px;
  align-items: start;
}

.waitlist-heading h2 {
  margin: 49px 0 25px;
  font-size: clamp(53px, 6.5vw, 85px);
}

.waitlist-heading > p {
  max-width: 390px;
}

.waitlist-form {
  padding: 33px 35px 29px;
  border: 1px solid rgba(16, 29, 45, 0.17);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 15px 15px 0 var(--cobalt-soft);
}

.form-intro {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 34px;
  color: var(--cobalt);
  font-size: 9px;
}

.form-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  box-shadow: none;
}

.waitlist-form label {
  display: block;
  margin-bottom: 21px;
}

.waitlist-form label > span {
  display: block;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  border: 1px solid rgba(16, 29, 45, 0.17);
  border-radius: 3px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.waitlist-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.waitlist-form input::placeholder {
  color: rgba(16, 29, 45, 0.34);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(70, 108, 242, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 18px;
  margin: 15px 0 0;
  color: #26866b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.is-error {
  color: #c44d3a;
}

.form-footnote {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.6;
}

.pricing-section {
  border-top: 1px solid var(--line);
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}

.pricing-heading h2 {
  margin-top: 49px;
}

.pricing-heading > p {
  max-width: 310px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 72px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 34px;
  border-radius: 5px;
}

.pricing-card-basic {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 15px 15px 0 var(--cobalt-soft);
}

.pricing-card-pro {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 15px 15px 0 rgba(255, 118, 94, 0.28);
}

.pricing-card-label {
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.pricing-card-pro .pricing-card-label {
  color: var(--mint);
}

.pricing-card h3 {
  margin: 45px 0 6px;
  font-size: 32px;
  line-height: 1;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
}

.pricing-price strong {
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.pricing-price span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pricing-card-pro .pricing-price span {
  color: rgba(248, 247, 243, 0.55);
}

.pricing-description {
  max-width: 330px;
  min-height: 51px;
  margin: 27px 0 30px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.pricing-card-pro .pricing-description {
  color: rgba(248, 247, 243, 0.66);
}

.pricing-features {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  font-size: 11px;
  line-height: 1.5;
}

.pricing-features li > span:first-child {
  color: var(--cobalt);
  font-weight: 800;
}

.pricing-card-pro .pricing-features li > span:first-child {
  color: var(--coral);
}

.pricing-card-pro .pricing-features strong {
  color: var(--paper);
}

.button-pricing {
  width: 100%;
  margin-top: auto;
}

.button-pricing-basic {
  background: var(--cobalt);
  color: var(--paper);
  box-shadow: 0 9px 24px rgba(70, 108, 242, 0.2);
}

.button-pricing-basic:hover {
  background: #5e7df5;
  box-shadow: 0 12px 28px rgba(70, 108, 242, 0.3);
}

.button-pricing-pro {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 9px 24px rgba(255, 118, 94, 0.19);
}

.button-pricing-pro:hover {
  background: #ff947f;
  box-shadow: 0 12px 28px rgba(255, 118, 94, 0.29);
}

.fake-door-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 29, 45, 0.74);
  backdrop-filter: blur(9px);
}

.fake-door-backdrop[hidden] {
  display: none;
}

.fake-door-modal {
  position: relative;
  width: min(100%, 540px);
  padding: 42px;
  border: 1px solid rgba(16, 29, 45, 0.13);
  border-radius: 7px;
  background: var(--paper);
  box-shadow: 18px 18px 0 rgba(255, 118, 94, 0.45);
}

.fake-door-close {
  position: absolute;
  top: 15px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--paper-deep);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.fake-door-close:hover {
  background: var(--coral);
}

.fake-door-kicker {
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.fake-door-modal h2 {
  max-width: 430px;
  margin: 38px 0 20px;
  font-size: clamp(34px, 5vw, 52px);
}

.fake-door-modal > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.fake-door-form {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.fake-door-form input,
.fake-door-form select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(16, 29, 45, 0.17);
  border-radius: 3px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
}

.fake-door-form select {
  appearance: none;
  background-color: var(--white);
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  color: var(--ink-soft);
}

.fake-door-form input:focus,
.fake-door-form select:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(70, 108, 242, 0.12);
}

.fake-door-form .button {
  width: 100%;
}

.modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
}

.site-footer .wordmark {
  font-size: 14px;
}

.site-footer .wordmark-mark {
  width: 29px;
  height: 29px;
  flex-basis: 29px;
}

.site-footer .wordmark-sub {
  color: var(--ink-soft);
  font-size: 6px;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.footer-meta {
  color: var(--ink-soft);
  font-size: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cardHover {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-5deg);
  }
  50% {
    transform: translate(-50%, calc(-50% - 11px)) rotate(-3deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) scale(var(--float-scale));
  }
  50% {
    transform: translateY(-8px) scale(var(--float-scale));
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -11px;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.9;
  }
}

@keyframes dotTravel {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(14px);
    opacity: 1;
  }
}

@keyframes emblemPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(188, 232, 214, 0);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(188, 232, 214, 0.05);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-25%);
  }
}

@media (max-width: 1050px) {
  .desktop-nav {
    margin-left: 0;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    transform: scale(0.86);
    transform-origin: center right;
  }

  .intro-grid,
  .workflow-section,
  .transfer-section,
  .waitlist-section {
    gap: 70px;
  }

  .workflow-section {
    grid-template-columns: minmax(280px, 0.8fr) minmax(380px, 1.2fr);
  }
}

@media (max-width: 800px) {
  .site-header {
    width: calc(100% - 40px);
    padding-top: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 10px;
    white-space: nowrap;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .hero {
    display: block;
    min-height: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 165px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  h1 {
    font-size: clamp(54px, 15vw, 86px);
    line-height: 0.96;
  }

  .hero-lede {
    max-width: 430px;
  }

  .hero-note {
    margin-top: 40px;
  }

  .hero-visual {
    min-height: 500px;
    margin: 25px -20px -20px;
    transform: none;
    transform-origin: center top;
  }

  .fragment-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fragment-connected {
    grid-column: span 2;
  }

  .intro-grid,
  .section-heading,
  .workflow-section,
  .transfer-section,
  .privacy-inner,
  .waitlist-section {
    display: block;
  }

  .pricing-heading {
    display: block;
  }

  .pricing-heading > p {
    margin-top: 28px;
  }

  .pricing-grid {
    margin-top: 60px;
  }

  .intro-grid {
    margin-top: 45px;
  }

  .intro-copy {
    margin-top: 35px;
  }

  .section-heading p {
    margin-top: 28px;
  }

  .section-heading h2 {
    min-width: 0;
  }

  .workflow-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .workflow-steps {
    margin-top: 65px;
  }

  .transfer-visual {
    padding: 20px 4% 70px;
  }

  .transfer-copy h2,
  .privacy-inner h2,
  .waitlist-heading h2 {
    margin-top: 45px;
  }

  .privacy-emblem {
    margin-bottom: 52px;
  }

  .privacy-list {
    margin-top: 58px;
  }

  .waitlist-form {
    margin-top: 65px;
  }
}

@media (max-width: 520px) {
  .site-header {
    left: 0;
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    transform: none;
  }

  .wordmark {
    gap: 7px;
  }

  .wordmark-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .wordmark-name {
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .wordmark-sub {
    font-size: 6px;
  }

  .header-cta {
    display: inline-flex;
    flex: 0 0 auto;
    max-width: 78px;
    overflow: hidden;
    padding: 8px 9px;
    font-size: 9px;
  }

  .header-cta-label {
    font-size: 0;
  }

  .header-cta-label::after {
    content: "Tilmeld";
    font-size: 9px;
  }

  .hero-copy,
  h1,
  .hero-lede {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.6;
  }

  .eyebrow {
    max-width: 260px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-visual {
    min-height: 370px;
    margin: 28px -8px -30px;
    transform: none;
    transform-origin: center top;
  }

  .ownership-card {
    width: min(318px, calc(100% - 26px));
    padding: 19px;
  }

  .orbit-one {
    width: 330px;
    height: 162px;
  }

  .orbit-two {
    width: 410px;
    height: 198px;
  }

  .orbit-three {
    display: none;
  }

  .node-blue {
    margin: -85px 0 0 -166px;
  }

  .node-coral {
    margin: 55px 0 0 151px;
  }

  .node-mint {
    margin: 31px 0 0 -193px;
  }

  .floating-card,
  .visual-caption {
    display: none;
  }

  .product-symbol {
    height: 116px;
    margin: 15px 0 9px;
  }

  .product-screen {
    top: 9px;
    width: 150px;
    height: 94px;
  }

  .product-base {
    width: 194px;
  }

  .ownership-card h2 {
    font-size: 18px;
  }

  .intro,
  .feature-section,
  .workflow-section,
  .transfer-section,
  .waitlist-section,
  .pricing-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  h2 {
    font-size: 42px;
  }

  h1 {
    font-size: clamp(50px, 13.5vw, 78px);
  }

  h1 em {
    display: block;
  }

  .fragment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .fragment-connected {
    grid-column: auto;
  }

  .fragment-card {
    min-height: 132px;
    padding: 15px;
  }

  .fragment-icon {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .fragment-card strong {
    font-size: 13px;
  }

  .fragment-card > span:last-of-type {
    font-size: 8px;
    line-height: 1.4;
  }

  .fragment-connected .connection-line {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 24px;
  }

  .feature-art {
    height: 225px;
    margin: 30px 0 31px;
  }

  .workflow-line {
    left: 32px;
  }

  .workflow-step {
    grid-template-columns: 20px 32px 1fr;
    gap: 12px;
  }

  .step-icon {
    width: 32px;
    height: 32px;
  }

  .workflow-preview {
    margin-left: 64px;
  }

  .transfer-surface {
    padding: 21px 18px;
  }

  .transfer-share b {
    font-size: 10px;
  }

  .waitlist-form {
    margin-top: 48px;
    padding: 24px 18px 21px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 52px;
  }

  .pricing-card {
    min-height: 0;
    padding: 25px 18px 18px;
  }

  .pricing-card h3 {
    margin-top: 38px;
  }

  .pricing-description {
    min-height: 0;
  }

  .fake-door-modal {
    padding: 35px 20px 24px;
    box-shadow: 10px 10px 0 rgba(255, 118, 94, 0.45);
  }

  .fake-door-modal h2 {
    margin-top: 32px;
    font-size: 34px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    grid-row: 2;
    grid-column: span 2;
  }
}

@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;
  }
}
