@import url("https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #030406;
  --bg-soft: #07090d;
  --surface: #0b0e13;
  --surface-2: #11151c;
  --surface-3: #171c24;
  --text: #f2f5f7;
  --muted: #a6adb7;
  --faint: #747d8b;
  --line: rgba(242, 245, 247, 0.105);
  --brand: #d8fff0;
  --brand-soft: rgba(216, 255, 240, 0.09);
  --gold: #d7c38a;
  --danger: #ff8b8b;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.58);
  --radius: 8px;
  --max: 1160px;
  --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: "Syne", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #030406;
    --bg-soft: #07090d;
    --surface: #0b0e13;
    --surface-2: #11151c;
    --surface-3: #171c24;
    --text: #f2f5f7;
    --muted: #a6adb7;
    --faint: #747d8b;
    --line: rgba(242, 245, 247, 0.105);
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.58);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -12rem, rgba(255, 255, 255, 0.07), transparent 31rem),
    linear-gradient(180deg, #05070a 0%, var(--bg) 36rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body[data-theme="light"] {
  color-scheme: dark;
  --bg: #07080a;
  --bg-soft: #0c0f13;
  --surface: #11151a;
  --surface-2: #171c23;
  --surface-3: #202630;
  --text: #f4f6f8;
  --muted: #b0b6bf;
  --faint: #7f8792;
  --line: rgba(244, 246, 248, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] {
  color-scheme: dark;
  --bg: #030406;
  --bg-soft: #07090d;
  --surface: #0b0e13;
  --surface-2: #11151c;
  --surface-3: #171c24;
  --text: #f2f5f7;
  --muted: #a6adb7;
  --faint: #747d8b;
  --line: rgba(242, 245, 247, 0.105);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.58);
}

a { color: inherit; }

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

code, pre, kbd {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus { top: 16px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display-font);
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--line);
}

.brand span span { color: color-mix(in srgb, var(--brand) 78%, var(--text)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle,
.menu-toggle {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--text);
  cursor: pointer;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 850;
}

.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 17px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  color: var(--text);
}

.btn-small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 14px;
}

.hero {
  padding: 92px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: color-mix(in srgb, var(--brand) 68%, var(--muted));
  background: color-mix(in srgb, var(--surface-2) 76%, transparent);
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 10%, transparent);
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
}

h1 strong,
h2 strong {
  color: color-mix(in srgb, var(--brand) 72%, var(--text));
  font-weight: inherit;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-statement {
  max-width: 760px;
  color: var(--text);
  font-family: var(--display-font);
  font-size: clamp(28px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ── Store Badges ── */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  min-width: 178px;
}

.store-badge:hover {
  background: var(--surface-3);
  border-color: rgba(242,245,247,0.22);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

.store-badge-icon-only {
  min-width: unset;
  padding: 10px 14px;
  justify-content: center;
  align-items: center;
}

.store-badge-full {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 12px;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}

.store-badge-full-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(242,245,247,0.22);
  border-radius: 12px;
  overflow: hidden;
  padding: 2px;
}

.store-badge-full:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

.store-badge-full-img {
  display: block;
  height: 58px;
  width: auto;
}

.store-badge-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--text);
}

.store-badge-img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-badge-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.proof {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.proof b {
  display: block;
  font-family: var(--display-font);
  font-size: 22px;
  line-height: 1.1;
}

.proof span {
  display: block;
  margin-top: 4px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 750;
}

.mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
}

.mini-trust span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 9px;
  background: color-mix(in srgb, var(--surface) 64%, transparent);
}

.product-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--surface-2) 92%, transparent)),
    var(--surface);
  box-shadow: var(--shadow);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: auto -16% -20% -16%;
  height: 48%;
  background: linear-gradient(90deg, rgba(216, 255, 240, 0.08), rgba(255, 255, 255, 0.045));
  filter: blur(38px);
}

.security-illustration {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 10px;
  align-items: center;
  isolation: isolate;
  overflow: visible;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: cameraDrift 13s cubic-bezier(.45,0,.2,1) infinite;
}

.security-illustration::before {
  display: none;
}

.security-illustration::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand) 20%, var(--line)), transparent);
  transform: translateZ(-120px);
  opacity: 0.7;
}

.signal-grid {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -4%;
  height: 62%;
  border-radius: var(--radius);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.16;
  mask-image: linear-gradient(to bottom, transparent, black 24%, transparent 92%);
  transform: rotateX(66deg) translateY(70px) translateZ(-180px);
  transform-origin: center bottom;
  pointer-events: none;
  animation: gridTravel 10s linear infinite;
}

.depth-particles { display: none; }

.security-node {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg-soft) 86%, transparent);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), box-shadow 0.7s ease, border-color 0.7s ease;
}

.node-mac {
  transform: rotateY(20deg) rotateX(4deg) translateX(18px) translateZ(40px);
  animation: nodeFloatLeft 7.2s ease-in-out infinite;
}

.node-browser {
  transform: rotateY(-20deg) rotateX(4deg) translateX(-18px) translateZ(40px);
  animation: nodeFloatRight 7.2s ease-in-out infinite;
}

.security-illustration:hover .node-mac {
  transform: rotateY(15deg) rotateX(2deg) translateX(8px) translateZ(64px);
}

.security-illustration:hover .node-browser {
  transform: rotateY(-15deg) rotateX(2deg) translateX(-8px) translateZ(64px);
}

.security-node::after { display: none; }

.node-browser::after {
  animation-delay: 1.4s;
}

.node-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  border-bottom: 1px solid var(--line);
  padding: 0 13px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
}

.node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #69717d;
}

.node-dot:nth-child(2) { background: #858e9a; }
.node-dot:nth-child(3) { background: #b0b7c0; }

.node-body {
  position: relative;
  min-height: 290px;
  padding: 22px;
  transform-style: preserve-3d;
}

.node-mac .node-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.035) 48%, transparent 64%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.035), transparent 56%);
  opacity: 0;
  transform: translateY(-100%) translateZ(64px);
  animation: lockCurtain 8s cubic-bezier(.45,0,.2,1) infinite;
  pointer-events: none;
}

.app-stack {
  display: grid;
  gap: 10px;
}

.app-stack span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  color: var(--muted);
  font-weight: 800;
  transform: translateZ(22px);
  animation: appStackFocus 8s ease-in-out infinite;
}

.app-stack span:nth-child(2) { animation-delay: .24s; }
.app-stack span:nth-child(3) { animation-delay: .48s; }

.blur-lines {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 34px;
  display: grid;
  gap: 12px;
  filter: blur(7px);
  opacity: 0.62;
  animation: blurPulse 4.8s ease-in-out infinite;
  transform: translateZ(8px);
}

.blur-lines i {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
}

.blur-lines i:nth-child(2) { width: 68%; }
.blur-lines i:nth-child(3) { width: 84%; }

.lock-sheet {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(250px, calc(100% - 36px));
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  border-radius: var(--radius);
  padding: 16px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  --float-z: 58px;
  animation: lockSheetSequence 8s cubic-bezier(.45,0,.2,1) infinite;
  transform: translateZ(58px);
}

.lock-sheet strong,
.passkey-body strong {
  display: block;
  color: var(--text);
  font-family: var(--display-font);
  font-size: 20px;
  line-height: 1.18;
}

.lock-sheet small,
.passkey-body small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.security-core {
  position: relative;
  z-index: 3;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--surface-2) 88%, transparent), var(--bg));
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 24px 80px rgba(0,0,0,0.48);
  transform: translateZ(92px);
  animation: coreFloat 7.2s cubic-bezier(.45,0,.2,1) infinite;
}

.security-core svg {
  width: 54px;
  height: 54px;
  animation: coreSettle 3.8s ease-in-out infinite;
}

.security-core span:not(.core-ring) {
  position: absolute;
  bottom: 27px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.core-ring {
  position: absolute;
  inset: -16px;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
  border-radius: 50%;
  animation: ringPulse 3.8s ease-in-out infinite;
}

.security-path {
  position: absolute;
  top: 50%;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand) 42%, var(--line)), transparent);
  overflow: hidden;
  transform: translateZ(20px);
  opacity: .72;
  animation: beamBreath 4.4s ease-in-out infinite;
}

.security-path::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 42%, var(--muted));
  filter: none;
  animation: packetMove 3.6s ease-in-out infinite;
}

.path-one {
  left: 31%;
  right: 53%;
}

.path-two {
  left: 53%;
  right: 31%;
}

.path-two::after {
  animation-delay: 1.1s;
}

@keyframes cameraDrift {
  0%, 100% { transform: rotateX(0deg) rotateY(0deg) translateY(0); }
  25% { transform: rotateX(0.8deg) rotateY(-2.4deg) translateY(-4px); }
  50% { transform: rotateX(-0.6deg) rotateY(0deg) translateY(-10px); }
  75% { transform: rotateX(0.8deg) rotateY(2.4deg) translateY(-4px); }
}

@keyframes gridTravel {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 52px, 52px 0; }
}

@keyframes particleDrift {
  0% { transform: translate3d(0, 0, -120px) scale(.7); opacity: 0; }
  18% { opacity: .58; }
  72% { opacity: .38; }
  100% { transform: translate3d(var(--x), var(--y), var(--z)) scale(1.7); opacity: 0; }
}

.passkey-body {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 290px;
  text-align: center;
}

.fingerprint {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  --float-z: 40px;
  animation: floatCard 5.8s ease-in-out infinite reverse;
  transform: translateZ(40px);
}

.fingerprint svg {
  width: 48px;
  height: 48px;
}

.passkey-button {
  width: min(260px, 100%);
  margin-top: 18px;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  transform: translateZ(34px);
  animation: passkeyPress 8s cubic-bezier(.45,0,.2,1) infinite;
}

.auth-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 320px;
  height: 320px;
  border: 1px solid color-mix(in srgb, var(--brand) 9%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg) translateZ(-60px);
  opacity: .2;
  animation: authDisc 6.4s ease-in-out infinite;
  pointer-events: none;
}

.auth-beam::before,
.auth-beam::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid color-mix(in srgb, var(--brand) 8%, transparent);
  border-radius: 50%;
}

.auth-beam::after {
  inset: 68px;
}

@keyframes nodeFloatLeft {
  0%, 100% { transform: rotateY(23deg) rotateX(5deg) translateX(18px) translateZ(26px) translateY(0); box-shadow: 0 28px 80px rgba(0,0,0,.38); }
  35% { transform: rotateY(18deg) rotateX(2deg) translateX(8px) translateZ(72px) translateY(-18px); box-shadow: 0 42px 110px rgba(0,0,0,.5); }
  60% { transform: rotateY(20deg) rotateX(5deg) translateX(16px) translateZ(46px) translateY(-4px); }
}

@keyframes nodeFloatRight {
  0%, 100% { transform: rotateY(-23deg) rotateX(5deg) translateX(-18px) translateZ(26px) translateY(0); box-shadow: 0 28px 80px rgba(0,0,0,.38); }
  35% { transform: rotateY(-20deg) rotateX(5deg) translateX(-16px) translateZ(46px) translateY(-4px); }
  68% { transform: rotateY(-18deg) rotateX(2deg) translateX(-8px) translateZ(72px) translateY(-18px); box-shadow: 0 42px 110px rgba(0,0,0,.5); }
}

@keyframes coreFloat {
  0%, 100% { transform: translateZ(92px) translateY(0) rotateZ(0deg); }
  50% { transform: translateZ(128px) translateY(-14px) rotateZ(4deg); }
}

@keyframes scanSweep {
  0%, 42% { transform: translateX(-130%); opacity: 0; }
  52% { opacity: 1; }
  78%, 100% { transform: translateX(130%); opacity: 0; }
}

@keyframes lockCurtain {
  0%, 20% { opacity: 0; transform: translateY(-100%) translateZ(64px); }
  34% { opacity: 1; }
  52% { opacity: .45; transform: translateY(100%) translateZ(64px); }
  70%, 100% { opacity: 0; transform: translateY(100%) translateZ(64px); }
}

@keyframes appStackFocus {
  0%, 24%, 100% { border-color: var(--line); transform: translateZ(22px) translateX(0); color: var(--muted); }
  34%, 52% { border-color: color-mix(in srgb, var(--brand) 28%, var(--line)); transform: translateZ(36px) translateX(8px); color: var(--text); }
}

@keyframes lockSheetSequence {
  0%, 18%, 100% { transform: translateZ(44px) translateY(12px) scale(.96); opacity: .74; }
  32%, 64% { transform: translateZ(74px) translateY(-10px) scale(1); opacity: 1; }
  78% { transform: translateZ(58px) translateY(0) scale(.98); opacity: .9; }
}

@keyframes passkeyPress {
  0%, 54%, 100% { transform: translateZ(34px) scale(1); filter: none; }
  64% { transform: translateZ(48px) scale(.98); filter: brightness(1.08); }
  72% { transform: translateZ(58px) scale(1.03); filter: brightness(1.16); }
}

@keyframes beamBreath {
  0%, 100% { opacity: .36; filter: blur(0); }
  50% { opacity: .88; filter: blur(.4px); }
}

@keyframes authDisc {
  0%, 100% { transform: translate(-50%, -50%) rotateX(68deg) translateZ(-90px) scale(.82); opacity: .18; }
  50% { transform: translate(-50%, -50%) rotateX(68deg) translateZ(-40px) scale(1.05); opacity: .42; }
}

@keyframes blurPulse {
  0%, 100% { filter: blur(7px); opacity: 0.52; }
  50% { filter: blur(10px); opacity: 0.78; }
}

@keyframes floatCard {
  0%, 100% { transform: translateZ(var(--float-z, 0)) translateY(0); }
  50% { transform: translateZ(var(--float-z, 0)) translateY(-8px); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.24; }
  50% { transform: scale(1.08); opacity: 0.64; }
}

@keyframes coreGlow {
  0%, 100% { opacity: 0.78; filter: drop-shadow(0 0 0 transparent); }
  50% { opacity: 1; filter: drop-shadow(0 0 16px rgba(216, 255, 240, 0.2)); }
}

@keyframes packetMove {
  0% { left: -60px; opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { left: calc(100% + 10px); opacity: 0; }
}

.screen {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  border-bottom: 1px solid var(--line);
  padding: 0 12px;
}

.traffic {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5c626c;
}

.traffic:nth-child(2) { background: #737b86; }
.traffic:nth-child(3) { background: #9aa3ad; }

.screen-url {
  flex: 1;
  overflow: hidden;
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
  color: var(--faint);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-preview {
  padding: 22px;
  display: grid;
  gap: 13px;
}

.message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.message.right {
  flex-direction: row-reverse;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: color-mix(in srgb, var(--surface-3) 84%, transparent);
  color: color-mix(in srgb, var(--brand) 68%, var(--text));
  font-size: 12px;
  font-weight: 900;
}

.bubble {
  max-width: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--muted);
  font-size: 13px;
}

.bubble.blur {
  color: transparent;
  text-shadow: 0 0 12px color-mix(in srgb, var(--text) 75%, transparent);
  filter: blur(4px);
  user-select: none;
}

.bubble.clear {
  border-color: color-mix(in srgb, var(--brand) 26%, var(--line));
  color: var(--text);
  background: color-mix(in srgb, var(--surface-3) 72%, var(--surface));
}

.lock-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: var(--radius);
  padding: 16px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(16px);
}

.lock-card b {
  display: block;
  margin-bottom: 4px;
}

.lock-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.fake-input {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: var(--surface);
}

.matrix {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(130px, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.matrix > div {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.matrix > div:nth-child(4n) { border-right: 0; }
.matrix > div:nth-last-child(-n+4) { border-bottom: 0; }

.matrix .head {
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
  color: var(--text);
  font-family: var(--display-font);
  font-weight: 800;
}

.matrix .strong {
  color: var(--text);
  font-weight: 800;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.platform-strip span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 11px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.section.tight { padding: 48px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  font-family: var(--display-font);
  color: color-mix(in srgb, var(--brand) 62%, var(--muted));
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-top: 8px;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
}

.section-lead {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.card h3 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 860;
}

.card p,
.card li {
  color: var(--muted);
}

.card p { margin: 0; }

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
  color: color-mix(in srgb, var(--brand) 62%, var(--text));
  font-family: var(--display-font);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.media-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow);
}

.media-panel img,
.media-panel video {
  width: 100%;
  border-radius: 8px;
}

/* ── Passkey showcase ─────────────────────────────────────── */
.passkey-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.pk-phone {
  position: relative;
  z-index: 2;
  width: min(340px, 100%);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 120px rgba(0,0,0,0.72),
    0 4px 24px rgba(0,0,0,0.56);
  overflow: hidden;
  animation: pkFloat 6s ease-in-out infinite;
}

.pk-phone-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pk-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2e3138;
}

.pk-dot:nth-child(2) { background: #3a3f48; }
.pk-dot:nth-child(3) { background: #4e5560; }

.pk-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 28px 36px;
  text-align: center;
  background: #000;
}

/* Fingerprint ring */
/* ── pk-fp-outer: holds SVG ring + inner clipping div + checkmark ── */
.pk-fp-outer {
  position: relative;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}

/* SVG progress ring — rotated -90° so stroke begins at 12 o'clock */
.pk-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.pk-ring-track {
  stroke: rgba(255,255,255,0.1);
  stroke-width: 1.5;
  fill: none;
}

.pk-ring-prog {
  stroke: rgba(255,255,255,0.88);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  animation: pkRingDraw 5s cubic-bezier(0.4,0,0.2,1) infinite;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
}

/* Inner clipping container — beam is clipped to circle boundary */
.pk-fp-ring {
  position: absolute;
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
}

/* both SVG layers share base sizing */
.pk-fp-base,
.pk-fp-lit {
  position: absolute;
  width: 62px;
  height: 62px;
}

/* bright SVG wrapper — revealed top→bottom by clip-path */
.pk-fp-lit-wrap {
  position: absolute;
  width: 62px;
  height: 62px;
  clip-path: inset(0 0 100% 0);
  animation: pkScanReveal 5s cubic-bezier(0.4,0,0.2,1) infinite;
}

/* scan beam line */
.pk-scan-beam {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 30%, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.55) 70%, transparent 100%);
  border-radius: 1px;
  filter: blur(1.5px);
  top: 4%;
  opacity: 0;
  animation: pkBeamSweep 5s cubic-bezier(0.4,0,0.2,1) infinite;
  pointer-events: none;
}

/* Success checkmark — springs in at authenticated state */
.pk-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.6);
  animation: pkCheckPop 5s cubic-bezier(0.34,1.56,0.64,1) infinite;
}

.pk-check svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
}

/* Title */
.pk-title {
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* Subtitle */
.pk-sub {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.52);
  font-size: 14px;
  font-weight: 450;
  line-height: 1.5;
}

/* Status text sequence */
.pk-status-wrap {
  position: relative;
  height: 20px;
  margin-bottom: 24px;
}

.pk-st {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.3s;
}

.pk-st-idle  { color: rgba(255,255,255,0.38); animation: pkStIdle  5s ease-in-out infinite; }
.pk-st-scan  { color: rgba(255,255,255,0.65); animation: pkStScan  5s ease-in-out infinite; }
.pk-st-done  { color: rgba(255,255,255,0.90); animation: pkStDone  5s ease-in-out infinite; }

/* CTA button */
.pk-btn {
  width: min(260px, 100%);
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -0.01em;
  animation: pkBtnGlow 5s ease-in-out infinite;
}

/* Ambient glow behind the card */
.pk-glow {
  position: absolute;
  inset: 10% 15%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(216,255,240,0.07) 0%, transparent 72%);
  filter: blur(32px);
  pointer-events: none;
  animation: pkGlowPulse 6s ease-in-out infinite;
}

/* ── Keyframes ─── */

/* Card float */
@keyframes pkFloat {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50%       { transform: translateY(-14px) rotate(0.5deg); }
}

/* 5-second Apple Touch ID scan sequence */

/* Bright layer: revealed top→bottom then held, then reset */
@keyframes pkScanReveal {
  0%, 8%      { clip-path: inset(0 0 100% 0); }  /* idle: hidden */
  12%         { clip-path: inset(0 0 96% 0); }   /* starts scanning */
  46%         { clip-path: inset(0 0 0% 0); }    /* fully revealed */
  66%         { clip-path: inset(0 0 0% 0); }    /* hold (authenticated) */
  80%, 100%   { clip-path: inset(0 0 100% 0); }  /* reset */
}

/* Scan beam sweeps from top to bottom */
@keyframes pkBeamSweep {
  0%, 8%    { top: 5%;  opacity: 0; }
  12%       { top: 5%;  opacity: 1; }
  46%       { top: 92%; opacity: 0.7; }
  50%       { top: 92%; opacity: 0; }
  100%      { top: 92%; opacity: 0; }
}

/* SVG progress ring draws in sync with scan reveal */
@keyframes pkRingDraw {
  0%, 8%      { stroke-dashoffset: 364; opacity: 0.3; }
  12%         { stroke-dashoffset: 364; opacity: 1; }   /* scan starts */
  46%         { stroke-dashoffset: 0;   opacity: 1; }   /* fully drawn */
  66%         { stroke-dashoffset: 0;   opacity: 1; }   /* hold */
  80%         { stroke-dashoffset: 0;   opacity: 0; }   /* fade out before reset */
  82%, 100%   { stroke-dashoffset: 364; opacity: 0.3; }
}

/* Checkmark springs in at authenticated, then retreats */
@keyframes pkCheckPop {
  0%, 48%  { opacity: 0; transform: scale(0.6); }
  54%      { opacity: 1; transform: scale(1.05); }
  60%, 66% { opacity: 1; transform: scale(1); }
  74%      { opacity: 0; transform: scale(0.8); }
  80%,100% { opacity: 0; transform: scale(0.6); }
}

/* Status labels */
@keyframes pkStIdle {
  0%, 8%    { opacity: 1; }
  12%       { opacity: 0; }
  80%, 100% { opacity: 1; }
}
@keyframes pkStScan {
  0%, 10%   { opacity: 0; }
  14%       { opacity: 1; }
  44%       { opacity: 1; }
  48%       { opacity: 0; }
  100%      { opacity: 0; }
}
@keyframes pkStDone {
  0%, 46%   { opacity: 0; }
  52%       { opacity: 1; }
  68%       { opacity: 1; }
  78%       { opacity: 0; }
  100%      { opacity: 0; }
}

/* Button subtle glow at auth moment */
@keyframes pkBtnGlow {
  0%, 44%     { box-shadow: none; }
  52%, 64%    { box-shadow: 0 6px 32px rgba(255,255,255,0.22); }
  80%, 100%   { box-shadow: none; }
}

@keyframes pkGlowPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

.check-list,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 70%, var(--surface-3));
  box-shadow: inset 0 0 0 5px var(--surface);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 62%, var(--muted));
}

.quote-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.quote-card blockquote {
  margin: 0;
  color: var(--muted);
}

.quote-card footer {
  margin-top: auto;
  padding-top: 18px;
  color: var(--faint);
  font-size: 13px;
  font-weight: 800;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

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

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.doc-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.doc-sidebar {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.doc-sidebar a {
  display: block;
  border-radius: 7px;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.doc-sidebar a:hover { background: var(--surface-2); color: var(--text); }

.doc-content {
  min-width: 0;
}

.doc-section {
  margin-bottom: 56px;
  scroll-margin-top: 96px;
}

.doc-section h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.doc-section h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.doc-section p,
.doc-section li {
  color: var(--muted);
}

.doc-section a {
  color: color-mix(in srgb, var(--brand) 58%, var(--text));
  font-weight: 800;
}

.note {
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: var(--radius);
  padding: 14px 16px;
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
  color: var(--muted);
}

.warning {
  border-color: color-mix(in srgb, var(--gold) 38%, var(--line));
  background: color-mix(in srgb, var(--gold) 9%, transparent);
}

pre {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #020305;
  color: #edf3f5;
}

body[data-theme="light"] pre {
  background: #05070a;
  color: #f4f7f8;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  background: color-mix(in srgb, var(--surface-2) 90%, transparent);
  color: var(--text);
}

td { color: var(--muted); }
tr:last-child td { border-bottom: 0; }

.page-hero {
  padding: 76px 0 44px;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-3) 64%, transparent), color-mix(in srgb, var(--surface) 92%, transparent)),
    var(--surface);
}

.cta-band p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(120px, 1fr));
  gap: 26px;
}

.footer p {
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 14px;
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--faint);
}

.footer a {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

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

.copyright-line {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
}

.status-good {
  color: color-mix(in srgb, var(--brand) 62%, var(--text));
  font-weight: 900;
}

.timeline {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.timeline .card {
  position: relative;
  margin-bottom: 16px;
}

.timeline .card::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 24px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 62%, var(--surface-3));
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .doc-layout {
    grid-template-columns: 1fr;
  }

  .doc-sidebar {
    position: static;
  }

  .security-illustration {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
    background: transparent;
    animation: none;
  }

  .depth-particles,
  .auth-beam {
    display: none;
  }

  .security-core {
    width: 118px;
    height: 118px;
  }

  .security-path {
    display: none;
  }

  .node-mac,
  .node-browser,
  .security-illustration:hover .node-mac,
  .security-illustration:hover .node-browser {
    transform: none;
    animation: none;
  }

  .grid-3,
  .grid-4,
  .footer-grid,
  .proof-row,
  .matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .matrix > div,
  .matrix > div:nth-child(4n),
  .matrix > div:nth-last-child(-n+4) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, var(--max)); }

  .nav-inner { min-height: 64px; }

  .menu-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav[data-open="true"] .nav-links { display: flex; }

  .nav-links a { justify-content: center; }

  .nav-actions .btn-small { display: none; }

  .hero { padding: 56px 0 44px; }

  .product-stage { padding: 10px; }

  .security-illustration {
    padding: 0;
  }

  .node-body,
  .passkey-body {
    min-height: 240px;
  }

  .security-core {
    margin: 4px auto;
  }

  .lock-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .section { padding: 56px 0; }

  .grid-2,
  .grid-3,
  .grid-4,
  .proof-row,
  .footer-grid,
  .matrix {
    grid-template-columns: 1fr;
  }

  .matrix > div {
    border-right: 0 !important;
  }

  .cta-band { padding: 24px; }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
