:root {
  --bg: hsl(45 38% 95%);
  --bg-soft: hsl(40 42% 92%);
  --surface: hsla(0 0% 100% / 0.74);
  --surface-strong: hsla(0 0% 100% / 0.88);
  --surface-tint: hsla(153 62% 95% / 0.88);
  --line: hsla(178 20% 18% / 0.12);
  --line-strong: hsla(178 24% 16% / 0.18);
  --text: hsl(188 26% 15%);
  --text-muted: hsl(186 12% 36%);
  --accent: hsl(158 52% 33%);
  --accent-soft: hsl(157 58% 90%);
  --accent-alt: hsl(201 48% 42%);
  --accent-alt-soft: hsl(200 70% 91%);
  --sand: hsl(38 62% 73%);
  --shadow: 0 28px 72px hsla(185 30% 16% / 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, hsla(154 48% 68% / 0.24), transparent 28%),
    radial-gradient(circle at top right, hsla(197 58% 76% / 0.2), transparent 34%),
    radial-gradient(circle at bottom left, hsla(39 60% 72% / 0.18), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.58;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -120px;
  right: -120px;
  background: hsla(152 48% 60% / 0.16);
}

body::after {
  bottom: -120px;
  left: -90px;
  background: hsla(201 58% 66% / 0.14);
}

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

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: hsla(0 0% 100% / 0.52);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid hsla(157 36% 22% / 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, hsla(154 64% 60% / 0.18), transparent 46%),
    linear-gradient(145deg, hsl(149 68% 64%), hsl(161 58% 46%));
  color: hsl(44 36% 97%);
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px hsla(0 0% 100% / 0.18);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand-copy span,
.site-nav a,
.button,
.proof-pill,
.slot-pill,
.signal-label,
.card-kicker,
.platform-kicker,
.fact-label,
.promise-index {
  font-size: 0.84rem;
}

.brand-copy span,
.site-nav,
.proof-copy,
.section-copy,
.screen-copy,
.capability-card p,
.promise-card p,
.flow-step p,
.stack-note p,
.footer-copy {
  color: var(--text-muted);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 180ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: hsl(40 30% 97%);
}

.button-secondary {
  border: 1px solid var(--line);
  background: hsla(0 0% 100% / 0.62);
}

main {
  display: grid;
  gap: 32px;
  padding-top: 32px;
}

main > * {
  animation: rise-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

main > *:nth-child(2) {
  animation-delay: 90ms;
}

main > *:nth-child(3) {
  animation-delay: 180ms;
}

main > *:nth-child(4) {
  animation-delay: 270ms;
}

main > *:nth-child(5) {
  animation-delay: 360ms;
}

.hero,
.signal-strip,
.section-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.hero,
.vault-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 32px;
}

.hero {
  padding: 56px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -96px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, hsla(156 70% 76% / 0.28), transparent 70%);
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.9rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.hero-text,
.section-copy,
.screen-copy,
.capability-card p,
.promise-card p,
.flow-step p,
.stack-note p,
.footer-copy {
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.02rem;
}

.hero-actions,
.footer-links,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.proof-pill,
.slot-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid hsla(157 24% 24% / 0.12);
  border-radius: 999px;
  background: hsla(0 0% 100% / 0.64);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  display: grid;
  gap: 20px;
  align-content: start;
}

.hero-stage,
.system-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.hero-stage {
  background:
    radial-gradient(circle at top right, hsla(200 82% 88% / 0.62), transparent 36%),
    linear-gradient(180deg, hsla(150 52% 96% / 0.94), hsla(0 0% 100% / 0.84));
}

.hero-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-shot-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr);
  align-items: end;
  gap: 18px;
}

.hero-shot,
.screen-shot {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid hsla(170 20% 20% / 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, hsla(0 0% 100% / 0.88), hsla(45 20% 96% / 0.94));
  box-shadow: 0 18px 40px hsla(185 28% 16% / 0.08);
}

.hero-shot-dark,
.screen-shot-dark {
  border-color: hsla(0 0% 100% / 0.06);
  background: linear-gradient(180deg, hsla(204 16% 20% / 0.98), hsla(204 18% 13% / 0.98));
}

.hero-shot-offset {
  transform: translateY(30px);
}

.hero-shot-image,
.screen-shot-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.hero-shot figcaption,
.screen-shot figcaption {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-shot-dark figcaption,
.screen-shot-dark figcaption {
  color: hsl(42 18% 82%);
}

.identity-card,
.share-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid hsla(170 20% 20% / 0.1);
  border-radius: 22px;
  background: hsla(0 0% 100% / 0.72);
}

.share-card {
  justify-self: end;
  width: min(100%, 260px);
  background: linear-gradient(180deg, hsla(188 48% 94% / 0.94), hsla(0 0% 100% / 0.82));
}

.identity-topline,
.share-topline,
.screen-head,
.system-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.identity-topline,
.share-topline,
.signal-label,
.card-kicker,
.platform-kicker,
.fact-label,
.promise-index {
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.identity-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, hsla(39 90% 88% / 0.8), transparent 36%),
    linear-gradient(135deg, hsl(152 72% 66%), hsl(166 56% 46%));
  color: hsl(40 30% 98%);
  box-shadow: 0 24px 48px hsla(159 42% 30% / 0.22);
}

.avatar-shell {
  width: 78px;
  height: 78px;
  padding: 8px;
  border-radius: 24px;
  background: hsla(0 0% 100% / 0.22);
}

.avatar-core {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle at 52% 38%, hsl(44 78% 92%) 0 18%, transparent 19%),
    radial-gradient(circle at 52% 74%, hsl(44 78% 92%) 0 26%, transparent 27%),
    linear-gradient(180deg, hsl(35 45% 24%), hsl(32 52% 18%));
}

.identity-copy {
  display: grid;
  gap: 8px;
}

.identity-name {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.94;
}

.identity-role {
  font-weight: 700;
}

.identity-bio {
  max-width: 34ch;
  color: hsla(0 0% 100% / 0.84);
  line-height: 1.6;
}

.identity-links,
.social-row,
.share-actions-preview,
.share-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.identity-links span,
.social-row span,
.share-actions-preview span,
.share-option-list span,
.theme-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.identity-links span {
  background: hsla(151 42% 92% / 0.8);
  color: var(--accent);
}

.hero-facts,
.signal-strip,
.screen-grid,
.capabilities-grid,
.promise-grid,
.flow-list {
  display: grid;
}

.hero-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-facts li {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: hsla(0 0% 100% / 0.58);
}

.hero-facts strong {
  font-size: 0.94rem;
  line-height: 1.5;
}

.signal-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
}

.signal-item {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: hsla(0 0% 100% / 0.64);
}

.signal-item strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.section-shell {
  padding: 40px;
}

.section-heading {
  display: grid;
  gap: 12px;
}

.narrow {
  max-width: 720px;
}

.screen-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
}

.screen-card,
.capability-card,
.promise-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: hsla(0 0% 100% / 0.68);
  transition:
    transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.screen-card:hover,
.screen-card:focus-within,
.capability-card:hover,
.capability-card:focus-within,
.promise-card:hover,
.promise-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.screen-card-large {
  grid-column: span 2;
}

.screen-frame {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 24px;
  border: 1px dashed hsla(172 20% 22% / 0.16);
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    linear-gradient(180deg, hsla(150 38% 95% / 0.92), hsla(0 0% 100% / 0.78)),
    var(--surface-tint);
}

.screen-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.phone-grid {
  display: grid;
  width: 100%;
  gap: 20px;
}

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

.phone-shell {
  display: grid;
  gap: 14px;
  width: min(100%, 300px);
  padding: 12px;
  border-radius: 28px;
  border: 1px solid hsla(181 18% 18% / 0.12);
  box-shadow: 0 24px 48px hsla(186 24% 14% / 0.12);
}

.phone-shell-light {
  background: linear-gradient(180deg, hsl(0 0% 100%), hsl(44 30% 96%));
}

.phone-shell-dark {
  background: linear-gradient(180deg, hsl(198 16% 22%), hsl(197 18% 12%));
  color: hsl(36 24% 92%);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-body {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: hsla(0 0% 100% / 0.72);
}

.phone-shell-dark .phone-body {
  background: hsla(0 0% 100% / 0.06);
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
}

.mini-card div {
  display: grid;
  gap: 3px;
}

.mini-card strong {
  font-size: 0.96rem;
}

.mini-card span,
.field-row span,
.search-row,
.vault-item span,
.vault-item em,
.phone-note {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.phone-shell-dark .mini-card span,
.phone-shell-dark .phone-note {
  color: hsla(38 26% 88% / 0.7);
}

.mini-card-warm {
  background:
    radial-gradient(circle at top left, hsla(39 82% 86% / 0.92), transparent 38%),
    linear-gradient(135deg, hsl(149 74% 84%), hsl(164 58% 72%));
}

.mini-card-dark {
  background: linear-gradient(135deg, hsla(160 36% 38% / 0.9), hsla(200 32% 32% / 0.88));
}

.mini-card-sky {
  background:
    radial-gradient(circle at top right, hsla(198 90% 88% / 0.84), transparent 40%),
    linear-gradient(135deg, hsl(190 70% 84%), hsl(155 68% 80%));
}

.mini-avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 36%, hsl(38 80% 92%) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 76%, hsl(38 80% 92%) 0 26%, transparent 27%),
    linear-gradient(180deg, hsl(29 46% 30%), hsl(24 48% 22%));
}

.mini-avatar-dark {
  background:
    radial-gradient(circle at 50% 36%, hsl(206 72% 90%) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 76%, hsl(206 72% 90%) 0 26%, transparent 27%),
    linear-gradient(180deg, hsl(220 18% 38%), hsl(220 16% 24%));
}

.mini-avatar-soft {
  background:
    radial-gradient(circle at 50% 36%, hsl(47 72% 92%) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 76%, hsl(47 72% 92%) 0 26%, transparent 27%),
    linear-gradient(180deg, hsl(188 34% 44%), hsl(188 34% 28%));
}

.field-stack,
.vault-list {
  display: grid;
  gap: 10px;
}

.field-row,
.vault-item,
.search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid hsla(178 16% 22% / 0.1);
  border-radius: 16px;
  background: hsla(0 0% 100% / 0.72);
}

.phone-shell-dark .field-row,
.phone-shell-dark .vault-item,
.phone-shell-dark .search-row {
  border-color: hsla(0 0% 100% / 0.08);
  background: hsla(0 0% 100% / 0.05);
}

.field-row strong {
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.theme-pill {
  border: 1px solid hsla(178 16% 22% / 0.1);
  background: hsla(0 0% 100% / 0.66);
  color: var(--text-muted);
}

.theme-pill-active {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: hsla(157 36% 22% / 0.12);
}

.phone-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: hsla(0 0% 100% / 0.08);
  line-height: 1.6;
}

.qr-shell {
  position: relative;
  width: 164px;
  aspect-ratio: 1;
  border-radius: 24px;
  background:
    linear-gradient(90deg, hsla(0 0% 100% / 0.84) 8%, transparent 8% 16%, hsla(0 0% 100% / 0.84) 16% 24%, transparent 24% 32%, hsla(0 0% 100% / 0.84) 32% 40%, transparent 40% 48%, hsla(0 0% 100% / 0.84) 48% 56%, transparent 56% 64%, hsla(0 0% 100% / 0.84) 64% 72%, transparent 72% 80%, hsla(0 0% 100% / 0.84) 80% 88%, transparent 88%),
    linear-gradient(hsla(0 0% 100% / 0.84) 8%, transparent 8% 16%, hsla(0 0% 100% / 0.84) 16% 24%, transparent 24% 32%, hsla(0 0% 100% / 0.84) 32% 40%, transparent 40% 48%, hsla(0 0% 100% / 0.84) 48% 56%, transparent 56% 64%, hsla(0 0% 100% / 0.84) 64% 72%, transparent 72% 80%, hsla(0 0% 100% / 0.84) 80% 88%, transparent 88%),
    linear-gradient(135deg, hsl(166 66% 18%), hsl(194 54% 24%));
  box-shadow: inset 0 0 0 10px hsla(0 0% 100% / 0.14);
}

.qr-shell-phone {
  margin: 0 auto;
  width: 180px;
}

.qr-corner,
.qr-dot {
  position: absolute;
  background: hsl(0 0% 100%);
}

.qr-corner {
  width: 42px;
  height: 42px;
  border: 9px solid hsl(0 0% 100%);
  background: transparent;
}

.qr-corner-tl {
  top: 14px;
  left: 14px;
}

.qr-corner-tr {
  top: 14px;
  right: 14px;
}

.qr-corner-bl {
  bottom: 14px;
  left: 14px;
}

.qr-dot-1 {
  top: 72px;
  left: 84px;
  width: 12px;
  height: 12px;
}

.qr-dot-2 {
  top: 88px;
  left: 110px;
  width: 18px;
  height: 18px;
}

.qr-dot-3 {
  top: 52px;
  left: 114px;
  width: 10px;
  height: 10px;
}

.qr-dot-4 {
  bottom: 48px;
  right: 34px;
  width: 12px;
  height: 12px;
}

.qr-dot-5 {
  bottom: 72px;
  right: 70px;
  width: 18px;
  height: 18px;
}

.qr-dot-6 {
  bottom: 28px;
  right: 86px;
  width: 10px;
  height: 10px;
}

.capabilities-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
}

.card-kicker,
.platform-kicker {
  margin-bottom: 4px;
}

.capability-card {
  align-content: start;
}

.vault-section {
  padding: 40px;
  background:
    radial-gradient(circle at left bottom, hsla(157 44% 78% / 0.18), transparent 34%),
    linear-gradient(180deg, hsla(0 0% 100% / 0.76), hsla(160 28% 95% / 0.84));
}

.vault-copy {
  display: grid;
  gap: 24px;
}

.promise-grid {
  gap: 16px;
}

.promise-index {
  color: var(--accent);
}

.platform-meta {
  max-width: 22ch;
  text-align: right;
}

.flow-list {
  gap: 16px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid hsla(176 18% 22% / 0.1);
  border-radius: 18px;
  background: hsla(0 0% 100% / 0.72);
}

.flow-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px hsla(157 44% 36% / 0.1);
}

.flow-dot-alt {
  background: var(--accent-alt);
  box-shadow: 0 0 0 6px hsla(201 44% 42% / 0.1);
}

.flow-dot-soft {
  background: var(--sand);
  box-shadow: 0 0 0 6px hsla(38 52% 54% / 0.12);
}

.stack-note {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid hsla(176 18% 22% / 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, hsla(0 0% 100% / 0.76), hsla(154 28% 94% / 0.82));
}

.platform-title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.cta-section {
  display: grid;
  gap: 24px;
  justify-items: start;
  background:
    radial-gradient(circle at top right, hsla(201 60% 80% / 0.22), transparent 28%),
    linear-gradient(180deg, hsla(0 0% 100% / 0.78), hsla(45 44% 94% / 0.9));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 8px 8px;
}

.footer-brand {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .hero,
  .vault-section {
    grid-template-columns: 1fr;
  }

  .hero,
  .section-shell,
  .vault-section {
    padding: 40px 28px;
  }

  .signal-strip,
  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screen-card-large {
    grid-column: span 1;
  }

  .hero-shot-stack,
  .screen-shot-grid,
  .phone-grid-double,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .share-card {
    justify-self: stretch;
    width: 100%;
  }

  .hero-shot-offset {
    transform: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(var(--max-width), calc(100% - 24px));
    padding-top: 12px;
  }

  .site-header,
  .site-footer,
  .screen-head,
  .system-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    border-radius: 24px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-button {
    width: 100%;
  }

  .signal-strip,
  .screen-grid,
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero,
  .section-shell,
  .vault-section {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .signal-strip {
    padding: 16px;
    border-radius: 24px;
  }

  .hero-stage,
  .system-card,
  .screen-card,
  .capability-card,
  .promise-card,
  .signal-item {
    padding: 20px;
  }

  .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .screen-frame {
    min-height: 220px;
    padding: 20px;
  }

  .phone-shell {
    width: 100%;
  }

  .proof-row {
    align-items: flex-start;
  }
}
