:root {
  color-scheme: dark;
  --qeda-bg: #070a12;
  --qeda-bg-soft: #0a0d14;
  --qeda-surface: #171a26;
  --qeda-field: #212433;
  --qeda-card: rgba(255, 255, 255, .075);
  --qeda-card-strong: rgba(255, 255, 255, .12);
  --qeda-border: rgba(255, 255, 255, .14);
  --qeda-blue: #4f7cff;
  --qeda-blue-soft: #7ea0ff;
  --qeda-primary: #9e6bff;
  --qeda-primary-soft: #b49bff;
  --qeda-aqua: #00d1bd;
  --qeda-coral: #ff593d;
  --qeda-orange: #ff8f2e;
  --qeda-yellow: #ffc445;
  --qeda-going: #1fc763;
  --qeda-not-going: #ff8f2e;
  --qeda-text: #f8fafc;
  --qeda-muted: #a7b0c0;
  --qeda-soft: #6f7a8c;
  --qeda-cream: #fff7ed;
  --bg: var(--qeda-bg);
  --bg-soft: var(--qeda-bg-soft);
  --surface: var(--qeda-surface);
  --surface-2: var(--qeda-field);
  --cream: var(--qeda-cream);
  --ink: var(--qeda-text);
  --muted: rgba(167, 176, 192, .82);
  --quiet: rgba(167, 176, 192, .56);
  --line: var(--qeda-border);
  --green: var(--qeda-aqua);
  --green-deep: var(--qeda-going);
  --orange: var(--qeda-coral);
  --blue: var(--qeda-blue);
  --danger: #ff6f6f;
  --gradient-brand: linear-gradient(135deg, var(--qeda-blue), var(--qeda-primary));
  --gradient-social: linear-gradient(135deg, var(--qeda-primary), var(--qeda-coral));
  --shadow: 0 28px 90px rgba(0, 0, 0, .48);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1320px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 26% 9%, rgba(79, 124, 255, .28), transparent 31rem),
    radial-gradient(circle at 82% 6%, rgba(158, 107, 255, .2), transparent 34rem),
    radial-gradient(circle at 10% 44%, rgba(255, 89, 61, .08), transparent 24rem),
    linear-gradient(180deg, #070a12 0%, #090d18 38rem, #070a12 100%);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -8%, rgba(255,255,255,.08), transparent 22rem),
    linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.028) 12.1% 12.2%, transparent 12.3% 100%),
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 36rem);
  opacity: .7;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.visually-hidden {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.honeypot-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

:focus-visible {
  outline: 3px solid rgba(79,124,255,.72);
  outline-offset: 4px;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(79,124,255,.25), transparent 17rem),
    radial-gradient(circle at 52% 54%, rgba(158,107,255,.2), transparent 21rem),
    linear-gradient(180deg, #070a12, #04060b);
}

.intro-overlay[hidden] {
  display: none;
}

.intro-overlay::before {
  content: "";
  position: absolute;
  width: min(74vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.08), transparent 42%),
    conic-gradient(from 90deg, transparent, rgba(79,124,255,.32), transparent, rgba(158,107,255,.3), transparent);
  filter: blur(.2px);
  opacity: 0;
  animation: intro-orbit 1.58s var(--ease) both;
}

.intro-mark {
  position: relative;
  display: grid;
  place-items: center;
  gap: .72rem;
  color: var(--cream);
  text-align: center;
  transform-origin: center;
  animation: intro-mark 1.58s var(--ease) both;
}

.intro-mark img {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 25px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.16),
    0 28px 70px rgba(79,124,255,.32);
}

.intro-ring {
  position: absolute;
  top: -22px;
  width: 132px;
  height: 132px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,.24), transparent 2.3rem),
    linear-gradient(145deg, rgba(79,124,255,.32), rgba(158,107,255,.18), rgba(0,209,189,.12));
  filter: blur(10px);
  opacity: .85;
  animation: intro-pulse 1.58s var(--ease) both;
}

.intro-mark strong {
  position: relative;
  z-index: 2;
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  font-weight: 950;
  letter-spacing: -.055em;
}

.intro-mark p {
  position: relative;
  z-index: 2;
  margin: -.35rem 0 0;
  color: rgba(248,250,252,.62);
  font-size: .94rem;
  font-weight: 760;
}

.intro-overlay.is-leaving {
  animation: intro-away .34s var(--ease) forwards;
}

html.intro-running body {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 80;
  border-radius: 999px;
  padding: .75rem 1rem;
  background: var(--cream);
  color: var(--bg);
  font-weight: 850;
}

.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.scroll-line {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 70;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--qeda-blue), var(--qeda-primary), var(--qeda-coral));
}

.section,
.site-header,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 999px;
  padding: 8px 9px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(7, 10, 18, .72);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: max-content;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 .42rem 0 .34rem;
  font-weight: 950;
  letter-spacing: -.035em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 12px 32px rgba(79, 124, 255, .25);
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: .2rem;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 999px;
  padding: .22rem;
  background: rgba(255,255,255,.035);
  color: rgba(248,250,252,.68);
  font-size: .88rem;
  font-weight: 820;
}

.site-header nav a {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 .74rem;
  transition: background .24s var(--ease), color .24s var(--ease);
}

.site-header nav a:hover {
  background: rgba(255,255,255,.075);
  color: var(--cream);
}

.site-header a:hover,
.site-footer a:hover { color: var(--qeda-blue-soft); }

.nav-status {
  display: inline-grid;
  place-items: center;
  justify-self: center;
  min-height: 34px;
  border: 1px solid rgba(0,209,189,.2);
  border-radius: 999px;
  padding: 0 .9rem;
  background: rgba(0,209,189,.07);
  color: rgba(205,255,249,.78);
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 1.1rem;
  background: var(--gradient-brand);
  color: white;
  font-size: .9rem;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(79, 124, 255, .28);
  transition: transform .28s var(--ease), filter .28s var(--ease);
}

.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.08); }

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 9rem);
}

.hero {
  isolation: isolate;
  overflow: clip;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(330px, .86fr);
  grid-template-areas:
    "copy visual"
    "form visual";
  gap: clamp(1.6rem, 5vw, 5.4rem);
  align-items: start;
  min-height: calc(100dvh - 64px);
  padding-top: clamp(4.7rem, 8vw, 7rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 2.5rem 0 auto;
  z-index: -1;
  height: min(62vw, 760px);
  border-radius: 0 0 999px 999px;
  background:
    radial-gradient(circle at 52% 24%, rgba(79,124,255,.14), transparent 28rem),
    radial-gradient(circle at 74% 36%, rgba(158,107,255,.13), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 76%);
  filter: blur(.2px);
}

.hero-copy { grid-area: copy; }
.hero-stage { grid-area: visual; }
.hero-form { grid-area: form; }

.eyebrow {
  margin-bottom: .9rem;
  color: var(--qeda-aqua);
  font-size: .92rem;
  font-weight: 950;
  letter-spacing: -.01em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.05rem;
}

.hero-badges span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .5rem .72rem;
  background: rgba(255,255,255,.055);
  color: var(--qeda-muted);
  font-size: .82rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-badges span:first-child {
  border-color: rgba(79,124,255,.35);
  background: rgba(79,124,255,.12);
  color: #d8e2ff;
}

h1 {
  max-width: 10.7ch;
  margin-bottom: 1.1rem;
  color: var(--cream);
  font-size: clamp(4.4rem, 8.4vw, 7.8rem);
  line-height: .9;
  letter-spacing: -.082em;
}

h1 span {
  color: var(--qeda-blue-soft);
  text-shadow: 0 0 34px rgba(79,124,255,.34);
}

h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: clamp(2.65rem, 6.2vw, 6.4rem);
  line-height: .9;
  letter-spacing: -.065em;
}

h3 {
  margin-bottom: .55rem;
  color: var(--cream);
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.hero-lead,
.section-copy p,
.solution-panel p,
.donostia-copy p,
.final-copy p,
.beta-copy p {
  max-width: 61ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.42vw, 1.28rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 1.25rem;
  cursor: pointer;
  font-weight: 950;
  white-space: nowrap;
  transition: transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease);
}

.button.primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 18px 45px rgba(79, 124, 255, .28);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
  color: var(--cream);
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.985); }
.button[disabled] { cursor: wait; opacity: .62; transform: none; }

.trust-line {
  margin: 1.1rem 0 0;
  color: var(--quiet);
  font-size: 1rem;
  font-weight: 720;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  min-height: clamp(540px, 60vw, 720px);
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: min(82vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 42%, rgba(79,124,255,.36), transparent 30%),
    radial-gradient(circle at 68% 32%, rgba(158,107,255,.28), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(0,209,189,.18), transparent 29%);
  filter: blur(6px);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(78vw, 336px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 46px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.22), transparent 22%),
    #07080e;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  transition: transform .3s var(--ease);
}

.phone-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 3;
  width: 86px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05060a;
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  overflow: hidden;
  border-radius: 36px;
  padding: 3.05rem .9rem 1rem;
  background:
    radial-gradient(circle at 18% 2%, rgba(158,107,255,.32), transparent 9rem),
    radial-gradient(circle at 88% 28%, rgba(79,124,255,.22), transparent 13rem),
    linear-gradient(180deg, #070a12 0%, #080b13 52%, #05070d 100%);
}

.phone-top,
.plan-meta,
.squad-row,
.phone-list article,
.mini-card,
.signal,
.proof-strip span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(18px);
}

.phone-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: .44rem;
  border-radius: 999px;
  padding: .28rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 820;
  background: rgba(255,255,255,.045);
}

.phone-top span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 999px;
  color: rgba(248,250,252,.5);
}

.phone-top span.active {
  background: linear-gradient(135deg, rgba(158,107,255,.74), rgba(79,124,255,.26));
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.phone-top button,
.phone-plus,
.screen-status button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--qeda-primary), var(--qeda-blue));
  color: var(--cream);
  font-size: 1.35rem;
  font-weight: 920;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(158,107,255,.26);
  cursor: pointer;
  transition: transform .24s var(--ease), filter .24s var(--ease);
}

.phone-top button:hover,
.screen-status button:hover {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.08);
}

.phone-plus {
  cursor: default;
}

.demo-feedback {
  min-height: 1.25rem;
  margin: .62rem 0 0;
  color: rgba(205,255,249,.72);
  font-size: .78rem;
  font-weight: 850;
}

.demo-feedback:empty {
  display: none;
}

.demo-state-strip,
.demo-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  align-items: center;
}

.demo-state-strip span,
.demo-ribbon {
  width: fit-content;
  border: 1px solid rgba(126,160,255,.2);
  border-radius: 999px;
  padding: .36rem .58rem;
  background: rgba(79,124,255,.1);
  color: rgba(216,226,255,.86);
  font-size: .68rem;
  font-weight: 930;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.demo-state-strip span:last-child {
  border-color: rgba(0,209,189,.2);
  background: rgba(0,209,189,.08);
  color: rgba(205,255,249,.76);
}

.demo-view {
  display: grid;
  align-content: start;
  gap: .72rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: .35rem;
  scrollbar-width: none;
  animation: demo-view-in .28s var(--ease) both;
}

.demo-view::-webkit-scrollbar {
  display: none;
}

.phone-heading,
.phone-subheading,
.screen-title {
  max-width: none;
  margin: 1rem 0 .7rem;
  color: var(--cream);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -.045em;
}

.phone-subheading,
.screen-title.small {
  margin-top: 1.05rem;
  font-size: 1.12rem;
}

.live-plan {
  border-radius: 28px;
  padding: 1rem;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.22), transparent 6rem),
    radial-gradient(circle at 18% 74%, rgba(0,209,189,.18), transparent 7rem),
    linear-gradient(145deg, rgba(255,89,61,.72) 0%, rgba(158,107,255,.92) 38%, rgba(79,124,255,.5) 100%);
  color: var(--cream);
  box-shadow: 0 18px 44px rgba(79,124,255,.18), inset 0 1px 0 rgba(255,255,255,.18);
}

.live-plan-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .45rem;
  margin-bottom: .78rem;
}

.live-plan-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 .64rem;
  background: rgba(255,255,255,.18);
  color: rgba(248,250,252,.9);
  font-size: .77rem;
  font-weight: 950;
}

.live-plan-tags span:first-child {
  background: linear-gradient(135deg, var(--qeda-coral), rgba(255,143,46,.8));
  color: white;
}

.live-plan h2 {
  max-width: 10ch;
  margin-bottom: .72rem;
  color: var(--cream);
  font-size: 2.05rem;
  line-height: .9;
  letter-spacing: -.065em;
}

.plan-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  border: 0;
  padding: 0;
  background: transparent;
}

.plan-meta span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 16px;
  padding: .4rem .48rem;
  background: rgba(255,255,255,.13);
  color: rgba(248,250,252,.9);
  font-size: .78rem;
  font-weight: 850;
}

.known-groups {
  display: grid;
  place-items: center;
  min-height: 48px;
  margin-top: .55rem;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(0,209,189,.36), rgba(79,124,255,.18));
  color: rgba(248,250,252,.9);
  font-size: .82rem;
  font-weight: 930;
}

.live-plan-note {
  margin: .7rem 0 0;
  color: rgba(248,250,252,.68);
  font-size: .82rem;
  font-weight: 760;
}

.plan-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin-top: .78rem;
}

.plan-actions button,
.plan-actions b {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(5,7,13,.82);
  color: var(--cream);
  font-size: .86rem;
  font-weight: 950;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
}

.plan-actions button:hover {
  transform: translateY(-1px);
}

.plan-actions button:active {
  transform: translateY(0) scale(.98);
}

.plan-actions button.is-active[data-attendance="going"] {
  background: linear-gradient(135deg, rgba(31,199,99,.95), rgba(0,209,189,.72));
  box-shadow: 0 0 0 1px rgba(205,255,249,.35), 0 14px 34px rgba(31,199,99,.2);
}

.plan-actions button.is-active[data-attendance="notGoing"] {
  background: linear-gradient(135deg, rgba(255,143,46,.95), rgba(255,89,61,.8));
  box-shadow: 0 0 0 1px rgba(255,199,173,.35), 0 14px 34px rgba(255,89,61,.18);
}

.squad-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: 1rem;
  border-radius: 22px;
  padding: .8rem;
}

.squad-row div { display: flex; }

.avatar {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-left: -7px;
  border: 2px solid #111827;
  border-radius: 50%;
}

.avatar:first-child { margin-left: 0; }
.avatar.a { background: linear-gradient(135deg, var(--qeda-aqua), var(--qeda-blue)); }
.avatar.b { background: linear-gradient(135deg, var(--qeda-orange), var(--qeda-yellow)); }
.avatar.c { background: linear-gradient(135deg, var(--qeda-blue), var(--qeda-primary)); }

.squad-row p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
}

.phone-list {
  display: grid;
  gap: .75rem;
  margin-top: .85rem;
}

.attendance-list {
  display: grid;
  gap: .45rem;
  margin-top: .8rem;
}

.attendance-list p,
.attendance-list button {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-height: 30px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 0 .7rem;
  background: rgba(255,255,255,.055);
  color: rgba(248,250,252,.78);
  font-size: .78rem;
  font-weight: 820;
}

.attendance-list button {
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.attendance-list button:hover,
.attendance-list button:focus-visible {
  border-color: rgba(126,160,255,.34);
  background: rgba(255,255,255,.085);
  transform: translateX(2px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.going { background: var(--qeda-going); box-shadow: 0 0 0 4px rgba(31,199,99,.14); }
.status-dot.not-going { background: var(--qeda-not-going); box-shadow: 0 0 0 4px rgba(255,143,46,.14); }
.status-dot.pending { background: var(--qeda-soft); box-shadow: 0 0 0 4px rgba(111,122,140,.14); }

.phone-list article {
  border-radius: 20px;
  padding: .9rem;
}

.phone-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .2rem;
  margin-top: auto;
  border-radius: 999px;
  padding: .46rem;
  background: rgba(22,26,38,.88);
  box-shadow: 0 -12px 42px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.1);
}

.phone-nav span,
.phone-nav button {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(248,250,252,.58);
  font-size: .61rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}

.phone-nav span.active,
.phone-nav button.active {
  background: rgba(158,107,255,.18);
  color: var(--qeda-primary-soft);
  box-shadow: inset 0 0 0 1px rgba(180,155,255,.16), 0 8px 22px rgba(158,107,255,.14);
}

.phone-nav button:hover,
.phone-nav button:focus-visible {
  color: var(--cream);
  background: rgba(255,255,255,.075);
}

.phone-list span,
.mini-card span,
.signal span {
  display: block;
  margin-bottom: .28rem;
  color: var(--quiet);
  font-size: .73rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phone-list strong,
.mini-card strong,
.signal strong {
  display: block;
  color: var(--cream);
  line-height: 1.05;
}

.float-card {
  position: absolute;
  z-index: 4;
  max-width: 190px;
  box-shadow: 0 22px 50px oklch(7% 0.01 123 / .32);
  opacity: .92;
  transform: translateY(var(--parallax-y, 0));
  transition: transform .2s var(--ease);
}

.mini-card {
  border-radius: 20px;
  padding: .9rem;
}

.mini-card::before {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: .72rem;
  border-radius: 999px;
  background: var(--gradient-brand);
}

.group-card::before { background: var(--gradient-social); }
.going-card::before { background: linear-gradient(135deg, var(--qeda-aqua), var(--qeda-going)); }

.mini-card p {
  margin: .42rem 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.plan-card { left: 0; top: 13%; }
.group-card { right: -3%; top: 37%; }
.going-card { left: 4%; bottom: 12%; }

.waitlist-form {
  display: grid;
  gap: .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)),
    rgba(7, 10, 18, .48);
  box-shadow: 0 18px 58px rgba(0,0,0,.26);
  backdrop-filter: blur(22px);
}

.hero-form {
  grid-template-columns: 1fr;
  align-items: stretch;
  max-width: min(100%, 640px);
}

.hero-start-form .form-heading {
  grid-column: 1;
  grid-row: auto;
}

.hero-start-form .inline-field {
  grid-column: 1;
  grid-row: auto;
  min-width: 0;
}

.hero-start-form .button {
  grid-column: 1;
  grid-row: auto;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
}

.hero-start-form .form-status {
  grid-column: 1;
}

.hero-start-form .fine-print {
  grid-column: 1;
}

.form-heading {
  align-self: center;
}

.form-heading p {
  margin: 0 0 .25rem;
  color: var(--qeda-coral);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.field {
  display: grid;
  gap: .42rem;
}

label {
  color: var(--cream);
  font-size: .9rem;
  font-weight: 860;
}

label span { color: var(--quiet); }

input[type="email"],
input[type="text"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0 .95rem;
  background: rgba(255,255,255,.08);
  color: var(--ink);
  outline: none;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

input::placeholder { color: rgba(167,176,192,.46); }

input:focus {
  border-color: var(--qeda-blue);
  box-shadow: 0 0 0 4px rgba(79,124,255,.16);
  background: rgba(255,255,255,.11);
}

.consent {
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: 18px 1fr;
  gap: .65rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

.feature-status {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  margin-left: .35rem;
  border: 1px solid rgba(0,209,189,.22);
  border-radius: 999px;
  padding: 0 .48rem;
  background: rgba(0,209,189,.08);
  color: rgba(205,255,249,.86);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: 0;
  vertical-align: middle;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: .08rem 0 0;
  accent-color: var(--qeda-blue);
}

.form-status {
  grid-column: 2 / -1;
  min-height: 1.3rem;
  margin: 0;
  color: var(--quiet);
  font-size: .9rem;
}

.form-status.success { color: var(--qeda-going); }
.form-status.error { color: var(--danger); }

.fine-print {
  grid-column: 1 / -1;
  margin: -.25rem 0 0;
  color: var(--quiet);
  font-size: .9rem;
}

.brand-moment {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 2.8rem);
  overflow: clip;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.brand-moment::before {
  content: "";
  position: absolute;
  inset: 0;
  border-block: 1px solid rgba(255,255,255,.085);
  background:
    radial-gradient(circle at 16% 38%, rgba(0,209,189,.08), transparent 18rem),
    radial-gradient(circle at 86% 56%, rgba(158,107,255,.1), transparent 18rem),
    linear-gradient(90deg, transparent, rgba(255,255,255,.035), transparent);
  pointer-events: none;
}

.brand-moment-copy {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.brand-moment-copy p {
  margin-bottom: .55rem;
  color: rgba(248,250,252,.58);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 760;
}

.brand-moment-copy h2 {
  max-width: 11ch;
  margin: 0 auto;
  font-size: clamp(3.5rem, 8.8vw, 8.2rem);
}

.moment-line {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(2rem, 1fr) auto minmax(2rem, 1fr) auto minmax(2rem, 1fr) auto;
  align-items: center;
  width: min(100%, 960px);
  margin-inline: auto;
  color: rgba(248,250,252,.68);
}

.moment-line span {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 0 .85rem;
  background: rgba(255,255,255,.055);
  font-size: .88rem;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.moment-line i {
  height: 1px;
  background: linear-gradient(90deg, rgba(79,124,255,.1), rgba(126,160,255,.54), rgba(158,107,255,.1));
}

.product-screens {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(280px, .78fr);
  gap: .9rem clamp(1.4rem, 5vw, 4rem);
  align-items: end;
}

.product-intro .eyebrow {
  grid-column: 1 / -1;
}

.product-intro h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.product-intro p:last-child {
  max-width: 54ch;
  margin-bottom: .24rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.52;
}

.screen-wall {
  display: grid;
  grid-template-columns: 1.08fr .76fr .76fr;
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(.9rem, 1.5vw, 1.15rem);
  align-items: stretch;
}

.screen-figure {
  position: relative;
  display: grid;
  gap: .9rem;
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: clamp(.78rem, 1.8vw, 1.1rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)),
    rgba(7,10,18,.42);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  overflow: hidden;
}

.screen-figure::before {
  content: "";
  position: absolute;
  inset: auto -12% -22% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(79,124,255,.16);
  filter: blur(36px);
  pointer-events: none;
}

.main-screen {
  grid-row: span 2;
}

.detail-screen-wrap {
  transform: translateY(2.6rem);
}

.mural-screen-wrap {
  grid-column: span 2;
}

.screen-figure figcaption {
  position: relative;
  margin: 0;
  color: rgba(248,250,252,.76);
  font-size: .95rem;
  font-weight: 850;
}

.app-screen {
  position: relative;
  display: grid;
  align-content: start;
  gap: .78rem;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 31px;
  padding: 1rem;
  background:
    radial-gradient(circle at 16% 4%, rgba(158,107,255,.24), transparent 10rem),
    radial-gradient(circle at 88% 18%, rgba(79,124,255,.18), transparent 12rem),
    linear-gradient(180deg, #070a12, #080b13 78%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.main-screen .app-screen {
  min-height: 640px;
}

.mural-screen {
  min-height: 310px;
}

.screen-status {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: .4rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  padding: .28rem;
  background: rgba(255,255,255,.05);
}

.screen-status span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  color: var(--quiet);
  font-size: .76rem;
  font-weight: 950;
}

.screen-status span.active {
  background: linear-gradient(135deg, rgba(158,107,255,.74), rgba(79,124,255,.24));
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

.screen-status strong {
  justify-self: end;
  color: var(--cream);
  font-size: .82rem;
}

.detail-screen .screen-status,
.squad-screen .screen-status,
.mural-screen .screen-status {
  grid-template-columns: auto 1fr;
  padding: .62rem .72rem;
}

.detail-screen .screen-status span,
.squad-screen .screen-status span,
.mural-screen .screen-status span {
  display: block;
  min-height: auto;
}

.feed-plan,
.feed-list article,
.attendance-panel,
.member-list p,
.squad-card-product,
.chat-thread p,
.momentum-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.065);
}

.feed-plan.featured {
  display: grid;
  gap: .72rem;
  min-height: 290px;
  padding: 1rem;
  background:
    radial-gradient(circle at 78% 16%, rgba(255,255,255,.2), transparent 6rem),
    radial-gradient(circle at 18% 75%, rgba(0,209,189,.17), transparent 7rem),
    linear-gradient(145deg, rgba(255,89,61,.72) 0%, rgba(158,107,255,.92) 40%, rgba(79,124,255,.5) 100%);
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.feed-plan h3 {
  max-width: 10ch;
  margin: .7rem 0 .52rem;
  color: var(--cream);
  font-size: clamp(2rem, 4.4vw, 3.55rem);
  line-height: .88;
}

.feed-plan p,
.feed-list p,
.detail-hero p,
.attendance-panel p,
.squad-card-product p,
.chat-thread p,
.momentum-card p {
  margin: 0;
  color: rgba(248,250,252,.62);
  line-height: 1.35;
}

.feed-plan.featured p {
  color: rgba(248,250,252,.7);
  font-weight: 760;
}

.featured-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.featured-stats span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 17px;
  background: rgba(255,255,255,.14);
  color: rgba(248,250,252,.88);
  font-size: .8rem;
  font-weight: 920;
}

.feed-list {
  display: grid;
  gap: .62rem;
}

.feed-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .18rem .7rem;
  padding: .78rem;
}

.feed-list article::before {
  content: "";
  grid-row: span 3;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255,255,255,.75), transparent 1.2rem),
    linear-gradient(135deg, rgba(158,107,255,.95), rgba(0,209,189,.72));
}

.feed-list span,
.detail-hero span,
.momentum-card span {
  color: var(--qeda-aqua);
  font-size: .74rem;
  font-weight: 930;
}

.feed-list strong,
.attendance-panel strong,
.squad-card-product b,
.chat-thread strong,
.momentum-card strong {
  color: var(--cream);
}

.app-bottom-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .12rem;
  margin-top: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .42rem;
  background: rgba(22,26,38,.92);
  box-shadow: 0 -10px 38px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.1);
}

.app-bottom-nav span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  color: rgba(248,250,252,.58);
  font-size: .62rem;
  font-weight: 900;
}

.app-bottom-nav span.active {
  background: rgba(158,107,255,.18);
  color: var(--qeda-primary-soft);
}

.detail-hero {
  display: grid;
  align-content: end;
  min-height: 172px;
  border-radius: 24px;
  padding: 1rem;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,196,69,.3), transparent 6rem),
    radial-gradient(circle at 84% 20%, rgba(255,89,61,.22), transparent 7rem),
    linear-gradient(145deg, rgba(79,124,255,.26), rgba(158,107,255,.16));
}

.attendance-panel,
.squad-card-product,
.momentum-card {
  padding: .9rem;
}

.member-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.member-list p {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-height: 36px;
  padding: 0 .7rem;
  color: rgba(248,250,252,.78);
  font-size: .82rem;
  font-weight: 820;
}

.chat-thread {
  display: grid;
  gap: .55rem;
}

.chat-thread p {
  padding: .72rem;
}

.chat-thread .system-msg {
  color: rgba(248,250,252,.54);
}

.friend-squads {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.friend-squads span {
  border: 1px solid rgba(158,107,255,.24);
  border-radius: 999px;
  padding: .5rem .66rem;
  background: rgba(158,107,255,.1);
  color: #dacfff;
  font-size: .78rem;
  font-weight: 880;
}

.mural-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  grid-auto-rows: 78px;
  gap: .55rem;
}

.mural-grid span {
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.18), transparent 4rem),
    linear-gradient(145deg, rgba(79,124,255,.34), rgba(158,107,255,.18));
}

.mural-grid span:nth-child(1) {
  grid-row: span 2;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,196,69,.28), transparent 5rem),
    linear-gradient(145deg, rgba(255,89,61,.28), rgba(158,107,255,.18));
}

.mural-grid span:nth-child(4) {
  grid-column: span 2;
  background:
    radial-gradient(circle at 30% 24%, rgba(0,209,189,.22), transparent 5rem),
    linear-gradient(145deg, rgba(79,124,255,.3), rgba(0,209,189,.14));
}

.section-copy {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(1.4rem, 5vw, 4.6rem);
  align-items: end;
}

.section-copy.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-copy.centered h2 {
  margin-inline: auto;
}

.chaos-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 1rem;
  margin-top: clamp(1.7rem, 4vw, 3.4rem);
}

.chaos-card,
.feature-card,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(79,124,255,.1), transparent 9rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
}

.chaos-card {
  min-height: 280px;
  padding: clamp(1.1rem, 2.5vw, 1.7rem);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}

.chaos-card:nth-child(2) { transform: translateY(2.6rem); }
.chaos-card:nth-child(2) {
  background:
    radial-gradient(circle at 90% 0%, rgba(158,107,255,.13), transparent 9rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.chaos-card:nth-child(3) {
  background:
    radial-gradient(circle at 90% 0%, rgba(255,89,61,.12), transparent 9rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}

.chaos-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,124,255,.34);
}

.chaos-card:nth-child(2):hover { transform: translateY(calc(2.6rem - 4px)); border-color: rgba(158,107,255,.34); }
.chaos-card:nth-child(3):hover { border-color: rgba(255,89,61,.34); }

.chaos-card span,
.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(79,124,255,.14);
  color: var(--qeda-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(79,124,255,.26);
  font-size: .86rem;
  font-weight: 950;
}

.chaos-card:nth-child(2) span {
  background: rgba(158,107,255,.14);
  color: var(--qeda-primary-soft);
  box-shadow: inset 0 0 0 1px rgba(158,107,255,.28);
}

.chaos-card:nth-child(3) span {
  background: rgba(255,89,61,.14);
  color: #ffb4a8;
  box-shadow: inset 0 0 0 1px rgba(255,89,61,.28);
}

.chaos-card h3 { margin-top: clamp(3.2rem, 8vw, 6rem); }
.chaos-card p,
.feature-card p,
.step p,
.signal p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.solution {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}

.solution-panel {
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 86% 12%, rgba(79,124,255,.22), transparent 14rem),
    radial-gradient(circle at 12% 92%, rgba(158,107,255,.16), transparent 12rem),
    var(--surface);
  box-shadow: var(--shadow);
}

.signal-board {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: .9rem;
}

.signal {
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}

.signal.active {
  grid-row: span 2;
  background:
    radial-gradient(circle at 18% 18%, rgba(0,209,189,.18), transparent 7rem),
    linear-gradient(135deg, rgba(79,124,255,.22), rgba(158,107,255,.14)),
    rgba(255,255,255,.08);
}

.signal.active strong {
  margin-top: 4.6rem;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  letter-spacing: -.06em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: minmax(230px, 1fr);
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.feature-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,124,255,.4);
  background:
    radial-gradient(circle at 85% 0%, rgba(79,124,255,.16), transparent 9rem),
    rgba(255,255,255,.085);
}

.feature-card.tall {
  grid-row: span 2;
}

.feature-card.wide {
  grid-row: span 2;
}

.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: clamp(2.8rem, 6.5vw, 5rem);
  border-radius: 16px;
  background: rgba(79,124,255,.14);
  box-shadow: inset 0 0 0 1px rgba(79,124,255,.28);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.plan-icon::before {
  width: 22px;
  height: 20px;
  border: 2px solid var(--qeda-blue-soft);
  border-radius: 7px;
}

.plan-icon::after {
  width: 18px;
  height: 2px;
  background: var(--qeda-blue-soft);
  transform: translateY(-5px);
}

.squad-icon {
  background: rgba(158,107,255,.14);
  box-shadow: inset 0 0 0 1px rgba(158,107,255,.28);
}

.squad-icon::before {
  width: 16px;
  height: 16px;
  background: var(--qeda-primary-soft);
  box-shadow: -10px 8px 0 rgba(180,155,255,.58), 10px 8px 0 rgba(180,155,255,.58);
}

.going-icon {
  background: rgba(31,199,99,.14);
  box-shadow: inset 0 0 0 1px rgba(31,199,99,.28);
}

.going-icon::before {
  width: 22px;
  height: 22px;
  border: 2px solid var(--qeda-going);
}

.going-icon::after {
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--qeda-going);
  border-bottom: 2px solid var(--qeda-going);
  transform: rotate(-45deg) translate(1px, -1px);
}

.chat-icon {
  background: rgba(0,209,189,.14);
  box-shadow: inset 0 0 0 1px rgba(0,209,189,.28);
}

.chat-icon::before {
  width: 24px;
  height: 18px;
  border: 2px solid var(--qeda-aqua);
  border-radius: 8px;
}

.mural-icon {
  background: rgba(255,89,61,.14);
  box-shadow: inset 0 0 0 1px rgba(255,89,61,.28);
}

.mural-icon::before {
  width: 24px;
  height: 20px;
  border: 2px solid var(--qeda-coral);
  border-radius: 6px;
}

.mural-icon::after {
  width: 7px;
  height: 7px;
  background: var(--qeda-coral);
  transform: translate(-5px, -3px);
}

.friends-icon {
  background: rgba(255,143,46,.14);
  box-shadow: inset 0 0 0 1px rgba(255,143,46,.28);
}

.friends-icon::before {
  width: 23px;
  height: 2px;
  background: var(--qeda-orange);
  transform: rotate(-22deg);
}

.friends-icon::after {
  width: 9px;
  height: 9px;
  background: var(--qeda-orange);
  box-shadow: 18px -7px 0 rgba(255,143,46,.8);
}

.demo-status-note {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 0 .8rem;
  background: rgba(255,255,255,.07);
  color: rgba(248,250,252,.82);
  font-size: .8rem;
  font-weight: 860;
}

.demo-squad-card,
.demo-profile-card,
.demo-poll,
.demo-map-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: .92rem;
  background: rgba(255,255,255,.065);
}

.demo-squad-card {
  display: grid;
  gap: .65rem;
  background:
    radial-gradient(circle at 84% 8%, rgba(158,107,255,.2), transparent 7rem),
    rgba(255,255,255,.065);
}

.demo-squad-card strong,
.demo-profile-card strong {
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1.05;
}

.demo-squad-card p,
.demo-profile-card p,
.demo-poll p,
.demo-map-card p,
.demo-mural p {
  margin: 0;
  color: rgba(248,250,252,.66);
  font-size: .86rem;
  line-height: 1.35;
}

.demo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.demo-chip-row span,
.demo-chip-row button,
.demo-profile-stat {
  min-height: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .35rem .62rem;
  background: rgba(255,255,255,.065);
  color: rgba(248,250,252,.78);
  font-size: .76rem;
  font-weight: 850;
}

.demo-chip-row button {
  cursor: pointer;
}

.demo-poll {
  display: grid;
  gap: .62rem;
}

.demo-poll-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}

.demo-poll-options button {
  min-height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: var(--cream);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 880;
}

.demo-mural {
  display: grid;
  gap: .7rem;
}

.demo-mural-head {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: center;
}

.demo-mural-head button,
.demo-map-card button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 .72rem;
  background: var(--gradient-brand);
  color: white;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
}

.demo-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: 74px;
  gap: .5rem;
}

.demo-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: .58rem;
  background: var(--photo-bg, linear-gradient(135deg, rgba(79,124,255,.45), rgba(158,107,255,.22)));
  background-size: cover;
  background-position: center;
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.demo-photo:nth-child(1) {
  grid-row: span 2;
}

.demo-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(5,7,13,.64));
}

.demo-photo span,
.demo-photo strong {
  position: relative;
  z-index: 1;
  display: block;
}

.demo-photo span {
  margin-top: auto;
  color: rgba(248,250,252,.76);
  font-size: .7rem;
  font-weight: 820;
}

.demo-photo strong {
  align-self: end;
  font-size: .82rem;
  line-height: 1.05;
}

.demo-map {
  position: relative;
  min-height: 252px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 26px;
  background:
    radial-gradient(circle at 32% 40%, rgba(0,209,189,.22), transparent 5rem),
    radial-gradient(circle at 74% 30%, rgba(158,107,255,.22), transparent 6rem),
    linear-gradient(145deg, rgba(79,124,255,.18), rgba(255,255,255,.04));
}

.demo-map::before,
.demo-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}

.demo-map::before {
  left: 12%;
  right: 10%;
  top: 34%;
  height: 24%;
  transform: rotate(-8deg);
}

.demo-map::after {
  left: 30%;
  top: 8%;
  width: 44%;
  height: 78%;
  transform: rotate(18deg);
}

.demo-map-pin {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .42rem .58rem;
  background: rgba(7,10,18,.72);
  color: rgba(248,250,252,.86);
  font-size: .72rem;
  font-weight: 880;
  backdrop-filter: blur(12px);
}

.demo-map-pin:nth-child(1) { left: 12%; top: 18%; }
.demo-map-pin:nth-child(2) { right: 12%; top: 24%; }
.demo-map-pin:nth-child(3) { left: 18%; bottom: 20%; }
.demo-map-pin:nth-child(4) { right: 10%; bottom: 22%; }

.demo-map-card {
  display: grid;
  gap: .48rem;
  margin-top: .65rem;
}

.demo-profile-card {
  display: grid;
  gap: .72rem;
  background:
    radial-gradient(circle at 28% 8%, rgba(0,209,189,.16), transparent 7rem),
    radial-gradient(circle at 86% 34%, rgba(255,89,61,.13), transparent 8rem),
    rgba(255,255,255,.065);
}

.demo-profile-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--gradient-brand);
  color: white;
  font-size: 1.32rem;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(79,124,255,.22);
}

.demo-profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}

.person-popover {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 5rem;
  z-index: 9;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: .8rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.055)),
    rgba(7,10,18,.9);
  color: rgba(248,250,252,.82);
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
  font-size: .84rem;
  font-weight: 820;
  animation: menu-pop .22s var(--ease) both;
}

.person-popover[hidden] {
  display: none;
}

.person-popover strong {
  display: block;
  color: var(--cream);
  font-size: 1rem;
}

.consent a {
  color: var(--qeda-blue-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(4,6,11,.78);
  backdrop-filter: blur(18px);
  animation: lightbox-in .22s var(--ease) both;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  display: grid;
  place-items: center;
  width: min(92vw, 860px);
  max-height: 82vh;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  padding: .75rem;
  background: rgba(255,255,255,.07);
  box-shadow: 0 32px 90px rgba(0,0,0,.46);
}

.lightbox img {
  max-height: 76vh;
  width: 100%;
  object-fit: contain;
  border-radius: 22px;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0 .9rem;
  background: rgba(255,255,255,.08);
  color: var(--cream);
  cursor: pointer;
  font-weight: 880;
}

.app-title,
.app-top-title {
  max-width: none;
  margin: .7rem 0 .2rem;
  color: var(--cream);
  font-size: clamp(2.15rem, 5.8vw, 3.15rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.app-top-title {
  margin-top: .35rem;
  text-align: center;
  font-size: 1.42rem;
  letter-spacing: -.035em;
}

.app-subtitle {
  margin: 0 0 1.05rem;
  color: rgba(248,250,252,.52);
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1.3;
}

.app-segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .56rem;
  margin: .5rem 0 1.05rem;
}

.app-segment span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 22px;
  background: rgba(255,255,255,.075);
  color: rgba(248,250,252,.58);
  font-weight: 900;
}

.app-segment .active {
  background: linear-gradient(135deg, #9b62ff, #a66cff);
  color: white;
}

.app-empty-state {
  display: grid;
  place-items: center;
  gap: .42rem;
  min-height: 176px;
  padding: 1.2rem;
  text-align: center;
}

.app-empty-state.compact {
  min-height: 150px;
}

.empty-glyph {
  color: rgba(248,250,252,.16);
  font-size: 2.55rem;
  line-height: 1;
}

.app-empty-state strong {
  max-width: 15ch;
  color: var(--cream);
  font-size: 1.18rem;
  line-height: 1.12;
}

.app-empty-state p {
  max-width: 24ch;
  margin: 0;
  color: rgba(248,250,252,.46);
  font-size: .95rem;
  line-height: 1.3;
}

.plan-state-card {
  display: grid;
  gap: .42rem;
  min-height: 118px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: .95rem;
  background: rgba(255,255,255,.06);
}

.plan-state-card strong {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.12;
}

.plan-state-card p {
  margin: 0;
  color: rgba(248,250,252,.52);
  font-size: .86rem;
  line-height: 1.34;
}

.plan-state-card.is-loading span {
  width: 62%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

.plan-state-card.is-loading span::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: skeleton-sweep 1.2s var(--ease) infinite;
}

.plan-state-card.is-error {
  border-color: rgba(255,111,111,.24);
  background: rgba(255,111,111,.08);
}

.squad-header-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: .72rem;
  margin-top: 1.1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.squad-avatar {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, #9b62ff, #51d5d0);
  color: white;
  font-size: .72rem;
  font-weight: 950;
}

.squad-header-row strong {
  display: block;
  color: var(--cream);
  font-size: 1.3rem;
  line-height: 1;
}

.squad-header-row p {
  margin: .2rem 0 0;
  color: rgba(248,250,252,.5);
  font-size: .9rem;
  font-weight: 760;
}

.squad-chevron {
  color: rgba(248,250,252,.28);
  font-size: 1.6rem;
}

.squad-search {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.075);
  color: #a96dff;
  font-size: 1.6rem;
  font-weight: 900;
}

.squad-search::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 4px solid currentColor;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

.squad-search::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(11px, 11px) rotate(45deg);
}

.qeda-system-card {
  display: grid;
  gap: .62rem;
  width: min(84%, 250px);
  margin-top: 1rem;
  border: 1px solid rgba(255,143,46,.38);
  border-radius: 24px;
  padding: 1rem;
  background: rgba(255,143,46,.13);
}

.qeda-system-card span {
  color: rgba(248,250,252,.46);
  font-size: .82rem;
  font-weight: 900;
}

.qeda-system-card strong {
  color: var(--cream);
  font-size: 1.25rem;
  line-height: 1.1;
}

.chat-compose-mock {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: .65rem;
  margin-top: auto;
  padding-top: .85rem;
}

.chat-compose-mock span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #9b62ff;
  color: white;
  font-size: 2rem;
  font-weight: 760;
}

.chat-compose-mock p {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 0;
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(255,255,255,.075);
  color: rgba(248,250,252,.32);
  font-size: 1rem;
}

.chat-compose-mock b {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  color: #9b62ff;
}

.chat-compose-mock b::before {
  content: "";
  position: absolute;
  inset: 4px 2px 4px 5px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 54%);
  background: currentColor;
}

.momentum-empty {
  min-height: 128px;
  margin-top: .78rem;
}

.momentum-empty strong {
  max-width: 23ch;
}

.momentum-upload-mock {
  display: grid;
  gap: .6rem;
  margin-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem;
}

.momentum-upload-mock button {
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 21px;
  background: rgba(255,255,255,.055);
  color: rgba(248,250,252,.58);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
}

.momentum-upload-mock p {
  margin: 0;
  color: rgba(248,250,252,.44);
  text-align: center;
  font-size: .82rem;
  font-weight: 760;
}

.compact-mural {
  display: grid;
  margin-top: .74rem;
}

.real-map-mock {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 30%, rgba(24,104,97,.72), transparent 8rem),
    radial-gradient(circle at 82% 22%, rgba(16,119,84,.68), transparent 9rem),
    radial-gradient(circle at 52% 86%, rgba(39,85,125,.66), transparent 11rem),
    linear-gradient(145deg, #112050, #0b3b44);
  box-shadow: 0 18px 52px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.1);
}

.real-map-image {
  border: 1px solid rgba(255,255,255,.12);
  background: #101522;
}

.real-map-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.92) contrast(1.04) brightness(.82);
  transform: scale(1.02);
}

.real-map-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,10,18,.28), rgba(7,10,18,.04) 34%, rgba(7,10,18,.22)),
    radial-gradient(circle at 50% 18%, rgba(79,124,255,.16), transparent 42%);
  pointer-events: none;
}

.real-map-mock strong {
  position: relative;
  z-index: 2;
  color: rgba(248,250,252,.9);
  text-align: center;
  font-size: 2rem;
  line-height: 1.05;
}

.map-road {
  position: absolute;
  border: 5px solid rgba(188,205,223,.52);
  border-radius: 999px;
}

.map-road.one {
  width: 82%;
  height: 38%;
  transform: rotate(13deg);
}

.map-road.two {
  width: 58%;
  height: 55%;
  transform: rotate(-18deg);
}

.map-label {
  position: absolute;
  left: 14%;
  bottom: 24%;
  color: rgba(248,250,252,.55);
  font-size: .72rem;
  font-weight: 900;
}

.map-label.right {
  left: auto;
  right: 12%;
  bottom: 18%;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .8rem;
}

.calendar-head strong {
  color: var(--cream);
  font-size: 1.52rem;
}

.calendar-head span {
  color: var(--qeda-primary-soft);
  font-weight: 900;
}

.calendar-mock {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  padding: 1rem;
  background: rgba(255,255,255,.065);
}

.calendar-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  font-size: 1.16rem;
}

.calendar-month span {
  color: var(--qeda-primary-soft);
  font-size: 1.5rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .52rem .28rem;
  margin-top: .85rem;
}

.calendar-grid span {
  display: grid;
  place-items: center;
  min-height: 30px;
  border-radius: 12px;
  color: rgba(248,250,252,.86);
  font-size: .8rem;
  font-weight: 760;
}

.calendar-grid span:nth-child(-n+7) {
  color: rgba(248,250,252,.38);
  font-size: .68rem;
}

.calendar-grid .filled {
  background: #9b62ff;
  color: white;
}

.calendar-grid .outlined {
  border: 2px solid #9b62ff;
  color: var(--qeda-primary-soft);
}

.profile-real-card {
  display: grid;
  place-items: center;
  gap: .28rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  padding: 1.05rem;
  background: rgba(255,255,255,.07);
  text-align: center;
}

.profile-avatar-real {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9b62ff, #51d5d0);
  color: white;
  font-size: 2rem;
  font-weight: 950;
}

.profile-real-card strong {
  color: var(--cream);
  font-size: 1.65rem;
  line-height: 1;
}

.profile-real-card p {
  margin: 0;
  color: rgba(248,250,252,.58);
  font-size: .86rem;
  font-weight: 760;
}

.beta-pill-real {
  border-radius: 999px;
  padding: .35rem .65rem;
  background: #9b62ff;
  color: white;
  font-size: .75rem;
  font-weight: 900;
}

.settings-list {
  display: grid;
  gap: .12rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: .48rem;
  background: rgba(255,255,255,.065);
}

.settings-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: 34px;
  margin: 0;
  border-radius: 14px;
  padding: .3rem .52rem;
  color: rgba(248,250,252,.84);
  font-size: .78rem;
  font-weight: 800;
}

.settings-list b {
  color: rgba(248,250,252,.34);
}

.settings-list em {
  color: rgba(248,250,252,.48);
  font-style: normal;
  font-weight: 700;
}

.how {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(1.4rem, 5vw, 4.6rem);
  align-items: start;
}

.steps {
  display: grid;
  gap: 1rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 42px;
  bottom: 42px;
  width: 1px;
  background: linear-gradient(var(--qeda-blue), var(--qeda-primary), var(--qeda-coral));
  opacity: .42;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

.step p {
  grid-column: 2;
}

.step:nth-child(2) span {
  background: rgba(158,107,255,.14);
  color: var(--qeda-primary-soft);
  box-shadow: inset 0 0 0 1px rgba(158,107,255,.28);
}

.step:nth-child(3) span {
  background: rgba(0,209,189,.14);
  color: var(--qeda-aqua);
  box-shadow: inset 0 0 0 1px rgba(0,209,189,.28);
}

.scroll-story {
  --story-progress: 0;
  --story-light: .08;
  --story-light-soft: .06;
  --story-mint-light: .04;
  --story-overlay: .68;
  --story-shine: .035;
  --story-glow-y: 18%;
  --story-card-border: .08;
  --story-panel-alpha: .045;
  --story-text-alpha: .58;
  --story-line-height: 0%;
  isolation: isolate;
  display: block;
  min-height: 340vh;
  padding-block: 0;
  scroll-margin-top: 6rem;
}

.scroll-story::before,
.scroll-story::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.scroll-story::before {
  inset: 0;
  z-index: -2;
  border-block: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(circle at 22% 24%, rgba(79,124,255,var(--story-light)), transparent 24rem),
    radial-gradient(circle at 78% 34%, rgba(158,107,255,var(--story-light-soft)), transparent 28rem),
    radial-gradient(circle at 62% 88%, rgba(0,209,189,var(--story-mint-light)), transparent 20rem),
    linear-gradient(180deg, rgba(2,4,10,.72), rgba(7,10,18,.96) 40%, rgba(10,13,24,.74));
}

.scroll-story::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,10,18,.78), rgba(7,10,18,var(--story-overlay)) 50%, rgba(7,10,18,.42)),
    radial-gradient(circle at 50% var(--story-glow-y), rgba(255,255,255,var(--story-shine)), transparent 24rem);
}

.scroll-story-sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: clamp(1.8rem, 6vw, 6rem);
  align-items: center;
  min-height: 100dvh;
  padding-block: clamp(5rem, 8vw, 7rem);
}

.scroll-story-copy {
  display: grid;
  align-content: center;
}

.scroll-story-copy h2 {
  max-width: 8.6ch;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

.story-dynamic-copy {
  max-width: 560px;
  border: 1px solid rgba(255,255,255,var(--story-card-border));
  border-radius: 28px;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,var(--story-panel-alpha)), rgba(255,255,255,.024)),
    rgba(7,10,18,.38);
  box-shadow: 0 24px 72px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.07);
}

.story-kicker {
  margin-bottom: .55rem;
  color: var(--qeda-aqua);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.story-text {
  margin: 0;
  color: rgba(248,250,252,var(--story-text-alpha));
  font-size: clamp(1.08rem, 1.65vw, 1.34rem);
  font-weight: 760;
  line-height: 1.42;
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}

.story-timeline {
  position: relative;
  display: grid;
  gap: clamp(.9rem, 2.2vw, 1.2rem);
  padding-left: clamp(2.8rem, 4vw, 3.6rem);
}

.story-line {
  position: absolute;
  left: clamp(1.24rem, 1.7vw, 1.5rem);
  top: 1.2rem;
  bottom: 1.2rem;
  width: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.story-line-progress {
  position: absolute;
  inset: 0 0 auto;
  height: var(--story-line-height);
  min-height: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--qeda-blue), var(--qeda-primary), var(--qeda-aqua));
  box-shadow: 0 0 28px rgba(79,124,255,.24);
}

.story-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  min-height: clamp(132px, 16vw, 178px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background:
    radial-gradient(circle at 86% 0%, rgba(79,124,255,.08), transparent 10rem),
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.026));
  opacity: .38;
  filter: blur(1.8px);
  transform: translateY(22px) scale(.985);
  box-shadow: 0 18px 58px rgba(0,0,0,.14);
  transition:
    opacity .38s var(--ease),
    filter .38s var(--ease),
    transform .38s var(--ease),
    border-color .38s var(--ease),
    background .38s var(--ease),
    box-shadow .38s var(--ease);
}

.story-step h3 {
  max-width: 15ch;
  margin-bottom: .45rem;
}

.story-step p {
  max-width: 42ch;
  margin: 0;
  color: rgba(167,176,192,.72);
  line-height: 1.44;
}

.story-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(7,10,18,.92);
  color: rgba(248,250,252,.48);
  font-size: .9rem;
  font-weight: 950;
  box-shadow: 0 0 0 8px rgba(7,10,18,.9), inset 0 1px 0 rgba(255,255,255,.08);
  transition: background .34s var(--ease), color .34s var(--ease), border-color .34s var(--ease), box-shadow .34s var(--ease);
}

.story-step.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  border-color: rgba(126,160,255,.36);
  background:
    radial-gradient(circle at 88% 0%, rgba(79,124,255,.18), transparent 11rem),
    radial-gradient(circle at 12% 94%, rgba(158,107,255,.12), transparent 9rem),
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.042));
  box-shadow: 0 24px 76px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.02);
}

.story-step.is-active .story-node {
  border-color: rgba(126,160,255,.52);
  background: linear-gradient(135deg, var(--qeda-blue), var(--qeda-primary));
  color: white;
  box-shadow: 0 0 0 8px rgba(7,10,18,.9), 0 14px 34px rgba(79,124,255,.26);
}

.story-step:nth-child(4).is-active .story-node {
  background: linear-gradient(135deg, var(--qeda-primary), var(--qeda-aqua));
}

.story-step.is-complete {
  opacity: .74;
  filter: blur(0);
  transform: translateY(0) scale(.995);
  border-color: rgba(255,255,255,.15);
}

.story-step.is-complete .story-node {
  border-color: rgba(0,209,189,.42);
  background: rgba(0,209,189,.16);
  color: rgba(205,255,249,.92);
  box-shadow: 0 0 0 8px rgba(7,10,18,.9);
}

.story-step.is-final {
  opacity: .92;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.donostia {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}

.donostia-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.45rem;
}

.donostia-proof span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .6rem .76rem;
  background: rgba(255,255,255,.055);
  color: rgba(248,250,252,.78);
  font-size: .82rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.donostia-map-board {
  display: grid;
  gap: .85rem;
  min-width: 0;
}

.city-map-frame {
  position: relative;
  min-height: clamp(500px, 48vw, 650px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 64% 42%, rgba(79,124,255,.2), transparent 16rem),
    radial-gradient(circle at 16% 58%, rgba(0,209,189,.08), transparent 14rem),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.028));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.city-map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 63% 42%, transparent 0 11rem, rgba(7,10,18,.18) 23rem),
    linear-gradient(180deg, rgba(7,10,18,.12), rgba(7,10,18,.78));
}

.city-map-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05) brightness(.72);
  transform: scale(1.04);
}

.map-sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 66% 39%, rgba(158,107,255,.22), transparent 9rem),
    radial-gradient(circle at 18% 62%, rgba(255,143,46,.13), transparent 11rem),
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.08) 49%, transparent 57% 100%);
  opacity: .78;
}

.map-zone,
.map-plan-card {
  position: absolute;
  z-index: 3;
  backdrop-filter: blur(18px);
}

.map-zone {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .5rem .68rem;
  background: rgba(7,10,18,.74);
  color: rgba(248,250,252,.88);
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  transform: translate(-50%, -50%);
}

.map-zone::before {
  content: "";
  display: inline-block;
  width: .46rem;
  height: .46rem;
  margin-right: .42rem;
  border-radius: 999px;
  background: var(--qeda-aqua);
  box-shadow: 0 0 0 5px rgba(0,209,189,.12);
  vertical-align: .08rem;
}

.zone-old { left: 68%; top: 41%; }
.zone-gros { left: 72%; top: 54%; }
.zone-antiguo { left: 19%; top: 59%; }
.zone-centro { left: 49%; top: 57%; }
.zone-sagues { left: 84%; top: 34%; }

.zone-gros::before { background: var(--qeda-primary); box-shadow: 0 0 0 5px rgba(158,107,255,.14); }
.zone-antiguo::before { background: var(--qeda-orange); box-shadow: 0 0 0 5px rgba(255,143,46,.12); }
.zone-centro::before { background: var(--qeda-going); box-shadow: 0 0 0 5px rgba(31,199,99,.13); }
.zone-sagues::before { background: var(--qeda-blue); box-shadow: 0 0 0 5px rgba(79,124,255,.14); }

.map-plan-card {
  width: min(270px, calc(100% - 2rem));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 1rem;
  background:
    radial-gradient(circle at 86% 0%, rgba(255,255,255,.1), transparent 8rem),
    rgba(11,14,24,.76);
  box-shadow: 0 20px 52px rgba(0,0,0,.38);
}

.map-plan-card span {
  display: inline-flex;
  margin-bottom: .62rem;
  border-radius: 999px;
  padding: .36rem .52rem;
  background: rgba(158,107,255,.16);
  color: rgba(221,211,255,.94);
  font-size: .74rem;
  font-weight: 900;
}

.map-plan-card strong {
  display: block;
  color: var(--cream);
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.map-plan-card p {
  margin: .5rem 0 0;
  color: rgba(167,176,192,.82);
  font-size: .88rem;
  line-height: 1.35;
}

.map-plan-primary {
  left: 5%;
  bottom: 6%;
  border-color: rgba(79,124,255,.25);
}

.map-plan-secondary {
  right: 4%;
  top: 8%;
  border-color: rgba(158,107,255,.25);
}

.map-plan-secondary span {
  background: rgba(255,143,46,.15);
  color: rgba(255,222,188,.95);
}

.map-plan-tertiary {
  right: 7%;
  bottom: 8%;
  border-color: rgba(0,209,189,.22);
}

.map-plan-tertiary span {
  background: rgba(0,209,189,.13);
  color: rgba(207,255,250,.92);
}

.city-live-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.city-live-strip span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .62rem .78rem;
  background: rgba(255,255,255,.055);
  color: var(--qeda-muted);
  font-size: .86rem;
  font-weight: 850;
}

.beta-proof {
  display: grid;
  gap: clamp(1.7rem, 5vw, 4rem);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.proof-strip span {
  border-radius: 999px;
  padding: .7rem .9rem;
  color: var(--muted);
  font-weight: 850;
}

.proof-strip span:nth-child(1) { border-color: rgba(79,124,255,.28); background: rgba(79,124,255,.09); }
.proof-strip span:nth-child(2) { border-color: rgba(158,107,255,.28); background: rgba(158,107,255,.09); }
.proof-strip span:nth-child(3) { border-color: rgba(0,209,189,.28); background: rgba(0,209,189,.08); }
.proof-strip span:nth-child(4) { border-color: rgba(255,89,61,.26); background: rgba(255,89,61,.08); }

.final-copy {
  max-width: 860px;
}

.beta {
  display: grid;
  grid-template-columns: .84fr 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.1rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 12% 10%, rgba(79,124,255,.18), transparent 18rem),
    radial-gradient(circle at 94% 12%, rgba(158,107,255,.16), transparent 18rem),
    rgba(255,255,255,.045);
}

.beta-form {
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 90% 0%, rgba(0,209,189,.16), transparent 14rem),
    rgba(255,255,255,.095);
  color: var(--ink);
}

.beta-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.beta-note {
  margin-top: 1rem;
  color: var(--qeda-aqua) !important;
  font-weight: 860;
}

.beta-form label { color: var(--ink); }
.beta-form label span { color: var(--quiet); }
.beta-form .consent {
  grid-column: auto;
  color: var(--muted);
}

.beta-form input[type="email"],
.beta-form input[type="text"] {
  border-color: var(--line);
  background: rgba(255,255,255,.08);
  color: var(--ink);
}

.beta-form input::placeholder { color: rgba(167,176,192,.46); }
.beta-form input:focus {
  border-color: var(--qeda-blue);
  box-shadow: 0 0 0 4px rgba(79,124,255,.16);
  background: rgba(255,255,255,.11);
}

.beta-form .button.primary {
  background: var(--gradient-brand);
  color: white;
}

.beta-form .form-status,
.beta-form .fine-print {
  grid-column: auto;
  color: var(--quiet);
}

.beta-form .form-status.success { color: var(--qeda-going); }
.beta-form .form-status.error { color: var(--danger); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-block: 2rem 3rem;
  color: var(--muted);
}

.site-footer::before {
  content: "";
  grid-column: 1 / -1;
  height: 1px;
  margin-bottom: .2rem;
  background: linear-gradient(90deg, transparent, rgba(79,124,255,.45), rgba(158,107,255,.34), transparent);
}

.site-footer p { margin-bottom: 0; }

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .9rem 1.4rem;
  font-size: .95rem;
  font-weight: 760;
}

.made {
  grid-column: 1 / -1;
  color: var(--quiet);
}

.is-animated .reveal {
  opacity: .18;
  transform: translateY(22px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.is-animated .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.is-animated .hero .reveal {
  opacity: 1;
  transform: none;
}

@keyframes phone-drift {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}

@keyframes intro-mark {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(.88);
    filter: blur(8px);
  }
  26% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-18px) scale(.96);
  }
}

@keyframes intro-pulse {
  0% {
    opacity: 0;
    transform: scale(.66);
  }
  38% {
    opacity: .9;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

@keyframes intro-orbit {
  0% {
    opacity: 0;
    transform: scale(.7) rotate(-16deg);
  }
  34% {
    opacity: .64;
  }
  100% {
    opacity: 0;
    transform: scale(1.08) rotate(12deg);
  }
}

@keyframes intro-away {
  to {
    opacity: 0;
    transform: scale(1.015);
  }
}

@keyframes menu-pop {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes demo-view-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes skeleton-sweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(260%); }
}

@media (min-width: 1181px) {
  .section,
  .site-footer {
    width: min(calc(100% - 56px), var(--max));
  }

  .site-header {
    width: min(calc(100% - 56px), 960px);
    max-width: min(calc(100% - 56px), 960px);
  }

  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(430px, .94fr);
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
    min-height: calc(100dvh - 74px);
    padding-top: clamp(5rem, 7vw, 6.5rem);
    padding-bottom: clamp(4rem, 7vw, 6.5rem);
  }

  .hero-copy {
    align-self: end;
    max-width: 720px;
  }

  .hero-lead {
    max-width: 52ch;
  }

  .hero-stage {
    align-self: center;
    min-height: clamp(700px, 64vw, 790px);
  }

  .hero-stage::before {
    width: min(50vw, 760px);
    filter: blur(4px);
    opacity: .98;
  }

  .phone-shell {
    width: min(31vw, 390px);
    border-radius: 52px;
    padding: 13px;
    transform: rotate(2.4deg);
  }

  .phone-shell::before {
    top: 20px;
    width: 98px;
    height: 27px;
  }

  .phone-screen {
    min-height: 710px;
    border-radius: 40px;
    padding: 3.35rem 1rem 1.05rem;
  }

  .phone-heading {
    margin-top: 1.16rem;
    font-size: 1.5rem;
  }

  .live-plan {
    padding: 1.08rem;
  }

  .live-plan h2 {
    font-size: 2.25rem;
  }

  .float-card {
    max-width: 220px;
  }

  .plan-card {
    left: 2%;
    top: 12%;
  }

  .group-card {
    right: 1%;
    top: 39%;
  }

  .going-card {
    left: 5%;
    bottom: 12%;
  }

  .hero-form {
    align-self: start;
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .product-screens {
    padding-top: clamp(5.5rem, 9vw, 9rem);
  }

  .product-intro {
    grid-template-columns: minmax(0, .92fr) minmax(380px, .72fr);
    max-width: 1180px;
  }

  .screen-wall {
    grid-template-columns: 1.04fr .82fr .82fr;
    gap: 1.2rem;
  }

  .screen-figure {
    padding: 1.08rem;
  }

  .main-screen .app-screen {
    min-height: 730px;
  }

  .detail-screen,
  .squad-screen {
    min-height: 480px;
  }

  .mural-screen {
    min-height: 360px;
  }

  .feed-plan.featured {
    min-height: 330px;
    padding: 1.08rem;
  }

  .feature-grid {
    grid-auto-rows: minmax(245px, auto);
  }

  .city-map-frame {
    min-height: 610px;
  }
}

@media (min-width: 1540px) {
  :root {
    --max: 1440px;
  }

  .site-header {
    width: min(calc(100% - 72px), 1040px);
    max-width: min(calc(100% - 72px), 1040px);
  }

  .hero {
    grid-template-columns: minmax(0, .92fr) minmax(480px, .9fr);
  }

  h1 {
    font-size: clamp(6rem, 6.8vw, 8.3rem);
  }

  .phone-shell {
    width: min(28vw, 420px);
  }

  .phone-screen {
    min-height: 742px;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "form";
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-stage {
    min-height: 650px;
  }

  .hero-form {
    grid-template-columns: 1fr;
  }

  .hero-form .form-heading,
  .hero-form .form-status,
  .hero-form .fine-print {
    grid-column: 1 / -1;
  }

  .hero-start-form .form-heading,
  .hero-start-form .inline-field,
  .hero-start-form .button,
  .hero-start-form .form-status,
  .hero-start-form .fine-print {
    grid-row: auto;
  }

  .hero-start-form .inline-field {
    grid-column: 1;
  }

  .hero-start-form .button {
    grid-column: 1;
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
  }

  .solution,
  .how,
  .donostia,
  .beta,
  .product-intro,
  .section-copy {
    grid-template-columns: 1fr;
  }

  .screen-wall {
    grid-template-columns: 1fr 1fr;
  }

  .main-screen,
  .mural-screen-wrap {
    grid-column: span 2;
  }

  .detail-screen-wrap {
    transform: none;
  }

  .signal-board {
    grid-template-columns: 1fr;
  }

  .signal.active {
    grid-row: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(220px, auto);
  }

  .feature-card.tall,
  .feature-card.wide {
    grid-row: span 1;
  }

  .scroll-story-sticky {
    grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
    gap: clamp(1.25rem, 4vw, 3rem);
  }

  .story-step {
    min-height: 128px;
  }
}

@media (max-width: 760px) {
  .section,
  .site-header,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header nav,
  .nav-status {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: .85rem;
    font-size: .86rem;
  }

  .section {
    padding-block: clamp(4rem, 16vw, 6rem);
  }

  .hero {
    padding-top: 4.5rem;
  }

  h1 {
    max-width: 9.4ch;
    font-size: clamp(4.15rem, 18vw, 6rem);
  }

  h2 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 13.8vw, 4.55rem);
  }

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

  .hero-stage {
    min-height: 560px;
  }

  .phone-shell {
    width: min(88vw, 318px);
    transform: rotate(0deg);
  }

  .phone-screen {
    min-height: 610px;
  }

  .phone-nav {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(72px, 1fr));
    scrollbar-width: none;
  }

  .phone-nav::-webkit-scrollbar {
    display: none;
  }

  .float-card {
    max-width: 154px;
  }

  .plan-card { left: -5px; top: 4%; }
  .group-card { right: -5px; top: 41%; }
  .going-card { left: 2%; bottom: 3%; }

  .hero-form,
  .chaos-grid,
  .feature-grid,
  .screen-wall,
  .beta-form .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-start-form .form-heading,
  .hero-start-form .inline-field,
  .hero-start-form .button,
  .hero-start-form .form-status,
  .hero-start-form .fine-print {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-start-form .button {
    width: 100%;
  }

  .brand-moment-copy {
    text-align: left;
  }

  .brand-moment-copy h2 {
    max-width: 8.8ch;
    margin-inline: 0;
  }

  .moment-line {
    grid-template-columns: 1fr;
    gap: .58rem;
  }

  .moment-line i {
    width: 1px;
    height: 22px;
    margin-left: 1.2rem;
    background: linear-gradient(180deg, rgba(126,160,255,.54), rgba(158,107,255,.1));
  }

  .main-screen,
  .mural-screen-wrap {
    grid-column: auto;
  }

  .main-screen .app-screen {
    min-height: 590px;
  }

  .app-screen {
    min-height: 390px;
    border-radius: 28px;
  }

  .mural-screen {
    min-height: 320px;
  }

  .feed-plan.featured {
    min-height: 158px;
  }

  .feed-plan h3 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .member-list {
    grid-template-columns: 1fr;
  }

  .hero-form .consent,
  .hero-form .form-status {
    grid-column: auto;
  }

  .chaos-card,
  .chaos-card:nth-child(2) {
    min-height: auto;
    transform: none;
  }

  .chaos-card h3 {
    margin-top: 3rem;
  }

  .feature-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step p {
    grid-column: auto;
  }

  .scroll-story {
    min-height: auto;
    padding-block: clamp(4rem, 16vw, 6rem);
  }

  .scroll-story-sticky {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 0;
  }

  .scroll-story-copy h2 {
    max-width: 9.2ch;
  }

  .story-dynamic-copy {
    max-width: none;
  }

  .story-timeline {
    padding-left: 2.45rem;
  }

  .story-line {
    left: 1.13rem;
  }

  .story-step,
  .story-step.is-active,
  .story-step.is-complete,
  .story-step.is-final {
    min-height: auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .story-step h3 {
    max-width: 14ch;
  }

  .city-map-frame {
    min-height: 680px;
  }

  .city-map-frame img,
  .map-sheen {
    height: 42%;
    bottom: auto;
  }

  .map-plan-card {
    left: .85rem;
    right: .85rem;
    width: auto;
    padding: .86rem;
  }

  .map-plan-primary {
    bottom: 13.2rem;
  }

  .map-plan-secondary {
    top: auto;
    right: .8rem;
    bottom: 7.1rem;
  }

  .map-plan-tertiary {
    right: .8rem;
    bottom: 1rem;
  }

  .map-zone {
    font-size: .74rem;
    padding: .46rem .58rem;
  }

  .zone-old { left: 65%; top: 19%; }
  .zone-gros { left: 78%; top: 25%; }
  .zone-antiguo { left: 23%; top: 30%; }
  .zone-centro { left: 48%; top: 29%; }
  .zone-sagues { left: 84%; top: 13%; }

  .city-live-strip span,
  .donostia-proof span {
    font-size: .78rem;
  }

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

@media (max-width: 420px) {
  .phone-shell {
    width: min(92vw, 300px);
    padding: 10px;
    border-radius: 40px;
  }

  .phone-screen {
    min-height: 600px;
    border-radius: 31px;
    padding-inline: .8rem;
  }

  .demo-photo-grid {
    grid-auto-rows: 68px;
  }

  .live-plan h2 {
    font-size: 2.15rem;
  }

  .float-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: .65rem;
  }

  .hero-stage {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .phone-shell {
    order: 1;
  }

  .plan-card,
  .group-card,
  .going-card {
    order: 2;
  }

  .story-timeline {
    padding-left: 0;
  }

  .story-line {
    display: none;
  }

  .story-step {
    grid-template-columns: 1fr;
  }

  .story-node {
    width: 38px;
    height: 38px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }
}

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

  .scroll-story {
    min-height: auto;
  }

  .scroll-story-sticky {
    position: relative;
    min-height: auto;
  }

  .story-step,
  .story-step.is-active,
  .story-step.is-complete,
  .story-step.is-final {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
