:root {
  color-scheme: dark;
  --bg: #040609;
  --panel: rgba(11, 17, 25, 0.86);
  --panel-soft: rgba(18, 27, 38, 0.76);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #b6bfcc;
  --dim: #788392;
  --violet: #7434ff;
  --pink: #ed2aa9;
  --orange: #ff6b21;
  --blue: #00a3ff;
  --green: #18d884;
  --radius: 8px;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 107, 33, 0.16), transparent 19rem),
    radial-gradient(circle at 20% 18%, rgba(116, 52, 255, 0.16), transparent 17rem),
    linear-gradient(180deg, rgba(4, 6, 9, 0.95), rgba(4, 6, 9, 0.99) 52%, #040609),
    #040609;
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 58%);
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 28vh;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(69, 31, 15, 0.34)),
    repeating-linear-gradient(90deg, rgba(105, 55, 22, 0.2) 0 2px, transparent 2px 92px);
  opacity: 0.42;
  transform: perspective(700px) rotateX(62deg);
  transform-origin: bottom;
}

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

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

button,
input {
  font: inherit;
}

.page-shell {
  width: min(100%, 1500px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px clamp(18px, 3vw, 38px) 18px;
  overflow: hidden;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: clamp(28px, 4.2vw, 54px);
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-width: max-content;
}

.brand-mark,
.mini-logo {
  display: grid;
  place-items: center;
  font-weight: 800;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, var(--pink), var(--violet), var(--blue), var(--orange)) border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(116, 52, 255, 0.38);
}

.brand-mark {
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
}

.brand strong {
  display: block;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.1;
}

sup {
  font-size: 0.45em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 0.95rem;
}

em,
.brand small em,
.waitlist-cta h2 span {
  color: transparent;
  font-style: normal;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 68px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.nav-links a {
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(100deg, #6718ff, #d92ea0 52%, #ff7426);
  box-shadow: 0 10px 24px rgba(255, 92, 30, 0.18), 0 10px 26px rgba(111, 46, 255, 0.2);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(560px, 1.34fr);
  gap: clamp(22px, 3.5vw, 48px);
  align-items: start;
  min-height: 548px;
}

.hero::before {
  position: absolute;
  top: 18%;
  left: 9%;
  z-index: -1;
  width: 280px;
  height: 280px;
  content: "";
  background:
    radial-gradient(circle at 50% 45%, rgba(29, 109, 74, 0.35), transparent 34%),
    linear-gradient(90deg, transparent 45%, rgba(33, 78, 50, 0.32) 46% 54%, transparent 55%);
  filter: blur(4px);
  opacity: 0.22;
}

.eyebrow {
  margin: 0 0 10px;
  color: #9ed6ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 4.65vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82em;
  font-style: italic;
  color: transparent;
  background: linear-gradient(92deg, #6c29ff 8%, #f02ba4 52%, #ff6b21 88%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero h1 span::after {
  display: block;
  width: 72%;
  height: 6px;
  margin: -2px auto 0;
  content: "";
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--orange));
  border-radius: 999px;
  transform: rotate(-2deg);
}

.hero-lede {
  max-width: 500px;
  margin-bottom: 20px;
  color: #d8dde6;
  font-size: clamp(1.02rem, 1.22vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-bullets {
  display: grid;
  gap: 15px;
  max-width: 470px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-bullets li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-bullets strong {
  display: block;
  color: #fff;
  font-weight: 700;
}

.bullet-icon,
.feature-icon {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
}

.bullet-icon::before,
.bullet-icon::after,
.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.person::before {
  top: 0;
  left: 10px;
  width: 14px;
  height: 14px;
  background: var(--violet);
  border-radius: 50%;
}

.person::after {
  right: 2px;
  bottom: 0;
  left: 2px;
  height: 17px;
  background: var(--violet);
  border-radius: 18px 18px 2px 2px;
}

.sprout::before {
  inset: 7px 14px 1px;
  width: 4px;
  background: #15bf75;
  border-radius: 999px;
}

.sprout::after {
  top: 5px;
  left: 3px;
  width: 26px;
  height: 18px;
  border: 4px solid #15bf75;
  border-top: 0;
  border-left-color: transparent;
  border-radius: 0 0 22px 22px;
  transform: rotate(15deg);
}

.cube::before {
  inset: 4px;
  border: 4px solid #1682ff;
  transform: rotate(30deg) skewY(-8deg);
}

.cloud::before {
  top: 9px;
  left: 5px;
  width: 22px;
  height: 15px;
  border: 4px solid var(--orange);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 0;
}

.cloud::after {
  right: 3px;
  bottom: 4px;
  left: 3px;
  height: 9px;
  border: 4px solid var(--orange);
  border-top: 0;
  border-radius: 0 0 15px 15px;
}

.capture::before {
  inset: 3px;
  border: 4px solid var(--violet);
  border-radius: 50%;
}

.capture::after {
  top: 11px;
  left: 11px;
  width: 10px;
  height: 10px;
  background: var(--violet);
  border-radius: 50%;
  box-shadow: 10px -10px 0 -2px var(--violet);
}

.organize::before {
  top: 8px;
  right: 2px;
  bottom: 3px;
  left: 2px;
  border: 4px solid var(--blue);
  border-radius: 4px;
}

.organize::after {
  top: 4px;
  left: 4px;
  width: 14px;
  height: 8px;
  border: 4px solid var(--blue);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.plan::before {
  inset: 4px 3px 2px;
  border: 4px solid #58d187;
  border-radius: 5px;
}

.plan::after {
  top: 12px;
  left: 8px;
  width: 5px;
  height: 5px;
  background: #58d187;
  border-radius: 1px;
  box-shadow:
    9px 0 0 #58d187,
    18px 0 0 #58d187,
    0 9px 0 #58d187,
    9px 9px 0 #58d187,
    18px 9px 0 #58d187;
}

.practice::before {
  top: 4px;
  left: 13px;
  width: 6px;
  height: 26px;
  background: var(--orange);
  border-radius: 999px;
  transform: rotate(42deg);
}

.practice::after {
  bottom: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--orange);
  border-radius: 50%;
}

.hero-bullets li:nth-child(1) strong,
.journey-cards article:nth-child(1) h4 {
  color: #9a63ff;
}

.hero-bullets li:nth-child(2) strong,
.journey-cards article:nth-child(2) h4 {
  color: #2fa7ff;
}

.hero-bullets li:nth-child(3) strong,
.journey-cards article:nth-child(3) h4 {
  color: #58d187;
}

.hero-bullets li:nth-child(4) strong,
.journey-cards article:nth-child(4) h4 {
  color: var(--orange);
}

.hero-stage {
  position: relative;
  margin-top: 10px;
  min-height: 492px;
  perspective: 1000px;
}

.ambient-string {
  position: absolute;
  z-index: -1;
  width: 3px;
  height: 560px;
  background: linear-gradient(180deg, transparent, rgba(255, 118, 38, 0.38), transparent);
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.38;
}

.string-one {
  top: -150px;
  right: 34px;
  transform: rotate(7deg);
}

.string-two {
  top: -110px;
  right: 100px;
  transform: rotate(7deg);
}

.desktop-device {
  position: absolute;
  top: 8px;
  right: 7%;
  width: min(720px, 74vw);
  padding: 12px;
  background:
    linear-gradient(180deg, #111822, #060a10) padding-box,
    linear-gradient(135deg, rgba(255, 142, 70, 0.58), rgba(255, 255, 255, 0.18), rgba(0, 163, 255, 0.2)) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotateY(-4deg) rotateX(2deg);
}

.desktop-device::after {
  position: absolute;
  right: 12%;
  bottom: -46px;
  left: 7%;
  height: 48px;
  content: "";
  background: linear-gradient(180deg, #24201f, #0d0b0c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 24px 24px;
  transform: perspective(640px) rotateX(68deg);
  transform-origin: top;
  box-shadow: 0 28px 42px rgba(0, 0, 0, 0.42);
}

.device-glow {
  position: absolute;
  inset: -18px;
  z-index: -1;
  background:
    radial-gradient(circle at 42% 16%, rgba(0, 163, 255, 0.22), transparent 34%),
    radial-gradient(circle at 75% 72%, rgba(255, 107, 33, 0.24), transparent 33%);
  filter: blur(14px);
  opacity: 0.7;
}

.app-window {
  display: grid;
  grid-template-columns: 104px 1fr;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 16, 25, 0.98), rgba(5, 10, 17, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-logo {
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
}

.app-sidebar span:not(.mini-logo) {
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  color: rgba(218, 225, 235, 0.58);
  font-size: 0.64rem;
  font-weight: 650;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.app-sidebar .side-active {
  color: rgba(247, 249, 252, 0.94);
  background: linear-gradient(90deg, rgba(116, 52, 255, 0.55), rgba(255, 255, 255, 0.1));
}

.app-content {
  padding: 20px;
}

.app-topbar,
.control-row,
.tool-grid {
  display: grid;
  gap: 12px;
}

.app-topbar {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-bottom: 14px;
}

.app-topbar strong {
  font-size: 1.3rem;
}

.app-topbar span {
  color: var(--muted);
  font-size: 0.86rem;
}

.app-topbar em {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.session-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(180px, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 146px;
  padding: 22px;
  background:
    linear-gradient(105deg, rgba(255, 118, 38, 0.16), transparent 50%),
    repeating-linear-gradient(100deg, rgba(255, 118, 38, 0.19) 0 1px, transparent 1px 24px),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.status-pill {
  display: inline-flex;
  padding: 3px 8px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  border-radius: 999px;
}

.session-card h2 {
  max-width: 360px;
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.55vw, 2.15rem);
  line-height: 1.02;
}

.session-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: #dce5ef;
  font-size: 0.88rem;
}

.control-row {
  grid-template-columns: repeat(4, 1fr);
  margin: 12px 0;
}

.control-row span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #eaf1f7;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.control-row .green {
  background: linear-gradient(135deg, #10c875, #0ca55f);
}

.tool-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tool-grid article {
  display: grid;
  gap: 14px;
  min-height: 114px;
  padding: 14px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.tool-grid small {
  color: #c8d3df;
  font-weight: 700;
}

.tool-grid strong {
  font-size: 1.75rem;
  letter-spacing: 0;
}

.tool-grid strong span {
  color: var(--muted);
  font-size: 0.78rem;
}

.tool-grid button {
  width: 76px;
  height: 34px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #14d782, #0fa862);
}

.tool-grid .record {
  background: linear-gradient(135deg, #ff4242, #b81731);
}

.audio-wave {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: 86px;
  padding: 14px;
  opacity: 0.84;
}

.audio-wave i {
  display: block;
  width: 2px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(120, 83, 255, 0), rgba(127, 91, 255, 0.75), rgba(224, 75, 149, 0.65), rgba(239, 111, 52, 0));
}

.audio-wave i:nth-child(2),
.audio-wave i:nth-child(8) {
  height: 42px;
}

.audio-wave i:nth-child(3),
.audio-wave i:nth-child(7) {
  height: 60px;
}

.audio-wave i:nth-child(4),
.audio-wave i:nth-child(6),
.audio-wave i:nth-child(9) {
  height: 74px;
}

.audio-wave i:nth-child(5) {
  height: 92px;
}

.compact-meter {
  margin-top: auto;
}

.progress-line {
  display: block;
  width: 74%;
  height: 6px;
  margin-top: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.progress-line::before {
  display: block;
  width: 58%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #24c47e, rgba(36, 196, 126, 0.44));
  border-radius: inherit;
}

.record-dot {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.record-dot::before {
  width: 13px;
  height: 13px;
  content: "";
  background: #ec4a4a;
  border-radius: 50%;
}

.phone-device {
  position: absolute;
  right: 1%;
  bottom: 44px;
  width: 176px;
  padding: 9px;
  background:
    linear-gradient(#05070b, #05070b) padding-box,
    linear-gradient(150deg, rgba(255, 255, 255, 0.28), rgba(255, 107, 33, 0.9)) border-box;
  border: 1px solid transparent;
  border-radius: 26px;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotateZ(0.5deg);
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 54px;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 326px;
  padding: 21px 12px 12px;
  background: #07111b;
  border-radius: 20px;
}

.product-screen {
  position: relative;
}

.product-screen::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.045), transparent 24%, transparent 78%, rgba(255, 255, 255, 0.024)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.038), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.48;
}

.product-screen-desktop::before,
.product-screen-phone::before {
  content: none;
}

.product-screen-phone::before {
  content: none;
}

.phone-screen small,
.phone-screen h3,
.phone-module span {
  display: block;
}

.phone-screen small {
  color: #fff;
  font-size: 0.7rem;
}

.phone-screen h3 {
  margin: 12px 0;
  font-size: 1.05rem;
}

.phone-card,
.phone-module {
  margin-bottom: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.phone-card {
  min-height: 82px;
  background:
    radial-gradient(circle at 88% 28%, rgba(255, 107, 33, 0.55), transparent 28%),
    rgba(255, 255, 255, 0.06);
}

.phone-card span {
  display: inline-flex;
  padding: 2px 6px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--violet);
  border-radius: 999px;
}

.phone-card strong {
  display: block;
  line-height: 1.16;
}

.phone-module span {
  color: #90d8ff;
  font-size: 0.7rem;
}

.phone-module strong {
  display: block;
  margin: 6px 0;
  font-size: 1.12rem;
}

.meter,
.phone-controls {
  display: flex;
  gap: 5px;
}

.meter i {
  width: 19px;
  height: 10px;
  background: linear-gradient(180deg, var(--violet), #4d24bd);
  border-radius: 3px;
}

.phone-controls b {
  width: 42px;
  height: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.phone-controls b:first-child {
  background: linear-gradient(135deg, #16d783, #0e9559);
}

.features,
.video-cta,
.waitlist-cta,
.entry-cta {
  margin-top: clamp(34px, 5.2vw, 72px);
}

.features {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.features h2,
.video-cta h2,
.waitlist-cta h2,
.entry-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.06;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article,
.video-card,
.waitlist-cta,
.entry-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 35%),
    linear-gradient(145deg, rgba(13, 20, 29, 0.94), rgba(7, 11, 17, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.feature-grid article {
  min-height: 192px;
  padding: 22px;
}

.feature-grid h3 {
  margin: 14px 0 8px;
  font-size: 1.2rem;
}

.feature-grid p,
.video-card p,
.waitlist-cta p,
.entry-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.sync::before {
  inset: 6px;
  border: 4px solid var(--violet);
  border-right-color: transparent;
  border-radius: 50%;
}

.sync::after {
  right: 0;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-right: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  transform: rotate(-45deg);
}

.spark::before {
  inset: 2px 13px;
  background: linear-gradient(var(--pink), var(--orange));
  border-radius: 999px;
}

.spark::after {
  inset: 13px 2px;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  border-radius: 999px;
}

.progress::before {
  left: 3px;
  bottom: 4px;
  width: 7px;
  height: 15px;
  background: var(--violet);
  border-radius: 4px;
  box-shadow: 11px -7px 0 #9f35ed, 22px -15px 0 var(--orange);
}

.progress::after {
  right: 1px;
  bottom: 1px;
  left: 1px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.video-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px;
}

.video-thumb {
  position: relative;
  min-height: 166px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(116, 52, 255, 0.5), transparent 24%),
    radial-gradient(circle at 32% 44%, rgba(255, 107, 33, 0.48), transparent 30%),
    linear-gradient(135deg, #21120f, #06090f 68%);
  border-radius: var(--radius);
}

.video-thumb::before {
  position: absolute;
  inset: 28px 44px 34px 68px;
  content: "";
  border: solid rgba(255, 176, 92, 0.54);
  border-width: 0 0 5px 5px;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.video-thumb::after {
  position: absolute;
  right: 44px;
  bottom: 40px;
  width: 120px;
  height: 14px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 107, 33, 0.86));
  border-radius: 999px;
  transform: rotate(-13deg);
}

.play-button {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.play-button::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  content: "";
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #b767ff;
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  content: "->";
}

.waitlist-cta {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.8fr);
  gap: 22px;
  align-items: end;
  padding: clamp(20px, 3vw, 28px);
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.waitlist-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  outline: none;
}

.waitlist-form input:focus {
  border-color: rgba(158, 214, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.14);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 34px;
  margin-top: 16px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer span::before {
  width: 18px;
  height: 18px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .desktop-device {
    right: auto;
    left: 0;
    width: min(720px, 100%);
    transform: rotateY(-4deg) rotateX(3deg);
  }

  .phone-device {
    right: clamp(0px, 5vw, 70px);
  }

  .features,
  .waitlist-cta {
    grid-template-columns: 1fr;
  }

  .waitlist-cta {
    align-items: start;
  }
}

@media (max-width: 780px) {
  .page-shell {
    padding-top: 18px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 28px;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.55rem, 12.5vw, 3.75rem);
  }

  .hero-lede {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 22px;
  }

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

  .hero-stage {
    margin-top: 16px;
    min-height: 452px;
  }

  .desktop-device {
    width: 660px;
    max-width: none;
    transform: scale(0.66);
    transform-origin: top left;
  }

  .phone-device {
    right: 0;
    bottom: 22px;
    transform: scale(0.78);
    transform-origin: bottom right;
  }

  .feature-grid,
  .video-card,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .video-card {
    padding: 14px;
  }

  .features,
  .video-cta,
  .waitlist-cta {
    margin-top: 34px;
  }
}

@media (max-width: 520px) {
  .brand {
    align-items: flex-start;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .button {
    min-height: 44px;
  }

  .hero-bullets {
    gap: 12px;
  }

  .hero-bullets li {
    grid-template-columns: 28px 1fr;
    gap: 11px;
    font-size: 0.92rem;
  }

  .bullet-icon {
    width: 28px;
    height: 28px;
  }

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

  .desktop-device {
    transform: scale(0.43);
  }

  .phone-device {
    width: 176px;
    transform: scale(0.58);
  }

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

  .video-thumb {
    min-height: 164px;
  }

  .feature-grid article {
    padding: 18px;
  }

  .video-card,
  .waitlist-cta {
    padding: 13px;
  }

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

/* Compressed mockup-inspired landing composition */
body {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 107, 33, 0.12), transparent 17rem),
    radial-gradient(circle at 22% 20%, rgba(116, 52, 255, 0.14), transparent 16rem),
    linear-gradient(180deg, rgba(3, 5, 8, 0.96), rgba(3, 5, 8, 0.99) 54%, #030508),
    #030508;
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.013) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.011) 1px, transparent 1px);
  background-size: 118px 118px;
  opacity: 0.72;
}

body::after {
  height: 32vh;
  background:
    linear-gradient(180deg, transparent, rgba(70, 32, 15, 0.38)),
    repeating-linear-gradient(90deg, rgba(119, 61, 23, 0.2) 0 2px, transparent 2px 94px);
  opacity: 0.5;
}

main {
  display: grid;
  gap: 14px;
}

.landing-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.25fr;
  gap: 0;
  width: min(100%, 1360px);
  margin: -8px auto 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%),
    linear-gradient(145deg, rgba(12, 18, 27, 0.96), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.landing-strip > section {
  min-width: 0;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-strip > section:last-child {
  border-right: 0;
}

.landing-strip .video-card,
.landing-strip .features,
.landing-strip .waitlist-cta,
.landing-strip .entry-cta {
  min-height: 136px;
  height: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.landing-strip h2 {
  margin-bottom: 4px;
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
  line-height: 1.12;
}

.landing-strip p {
  color: rgba(219, 226, 235, 0.78);
  font-size: 0.92rem;
}

.landing-strip .entry-cta {
  display: grid;
  gap: 14px;
  align-content: center;
}

.entry-cta .button {
  width: max-content;
  min-width: 168px;
}

.landing-strip .text-link {
  margin-top: 10px;
  color: #b86cff;
  font-size: 0.92rem;
}

.feature-visual {
  position: relative;
  width: 126px;
  height: 70px;
}

.feature-visual span,
.feature-visual i,
.feature-visual b {
  position: absolute;
  display: block;
}

.feature-visual span {
  left: 0;
  bottom: 6px;
  width: 56px;
  height: 36px;
  border: 5px solid #7434ff;
  border-radius: 4px;
}

.feature-visual span::after {
  position: absolute;
  right: 12px;
  bottom: -14px;
  left: 12px;
  height: 5px;
  content: "";
  background: #7434ff;
  border-radius: 999px;
}

.feature-visual i {
  top: 27px;
  left: 62px;
  width: 34px;
  height: 34px;
  border: 5px solid var(--orange);
  border-left-color: transparent;
  border-radius: 50%;
}

.feature-visual b {
  right: 0;
  bottom: 0;
  width: 36px;
  height: 64px;
  border: 5px solid #ef2b92;
  border-radius: 6px;
}

.features .feature-grid {
  display: none;
}

@media (min-width: 981px) {
  .page-shell {
    width: min(100%, 1540px);
    min-height: 100vh;
    padding: 22px clamp(24px, 2.6vw, 38px) 10px;
  }

  .site-header {
    margin-bottom: clamp(18px, 2.4vw, 30px);
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: clamp(1.35rem, 1.85vw, 1.9rem);
  }

  .brand small {
    font-size: 0.9rem;
  }

  .button {
    min-height: 46px;
    padding-inline: 24px;
  }

  .hero {
    grid-template-columns: minmax(350px, 0.64fr) minmax(600px, 1.36fr);
    gap: clamp(28px, 4vw, 68px);
    align-items: start;
    width: min(100%, 1480px);
    min-height: clamp(520px, 62vh, 640px);
    margin: 0 auto;
  }

  .hero-copy {
    padding-top: clamp(14px, 2.5vw, 42px);
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .hero h1 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(3rem, 4.1vw, 4.5rem);
    line-height: 0.98;
  }

  .hero h1 span {
    font-size: 0.86em;
  }

  .hero h1 span::after {
    width: 48%;
    height: 5px;
    margin-top: -1px;
  }

  .hero-lede {
    max-width: 420px;
    margin-bottom: 24px;
    font-size: clamp(0.98rem, 1.2vw, 1.16rem);
  }

  .hero-actions {
    display: none;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 420px;
  }

  .hero-bullets li {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .bullet-icon {
    width: 32px;
    height: 32px;
  }

  .hero-stage {
    min-height: clamp(500px, 62vh, 625px);
    margin-top: 0;
  }

  .desktop-device {
    top: 0;
    right: 8.5%;
    width: min(800px, 76vw);
    padding: 12px;
    border-radius: 18px;
    transform: perspective(1300px) rotateY(-5deg) rotateX(2deg);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .desktop-device::after {
    right: 7%;
    bottom: -54px;
    left: 3%;
    width: auto;
    height: 52px;
    background: linear-gradient(180deg, #25211f, #100d0d);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 26px 26px;
    transform: perspective(660px) rotateX(67deg);
    transform-origin: top;
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.45);
  }

  .desktop-device::before {
    position: absolute;
    left: 39%;
    bottom: -62px;
    z-index: 1;
    width: 22%;
    height: 12px;
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.025));
    border-radius: 0 0 12px 12px;
    filter: blur(0.2px);
    opacity: 0.75;
    transform: perspective(420px) rotateX(58deg);
  }

  .app-window {
    grid-template-columns: 96px 1fr;
    min-height: clamp(370px, 46vh, 475px);
  }

  .app-content {
    padding: clamp(16px, 1.6vw, 22px);
  }

  .session-card {
    min-height: clamp(128px, 17vh, 176px);
  }

  .phone-device {
    right: 0;
    bottom: clamp(36px, 6vh, 74px);
    width: clamp(154px, 13vw, 210px);
  }

  .phone-screen {
    min-height: clamp(286px, 34vh, 380px);
  }

  .video-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    align-items: center;
    padding: 16px;
  }

  .video-thumb {
    min-height: 104px;
  }

  .features {
    display: grid;
    grid-template-columns: 146px 1fr;
    gap: 20px;
    align-items: center;
    padding: 16px 22px;
  }

  .waitlist-cta,
  .entry-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-content: center;
    padding: 16px 18px;
  }

  .waitlist-form {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .waitlist-form input {
    min-height: 42px;
  }

  .site-footer {
    margin-top: 8px;
    padding: 8px;
    font-size: 0.9rem;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .page-shell {
    padding-top: 14px;
    padding-bottom: 6px;
  }

  .site-header {
    margin-bottom: 10px;
  }

  .hero {
    min-height: 486px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 3.7vw, 4.05rem);
    margin-bottom: 14px;
  }

  .hero-lede {
    margin-bottom: 18px;
  }

  .hero-bullets {
    gap: 14px;
  }

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

  .app-window {
    min-height: 346px;
  }

  .landing-strip .video-card,
  .landing-strip .features,
  .landing-strip .waitlist-cta,
  .landing-strip .entry-cta {
    min-height: 108px;
  }

  .landing-strip h2 {
    font-size: 1.12rem;
  }

  .landing-strip p {
    font-size: 0.82rem;
  }

  .video-thumb {
    min-height: 76px;
  }

  .landing-strip {
    margin-top: -6px;
  }

  .video-card,
  .features,
  .waitlist-cta,
  .entry-cta {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .waitlist-form input,
  .waitlist-form .button {
    min-height: 38px;
  }

  .site-footer {
    margin-top: 4px;
    padding: 4px;
  }
}

@media (max-width: 980px) {
  main {
    display: block;
  }

  .landing-strip {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .landing-strip > section {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .landing-strip > section:last-child {
    border-bottom: 0;
  }

  .features {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
  }

  .video-card {
    grid-template-columns: 150px 1fr;
    gap: 16px;
  }

  .waitlist-cta {
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .landing-strip {
    margin-top: 28px;
  }

  .video-card,
  .features {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    width: 112px;
    height: 58px;
  }

  .landing-strip .video-card,
  .landing-strip .features,
  .landing-strip .waitlist-cta {
    min-height: 0;
  }
}

/* Art direction pass: calmer premium product treatment */
:root {
  --violet: #7b4dff;
  --pink: #d84aa6;
  --orange: #f06f34;
  --blue: #56b6d8;
  --green: #24c47e;
  --text: #f4f6f8;
  --muted: #aab3bf;
  --line: rgba(255, 255, 255, 0.095);
}

body {
  background:
    radial-gradient(circle at 82% 14%, rgba(210, 93, 42, 0.08), transparent 18rem),
    radial-gradient(circle at 22% 20%, rgba(101, 66, 190, 0.1), transparent 16rem),
    linear-gradient(180deg, #030509 0%, #05070b 58%, #030407 100%);
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 132px 132px;
  opacity: 0.48;
}

body::after {
  height: 26vh;
  background:
    linear-gradient(180deg, transparent, rgba(43, 20, 12, 0.3)),
    repeating-linear-gradient(90deg, rgba(112, 58, 25, 0.13) 0 1px, transparent 1px 112px);
  opacity: 0.42;
}

.brand-mark,
.mini-logo {
  background:
    linear-gradient(#05070b, #05070b) padding-box,
    linear-gradient(135deg, #e14698, #7657ff 55%, #e66b32) border-box;
  box-shadow: 0 0 18px rgba(105, 77, 255, 0.22);
}

.brand small em,
em,
.waitlist-cta h2 span {
  background: linear-gradient(90deg, #9a78ff, #d94ba2 52%, #ef7a38);
  -webkit-background-clip: text;
  background-clip: text;
}

.button-primary {
  background: linear-gradient(100deg, #6846e8, #cf3f9a 52%, #eb6e32);
  box-shadow: 0 10px 24px rgba(200, 74, 133, 0.14), 0 8px 24px rgba(95, 71, 218, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.13);
}

.hero::before,
.device-glow {
  opacity: 0.14;
}

.hero h1 {
  color: rgba(249, 250, 252, 0.96);
  font-weight: 780;
  text-wrap: balance;
}

.hero h1 span {
  font-weight: 700;
  background: linear-gradient(92deg, #8b68ff 0%, #cc4fa3 48%, #ec7639 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero h1 span::after {
  opacity: 0.76;
  background: linear-gradient(90deg, rgba(139, 104, 255, 0.82), rgba(204, 79, 163, 0.82), rgba(236, 118, 57, 0.82));
}

.hero-lede {
  color: rgba(225, 230, 236, 0.9);
  line-height: 1.55;
}

.hero-bullets strong {
  color: rgba(249, 250, 252, 0.94);
  font-weight: 700;
}

.hero-bullets li {
  color: rgba(189, 198, 209, 0.86);
}

.bullet-icon,
.feature-icon {
  opacity: 0.9;
  filter: saturate(0.86);
}

.desktop-device {
  background:
    linear-gradient(180deg, #151a22, #080b11) padding-box,
    linear-gradient(135deg, rgba(209, 125, 72, 0.35), rgba(255, 255, 255, 0.14), rgba(86, 182, 216, 0.13)) border-box;
  box-shadow:
    0 30px 68px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.device-glow {
  background:
    radial-gradient(circle at 42% 16%, rgba(86, 182, 216, 0.12), transparent 34%),
    radial-gradient(circle at 75% 72%, rgba(240, 111, 52, 0.13), transparent 33%);
  filter: blur(10px);
}

.app-window {
  background:
    linear-gradient(180deg, rgba(12, 18, 26, 0.99), rgba(5, 9, 15, 0.99));
  border-color: rgba(255, 255, 255, 0.105);
}

.app-sidebar {
  background: rgba(255, 255, 255, 0.022);
}

.app-sidebar span:not(.mini-logo) {
  background: transparent;
}

.app-sidebar .side-active {
  background: rgba(123, 77, 255, 0.18);
}

.session-card {
  grid-template-columns: minmax(210px, 0.78fr) minmax(170px, 1fr);
  background:
    linear-gradient(105deg, rgba(185, 105, 55, 0.11), transparent 50%),
    rgba(255, 255, 255, 0.028);
  border-color: rgba(255, 255, 255, 0.09);
}

.status-pill {
  background: linear-gradient(90deg, #6d4df0, #cf4096);
}

.control-row span,
.tool-grid article,
.phone-card,
.phone-module {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.078);
}

.audio-wave {
  opacity: 0.62;
}

.audio-wave i {
  background: linear-gradient(180deg, rgba(120, 83, 255, 0), rgba(127, 91, 255, 0.55), rgba(224, 75, 149, 0.48), rgba(239, 111, 52, 0));
}

.control-row .green,
.tool-grid button,
.phone-controls b:first-child {
  background: linear-gradient(135deg, #24c47e, #169865);
}

.tool-grid .record {
  background: linear-gradient(135deg, #ec4a4a, #b92d3d);
}

.phone-device {
  background:
    linear-gradient(#05070b, #05070b) padding-box,
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(218, 112, 58, 0.55)) border-box;
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.phone-screen {
  background: linear-gradient(180deg, #08111a, #050a11);
}

.phone-card {
  background:
    radial-gradient(circle at 88% 28%, rgba(220, 105, 49, 0.38), transparent 28%),
    rgba(255, 255, 255, 0.045);
}

.meter i {
  background: linear-gradient(180deg, #7657ff, #5435c0);
}

.landing-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012) 42%, rgba(0, 0, 0, 0.08)),
    linear-gradient(145deg, rgba(12, 17, 24, 0.965), rgba(5, 8, 13, 0.965));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.landing-strip > section {
  border-color: rgba(255, 255, 255, 0.065);
}

.landing-strip h2 {
  color: rgba(248, 250, 252, 0.96);
  font-weight: 720;
}

.landing-strip p {
  color: rgba(197, 205, 216, 0.78);
  line-height: 1.45;
}

.landing-strip .text-link {
  color: #b989ff;
}

.video-thumb {
  background:
    radial-gradient(circle at 70% 30%, rgba(109, 69, 204, 0.34), transparent 27%),
    radial-gradient(circle at 30% 42%, rgba(205, 95, 45, 0.34), transparent 32%),
    linear-gradient(135deg, #1a100e, #05080d 68%);
}

.play-button {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.52);
}

.feature-visual {
  filter: saturate(0.85);
  opacity: 0.92;
}

.waitlist-form input {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.1);
}

.site-footer {
  color: rgba(218, 224, 232, 0.58);
}

@media (min-width: 981px) {
  .hero h1 {
    max-width: 500px;
    font-size: clamp(2.82rem, 3.72vw, 4.16rem);
  }

  .hero h1 span {
    font-size: 0.82em;
  }

  .hero-lede {
    max-width: 430px;
    margin-bottom: 26px;
  }

  .desktop-device {
    right: 7%;
    width: min(820px, 77vw);
  }

  .app-window {
    min-height: clamp(382px, 47vh, 488px);
  }

  .landing-strip {
    margin-top: -10px;
  }

  .video-card {
    grid-template-columns: 240px 1fr;
  }

  .waitlist-cta {
    padding-inline: 22px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero h1 {
    font-size: clamp(2.55rem, 3.35vw, 3.72rem);
  }

  .hero-lede {
    margin-bottom: 20px;
  }

  .app-window {
    min-height: 350px;
  }

  .desktop-device {
    width: min(790px, 76vw);
  }

  .product-screen-desktop {
    min-height: 0;
    aspect-ratio: 16.4 / 9;
  }

  .session-card {
    min-height: 118px;
    padding: 18px;
  }

  .audio-wave {
    min-height: 66px;
  }

  .audio-wave i:nth-child(5) {
    height: 70px;
  }

  .audio-wave i:nth-child(4),
  .audio-wave i:nth-child(6),
  .audio-wave i:nth-child(9) {
    height: 58px;
  }

  .tool-grid article {
    min-height: 84px;
  }

  .landing-strip {
    margin-top: -2px;
    height: 136px;
  }

  .landing-strip .video-card,
  .landing-strip .features,
  .landing-strip .waitlist-cta {
    min-height: 0;
    height: 136px;
    overflow: hidden;
    clip-path: inset(0 round 12px);
    contain: paint;
  }

  .landing-strip h2 {
    font-size: 1.04rem;
    line-height: 1.05;
  }

  .landing-strip p,
  .landing-strip .text-link {
    font-size: 0.8rem;
  }

  .site-footer {
    gap: 14px 28px;
    margin-top: 2px;
    padding: 2px;
  }
}

/* Musician-room hero background, matching the supplied art direction */
.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

.page-shell::before {
  background-image: url("assets/hero-reference-atmosphere.png");
  background-repeat: no-repeat;
  background-position: 28% 45%;
  background-size: cover;
  opacity: 0.92;
}

.page-shell::after {
  z-index: -1;
  background:
    radial-gradient(circle at 34% 42%, rgba(0, 0, 0, 0.02), transparent 21rem),
    linear-gradient(90deg, rgba(3, 5, 8, 0.48) 0%, rgba(3, 5, 8, 0.58) 24%, rgba(3, 5, 8, 0.28) 45%, rgba(3, 5, 8, 0.72) 76%, rgba(3, 5, 8, 0.92) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.1) 0%, rgba(3, 5, 8, 0.16) 56%, rgba(3, 5, 8, 0.86) 100%);
}

body::before {
  opacity: 0.24;
}

body::after {
  opacity: 0.28;
}

.hero h1,
.hero-lede,
.hero-bullets {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.52);
}

.desktop-device {
  background:
    linear-gradient(180deg, rgba(21, 26, 34, 0.94), rgba(8, 11, 17, 0.96)) padding-box,
    linear-gradient(135deg, rgba(209, 125, 72, 0.42), rgba(255, 255, 255, 0.14), rgba(86, 182, 216, 0.13)) border-box;
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.landing-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012) 42%, rgba(0, 0, 0, 0.08)),
    linear-gradient(145deg, rgba(12, 17, 24, 0.91), rgba(5, 8, 13, 0.93));
  backdrop-filter: blur(14px);
}

@media (max-width: 980px) {
  .page-shell::before {
    background-position: 34% 18%;
    opacity: 0.72;
  }

  .page-shell::after {
    background:
      linear-gradient(90deg, rgba(3, 5, 8, 0.78), rgba(3, 5, 8, 0.76)),
      linear-gradient(180deg, rgba(3, 5, 8, 0.22), rgba(3, 5, 8, 0.9));
  }
}

/* Device staging pass: match the supplied laptop/phone foreground angle */
@media (min-width: 981px) {
  .hero-stage {
    min-height: clamp(500px, 61vh, 620px);
  }

  .desktop-device {
    top: 42px;
    right: -0.6%;
    width: min(785px, 74vw);
    padding: 9px;
    border-radius: 17px;
    transform: perspective(1500px) rotateY(-3deg) rotateX(1deg) rotateZ(-0.6deg);
    transform-origin: 48% 100%;
    box-shadow:
      0 34px 76px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(255, 255, 255, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .desktop-device::after {
    right: -8%;
    bottom: -86px;
    left: -16%;
    height: 92px;
    background:
      radial-gradient(ellipse at 49% 21%, rgba(255, 255, 255, 0.1), transparent 16%),
      linear-gradient(180deg, rgba(62, 61, 58, 0.78), rgba(31, 29, 28, 0.92) 54%, rgba(11, 10, 10, 0.98) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.075);
    border-radius: 0 0 46px 46px;
    transform: perspective(980px) rotateX(76deg);
    box-shadow:
      0 24px 38px rgba(0, 0, 0, 0.52),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .product-screen-desktop {
    aspect-ratio: 16 / 9;
  }

  .phone-device {
    right: -2.4%;
    bottom: -10px;
    width: clamp(132px, 10.6vw, 168px);
    border-radius: 28px;
    transform: perspective(900px) rotateY(-7deg) rotateZ(0.8deg);
    transform-origin: 55% 100%;
    box-shadow:
      0 24px 42px rgba(0, 0, 0, 0.62),
      0 0 0 1px rgba(255, 255, 255, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .phone-device::after {
    position: absolute;
    right: -8px;
    bottom: -12px;
    left: -16px;
    z-index: -1;
    height: 26px;
    content: "";
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.62), transparent 68%);
    filter: blur(4px);
  }

  .phone-screen {
    min-height: clamp(250px, 29vh, 320px);
  }

  .phone-screen h3 {
    margin: 7px 0;
    font-size: 0.92rem;
  }

  .phone-card,
  .phone-module {
    margin-bottom: 8px;
    padding: 8px;
  }

  .phone-card {
    min-height: 70px;
  }

  .phone-card strong {
    font-size: 0.88rem;
  }

  .phone-card span {
    margin-bottom: 6px;
    font-size: 0.46rem;
  }

  .phone-module span {
    font-size: 0.62rem;
  }

  .phone-module strong {
    margin: 4px 0;
    font-size: 0.95rem;
  }

  .meter i {
    width: 13px;
    height: 7px;
  }

  .phone-controls b {
    width: 29px;
    height: 18px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .desktop-device {
    top: 36px;
    right: -1.5%;
    width: min(770px, 73vw);
  }

  .phone-device {
    bottom: 6px;
    right: -2.2%;
    width: clamp(128px, 10.2vw, 150px);
  }

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

/* Reference-match polish: cinematic depth and device integration */
.page-shell::before {
  background-position: 31% 40%;
  opacity: 1;
  filter: contrast(1.08) saturate(1.08) brightness(1.08);
}

.page-shell::after {
  background:
    radial-gradient(circle at 36% 43%, rgba(0, 0, 0, 0), transparent 19rem),
    radial-gradient(circle at 39% 66%, rgba(205, 96, 37, 0.16), transparent 17rem),
    linear-gradient(90deg, rgba(3, 5, 8, 0.32) 0%, rgba(3, 5, 8, 0.36) 22%, rgba(3, 5, 8, 0.16) 43%, rgba(3, 5, 8, 0.64) 72%, rgba(3, 5, 8, 0.9) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.04) 0%, rgba(3, 5, 8, 0.11) 55%, rgba(3, 5, 8, 0.87) 100%);
}

body::before {
  opacity: 0.16;
}

body::after {
  opacity: 0.22;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  inset: -24px -18px -18px -28px;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(3, 5, 8, 0.34), rgba(3, 5, 8, 0.08) 72%, transparent);
  border-radius: 18px;
  filter: blur(8px);
}

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

.hero-stage::before {
  right: -10%;
  bottom: -2%;
  z-index: -2;
  width: 82%;
  height: 26%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.68), transparent 66%);
  filter: blur(10px);
  transform: rotate(-1deg);
}

.hero-stage::after {
  right: 4%;
  bottom: 6%;
  z-index: -1;
  width: 62%;
  height: 16%;
  background: linear-gradient(90deg, transparent, rgba(223, 116, 52, 0.13), transparent);
  filter: blur(18px);
}

.hero-story {
  isolation: isolate;
}

.story-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  animation-duration: 42s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: opacity, transform;
}

.story-scene-product {
  opacity: 1;
  animation-name: productScene;
}

.story-scene-practice-chaos,
.story-scene-knowledge-chaos,
.story-scene-connected {
  display: grid;
  place-items: center;
  padding: 34px 18px 16px;
}

.story-scene-practice-chaos {
  animation-name: practiceChaosScene;
}

.story-scene-knowledge-chaos {
  animation-name: knowledgeChaosScene;
}

.story-scene-connected {
  animation-name: connectedScene;
}

.story-scene-connected .story-message {
  right: 6.5%;
  bottom: 5%;
  width: min(345px, 44%);
}

.story-message {
  position: absolute;
  right: 5%;
  bottom: 11%;
  z-index: 3;
  width: min(370px, 70%);
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.024)),
    rgba(7, 11, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: var(--radius);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.story-message span {
  display: block;
  margin-bottom: 8px;
  color: rgba(149, 190, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.story-message p {
  margin: 0;
  color: rgba(246, 248, 252, 0.94);
  font-size: clamp(1.06rem, 1.65vw, 1.35rem);
  font-weight: 780;
  line-height: 1.24;
}

.practice-chaos-field,
.knowledge-chaos-field {
  position: relative;
  width: min(760px, 92%);
  min-height: 410px;
  background:
    radial-gradient(circle at 46% 48%, rgba(123, 77, 255, 0.13), transparent 14rem),
    radial-gradient(circle at 70% 40%, rgba(240, 111, 52, 0.12), transparent 15rem);
}

.practice-chaos-field::before,
.practice-chaos-field::after,
.knowledge-chaos-field::before,
.knowledge-chaos-field::after {
  position: absolute;
  inset: 22% 10%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.practice-chaos-field::after,
.knowledge-chaos-field::after {
  inset: 12% 20% 24%;
  border-color: rgba(240, 111, 52, 0.16);
  transform: rotate(16deg);
}

.chaos-card,
.material-card {
  position: absolute;
  display: grid;
  min-width: 132px;
  min-height: 54px;
  place-items: center;
  padding: 12px 16px;
  color: rgba(245, 248, 252, 0.9);
  font-size: 0.86rem;
  font-weight: 760;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024)),
    rgba(9, 14, 21, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.chaos-card {
  border-color: rgba(255, 255, 255, 0.075);
  transform-origin: center;
}

.material-card::before {
  width: 9px;
  height: 9px;
  margin-bottom: 8px;
  content: "";
  background: linear-gradient(135deg, var(--violet), var(--orange));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(211, 80, 138, 0.38);
}

.chaos-card::before {
  width: 8px;
  height: 8px;
  margin-bottom: 8px;
  content: "";
  background: linear-gradient(135deg, #58d187, var(--violet));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(123, 77, 255, 0.28);
}

.chaos-card.pentatonic {
  top: 8%;
  left: 10%;
  transform: rotate(-4deg);
}

.chaos-card.song-study {
  top: 22%;
  right: 14%;
  transform: rotate(3deg);
}

.chaos-card.timing {
  top: 43%;
  left: 4%;
  transform: rotate(5deg);
}

.chaos-card.improv {
  top: 47%;
  right: 4%;
  transform: rotate(-5deg);
}

.chaos-card.assignment {
  top: 28%;
  left: 36%;
  min-width: 168px;
}

.chaos-card.backing {
  bottom: 8%;
  left: 22%;
  transform: rotate(-2deg);
}

.material-card.pdfs {
  top: 8%;
  left: 10%;
  transform: rotate(-4deg);
}

.material-card.tabs {
  top: 22%;
  right: 14%;
  transform: rotate(3deg);
}

.material-card.videos {
  top: 43%;
  left: 4%;
  min-width: 154px;
  transform: rotate(5deg);
}

.material-card.recordings {
  top: 47%;
  right: 4%;
  transform: rotate(-5deg);
}

.material-card.notes {
  top: 28%;
  left: 36%;
  min-width: 150px;
}

.material-card.backing {
  bottom: 8%;
  left: 22%;
  transform: rotate(-2deg);
}

.material-card.screenshot {
  right: 20%;
  bottom: 14%;
  transform: rotate(4deg);
}

.connected-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.46fr);
  gap: 16px;
  width: min(760px, 92%);
  min-height: 410px;
  padding: 18px;
  background:
    radial-gradient(circle at 38% 34%, rgba(88, 209, 135, 0.13), transparent 14rem),
    radial-gradient(circle at 70% 44%, rgba(123, 77, 255, 0.15), transparent 15rem),
    rgba(255, 255, 255, 0.014);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--radius);
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-14px);
}

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

.connected-system::before {
  top: 106px;
  left: 80px;
  width: 430px;
  height: 190px;
  border: 1px solid rgba(240, 111, 52, 0.16);
  border-left-color: rgba(88, 209, 135, 0.24);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.connected-system::after {
  top: 186px;
  left: 76px;
  width: 442px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.goal-node,
.map-item,
.today-session {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(8, 12, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.goal-node {
  grid-column: 1 / 2;
  align-self: start;
  justify-self: center;
  width: min(100%, 330px);
  padding: 16px 18px;
  text-align: center;
}

.goal-node span,
.today-session span {
  display: block;
  margin-bottom: 7px;
  color: rgba(183, 142, 255, 0.96);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.goal-node strong {
  font-size: clamp(1.1rem, 1.7vw, 1.36rem);
  line-height: 1.08;
}

.connected-map {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.map-item {
  min-height: 112px;
  padding: 13px;
}

.map-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.map-item span {
  display: inline-flex;
  padding: 5px 7px;
  margin: 0 5px 6px 0;
  color: rgba(219, 226, 235, 0.84);
  font-size: 0.68rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
}

.map-item.drill {
  border-left: 2px solid rgba(88, 209, 135, 0.85);
}

.map-item.improvise {
  border-left: 2px solid rgba(123, 77, 255, 0.85);
}

.map-item.study {
  border-left: 2px solid rgba(0, 163, 255, 0.78);
}

.map-item.review {
  border-left: 2px solid rgba(240, 111, 52, 0.85);
}

.today-session {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  padding: 16px;
}

.today-session ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: session;
}

.today-session li {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(245, 248, 252, 0.9);
  font-size: 0.82rem;
  font-weight: 760;
}

.today-session li::before {
  display: grid;
  flex: 0 0 24px;
  height: 24px;
  place-items: center;
  counter-increment: session;
  content: counter(session);
  color: #06100b;
  font-size: 0.72rem;
  font-weight: 900;
  background: #58d187;
  border-radius: 999px;
}

@keyframes productScene {
  0%,
  10% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  16%,
  78% {
    opacity: 0;
    transform: translateY(4px) scale(0.99);
  }
  84%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes practiceChaosScene {
  0%,
  13% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  18%,
  31% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(0.99);
  }
}

@keyframes knowledgeChaosScene {
  0%,
  33% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  38%,
  51% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  56%,
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(0.99);
  }
}

@keyframes connectedScene {
  0%,
  53% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  58%,
  74% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  80%,
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(0.99);
  }
}

.desktop-device {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(24, 29, 36, 0.94), rgba(7, 10, 15, 0.98)) padding-box,
    linear-gradient(135deg, rgba(226, 151, 91, 0.34), rgba(255, 255, 255, 0.14), rgba(86, 182, 216, 0.1)) border-box;
  box-shadow:
    0 38px 86px rgba(0, 0, 0, 0.64),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.desktop-device::after {
  background:
    radial-gradient(ellipse at 50% 19%, rgba(255, 255, 255, 0.13), transparent 15%),
    linear-gradient(180deg, rgba(78, 78, 74, 0.74), rgba(33, 31, 30, 0.94) 52%, rgba(10, 9, 9, 0.99)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.06));
  box-shadow:
    0 28px 44px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.app-window {
  background:
    linear-gradient(180deg, rgba(13, 18, 25, 0.985), rgba(4, 7, 12, 0.99));
}

.product-screen::after {
  opacity: 0.38;
}

.phone-device {
  border-color: rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(#05070b, #05070b) padding-box,
    linear-gradient(150deg, rgba(255, 255, 255, 0.22), rgba(211, 113, 62, 0.42)) border-box;
  box-shadow:
    0 28px 48px rgba(0, 0, 0, 0.66),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.landing-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 42%, rgba(0, 0, 0, 0.1)),
    linear-gradient(145deg, rgba(11, 16, 23, 0.9), rgba(4, 7, 11, 0.94));
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 981px) {
  .desktop-device {
    top: 34px;
    right: -2.2%;
    width: min(800px, 75vw);
    transform: perspective(1500px) rotateY(-3.6deg) rotateX(1.2deg) rotateZ(-0.45deg);
  }

  .phone-device {
    right: -2.6%;
    bottom: 8px;
    width: clamp(134px, 11vw, 172px);
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .desktop-device {
    top: 31px;
    right: -2.3%;
    width: min(790px, 74vw);
  }

  .phone-device {
    bottom: 12px;
    right: -2.8%;
    width: clamp(132px, 10.8vw, 158px);
  }
}

@media (max-width: 980px) {
  .page-shell::before {
    background-position: 38% 14%;
    opacity: 0.78;
  }

  .hero-copy::before {
    inset: -18px;
    background: rgba(3, 5, 8, 0.34);
  }
}

/* Reference device plate: temporary image-backed screen/device target */
.reference-device-plate {
  position: absolute;
  top: -4px;
  right: -22px;
  z-index: 2;
  width: min(890px, 68vw);
  aspect-ratio: 1.43;
  overflow: hidden;
  pointer-events: none;
  filter:
    drop-shadow(0 42px 48px rgba(0, 0, 0, 0.58))
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42));
}

.reference-device-plate img {
  position: absolute;
  top: -11.2%;
  left: -48.4%;
  width: 149%;
  max-width: none;
  filter: contrast(1.02) saturate(1.01) brightness(0.98);
}

.desktop-device,
.phone-device {
  display: none;
}

.mobile-keyboard-deck {
  display: none;
}

@media (min-width: 981px) and (max-height: 820px) {
  .reference-device-plate {
    top: -8px;
    right: -24px;
    width: min(860px, 68vw);
  }
}

@media (max-width: 980px) {
  .reference-device-plate {
    position: relative;
    top: auto;
    right: auto;
    width: min(800px, 126vw);
    margin: -20px -20vw 0 auto;
    aspect-ratio: 1.42;
  }

  .reference-device-plate img {
    top: -11.5%;
    left: -41.8%;
    width: 150%;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .hero,
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .hero h1 span {
    width: auto;
    font-size: 0.68em;
    white-space: normal;
  }

  .hero h1 span::after {
    width: 70%;
    margin-left: 18%;
  }

  .hero-lede {
    width: calc(100vw - 36px);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .reference-device-plate {
    width: 144vw;
    margin: -12px -44vw 0 auto;
  }
}

/* Reference copy/backdrop restoration */
.page-shell::before {
  background-image: url("assets/hero-musician-practice-room.png");
  background-position: 33% 42%;
  filter: contrast(1.08) saturate(1.04) brightness(1.04);
}

.page-shell::after {
  background:
    radial-gradient(circle at 40% 38%, rgba(0, 0, 0, 0.02), transparent 18rem),
    radial-gradient(circle at 42% 66%, rgba(205, 96, 37, 0.11), transparent 17rem),
    linear-gradient(90deg, rgba(3, 5, 8, 0.42) 0%, rgba(3, 5, 8, 0.3) 24%, rgba(3, 5, 8, 0.08) 43%, rgba(3, 5, 8, 0.62) 73%, rgba(3, 5, 8, 0.9) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.02) 0%, rgba(3, 5, 8, 0.08) 55%, rgba(3, 5, 8, 0.88) 100%);
}

.hero-lede {
  max-width: 470px;
}

.video-thumb {
  background:
    radial-gradient(circle at 77% 44%, rgba(113, 66, 255, 0.46), transparent 22%),
    radial-gradient(circle at 48% 52%, rgba(255, 101, 32, 0.32), transparent 34%),
    linear-gradient(90deg, rgba(3, 5, 8, 0.28), rgba(3, 5, 8, 0.08)),
    url("assets/hero-musician-practice-room.png");
  background-position: center, center, center, 45% 48%;
  background-size: auto, auto, auto, 215%;
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 6, 9, 0.38), transparent 44%, rgba(4, 6, 9, 0.2)),
    linear-gradient(180deg, transparent, rgba(4, 6, 9, 0.26));
  pointer-events: none;
}

.play-button {
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 34px rgba(215, 45, 151, 0.44),
    0 0 24px rgba(255, 96, 32, 0.28);
}

@media (min-width: 981px) {
  .hero-lede {
    max-width: 460px;
  }
}

@media (max-width: 980px) {
  .page-shell::before {
    background-position: 40% 8%;
    opacity: 0.9;
  }
}

@media (max-width: 640px) {
  .hero-lede,
  .hero-bullets {
    width: min(100%, 340px);
    max-width: 340px;
  }
}

/* Final mobile polish pass */
@media (max-width: 780px) {
  .page-shell {
    padding: 14px 16px 16px;
  }

  .site-header {
    gap: 10px;
    margin-bottom: 22px;
  }

  .brand {
    gap: 11px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 1.28rem;
  }

  .brand strong {
    font-size: 1.24rem;
  }

  .brand small {
    margin-top: 0;
    font-size: 0.8rem;
  }

  .nav-links {
    gap: 16px;
    padding-bottom: 0;
    font-size: 0.9rem;
    scrollbar-width: none;
  }

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

  .nav-cta,
  .hero-actions .button,
  .waitlist-form .button {
    min-height: 44px;
  }

  .hero-copy {
    padding-top: 2px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 14px;
    font-size: clamp(2.82rem, 13.2vw, 3.75rem);
    line-height: 0.98;
  }

  .hero h1 span {
    font-size: 0.72em;
  }

  .hero h1 span::after {
    height: 4px;
    margin-top: 1px;
  }

  .hero-lede {
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-bullets {
    gap: 11px;
  }

  .hero-bullets li {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.34;
  }

  .bullet-icon {
    width: 27px;
    height: 27px;
  }

  .landing-strip {
    margin-top: 22px;
  }

  .landing-strip .video-card,
  .landing-strip .features,
  .landing-strip .waitlist-cta {
    padding: 14px;
  }

  .landing-strip h2 {
    font-size: 1.08rem;
  }

  .landing-strip p,
  .landing-strip .text-link {
    font-size: 0.86rem;
  }
}

@media (max-width: 640px) {
  .hero,
  .hero-copy {
    max-width: none;
  }

  .hero-lede,
  .hero-bullets {
    width: min(100%, 352px);
    max-width: 352px;
  }

  .hero-stage {
    display: none;
  }

  .hero-stage::before,
  .hero-stage::after,
  .ambient-string {
    display: none;
  }

  .video-card p {
    max-width: 30ch;
  }
}

@media (max-width: 440px) {
  .page-shell {
    padding-inline: 18px;
  }

  .site-header {
    margin-bottom: 20px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero h1 {
    max-width: 342px;
    font-size: clamp(2.78rem, 13vw, 3.35rem);
  }

  .hero-lede,
  .hero-bullets {
    max-width: 336px;
  }

  .video-thumb {
    min-height: 142px;
  }
}

/* Subtle mobile product presence */
@media (max-width: 640px) {
  .hero-stage {
    display: block;
    position: relative;
    width: min(90vw, 350px);
    min-height: 315px;
    margin: 16px 0 22px;
    overflow: visible;
    perspective: 900px;
  }

  .hero-stage::before {
    position: absolute;
    inset: -10px -12px;
    z-index: -1;
    display: block;
    content: "";
    background: radial-gradient(ellipse at center, rgba(5, 8, 13, 0.82), rgba(5, 8, 13, 0.38) 58%, transparent 72%);
    filter: blur(2px);
  }

  .hero-stage::after {
    display: none;
  }

  .reference-device-plate {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    width: 100%;
    margin: 0;
    aspect-ratio: 1.14;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow:
      0 22px 42px rgba(0, 0, 0, 0.42);
    filter: none;
    transform: rotateZ(-0.45deg);
    transform-origin: center;
  }

  .reference-device-plate::before,
  .reference-device-plate::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
  }

  .reference-device-plate::before {
    display: none;
  }

  .reference-device-plate::after {
    display: none;
  }

  .reference-device-plate img {
    top: -11%;
    left: -60%;
    width: 190%;
    max-width: none;
    filter: contrast(1.03) saturate(0.98) brightness(0.95);
  }

  .mobile-keyboard-deck {
    display: none;
  }

  .story-scene-practice-chaos,
  .story-scene-knowledge-chaos,
  .story-scene-connected {
    padding: 0;
  }

  .story-message {
    right: 0;
    bottom: 6px;
    left: 0;
    width: auto;
    padding: 13px 14px;
  }

  .story-message span {
    margin-bottom: 5px;
    font-size: 0.62rem;
  }

  .story-message p {
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .practice-chaos-field,
  .knowledge-chaos-field,
  .connected-system {
    width: 100%;
    min-height: 295px;
  }

  .connected-system {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .connected-system::before,
  .connected-system::after {
    display: none;
  }

  .goal-node,
  .today-session {
    padding: 10px;
  }

  .goal-node {
    width: 100%;
  }

  .goal-node strong {
    font-size: 0.9rem;
  }

  .connected-map {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .map-item {
    min-height: 0;
    padding: 8px;
  }

  .map-item strong {
    margin-bottom: 5px;
    font-size: 0.66rem;
  }

  .map-item span {
    padding: 3px 5px;
    margin: 0 3px 3px 0;
    font-size: 0.55rem;
  }

  .today-session {
    grid-column: auto;
    grid-row: auto;
  }

  .today-session ol {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .today-session li {
    gap: 5px;
    font-size: 0.6rem;
  }

  .today-session li::before {
    flex-basis: 18px;
    height: 18px;
    font-size: 0.56rem;
  }

  .chaos-card,
  .material-card {
    min-width: 88px;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.66rem;
    border-radius: 11px;
  }

  .material-card::before {
    width: 6px;
    height: 6px;
    margin-bottom: 5px;
  }

  .chaos-card::before {
    width: 6px;
    height: 6px;
    margin-bottom: 5px;
  }

  .chaos-card.assignment {
    min-width: 112px;
  }

  .material-card.notes {
    min-width: 112px;
  }
}

@media (max-width: 440px) {
  .hero-stage {
    width: min(90vw, 340px);
    margin-top: 14px;
    margin-bottom: 22px;
  }

  .reference-device-plate {
    aspect-ratio: 1.13;
  }

  .reference-device-plate img {
    top: -11%;
    left: -60%;
    width: 190%;
  }
}

/* Narrative Prototype Sections */
.story-section,
.how-it-works {
  width: min(100%, 1360px);
  margin: clamp(28px, 5vw, 70px) auto 0;
  padding: clamp(22px, 3vw, 36px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(123, 77, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(240, 111, 52, 0.09), transparent 21rem),
    linear-gradient(145deg, rgba(11, 16, 23, 0.94), rgba(4, 7, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.story-kicker {
  max-width: 760px;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.story-kicker h2 {
  max-width: 780px;
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
  line-height: 1.03;
  overflow-wrap: break-word;
}

.story-kicker p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(219, 226, 235, 0.78);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.55;
}

.features-prototype {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
}

.features-prototype .story-kicker {
  margin-bottom: 0;
}

.feature-system {
  position: relative;
  min-height: 420px;
  padding: clamp(18px, 2.2vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(123, 77, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 72% 32%, rgba(240, 111, 52, 0.12), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.feature-system::before,
.feature-system::after {
  position: absolute;
  inset: 46px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.feature-system::after {
  inset: 90px 70px;
  border-color: rgba(240, 111, 52, 0.16);
  transform: rotate(15deg);
}

.system-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: min(64%, 310px);
  padding: 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.026)),
    rgba(6, 10, 16, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.system-core span {
  display: block;
  margin-bottom: 6px;
  color: rgba(183, 142, 255, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.system-core strong {
  display: block;
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.08;
}

.system-orbit {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  height: 100%;
  min-height: 360px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-content: space-between;
}

.system-orbit li {
  display: grid;
  min-height: 36px;
  place-items: center;
  padding: 8px 10px;
  color: rgba(245, 248, 252, 0.9);
  font-size: 0.78rem;
  font-weight: 760;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.system-orbit li:nth-child(4),
.system-orbit li:nth-child(11) {
  grid-column: span 2;
}

.capability-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.capability-grid article {
  min-height: 170px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.078);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.048);
}

.capability-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  box-shadow: 0 0 24px currentColor;
}

.capability-dot.violet {
  color: var(--violet);
  background: var(--violet);
}

.capability-dot.green {
  color: #58d187;
  background: #58d187;
}

.capability-dot.orange {
  color: var(--orange);
  background: var(--orange);
}

.capability-grid h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.capability-grid p {
  margin-bottom: 0;
  color: rgba(205, 213, 224, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.54fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: 22px;
}

.section-intro h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.25vw, 3.2rem);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.section-intro p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 4px;
  color: rgba(219, 226, 235, 0.78);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.55;
}

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

.difference-card {
  position: relative;
  min-height: 318px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.052);
}

.difference-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3, 5, 8, 0.82));
  pointer-events: none;
}

.difference-card h3,
.difference-card p {
  position: relative;
  z-index: 1;
}

.difference-card h3 {
  max-width: 13ch;
  margin: 164px 0 10px;
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  line-height: 1.08;
}

.difference-card p {
  max-width: 32ch;
  margin-bottom: 0;
  color: rgba(205, 213, 224, 0.78);
  font-size: 0.91rem;
  line-height: 1.48;
}

.difference-graphic {
  position: absolute;
  inset: 16px 16px auto;
  height: 144px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.learn-graphic {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 77, 255, 0.3), transparent 12%),
    radial-gradient(circle at 50% 50%, rgba(216, 74, 166, 0.18), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(240, 111, 52, 0.13), transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent);
}

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

.learn-graphic::before {
  width: 8px;
  height: 8px;
  background: #58d187;
  box-shadow:
    58px -30px 0 rgba(245, 112, 55, 0.9),
    -62px 34px 0 rgba(123, 77, 255, 0.95);
}

.learn-graphic::after {
  width: 148px;
  height: 70px;
  border: 1px solid rgba(248, 112, 55, 0.38);
  transform: rotate(-16deg);
}

.learn-graphic span,
.learn-graphic i,
.learn-graphic b {
  position: absolute;
  inset: 50%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.learn-graphic span {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.045);
}

.learn-graphic i {
  width: 84px;
  height: 84px;
}

.learn-graphic b {
  width: 124px;
  height: 124px;
}

.connect-graphic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(86, 182, 216, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent);
}

.connect-graphic::before {
  position: absolute;
  inset: 30px 28px;
  content: "";
  border: 1px solid rgba(123, 77, 255, 0.18);
  border-right-color: rgba(240, 111, 52, 0.2);
  border-radius: 50%;
}

.connect-graphic span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 32px;
  place-items: center;
  color: rgba(245, 248, 252, 0.92);
  font-size: 0.74rem;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.purpose-graphic {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent),
    radial-gradient(circle at 66% 44%, rgba(240, 111, 52, 0.14), transparent 50%);
}

.purpose-graphic::before {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  height: 8px;
  content: "";
  background:
    linear-gradient(90deg, #58d187 0 36%, rgba(255, 255, 255, 0.1) 36% 100%);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(88, 209, 135, 0.15);
}

.purpose-graphic span {
  position: relative;
  z-index: 1;
  min-width: 146px;
  padding: 12px 16px;
  color: #fff;
  text-align: center;
  font-weight: 800;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.purpose-graphic i {
  position: absolute;
  width: 172px;
  height: 82px;
  border: 1px solid rgba(240, 111, 52, 0.38);
  border-left-color: rgba(123, 77, 255, 0.48);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.musicians-prototype {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: stretch;
}

.musicians-prototype .story-kicker {
  margin-bottom: 0;
}

.flow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 12px;
}

.flow-breakers,
.flow-solution {
  position: relative;
  min-height: 340px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.078);
  border-radius: var(--radius);
}

.flow-breakers h3,
.flow-solution h3 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.flow-breakers ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-breakers li {
  padding: 10px 12px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 999px;
}

.flow-solution {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 60% 22%, rgba(123, 77, 255, 0.16), transparent 13rem),
    radial-gradient(circle at 28% 72%, rgba(88, 209, 135, 0.12), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014));
}

.zone-line {
  position: absolute;
  top: 52px;
  left: 30px;
  right: 30px;
  height: 128px;
  border: 1px solid rgba(240, 111, 52, 0.32);
  border-left-color: rgba(123, 77, 255, 0.44);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.flow-solution p {
  max-width: 30ch;
  margin-bottom: 18px;
  color: rgba(219, 226, 235, 0.8);
}

.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flow-tags span {
  padding: 8px 10px;
  color: rgba(245, 248, 252, 0.9);
  font-size: 0.78rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.journey-panel {
  grid-column: 1 / -1;
  padding-top: clamp(18px, 2.5vw, 26px);
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.journey-heading {
  margin-bottom: 16px;
  text-align: center;
}

.journey-heading h3 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.08;
}

.journey-heading p {
  margin-bottom: 0;
  color: rgba(219, 226, 235, 0.78);
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.journey-cards article {
  position: relative;
  min-height: 210px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.055), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.078);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.048);
}

.journey-cards article::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  content: "";
  background: radial-gradient(circle, rgba(123, 77, 255, 0.14), transparent 68%);
  border-radius: 50%;
}

.journey-cards article:nth-child(2)::after {
  background: radial-gradient(circle, rgba(0, 163, 255, 0.13), transparent 68%);
}

.journey-cards article:nth-child(3)::after {
  background: radial-gradient(circle, rgba(88, 209, 135, 0.13), transparent 68%);
}

.journey-cards article:nth-child(4)::after {
  background: radial-gradient(circle, rgba(255, 107, 33, 0.13), transparent 68%);
}

.journey-cards .bullet-icon {
  margin-bottom: 18px;
}

.journey-cards h4 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.journey-cards p {
  margin-bottom: 0;
  color: rgba(205, 213, 224, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-prototype {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
}

.about-story {
  display: grid;
  gap: 16px;
}

.about-story h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
  line-height: 1.03;
  overflow-wrap: break-word;
}

.about-story p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(219, 226, 235, 0.8);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.6;
}

.about-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 111, 52, 0.12), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(255, 255, 255, 0.078);
  border-radius: var(--radius);
}

.about-materials span {
  padding: 9px 11px;
  color: rgba(245, 248, 252, 0.9);
  font-size: 0.82rem;
  font-weight: 740;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.about-prototype blockquote {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 0;
  padding: clamp(20px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.3rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
  background:
    linear-gradient(100deg, rgba(123, 77, 255, 0.16), rgba(240, 111, 52, 0.12)),
    rgba(255, 255, 255, 0.026);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius);
}

.closing-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 74% 34%, rgba(255, 107, 33, 0.15), transparent 16rem),
    radial-gradient(circle at 20% 30%, rgba(123, 77, 255, 0.16), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.052);
}

.closing-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.closing-cta .button {
  min-width: 190px;
}

.modal-open {
  overflow: hidden;
}

.registration-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 32%, rgba(123, 77, 255, 0.18), transparent 22rem),
    rgba(2, 4, 7, 0.74);
  backdrop-filter: blur(16px);
}

.registration-modal[hidden] {
  display: none;
}

.registration-dialog {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 107, 33, 0.12), transparent 14rem),
    linear-gradient(145deg, rgba(15, 22, 31, 0.98), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.registration-dialog h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.03;
}

.registration-dialog p {
  color: rgba(219, 226, 235, 0.82);
}

.registration-dialog ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.registration-dialog li {
  display: flex;
  gap: 9px;
  color: rgba(235, 240, 247, 0.88);
}

.registration-dialog li::before {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  content: "";
  background: linear-gradient(135deg, var(--violet), var(--orange));
  border-radius: 999px;
}

.registration-form {
  display: grid;
  gap: 12px;
}

.registration-form label {
  color: rgba(245, 248, 252, 0.9);
  font-weight: 760;
}

.registration-form input {
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  outline: 0;
}

.registration-form input:focus {
  border-color: rgba(139, 104, 255, 0.82);
  box-shadow: 0 0 0 3px rgba(139, 104, 255, 0.16);
}

.form-error {
  margin: -4px 0 0;
  color: #ff9d7a;
  font-size: 0.9rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 980px) {
  .features-prototype,
  .musicians-prototype,
  .about-prototype {
    grid-template-columns: 1fr;
  }

  .features-prototype .story-kicker,
  .musicians-prototype .story-kicker {
    margin-bottom: 0;
  }

  .feature-system {
    min-height: 360px;
  }

  .system-orbit {
    min-height: 300px;
  }

  .capability-grid,
  .flow-panel,
  .journey-cards {
    grid-template-columns: 1fr;
  }

  .flow-breakers,
  .flow-solution {
    min-height: auto;
  }

  .flow-solution {
    padding-top: 142px;
  }

  .closing-cta {
    grid-template-columns: 1fr;
  }

  .journey-cards article {
    min-height: auto;
  }

  .how-it-works {
    margin-top: 28px;
    padding: 18px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .difference-panels {
    grid-template-columns: 1fr;
  }

  .difference-card {
    min-height: 228px;
  }

  .difference-card h3 {
    max-width: 16ch;
    margin-top: 124px;
  }

  .difference-graphic {
    height: 106px;
  }
}

@media (max-width: 520px) {
  .story-section,
  .how-it-works {
    width: 100%;
    max-width: calc(100vw - 22px);
    padding: 18px;
  }

  .story-kicker h2,
  .about-story h2 {
    max-width: 18ch;
    font-size: 1.46rem;
    line-height: 1.08;
  }

  .story-kicker p:not(.eyebrow),
  .about-story p {
    max-width: 31ch;
    font-size: 0.94rem;
    overflow-wrap: break-word;
  }

  .feature-system {
    min-height: 0;
    padding: 14px;
  }

  .feature-system::before,
  .feature-system::after {
    display: none;
  }

  .system-core {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 14px;
    transform: none;
  }

  .system-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .system-orbit li:nth-child(4),
  .system-orbit li:nth-child(11) {
    grid-column: auto;
  }

  .capability-grid article {
    min-height: auto;
    padding: 16px;
  }

  .capability-dot {
    margin-bottom: 16px;
  }

  .flow-breakers,
  .flow-solution,
  .journey-cards article,
  .about-materials {
    padding: 16px;
  }

  .flow-breakers h3,
  .flow-solution h3 {
    max-width: 14ch;
    font-size: 1.32rem;
  }

  .flow-breakers li {
    border-radius: 12px;
  }

  .flow-solution {
    padding-top: 126px;
  }

  .journey-panel {
    padding-top: 18px;
  }

  .journey-heading {
    text-align: left;
  }

  .journey-heading h3 {
    font-size: 1.36rem;
  }

  .journey-cards {
    gap: 10px;
  }

  .journey-cards .bullet-icon {
    margin-bottom: 12px;
  }

  .about-prototype blockquote {
    font-size: 1.22rem;
  }

  .closing-cta {
    padding: 18px;
  }

  .closing-cta h2 {
    font-size: 1.48rem;
  }

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

  .section-intro h2 {
    max-width: 14ch;
    font-size: 1.58rem;
    line-height: 1.08;
  }

  .section-intro p:not(.eyebrow) {
    max-width: 30ch;
    font-size: 0.94rem;
  }

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

  .difference-card {
    min-height: 216px;
    padding: 16px;
  }

  .difference-card h3 {
    margin-top: 114px;
    font-size: 1.18rem;
  }

  .difference-card p {
    font-size: 0.86rem;
  }
}
