:root {
  --canvas: #f3f0e8;
  --canvas-deep: #e9e5da;
  --ink: #171820;
  --muted: #777985;
  --line: rgba(23, 24, 32, 0.12);
  --plum: #201439;
  --plum-deep: #130b26;
  --lilac: #bba7ff;
  --coral: #f46e67;
  --mint: #a7e8ce;
  --white: #fffdf8;
  --content-width: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--ink);
  background: var(--canvas);
  font-family: "DM Sans", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
}

button,
a,
input {
  font: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.content-width {
  width: min(calc(100% - 64px), var(--content-width));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(96px, 13vw, 190px);
}

.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;
}

.site-nav {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 64px), var(--content-width));
  min-height: 70px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  min-height: 45px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links,
.mobile-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: var(--muted);
  font-size: 12px;
}

.nav-links a,
.mobile-navigation a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.mobile-navigation a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.menu-toggle,
.mobile-navigation {
  display: none;
}

.notice-bar {
  border-bottom: 1px solid var(--line);
}

.notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.01em;
}

.notice-inner strong {
  color: var(--ink);
  font-weight: 700;
}

.notice-icon {
  font-size: 14px;
  line-height: 1;
}

.notice-dismiss {
  position: absolute;
  right: max(24px, calc((100vw - var(--content-width)) / 2));
  color: var(--muted);
  background: transparent;
  font-size: 17px;
  line-height: 1;
}

.notice-bar.is-dismissed {
  display: none;
}

.hero {
  min-height: 720px;
  padding-top: clamp(72px, 9vw, 130px);
  padding-bottom: clamp(100px, 12vw, 170px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: clamp(50px, 8vw, 136px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.075em;
}

h1 em,
h2 em,
h3 em {
  font-style: normal;
  color: var(--plum);
}

h1 {
  max-width: 620px;
  margin-bottom: 27px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: 0.96;
}

.hero-lede {
  max-width: 490px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
}

.hero-proof strong {
  color: var(--ink);
}

.proof-orbit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 26px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.45);
  font-size: 11px;
  letter-spacing: 0.23em;
}

.proof-orbit span:nth-child(2) {
  color: var(--coral);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--plum);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--coral);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 17px;
  color: var(--coral);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.privacy-lock {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--plum);
  border: 1px solid rgba(32, 20, 57, 0.25);
  border-radius: 50%;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  padding-top: 15px;
}

.visual-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.01em;
}

.visual-caption > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(244, 110, 103, 0.12);
}

.phone-stage {
  position: relative;
  display: grid;
  width: min(100%, 550px);
  min-height: 528px;
  margin: 25px auto 0;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 167, 255, 0.52) 0%, rgba(167, 232, 206, 0.2) 42%, transparent 72%);
  filter: blur(10px);
}

.phone {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(23, 24, 32, 0.75);
  border-radius: 45px;
  background: #050408;
  box-shadow: 24px 29px 24px rgba(23, 24, 32, 0.09), 0 6px 0 rgba(255, 255, 255, 0.35) inset, -2px 0 0 rgba(255, 255, 255, 0.25) inset;
  transform: rotate(4deg);
  transition: transform 450ms var(--ease-out);
}

.phone:hover {
  transform: rotate(1deg) translateY(-8px);
}

.phone--hero {
  width: clamp(260px, 29vw, 330px);
  aspect-ratio: 0.49;
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(160deg, #31215b 0%, #21143d 44%, #130b25 100%);
}

.phone-screen::before {
  position: absolute;
  top: -80px;
  right: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(244, 110, 103, 0.21);
  content: "";
  filter: blur(18px);
}

.status-bar,
.app-bar,
.phone-content,
.home-indicator {
  position: relative;
  z-index: 1;
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 19px 7px;
  color: rgba(255, 253, 248, 0.75);
  font-size: 9px;
  font-weight: 700;
}

.status-right {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 8px;
}

.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 19px 12px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.13);
}

.app-wordmark {
  display: flex;
  align-items: center;
  width: 96px;
}

.app-wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.app-bar-icon {
  color: rgba(255, 253, 248, 0.7);
  font-size: 16px;
}

.phone-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 19px 16px;
}

.phone-kicker {
  margin-bottom: 8px;
  color: rgba(167, 232, 206, 0.85);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.phone-content h2 {
  margin-bottom: 23px;
  color: var(--white);
  font-size: clamp(25px, 2.8vw, 31px);
  line-height: 1.02;
}

.phone-content h2 strong {
  color: var(--lilac);
  font-weight: 600;
}

.phone-break-card {
  padding: 15px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.1);
  box-shadow: 0 14px 30px rgba(7, 3, 17, 0.16);
}

.phone-card-top,
.phone-progress-meta,
.rhythm-top,
.rhythm-scale {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.phone-card-top {
  color: rgba(255, 253, 248, 0.56);
  font-size: 8px;
}

.phone-status {
  color: var(--mint);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.phone-card-title {
  margin: 18px 0 16px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.phone-progress-meta {
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.67);
  font-size: 9px;
}

.phone-progress-meta span:last-child {
  color: var(--mint);
}

.phone-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.14);
}

.phone-progress-track span {
  display: block;
  width: 60%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--lilac));
  transition: width 300ms var(--ease-out);
}

.phone-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.phone-mini-grid > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.06);
}

.phone-mini-grid span {
  color: rgba(255, 253, 248, 0.48);
  font-size: 8px;
}

.phone-mini-grid strong {
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
}

.phone-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 13px 15px;
  color: var(--plum-deep);
  border-radius: 15px;
  background: var(--mint);
  font-size: 10px;
  font-weight: 700;
}

.phone-button span {
  font-size: 17px;
  line-height: 0;
}

.home-indicator {
  width: 78px;
  height: 4px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
}

.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 24, 32, 0.08);
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 15px 30px rgba(23, 24, 32, 0.1);
  backdrop-filter: blur(12px);
  font-size: 10px;
  transition: transform 300ms var(--ease-out);
}

.hero-float strong,
.hero-float small {
  display: block;
}

.hero-float strong {
  margin-bottom: 3px;
  font-size: 11px;
}

.hero-float small {
  color: var(--muted);
  font-size: 9px;
}

.hero-float--top {
  top: 84px;
  left: 0;
  transform: rotate(-4deg);
}

.hero-float--bottom {
  right: 0;
  bottom: 38px;
  transform: rotate(3deg);
}

.float-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  font-weight: 700;
}

.float-icon--mint {
  color: #206c53;
  background: var(--mint);
}

.float-icon--coral {
  color: #8e282e;
  background: #ffd1c5;
}

.phone-controls {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 2px;
}

.phone-controls button {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.4);
  font-size: 13px;
  transition: background 180ms ease, transform 180ms ease;
}

.phone-controls button:hover {
  background: var(--white);
  transform: scale(1.05);
}

.phone-dots {
  display: flex;
  gap: 7px;
}

.phone-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(23, 24, 32, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.phone-dots span.is-active {
  background: var(--ink);
  transform: scale(1.25);
}

.visual-note {
  max-width: 310px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.18);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(60px, 12vw, 190px);
}

.statement h2,
.section-heading h2,
.notes h2,
.download h2,
.experience h2 {
  margin-bottom: 0;
  font-size: clamp(41px, 5.1vw, 72px);
  line-height: 0.98;
}

.statement-copy {
  align-self: end;
  padding-bottom: 4px;
}

.statement-copy p {
  max-width: 380px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.statement-line {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  margin-top: clamp(70px, 9vw, 120px);
  color: var(--muted);
  font-size: 12px;
}

.statement-line i {
  color: var(--coral);
  font-size: 18px;
  font-style: normal;
}

.features {
  background: var(--canvas-deep);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading > p {
  max-width: 290px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.feature-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 27px;
  border-radius: 26px;
}

.feature-card--dark {
  color: var(--white);
  background: var(--plum);
}

.feature-card--paper {
  background: var(--white);
}

.feature-card--mint {
  background: var(--mint);
}

.feature-card-copy {
  position: relative;
  z-index: 1;
}

.feature-index {
  display: block;
  margin-bottom: 30px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-card--dark .feature-index {
  color: var(--mint);
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: clamp(28px, 2.5vw, 39px);
  line-height: 0.98;
}

.feature-card--dark h3 {
  color: var(--white);
}

.feature-card--dark h3 em {
  color: var(--lilac);
}

.feature-card p {
  max-width: 260px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.feature-card--dark p {
  color: rgba(255, 253, 248, 0.62);
}

.rhythm-demo {
  position: relative;
  padding-top: 30px;
}

.rhythm-top {
  align-items: baseline;
  margin-bottom: 16px;
}

.rhythm-top span {
  color: rgba(255, 253, 248, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.rhythm-top strong {
  color: var(--mint);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.rhythm-demo input {
  width: 100%;
  height: 4px;
  accent-color: var(--mint);
  cursor: pointer;
}

.rhythm-scale {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.38);
  font-size: 9px;
}

.rhythm-beat {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
  margin-top: 22px;
}

.rhythm-beat span {
  height: 30px;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.05);
}

.rhythm-beat span.is-filled {
  border-color: rgba(167, 232, 206, 0.38);
  background: var(--mint);
}

.connection-demo {
  position: relative;
  min-height: 180px;
  padding: 30px 0 0;
}

.connection-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
}

.connection-avatar {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #c9d1df;
  box-shadow: 0 0 0 1px var(--line);
}

.connection-avatar--one {
  background: linear-gradient(135deg, #f7b07a 20%, #6c648c 21% 55%, #f1d5bb 56%);
}

.connection-avatar--two {
  background: linear-gradient(135deg, #36384c 0 48%, #ed907b 49% 70%, #f5d3ab 71%);
}

.connection-avatar--three {
  background: linear-gradient(135deg, #a7e8ce 0 50%, #e9b7c8 51% 73%, #29233a 74%);
}

.connection-line {
  width: 38%;
  height: 7px;
  border-radius: 99px;
  background: #e2dfd7;
}

.connection-line--long {
  width: 52%;
}

.connection-line--short {
  width: 29%;
}

.connection-dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--coral);
}

.connection-dot--soft {
  background: var(--lilac);
}

.connection-pill {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 9px 12px;
  color: var(--plum);
  border-radius: 999px;
  background: var(--mint);
  font-size: 10px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.break-demo {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px;
  border: 1px solid rgba(23, 24, 32, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.58);
}

.break-demo-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  border-radius: 11px;
  background: var(--plum);
  font-size: 13px;
}

.break-demo strong,
.break-demo small {
  display: block;
}

.break-demo strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.break-demo small {
  color: var(--muted);
  font-size: 9px;
}

.break-demo-arrow {
  margin-left: auto;
  color: var(--coral);
  font-size: 17px;
}

.experience {
  color: var(--white);
  background: var(--plum-deep);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(400px, 1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.eyebrow--light {
  color: var(--mint);
}

.experience h2 {
  margin-bottom: 27px;
  color: var(--white);
}

.experience h2 em {
  color: var(--lilac);
}

.experience-copy > p:not(.eyebrow) {
  max-width: 360px;
  margin-bottom: 31px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.experience-window {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.15);
  border-radius: 24px;
  background: #21153c;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.window-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 45px;
  padding: 0 19px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.48);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-align: center;
}

.window-topbar > span:last-child {
  justify-self: end;
  color: var(--mint);
  font-size: 14px;
}

.window-topbar i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.window-topbar i:nth-child(2) {
  background: #f4c66d;
}

.window-topbar i:nth-child(3) {
  background: var(--mint);
}

.window-body {
  position: relative;
  display: grid;
  min-height: 435px;
  place-items: center;
  padding: 42px;
  background: radial-gradient(circle at 85% 12%, rgba(187, 167, 255, 0.22), transparent 27%), linear-gradient(145deg, #382558, #1c1137 70%);
}

.window-side-label {
  position: absolute;
  top: 50%;
  left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 253, 248, 0.34);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.break-modal {
  position: relative;
  width: min(100%, 390px);
  padding: 34px 35px 25px;
  color: var(--ink);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(5, 1, 15, 0.32);
  transition: transform 500ms var(--ease-out);
}

.break-modal:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.modal-orbit {
  position: absolute;
  top: -23px;
  right: 30px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--plum);
  border: 1px solid rgba(23, 24, 32, 0.12);
  border-radius: 50%;
  background: var(--mint);
  font-size: 19px;
}

.modal-kicker {
  margin-bottom: 23px;
  color: var(--coral);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.break-modal h3 {
  margin-bottom: 17px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 0.98;
}

.break-modal h3 em {
  color: var(--plum);
}

.modal-copy {
  max-width: 270px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.modal-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  color: rgba(23, 24, 32, 0.4);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 11px;
}

.modal-input span:last-child {
  color: var(--plum);
  font-size: 16px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 22px;
}

.modal-footer span {
  color: var(--muted);
  font-size: 9px;
}

.modal-footer button {
  padding: 10px 13px;
  color: var(--white);
  border-radius: 999px;
  background: var(--plum);
  font-size: 10px;
  font-weight: 700;
}

.modal-footer button:hover {
  background: var(--coral);
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 253, 248, 0.13);
}

.experience-stats > div {
  padding: 22px 18px 0 0;
}

.experience-stats span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.experience-stats p {
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
}

.notes {
  background: var(--canvas);
}

.notes-heading {
  margin-bottom: 68px;
}

.notes-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-left: max(20px, calc((100vw - var(--content-width)) / 2));
  padding-right: max(20px, calc((100vw - var(--content-width)) / 2));
}

.note-card {
  position: relative;
  display: flex;
  width: 263px;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 17px;
  box-shadow: 0 14px 30px rgba(23, 24, 32, 0.05);
  transform: rotate(var(--card-rotation, 0deg));
  transition: transform 250ms var(--ease-out);
}

.note-card:hover {
  transform: rotate(0deg) translateY(-7px);
}

.note-card--lavender {
  --card-rotation: -2deg;
  background: #dcd3ff;
}

.note-card--coral {
  --card-rotation: 1.5deg;
  background: #ffc7b9;
}

.note-card--ink {
  --card-rotation: -1deg;
  color: var(--white);
  background: var(--plum);
}

.note-card--mint {
  --card-rotation: 2deg;
  background: var(--mint);
}

.note-tag {
  color: rgba(23, 24, 32, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.note-card--ink .note-tag {
  color: rgba(255, 253, 248, 0.6);
}

.note-card p {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.note-mark {
  align-self: end;
  color: var(--coral);
  font-size: 26px;
}

.note-card--ink .note-mark {
  color: var(--mint);
}

.section-footnote {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.download {
  color: var(--white);
  background: linear-gradient(135deg, var(--plum) 0%, #2c194f 50%, #171027 100%);
}

.download-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.download h2 {
  margin-bottom: 24px;
}

.download h2 em {
  color: var(--mint);
}

.download-inner > p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.63);
  font-size: 14px;
  line-height: 1.6;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
  min-height: 57px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.store-badge--light {
  color: var(--ink);
  background: var(--white);
}

.store-badge--outline {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.35);
  background: rgba(255, 253, 248, 0.05);
}

.store-badge--outline:hover {
  border-color: var(--mint);
  background: rgba(167, 232, 206, 0.08);
}

.store-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  font-size: 17px;
}

.store-badge small,
.store-badge strong {
  display: block;
}

.store-badge small {
  margin-bottom: 3px;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.store-badge strong {
  font-size: 14px;
  letter-spacing: -0.04em;
}

.site-footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1.5fr auto;
  align-items: center;
  gap: 25px;
  min-height: 88px;
}

.footer-inner .brand {
  color: var(--ink);
}

.footer-inner p,
.footer-inner nav,
.footer-bottom {
  font-size: 11px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--plum);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 15px 20px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 45px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .phone-stage {
    min-height: 465px;
  }

  .feature-card {
    min-height: 450px;
    padding: 23px;
  }

  .feature-card h3 {
    font-size: 30px;
  }

  .experience-grid {
    gap: 55px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .footer-mark {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 720px) {
  .content-width,
  .nav-inner {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .section-pad {
    padding-block: 96px;
  }

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

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--ink);
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-navigation {
    display: flex;
    max-height: 0;
    align-items: flex-start;
    overflow: hidden;
    flex-direction: column;
    gap: 0;
    padding-inline: 20px;
    background: var(--canvas);
    font-size: 15px;
    transition: max-height 260ms var(--ease-out), padding 260ms var(--ease-out);
  }

  .mobile-navigation.is-open {
    max-height: 280px;
    padding-block: 10px 18px;
  }

  .mobile-navigation a {
    width: 100%;
    padding-block: 11px;
    border-bottom: 1px solid var(--line);
  }

  .notice-inner {
    justify-content: flex-start;
    width: calc(100% - 72px);
    margin-inline: auto;
    font-size: 10px;
  }

  .notice-dismiss {
    right: 21px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-grid,
  .statement-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-proof,
  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  h1 {
    font-size: clamp(50px, 13vw, 72px);
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 565px;
    margin-top: 10px;
  }

  .phone-stage {
    min-height: 485px;
  }

  .hero-float--top {
    left: 1%;
  }

  .hero-float--bottom {
    right: 1%;
    bottom: 30px;
  }

  .statement-grid {
    gap: 38px;
  }

  .statement-copy {
    padding-bottom: 0;
  }

  .statement-line {
    flex-wrap: wrap;
    gap: 8px 14px;
    line-height: 1.8;
  }

  .section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading > p {
    max-width: 370px;
    margin-top: 25px;
  }

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

  .feature-card {
    min-height: 390px;
  }

  .experience-grid {
    gap: 60px;
  }

  .experience-window {
    min-height: 420px;
  }

  .window-body {
    min-height: 375px;
    padding: 30px 25px 30px 45px;
  }

  .experience-stats {
    margin-top: 75px;
  }

  .note-card {
    width: 235px;
    min-height: 290px;
  }

  .notes-track {
    padding-left: 20px;
  }

  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .footer-inner {
    min-height: 120px;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-inner nav {
    grid-row: 3;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 10px;
  }

  .footer-mark {
    align-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    line-height: 1.4;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .phone-stage {
    min-height: 445px;
    margin-top: 18px;
  }

  .phone--hero {
    width: 260px;
  }

  .hero-float {
    min-width: 135px;
    padding: 8px 9px;
  }

  .hero-float--top {
    top: 53px;
  }

  .hero-float--bottom {
    bottom: 20px;
  }

  .float-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .hero-float strong {
    font-size: 10px;
  }

  .hero-float small {
    font-size: 8px;
  }

  .phone-content h2 {
    font-size: 26px;
  }

  .experience h2,
  .download h2,
  .statement h2,
  .section-heading h2,
  .notes h2 {
    font-size: 43px;
  }

  .window-side-label {
    left: 13px;
  }

  .break-modal {
    padding: 29px 21px 20px;
  }

  .modal-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .modal-footer button {
    width: 100%;
  }

  .experience-stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .experience-stats > div {
    padding-block: 17px 0;
    border-top: 1px solid rgba(255, 253, 248, 0.13);
  }

  .download-actions {
    width: 100%;
  }

  .store-badge {
    width: min(100%, 270px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Locked app skin: the landing page uses the same dark control-center language as HomeView. */
:root {
  --canvas: #09070c;
  --canvas-deep: #100c17;
  --ink: #f6f2fb;
  --muted: #a79fb5;
  --line: rgba(255, 255, 255, 0.095);
  --plum: #24173f;
  --plum-deep: #09070c;
  --lilac: #b594ff;
  --coral: #ff6b61;
  --mint: #6be8b0;
  --white: #f6f2fb;
  --panel: #17131f;
  --panel-raised: #211a2e;
}

html,
body,
.page-shell {
  color: var(--ink);
  background: var(--canvas);
}

h1,
h2,
h3 {
  font-family: "Fredoka", Arial, sans-serif;
  font-weight: 700;
}

h1 em,
h2 em,
h3 em {
  color: var(--lilac);
  font-style: normal;
}

.site-nav,
.notice-bar,
.statement,
.site-footer {
  border-color: var(--line);
}

.nav-links,
.mobile-navigation,
.notice-inner,
.notice-dismiss {
  color: var(--muted);
}

.nav-links a:hover,
.mobile-navigation a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.mobile-navigation {
  background: var(--canvas);
}

.notice-inner strong {
  color: var(--mint);
}

.notice-icon,
.visual-caption > span {
  color: var(--mint);
}

.notice-dismiss:hover {
  color: var(--coral);
}

.hero {
  background: var(--canvas);
}

.eyebrow {
  color: var(--coral);
}

.hero-lede,
.statement-copy p,
.section-heading > p,
.feature-card p,
.experience-copy > p:not(.eyebrow),
.download-inner > p:not(.eyebrow),
.hero-meta,
.visual-note,
.section-footnote,
.footer-inner,
.footer-bottom {
  color: var(--muted);
}

.hero-logo-rail {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 6px 0 30px;
}

.logo-connector {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--lilac), var(--coral));
}

.logo-chip {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.16);
  font-size: 20px;
  font-weight: 700;
}

.logo-chip--locked {
  color: var(--plum-deep);
  border-color: transparent;
  background: var(--lilac);
}

.logo-chip--instagram {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #f58529, #dd2a7b 46%, #8134af 72%, #515bd4);
}

.logo-chip--mail {
  color: var(--coral);
  background: rgba(255, 107, 97, 0.13);
}

.logo-chip--chess {
  color: var(--mint);
  background: rgba(107, 232, 176, 0.12);
}

.logo-chip--cards {
  color: var(--lilac);
  background: rgba(181, 148, 255, 0.13);
}

.logo-chip--quiz {
  color: var(--coral);
  background: rgba(255, 107, 97, 0.13);
}

.hero-actions .button--dark {
  color: var(--plum-deep);
  background: var(--white);
}

.hero-actions .button--dark:hover {
  color: var(--plum-deep);
  background: var(--mint);
}

.experience .button--light {
  color: var(--plum-deep);
}

.text-link {
  color: var(--ink);
}

.text-link:hover {
  color: var(--mint);
}

.privacy-lock {
  color: var(--mint);
  border-color: rgba(107, 232, 176, 0.3);
}

.hero-meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.phone-glow {
  background: radial-gradient(circle, rgba(181, 148, 255, 0.32) 0%, rgba(107, 232, 176, 0.11) 42%, transparent 72%);
}

.visual-caption {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.visual-caption > span {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(107, 232, 176, 0.1);
}

.visual-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.visual-note i {
  color: var(--coral);
  font-style: normal;
}

.statement {
  background: var(--canvas);
}

.statement-line {
  gap: 17px;
}

.statement-line i {
  color: var(--coral);
}

.flow-logo {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel);
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.flow-logo--instagram {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #f58529, #dd2a7b 46%, #8134af 72%, #515bd4);
}

.flow-logo--locked {
  color: var(--plum-deep);
  border-color: transparent;
  background: var(--lilac);
}

.flow-logo--break {
  color: var(--coral);
  background: rgba(255, 107, 97, 0.12);
}

.features {
  background: var(--canvas-deep);
}

.feature-grid {
  gap: 12px;
}

.feature-card {
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.feature-card--dark,
.feature-card--paper {
  color: var(--ink);
  background: var(--panel);
}

.feature-card--mint {
  color: var(--ink);
  border-color: rgba(107, 232, 176, 0.22);
  background: linear-gradient(145deg, rgba(107, 232, 176, 0.16), rgba(181, 148, 255, 0.1));
}

.feature-card--dark .feature-index,
.feature-card--paper .feature-index,
.feature-card--mint .feature-index {
  color: var(--coral);
}

.feature-card--dark .feature-index {
  color: var(--mint);
}

.feature-card--dark h3,
.feature-card--paper h3,
.feature-card--mint h3 {
  color: var(--ink);
}

.feature-card--dark h3 em,
.feature-card--paper h3 em,
.feature-card--mint h3 em {
  color: var(--lilac);
}

.feature-card--dark p,
.feature-card--paper p,
.feature-card--mint p {
  color: var(--muted);
}

.feature-logo {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 21px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 23px;
  font-weight: 700;
}

.feature-logo--rhythm {
  color: var(--mint);
  border-color: rgba(107, 232, 176, 0.2);
  background: rgba(107, 232, 176, 0.12);
}

.feature-logo--session {
  color: var(--lilac);
  border-color: rgba(181, 148, 255, 0.2);
  background: rgba(181, 148, 255, 0.12);
}

.feature-logo--break {
  color: var(--plum-deep);
  border-color: transparent;
  background: var(--coral);
}

.rhythm-top strong {
  color: var(--mint);
}

.rhythm-demo input {
  accent-color: var(--mint);
}

.rhythm-beat span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.rhythm-beat span.is-filled {
  border-color: transparent;
  background: var(--mint);
}

.connection-line {
  background: rgba(255, 255, 255, 0.13);
}

.connection-avatar {
  border-color: var(--panel);
  box-shadow: 0 0 0 1px var(--line);
}

.connection-pill {
  color: var(--plum-deep);
  background: var(--mint);
}

.break-demo {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.break-demo-icon {
  color: var(--plum-deep);
  background: var(--lilac);
}

.experience {
  background: var(--canvas);
}

.experience-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.experience-logo-stack {
  display: flex;
  gap: 8px;
  margin: 0 0 30px;
}

.experience-logo-stack .logo-chip {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: none;
}

.experience-window {
  border-color: var(--line);
  background: var(--panel);
}

.window-body {
  background: radial-gradient(circle at 85% 12%, rgba(181, 148, 255, 0.17), transparent 27%), linear-gradient(145deg, #2a1a4d, #171024 70%);
}

.break-modal {
  color: var(--ink);
  background: var(--white);
}

.break-modal h3 em {
  color: #35235e;
}

.experience-stats {
  border-color: var(--line);
}

.experience-stats p {
  color: var(--muted);
}

.notes {
  background: var(--canvas);
}

.note-card,
.note-card--lavender,
.note-card--coral,
.note-card--ink,
.note-card--mint {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.note-card--lavender {
  border-color: rgba(181, 148, 255, 0.28);
  background: rgba(181, 148, 255, 0.13);
}

.note-card--coral {
  border-color: rgba(255, 107, 97, 0.28);
  background: rgba(255, 107, 97, 0.12);
}

.note-card--ink {
  background: var(--panel-raised);
}

.note-card--mint {
  border-color: rgba(107, 232, 176, 0.28);
  background: rgba(107, 232, 176, 0.12);
}

.note-tag {
  color: var(--muted);
}

.note-card--ink .note-tag {
  color: var(--muted);
}

.note-card p {
  color: var(--ink);
}

.note-mark {
  color: var(--coral);
}

.note-card--ink .note-mark {
  color: var(--mint);
}

.note-logo {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--lilac);
  border: 1px solid rgba(181, 148, 255, 0.23);
  border-radius: 14px;
  background: rgba(181, 148, 255, 0.12);
  font-size: 21px;
  font-weight: 700;
}

.note-card--coral .note-logo {
  color: var(--coral);
  border-color: rgba(255, 107, 97, 0.25);
  background: rgba(255, 107, 97, 0.12);
}

.note-card--ink .note-logo {
  color: var(--mint);
  border-color: rgba(107, 232, 176, 0.25);
  background: rgba(107, 232, 176, 0.12);
}

.note-card--mint .note-logo {
  color: var(--plum-deep);
  border-color: transparent;
  background: var(--mint);
}

.download {
  background: linear-gradient(145deg, #281847, #130b25 70%, #09070c);
}

.download h2 em {
  color: var(--mint);
}

.store-badge--light {
  color: var(--plum-deep);
  background: var(--white);
}

.store-badge--outline {
  border-color: rgba(181, 148, 255, 0.42);
  background: rgba(181, 148, 255, 0.08);
}

.store-badge--outline:hover {
  border-color: var(--mint);
  background: rgba(107, 232, 176, 0.08);
}

.site-footer {
  background: var(--canvas);
}

.footer-inner .brand {
  color: var(--ink);
}

.footer-mark {
  color: var(--lilac);
  border-color: var(--line);
}

@media (max-width: 720px) {
  .hero-logo-rail {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .statement-line {
    justify-content: flex-start;
  }

  .feature-logo {
    margin-bottom: 17px;
  }
}

/* Account workspace */
[hidden] {
  display: none !important;
}

body.workspace-is-open {
  overflow: hidden;
}

.account-action,
.mobile-account-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.account-action {
  min-height: 36px;
  padding: 0 13px;
}

.account-action:hover,
.mobile-account-action:hover {
  color: var(--plum-deep);
  border-color: var(--mint);
  background: var(--mint);
  transform: translateY(-1px);
}

.mobile-account-action {
  width: max-content;
  margin-top: 15px;
  padding: 10px 14px;
}

.workspace-shell {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 21px;
  color: var(--ink);
}

.workspace-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 5, 0.78);
  backdrop-filter: blur(9px);
}

.workspace-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1110px);
  max-height: calc(100vh - 42px);
  overflow: auto;
  border: 1px solid rgba(181, 148, 255, 0.24);
  border-radius: 27px;
  background: var(--canvas);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 260ms ease, transform 360ms var(--ease-out);
}

.workspace-shell.is-open .workspace-dialog {
  opacity: 1;
  transform: none;
}

.workspace-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 29px 33px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(181, 148, 255, 0.08), transparent 43%);
}

.workspace-kicker,
.workspace-sidebar-label,
.settings-card-index {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.workspace-dialog-head h2 {
  max-width: 590px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.96;
}

.workspace-close {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  font-size: 23px;
  line-height: 1;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.workspace-close:hover {
  color: var(--coral);
  border-color: rgba(255, 107, 97, 0.4);
  transform: rotate(8deg);
}

.auth-view {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 6vw, 82px);
  padding: clamp(28px, 3vw, 38px) clamp(28px, 6vw, 74px) clamp(32px, 4vw, 50px);
  font-family: "DM Sans", Arial, sans-serif;
}

.auth-intro {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  max-width: 470px;
  padding-top: 26px;
}

.auth-orbit {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--plum-deep);
  border-radius: 17px;
  background: var(--mint);
  box-shadow: 0 14px 35px rgba(107, 232, 176, 0.12);
  font-size: 22px;
}

.auth-intro .eyebrow {
  margin-bottom: 17px;
}

.auth-intro h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(27px, 3.6vw, 43px);
  line-height: 0.98;
}

.auth-intro > div > p:last-child {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.auth-card {
  align-self: start;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--panel);
  box-shadow: 0 23px 65px rgba(0, 0, 0, 0.2);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.auth-tab {
  min-height: 37px;
  color: var(--muted);
  border-radius: 10px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.auth-tab.is-active {
  color: var(--plum-deep);
  background: var(--mint);
}

.auth-config-note {
  margin: 17px 4px 0;
  padding: 12px 13px;
  color: #ffd9d5;
  border: 1px solid rgba(255, 107, 97, 0.25);
  border-radius: 12px;
  background: rgba(255, 107, 97, 0.08);
  font-size: 11px;
  line-height: 1.55;
}

.auth-config-note code {
  color: var(--mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.auth-flow {
  width: 100%;
  padding: 3px 0 2px;
}

.auth-flow-panel {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 22px;
  border: 1px solid rgba(187, 167, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(36, 26, 53, 0.98), rgba(19, 11, 38, 0.98));
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
  font-family: "DM Sans", Arial, sans-serif;
}

.auth-flow-panel::before {
  position: absolute;
  top: -78px;
  right: -40px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(167, 232, 206, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.auth-flow-topline,
.auth-flow-heading,
.auth-flow-tabs,
.auth-flow-form,
.auth-flow-divider,
.auth-flow-google,
.auth-flow-email-toggle,
.auth-flow-email-panel,
.auth-flow-footnote,
.auth-flow-step-head,
.auth-flow-footer-actions,
.auth-flow-message {
  position: relative;
  z-index: 1;
}

.auth-flow-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.auth-flow-spark {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--plum-deep);
  border-radius: 7px;
  background: var(--mint);
  font-size: 11px;
}

.auth-flow-heading {
  padding: 18px 0 14px;
}

.auth-flow-eyebrow,
.auth-flow-step-kicker {
  margin: 0 0 9px;
  color: var(--lilac);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.auth-flow-panel h3,
.auth-flow-panel h4 {
  font-family: inherit;
}

.auth-flow-heading h3 {
  max-width: 270px;
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(26px, 2.8vw, 34px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.auth-flow-heading > p:last-child {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
  line-height: 1.48;
}

.auth-flow-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.18);
}

.auth-flow-tab {
  min-height: 32px;
  color: rgba(255, 253, 248, 0.56);
  border-radius: 8px;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.auth-flow-tab:hover {
  color: var(--white);
}

.auth-flow-tab.is-active {
  color: var(--plum-deep);
  background: var(--mint);
  box-shadow: 0 5px 14px rgba(167, 232, 206, 0.14);
}

.auth-flow-form {
  display: grid;
  gap: 11px;
  padding-top: 15px;
}

.auth-flow-field {
  display: grid;
  gap: 7px;
}

.auth-flow-field label,
.auth-flow-label-row label {
  color: rgba(255, 253, 248, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-flow-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-flow-field input {
  width: 100%;
  min-height: 40px;
  padding: 0 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.auth-flow-field input::placeholder {
  color: rgba(255, 253, 248, 0.34);
}

.auth-flow-field input:focus {
  border-color: var(--lilac);
  background: rgba(187, 167, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(187, 167, 255, 0.13);
}

.auth-flow-field input:disabled {
  cursor: wait;
  opacity: 0.55;
}

.auth-flow-field-note {
  margin: -1px 0 0;
  color: rgba(255, 253, 248, 0.42);
  font-size: 10px;
  line-height: 1.4;
}

.auth-flow-link,
.auth-flow-back {
  padding: 0;
  color: var(--lilac);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  text-align: left;
}

.auth-flow-link:hover,
.auth-flow-back:hover {
  color: var(--mint);
}

.auth-flow-submit {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 15px;
  color: var(--plum-deep);
  border-radius: 10px;
  background: var(--mint);
  font-size: 11px;
  font-weight: 850;
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.auth-flow-submit:hover:not(:disabled) {
  background: var(--lilac);
  transform: translateY(-2px);
}

.auth-flow-submit:disabled,
.auth-flow-link:disabled {
  cursor: wait;
  opacity: 0.52;
}

.auth-flow-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0 14px;
  color: rgba(255, 253, 248, 0.34);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-flow-divider::before,
.auth-flow-divider::after {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.auth-flow-google {
  display: grid;
  min-height: 48px;
  grid-template-columns: 25px 1fr 15px;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
  padding: 0 16px;
  color: var(--plum-deep);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.auth-flow-google:hover:not(:disabled) {
  border-color: var(--mint);
  background: var(--mint);
  transform: translateY(-2px);
}

.auth-flow-google:disabled {
  cursor: wait;
  opacity: 0.52;
}

.auth-flow-google-mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
}

.auth-flow-google-mark svg {
  display: block;
  width: 20px;
  height: 20px;
}

.auth-flow-email-toggle {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 0 4px;
  color: var(--lilac);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  text-align: left;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.auth-flow-email-toggle:hover:not(:disabled) {
  color: var(--mint);
  transform: translateX(2px);
}

.auth-flow-email-toggle:disabled {
  cursor: wait;
  opacity: 0.52;
}

.auth-flow-email-panel {
  margin-top: 8px;
  padding: 2px 14px 14px;
  border: 1px solid rgba(187, 167, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.16);
}

.auth-flow-email-panel.is-open {
  animation: auth-email-pop 220ms ease-out both;
}

.auth-flow-email-panel .auth-flow-form {
  gap: 14px;
  padding-top: 18px;
}

.auth-flow-email-panel[hidden] {
  display: none;
}

@keyframes auth-email-pop {
  from {
    opacity: 0;
    transform: translateY(-7px) scale(0.985);
  }

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

.auth-flow-footnote {
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.42);
  font-size: 10px;
  line-height: 1.45;
}

.auth-flow-step-head {
  padding-top: 22px;
}

.auth-flow-back {
  display: inline-flex;
  margin-bottom: 23px;
  color: rgba(255, 253, 248, 0.54);
}

.auth-flow-step-head h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.auth-flow-step-head > p:last-child {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 253, 248, 0.6);
  font-size: 12px;
  line-height: 1.55;
}

.auth-flow-footer-actions {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 15px;
}

.auth-flow-footer-actions > span {
  color: rgba(255, 253, 248, 0.34);
  font-size: 9px;
  text-align: right;
}

.auth-flow-message {
  margin: 14px 0 0;
  padding: 10px 11px;
  color: var(--mint);
  border: 1px solid rgba(167, 232, 206, 0.2);
  border-radius: 9px;
  background: rgba(167, 232, 206, 0.07);
  font-size: 10px;
  line-height: 1.5;
}

.auth-flow-message.is-error {
  color: #ffb6ae;
  border-color: rgba(244, 110, 103, 0.28);
  background: rgba(244, 110, 103, 0.08);
}

.auth-flow-captcha:empty {
  display: none;
}

.auth-flow-captcha:not(:empty) {
  min-height: 68px;
  margin-top: 15px;
}

.auth-form {
  display: grid;
  gap: 15px;
  padding: 24px 13px 13px;
}

.field-group,
.settings-field {
  display: grid;
  gap: 7px;
}

.field-group label,
.settings-field > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-group input,
.settings-field select {
  width: 100%;
  min-height: 45px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field-group input::placeholder {
  color: rgba(167, 159, 181, 0.55);
}

.field-group input:focus,
.settings-field select:focus {
  border-color: var(--lilac);
  background: rgba(181, 148, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(181, 148, 255, 0.12);
}

.workspace-primary-button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 17px;
  color: var(--plum-deep);
  border-radius: 11px;
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.workspace-primary-button:hover:not(:disabled) {
  background: var(--lilac);
  transform: translateY(-2px);
}

.workspace-primary-button:disabled,
.quiet-button:disabled,
.workspace-upload-button input:disabled {
  cursor: wait;
  opacity: 0.55;
}

.auth-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 13px 2px;
}

.quiet-button {
  padding: 5px 0;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  text-align: left;
}

.quiet-button:hover {
  color: var(--mint);
}

.workspace-status {
  min-height: 17px;
  margin: 8px 13px 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.workspace-status.is-error {
  color: #ffaaa3;
}

.workspace-status.is-success {
  color: var(--mint);
}

.workspace-view {
  display: grid;
  min-height: 535px;
  grid-template-columns: 205px minmax(0, 1fr);
}

.workspace-sidebar {
  display: flex;
  flex-direction: column;
  padding: 29px 18px 24px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.workspace-sidebar-label {
  padding: 0 10px;
  color: var(--muted);
  font-size: 8px;
}

.workspace-tabs {
  display: grid;
  gap: 5px;
}

.workspace-tab {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 11px;
  padding: 0 11px;
  color: var(--muted);
  border-radius: 11px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.workspace-tab > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--lilac);
  border: 1px solid rgba(181, 148, 255, 0.2);
  border-radius: 8px;
  background: rgba(181, 148, 255, 0.1);
  font-size: 14px;
}

.workspace-tab:hover,
.workspace-tab.is-active {
  color: var(--ink);
  background: rgba(107, 232, 176, 0.09);
}

.workspace-tab.is-active > span {
  color: var(--plum-deep);
  border-color: transparent;
  background: var(--mint);
}

.workspace-user {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding: 15px 9px;
  border-top: 1px solid var(--line);
}

.workspace-user-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(107, 232, 176, 0.1);
}

.workspace-user span,
.workspace-user strong {
  display: block;
}

.workspace-user span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
}

.workspace-user strong {
  max-width: 145px;
  overflow: hidden;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-signout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 9px;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  text-align: left;
}

.workspace-signout:hover {
  color: var(--coral);
}

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

.workspace-panel {
  padding: 34px clamp(25px, 5vw, 57px) 40px;
}

.workspace-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 27px;
}

.workspace-panel-head h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 0.96;
}

.workspace-panel-head > div > p:last-child {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.workspace-upload-button {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  color: var(--plum-deep);
  border-radius: 10px;
  background: var(--mint);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.workspace-upload-button:hover {
  background: var(--lilac);
  transform: translateY(-2px);
}

.workspace-upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.upload-dropzone {
  display: flex;
  min-height: 89px;
  align-items: center;
  gap: 13px;
  margin-bottom: 23px;
  padding: 17px 18px;
  border: 1px dashed rgba(181, 148, 255, 0.42);
  border-radius: 15px;
  background: rgba(181, 148, 255, 0.055);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.upload-dropzone:hover,
.upload-dropzone.is-dragging {
  border-color: var(--mint);
  background: rgba(107, 232, 176, 0.08);
  transform: translateY(-2px);
}

.upload-dropzone.is-busy {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.upload-dropzone-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--plum-deep);
  border-radius: 12px;
  background: var(--lilac);
  font-size: 21px;
  font-weight: 700;
}

.upload-dropzone strong,
.upload-dropzone div > span {
  display: block;
}

.upload-dropzone strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
}

.upload-dropzone div > span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.upload-dropzone-action {
  margin-left: auto;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
}

.material-list {
  display: grid;
  gap: 8px;
}

.material-empty {
  display: grid;
  min-height: 168px;
  place-items: center;
  align-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.material-empty > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  place-items: center;
  color: var(--mint);
  border-radius: 12px;
  background: rgba(107, 232, 176, 0.1);
  font-size: 20px;
}

.material-empty strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
}

.material-empty p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.material-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 69px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease;
}

.material-row:hover {
  border-color: rgba(107, 232, 176, 0.28);
  background: rgba(107, 232, 176, 0.045);
}

.material-file-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--lilac);
  border: 1px solid rgba(181, 148, 255, 0.22);
  border-radius: 12px;
  background: rgba(181, 148, 255, 0.1);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.material-copy {
  min-width: 0;
}

.material-copy strong,
.material-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.material-copy strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.material-copy span {
  color: var(--muted);
  font-size: 10px;
}

.material-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.material-action {
  padding: 7px 8px;
  color: var(--muted);
  border-radius: 8px;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
}

.material-action:hover {
  color: var(--mint);
  background: rgba(107, 232, 176, 0.09);
}

.material-action--remove:hover {
  color: var(--coral);
  background: rgba(255, 107, 97, 0.09);
}

.settings-form {
  display: grid;
  gap: 15px;
}

.settings-card {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.settings-card--rhythm {
  background: linear-gradient(135deg, rgba(107, 232, 176, 0.09), rgba(181, 148, 255, 0.08));
}

.settings-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.settings-card-head h4 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.05em;
}

.settings-card-index {
  display: block;
  margin-bottom: 6px;
  color: var(--mint);
  font-size: 8px;
}

.settings-card-head output {
  color: var(--mint);
  font-size: 16px;
  font-weight: 700;
}

.settings-card input[type="range"] {
  width: 100%;
  accent-color: var(--mint);
  cursor: pointer;
}

.settings-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.settings-field {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.settings-field select {
  min-height: 38px;
  color-scheme: dark;
  font-size: 12px;
}

.settings-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.setting-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.setting-toggle:hover {
  border-color: rgba(181, 148, 255, 0.3);
  background: rgba(181, 148, 255, 0.05);
}

.setting-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.setting-toggle span,
.setting-toggle strong,
.setting-toggle small {
  display: block;
}

.setting-toggle strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 11px;
}

.setting-toggle small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.setting-toggle i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-style: normal;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.setting-toggle:has(input:checked) {
  border-color: rgba(107, 232, 176, 0.28);
  background: rgba(107, 232, 176, 0.06);
}

.setting-toggle:has(input:checked) i {
  color: var(--plum-deep);
  border-color: transparent;
  background: var(--mint);
}

.setting-toggle input:focus-visible + span + i {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.settings-save-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.settings-save-row .workspace-primary-button {
  flex: 0 0 auto;
}

.settings-save-row .workspace-status {
  margin: 0;
}

@media (max-width: 760px) {
  .account-action {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }

  .workspace-shell {
    padding: 10px;
  }

  .workspace-dialog {
    max-height: calc(100vh - 20px);
    border-radius: 20px;
  }

  .workspace-dialog-head {
    padding: 23px 20px 19px;
  }

  .workspace-dialog-head h2 {
    font-size: 34px;
  }

  .auth-view {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px 30px;
  }

  .auth-intro {
    padding-top: 0;
  }

  .auth-intro h3 {
    font-size: 31px;
  }

  .auth-flow-panel {
    padding: 21px 18px 18px;
  }

  .auth-flow-heading {
    padding-top: 22px;
  }

  .workspace-view {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workspace-sidebar-label,
  .workspace-user {
    display: none;
  }

  .workspace-tabs {
    display: flex;
    gap: 5px;
  }

  .workspace-tab {
    min-height: 36px;
    padding: 0 9px;
    font-size: 10px;
  }

  .workspace-tab > span {
    display: none;
  }

  .workspace-signout {
    width: auto;
    padding: 0 0 0 12px;
  }

  .workspace-panel {
    padding: 27px 20px 31px;
  }

  .workspace-panel-head {
    display: block;
  }

  .workspace-upload-button {
    margin-top: 18px;
  }

  .settings-options,
  .settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .account-action span:last-child {
    display: none;
  }

  .workspace-dialog-head h2 {
    font-size: 29px;
  }

  .auth-intro {
    gap: 12px;
  }

  .auth-orbit {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 18px;
  }

  .auth-intro h3 {
    font-size: 27px;
  }

  .auth-intro > div > p:last-child {
    font-size: 12px;
  }

  .auth-flow-footer-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .auth-flow-footer-actions > span {
    text-align: left;
  }

  .upload-dropzone {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .upload-dropzone-action {
    margin-left: 51px;
  }

  .material-row {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .material-file-icon {
    width: 36px;
    height: 36px;
  }

  .material-actions {
    grid-column: 2;
  }

  .settings-save-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Locked brand system: one dark canvas, one green signal, one clear voice. */
:root {
  --canvas: #09070c;
  --canvas-deep: #0d1510;
  --ink: #eff7f0;
  --muted: #9aada0;
  --line: rgba(213, 247, 220, 0.16);
  --plum: #153d24;
  --plum-deep: #09070c;
  --lilac: #26b359;
  --coral: #26b359;
  --mint: #26b359;
  --white: #eff7f0;
  --panel: #101a13;
  --panel-raised: #14251a;
  --brand: #26b359;
  --brand-bright: #26b359;
  --brand-wash: rgba(38, 179, 89, 0.13);
  --brand-line: rgba(38, 179, 89, 0.42);
  --content-width: 1180px;
}

html,
body,
.page-shell {
  color: var(--ink);
  background: var(--canvas);
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  word-spacing: 0.04em;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline-color: var(--brand-bright);
}

h1,
h2,
h3,
h4,
p,
a,
button,
label,
span {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: "Fredoka", Arial, sans-serif;
  font-weight: 600;
  word-spacing: 0.03em;
}

h4 {
  font-family: "DM Sans", Arial, sans-serif;
}

h1 em,
h2 em,
h3 em {
  color: var(--brand-bright);
}

.section-pad {
  padding-block: 132px;
}

.content-width,
.nav-inner {
  width: min(calc(100% - 64px), var(--content-width));
}

.site-nav {
  background: var(--canvas);
  border-bottom: 0;
}

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

.brand {
  width: 148px;
  min-height: 49px;
}

.nav-links {
  color: var(--muted);
  font-size: 13px;
}

.nav-links a:hover,
.mobile-navigation a:hover,
.site-footer a:hover {
  color: var(--brand-bright);
}

.account-action,
.mobile-account-action {
  min-height: 40px;
  padding: 0 15px;
  color: var(--plum-deep);
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.account-action:hover,
.mobile-account-action:hover {
  color: var(--plum-deep);
  background: var(--brand-bright);
  transform: translateY(-1px);
}

.mobile-navigation {
  color: var(--muted);
  background: var(--canvas);
  border-top: 1px solid var(--line);
}

.hero {
  min-height: 760px;
  background: var(--canvas);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  gap: 72px;
}

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

.eyebrow {
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.eyebrow-line {
  width: 28px;
  background: currentColor;
}

h1 {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 76px;
  line-height: 0.98;
}

.hero-logo-rail {
  gap: 10px;
  margin: 0 0 34px;
}

.logo-connector {
  width: 30px;
  background: var(--brand);
}

.logo-chip {
  width: auto;
  min-width: 42px;
  height: 42px;
  padding: 0 11px;
  color: var(--brand-bright);
  border: 1px solid var(--brand-line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
  font-size: 10px;
  font-weight: 700;
}

.logo-chip--locked {
  color: var(--plum-deep);
  border-color: transparent;
  background: var(--brand);
}

.logo-chip--feed,
.logo-chip--break,
.logo-chip--return,
.logo-chip--mail,
.logo-chip--cards,
.logo-chip--chess,
.logo-chip--quiz {
  color: var(--brand-bright);
  border-color: var(--brand-line);
  background: var(--panel);
}

.hero-actions {
  gap: 26px;
  margin-bottom: 32px;
}

.button {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13px;
}

.button--dark,
.button--light {
  color: var(--plum-deep);
  background: var(--brand);
}

.button--dark:hover,
.button--light:hover {
  color: var(--plum-deep);
  background: var(--brand-bright);
}

.text-link {
  color: var(--ink);
}

.text-link:hover {
  color: var(--brand-bright);
}

.hero-meta {
  color: var(--muted);
}

.privacy-lock {
  width: 12px;
  height: 12px;
  color: transparent;
  border: 0;
  border-radius: 50%;
  background: var(--brand);
}

.hero-meta-divider {
  background: var(--brand);
}

.hero-visual {
  min-height: 620px;
}

.visual-caption {
  color: var(--muted);
  letter-spacing: 0.13em;
}

.visual-caption > span {
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--brand-wash);
}

.phone-stage {
  min-height: 552px;
  margin-top: 28px;
}

.phone-glow {
  display: none;
}

.phone {
  border-color: var(--brand-line);
  border-radius: 42px;
  background: #050807;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(38, 179, 89, 0.12);
}

.phone-screen {
  background: var(--canvas);
}

.phone-screen::before {
  display: none;
}

.status-bar,
.app-bar {
  color: rgba(239, 247, 240, 0.72);
}

.app-bar {
  border-bottom-color: var(--line);
}

.app-bar-icon {
  color: var(--brand-bright);
}

.phone-kicker {
  color: var(--brand-bright);
}

.phone-content h2 strong {
  color: var(--brand-bright);
}

.phone-break-card {
  border-color: var(--brand-line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.phone-status,
.phone-progress-meta span:last-child {
  color: var(--brand-bright);
}

.phone-progress-track {
  background: rgba(239, 247, 240, 0.13);
}

.phone-progress-track span {
  background: var(--brand);
}

.phone-mini-grid > div {
  border-color: var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.phone-button {
  color: var(--plum-deep);
  border-radius: 8px;
  background: var(--brand);
}

.phone-button:hover {
  background: var(--brand-bright);
}

.hero-float {
  border-color: var(--brand-line);
  border-radius: 8px;
  background: rgba(16, 26, 19, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.hero-float strong {
  color: var(--ink);
}

.float-icon,
.float-icon--mint,
.float-icon--coral {
  width: 12px;
  height: 12px;
  color: var(--plum-deep);
  border-radius: 50%;
  background: var(--brand);
}

.phone-controls button {
  color: var(--ink);
  border-color: var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.phone-controls button:hover {
  background: var(--brand-wash);
}

.phone-dots span {
  background: var(--line);
}

.phone-dots span.is-active {
  background: var(--brand);
}

.visual-note {
  color: var(--muted);
}

.visual-note i,
.statement-line i {
  display: block;
  width: 24px;
  height: 1px;
  color: transparent;
  background: var(--brand);
  font-size: 0;
  font-style: normal;
}

.statement {
  background: var(--canvas-deep);
}

.statement h2,
.section-heading h2,
.notes h2,
.download h2,
.experience h2 {
  letter-spacing: 0;
}

.statement-copy p,
.section-heading > p,
.feature-card p,
.experience-copy > p:not(.eyebrow),
.download-inner > p:not(.eyebrow),
.hero-meta,
.visual-note,
.section-footnote,
.footer-inner,
.footer-bottom {
  color: var(--muted);
}

.statement-line {
  margin-top: 82px;
}

.flow-logo {
  width: auto;
  min-width: 36px;
  height: 36px;
  padding: 0 11px;
  color: var(--brand-bright);
  border-color: var(--brand-line);
  border-radius: 8px;
  background: var(--panel);
  font-size: 10px;
  font-weight: 700;
}

.flow-logo--feed,
.flow-logo--locked,
.flow-logo--break {
  color: var(--brand-bright);
  border-color: var(--brand-line);
  background: var(--panel);
}

.flow-logo--locked {
  color: var(--plum-deep);
  border-color: transparent;
  background: var(--brand);
}

.features {
  background: var(--canvas);
}

.section-heading {
  margin-bottom: 56px;
}

.feature-grid {
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 12px;
}

.feature-card,
.feature-card--dark,
.feature-card--paper,
.feature-card--mint {
  min-height: 430px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.feature-card--dark {
  background: var(--panel-raised);
}

.feature-card--mint {
  border-color: var(--brand-line);
  background: var(--brand-wash);
}

.feature-card--dark h3,
.feature-card--paper h3,
.feature-card--mint h3,
.feature-card h3 em,
.feature-card--dark h3 em,
.feature-card--paper h3 em,
.feature-card--mint h3 em {
  color: var(--ink);
}

.feature-card--dark h3 em,
.feature-card--paper h3 em,
.feature-card--mint h3 em {
  color: var(--brand-bright);
}

.feature-card--dark p,
.feature-card--paper p,
.feature-card--mint p {
  color: var(--muted);
}

.feature-index,
.feature-card--dark .feature-index,
.feature-card--paper .feature-index,
.feature-card--mint .feature-index {
  color: var(--brand);
}

.feature-logo,
.feature-logo--rhythm,
.feature-logo--session,
.feature-logo--break {
  width: 46px;
  height: 46px;
  border-color: var(--brand-line);
  border-radius: 8px;
  color: var(--brand-bright);
  background: var(--brand-wash);
}

.rhythm-top strong,
.rhythm-demo input {
  color: var(--brand-bright);
  accent-color: var(--brand);
}

.rhythm-beat span {
  border-color: var(--line);
  border-radius: 4px;
  background: rgba(239, 247, 240, 0.04);
}

.rhythm-beat span.is-filled {
  border-color: transparent;
  background: var(--brand);
}

.connection-avatar,
.connection-avatar--one,
.connection-avatar--two,
.connection-avatar--three {
  border-color: var(--panel);
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--brand-line);
}

.connection-line {
  background: rgba(239, 247, 240, 0.16);
}

.connection-dot,
.connection-dot--soft {
  background: var(--brand);
}

.connection-pill {
  color: var(--plum-deep);
  border-radius: 8px;
  background: var(--brand);
}

.break-demo {
  border-color: var(--line);
  border-radius: 8px;
  background: rgba(239, 247, 240, 0.04);
}

.break-demo-icon {
  color: var(--plum-deep);
  border-radius: 8px;
  background: var(--brand);
}

.break-demo-arrow {
  color: var(--brand-bright);
}

.experience {
  background: var(--canvas-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow--light,
.window-topbar > span:last-child,
.experience-stats span {
  color: var(--brand-bright);
}

.experience h2 {
  color: var(--ink);
}

.experience h2 em {
  color: var(--brand-bright);
}

.experience-logo-stack .logo-chip {
  min-width: 0;
  height: 38px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 9px;
  box-shadow: none;
}

.experience-window {
  min-height: 450px;
  border-color: var(--brand-line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.window-topbar {
  border-bottom-color: var(--line);
}

.window-topbar i,
.window-topbar i:nth-child(2),
.window-topbar i:nth-child(3) {
  background: var(--brand);
}

.window-body {
  min-height: 405px;
  background: var(--panel-raised);
}

.break-modal {
  border-radius: 8px;
  color: var(--plum-deep);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.modal-orbit {
  color: var(--plum-deep);
  border-color: transparent;
  border-radius: 8px;
  background: var(--brand);
}

.modal-kicker,
.modal-input span:last-child {
  color: var(--brand);
}

.break-modal h3 em {
  color: var(--plum);
}

.modal-input {
  border-color: rgba(21, 61, 36, 0.18);
  border-radius: 8px;
}

.modal-input span:last-child {
  display: block;
  width: 12px;
  height: 2px;
  background: var(--brand);
}

.modal-footer button {
  color: var(--plum-deep);
  border-radius: 8px;
  background: var(--brand);
}

.modal-footer button:hover {
  background: var(--brand-bright);
}

.experience-stats {
  border-top-color: var(--line);
}

.notes {
  background: var(--canvas);
}

.notes-heading {
  margin-bottom: 56px;
}

.note-card,
.note-card--lavender,
.note-card--coral,
.note-card--ink,
.note-card--mint {
  width: 252px;
  min-height: 276px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.note-card--ink {
  background: var(--panel-raised);
}

.note-card--mint {
  border-color: var(--brand-line);
  background: var(--brand);
}

.note-card--mint .note-tag,
.note-card--mint p,
.note-card--mint .note-mark {
  color: var(--plum-deep);
}

.note-tag,
.note-card--ink .note-tag {
  color: var(--muted);
}

.note-logo,
.note-card--coral .note-logo,
.note-card--ink .note-logo,
.note-card--mint .note-logo {
  color: var(--brand-bright);
  border-color: var(--brand-line);
  border-radius: 8px;
  background: var(--brand-wash);
}

.note-card--mint .note-logo {
  color: var(--plum-deep);
  border-color: transparent;
  background: var(--white);
}

.note-card p {
  color: var(--ink);
}

.note-mark,
.note-card--ink .note-mark {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  color: var(--brand-bright);
  background: var(--brand-bright);
}

.note-card--mint .note-mark {
  background: var(--plum-deep);
}

.section-footnote {
  color: var(--brand);
}

.download {
  background: var(--canvas-deep);
  border-top: 1px solid var(--line);
}

.download h2 em {
  color: var(--brand-bright);
}

.store-badge {
  min-width: 188px;
  border-radius: 8px;
}

.store-badge--light {
  color: var(--plum-deep);
  background: var(--brand);
}

.store-badge--light:hover {
  background: var(--brand-bright);
}

.store-badge--outline {
  color: var(--ink);
  border-color: var(--brand-line);
  background: var(--brand-wash);
}

.store-badge--outline:hover {
  border-color: var(--brand-bright);
  background: rgba(38, 179, 89, 0.2);
}

.store-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.site-footer {
  background: var(--canvas);
}

.footer-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  color: var(--brand);
  border-color: var(--brand-line);
  background: var(--brand);
}

/* Account and workspace surfaces use the same brand tokens as the page. */
.workspace-dialog {
  border-color: var(--brand-line);
  border-radius: 8px;
  background: var(--canvas);
}

.workspace-dialog-head {
  background: var(--panel);
}

.workspace-kicker,
.workspace-sidebar-label,
.settings-card-index {
  color: var(--brand);
}

.workspace-close:hover {
  color: var(--brand-bright);
  border-color: var(--brand-line);
}

.auth-orbit,
.auth-tab.is-active,
.auth-flow-spark,
.auth-flow-tab.is-active,
.auth-flow-submit,
.workspace-primary-button,
.setting-toggle:has(input:checked) i {
  color: var(--plum-deep);
  background: var(--brand);
}

.auth-orbit,
.auth-flow-spark {
  border-radius: 8px;
  box-shadow: none;
}

.auth-card,
.auth-flow-panel,
.workspace-sidebar,
.workspace-content,
.settings-card,
.material-list,
.upload-dropzone {
  border-color: var(--line);
  background: var(--panel);
}

.auth-flow-panel {
  border-radius: 8px;
  background: var(--panel-raised);
}

.auth-flow-eyebrow,
.auth-flow-step-kicker,
.auth-flow-link,
.auth-flow-back,
.auth-flow-email-toggle {
  color: var(--brand-bright);
}

.auth-flow-tab.is-active,
.auth-flow-submit,
.workspace-primary-button {
  box-shadow: none;
}

.auth-flow-submit:hover:not(:disabled),
.workspace-primary-button:hover:not(:disabled) {
  color: var(--plum-deep);
  background: var(--brand-bright);
}

.auth-flow-field input:focus,
.field-group input:focus,
.settings-field select:focus {
  border-color: var(--brand);
  background: var(--brand-wash);
  box-shadow: 0 0 0 3px rgba(38, 179, 89, 0.13);
}

.auth-flow-link:hover,
.auth-flow-back:hover,
.auth-flow-email-toggle:hover:not(:disabled),
.quiet-button:hover {
  color: var(--brand-bright);
}

.auth-flow-message,
.workspace-status.is-success {
  color: var(--brand-bright);
}

.auth-flow-message {
  border-color: var(--brand-line);
  background: var(--brand-wash);
}

.workspace-tab.is-active,
.workspace-tab:hover,
.workspace-signout:hover,
.material-action:hover {
  color: var(--brand-bright);
}

.workspace-upload-button {
  color: var(--plum-deep);
  border-color: transparent;
  border-radius: 8px;
  background: var(--brand);
}

.workspace-upload-button:hover {
  background: var(--brand-bright);
}

.upload-dropzone:hover,
.upload-dropzone.is-dragover {
  border-color: var(--brand);
  background: var(--brand-wash);
}

.upload-dropzone-icon,
.material-file-icon,
.workspace-user-dot {
  color: var(--plum-deep);
  background: var(--brand);
}

.setting-toggle:has(input:checked) {
  border-color: var(--brand-line);
  background: var(--brand-wash);
}

@media (max-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  .hero-grid {
    gap: 48px;
  }

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

@media (max-width: 860px) {
  .nav-links,
  .account-action {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--brand);
  }

  .mobile-navigation.is-open {
    display: flex;
  }

  .hero-grid,
  .statement-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-visual {
    min-height: 610px;
  }

  .statement-copy {
    align-self: start;
    padding-bottom: 0;
  }

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

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

  .experience-copy {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .content-width,
  .nav-inner {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .section-pad {
    padding-block: 88px;
  }

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

  .brand {
    width: 122px;
    min-height: 41px;
  }

  h1 {
    margin-bottom: 28px;
    font-size: 46px;
    line-height: 1;
  }

  .hero-logo-rail {
    margin-bottom: 30px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone-stage {
    min-height: 470px;
  }

  .phone--hero {
    width: 256px;
  }

  .hero-float {
    min-width: 142px;
    padding: 8px 9px;
  }

  .hero-float--top {
    top: 68px;
    left: -5px;
  }

  .hero-float--bottom {
    right: -5px;
    bottom: 30px;
  }

  .statement h2,
  .section-heading h2,
  .notes h2,
  .download h2,
  .experience h2 {
    font-size: 40px;
    line-height: 1;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 42px;
  }

  .feature-card {
    min-height: 340px;
    padding: 22px;
  }

  .experience-window {
    min-height: 390px;
  }

  .window-body {
    min-height: 345px;
    padding: 28px 18px;
  }

  .break-modal {
    padding: 28px 22px 20px;
  }

  .notes-track {
    padding-left: 20px;
    padding-right: 20px;
  }

  .note-card {
    width: 230px;
    min-height: 245px;
  }

  .download-actions,
  .store-badge {
    width: 100%;
  }

  .store-badge {
    min-width: 0;
  }
}

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

.workspace-shell.auth-only {
  padding: 16px;
}

.workspace-shell.auth-only .workspace-dialog {
  width: min(100%, 383px);
  max-height: calc(100vh - 32px);
  overflow: visible;
  padding: 4px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.workspace-shell.auth-only .workspace-dialog-head {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.workspace-shell.auth-only .workspace-dialog-head > div {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.workspace-shell.auth-only .workspace-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  pointer-events: auto;
  color: rgba(239, 247, 240, 0.52);
  border-color: transparent;
  background: transparent;
  font-size: 0;
}

.workspace-shell.auth-only .workspace-close::after {
  content: none;
}

.workspace-shell.auth-only .workspace-close:hover {
  color: var(--brand-bright);
  border-color: var(--brand-line);
  transform: none;
}

.workspace-shell.auth-only .auth-view {
  display: block;
  padding: 0;
}

.workspace-shell.auth-only .auth-intro {
  display: none;
}

.workspace-shell.auth-only .auth-card,
.workspace-shell.auth-only .auth-flow {
  width: 100%;
  padding: 0;
}

.workspace-shell.auth-only .auth-card {
  align-self: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.workspace-shell.auth-only .workspace-status:empty {
  display: none;
}

.workspace-shell.auth-only .auth-flow-panel {
  border-color: var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.workspace-shell.auth-only .auth-flow-heading h3 {
  max-width: 250px;
  font-size: 32px;
  line-height: 0.98;
}

.icon-defs {
  position: absolute;
  pointer-events: none;
}

.brand-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  vertical-align: middle;
}

.workspace-close .button-icon {
  width: 17px;
  height: 17px;
}

.logo-chip .brand-icon,
.flow-logo .brand-icon {
  width: 18px;
  height: 18px;
}

.feature-logo .brand-icon,
.note-logo .brand-icon {
  width: 21px;
  height: 21px;
}

.connection-demo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  padding-top: 30px;
}

.connection-people-icon {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.connection-demo .connection-pill {
  position: static;
  max-width: 140px;
  transform: none;
}

.break-demo-icon .brand-icon,
.modal-orbit .brand-icon,
.auth-orbit .brand-icon {
  width: 19px;
  height: 19px;
}

.experience-logo-stack .brand-icon {
  width: 17px;
  height: 17px;
}

.modal-input span:last-child {
  display: block;
  width: 12px;
  height: 2px;
  background: var(--brand);
}

.store-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.store-icon .brand-icon {
  width: 17px;
  height: 17px;
  color: var(--plum-deep);
}

.note-mark {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.note-card--mint .note-mark {
  background: var(--plum-deep);
}

.workspace-tab .brand-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.upload-dropzone-icon .brand-icon,
.material-empty > span .brand-icon {
  width: 18px;
  height: 18px;
}

.window-topbar > span:last-child,
.footer-mark {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* Single-screen landing page. */
.statement,
.features,
.experience,
.notes,
.download,
.site-footer {
  display: none !important;
}

main {
  min-height: calc(100vh - 84px);
}

.hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-block: 72px;
}

.hero-copy h1 {
  margin-bottom: 18px;
}

.hero-description {
  max-width: 410px;
  margin: 0 0 30px;
  color: var(--muted);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.waitlist-form {
  width: min(100%, 520px);
  margin-top: 26px;
  padding: 16px;
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.waitlist-form-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.waitlist-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--plum-deep);
  border-radius: 9px;
  background: var(--brand);
}

.waitlist-mark .brand-icon {
  width: 16px;
  height: 16px;
}

.waitlist-kicker {
  margin: 0 0 4px;
  color: var(--brand-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.waitlist-title {
  margin: 0;
  color: var(--ink);
  font-family: "Fredoka", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.waitlist-form > label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

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

.waitlist-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  background: var(--canvas);
  font-size: 13px;
}

.waitlist-form input::placeholder {
  color: rgba(167, 159, 181, 0.7);
}

.waitlist-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(107, 232, 176, 0.12);
}

.waitlist-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--plum-deep);
  border-radius: 7px;
  background: var(--brand);
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.waitlist-submit:hover:not(:disabled) {
  background: var(--brand-bright);
  transform: translateY(-1px);
}

.waitlist-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.waitlist-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.waitlist-status {
  min-height: 16px;
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 11px;
  line-height: 1.45;
}

.waitlist-status:empty {
  display: none;
}

.waitlist-status.is-error {
  color: var(--coral);
}

@media (max-width: 560px) {
  .waitlist-form-row {
    grid-template-columns: 1fr;
  }

  .waitlist-submit {
    width: 100%;
  }
}

@media (max-width: 560px) {
  main,
  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero {
    padding-block: 48px;
  }
}

.waitlist-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

html.waitlist-is-open,
body.waitlist-is-open {
  overflow: hidden;
}

.waitlist-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 5, 0.82);
  backdrop-filter: blur(9px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.waitlist-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  outline: none;
  background: var(--panel-raised);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 180ms ease, transform 260ms var(--ease-out);
}

.waitlist-modal.is-open .waitlist-backdrop {
  opacity: 1;
}

.waitlist-modal.is-open .waitlist-dialog {
  opacity: 1;
  transform: none;
}

.waitlist-dialog .waitlist-form {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.waitlist-dialog .waitlist-form-heading {
  padding-right: 40px;
}

.waitlist-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--brand-line);
  border-radius: 7px;
  background: var(--brand-wash);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.waitlist-close:hover {
  color: var(--plum-deep);
  border-color: var(--brand);
  background: var(--brand);
}

@media (max-width: 560px) {
  .waitlist-modal {
    align-items: end;
    padding: 14px;
  }

  .waitlist-dialog {
    max-height: calc(100vh - 28px);
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-backdrop,
  .waitlist-dialog,
  .waitlist-close {
    transition: none;
  }
}

/* The hero uses captures from the native app so the preview stays honest. */
.hero-visual .phone-stage {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
}

.hero-visual .phone-glow {
  display: block;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(38, 179, 89, 0.18) 0%, rgba(38, 179, 89, 0.06) 42%, transparent 72%);
  filter: blur(16px);
}

.hero-visual .phone.phone--hero {
  width: clamp(286px, 29vw, 342px);
  aspect-ratio: 1170 / 2532;
  overflow: visible;
  padding: 9px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  background: linear-gradient(145deg, #46474d 0%, #16171b 10%, #050506 48%, #2d2e33 100%);
  transform: rotate(1.6deg);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(38, 179, 89, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 8px 0 14px rgba(255, 255, 255, 0.05),
    inset -8px 0 14px rgba(0, 0, 0, 0.56);
}

.hero-visual .phone.phone--hero::before,
.hero-visual .phone.phone--hero::after {
  position: absolute;
  z-index: 0;
  display: block;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, #777980 0%, #202126 46%, #62636a 100%);
  content: "";
  pointer-events: none;
}

.hero-visual .phone.phone--hero::before {
  top: 24%;
  left: -4px;
  height: 28px;
  box-shadow: 0 42px 0 #393a3f, 0 78px 0 #393a3f;
}

.hero-visual .phone.phone--hero::after {
  top: 29%;
  right: -4px;
  height: 62px;
}

.hero-visual .phone.phone--hero:hover {
  transform: rotate(0deg) translateY(-8px);
}

.hero-visual .phone-screen {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  z-index: 1;
  border-radius: 41px;
  background: #09070c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-visual .phone-screen::before {
  display: none;
}

.phone-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.phone-slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}

.phone-recording,
.phone-still {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-recording {
  z-index: 1;
}

.phone-still {
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

.hero-visual .phone-controls {
  position: relative;
  z-index: 3;
  display: inline-flex;
  gap: 3px;
  margin-top: 4px;
  padding: 4px;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  background: var(--panel);
}

.hero-visual .phone-controls .phone-mode {
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  place-items: center;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.hero-visual .phone-controls .phone-mode:hover,
.hero-visual .phone-controls .phone-mode.is-active {
  color: var(--plum-deep);
  background: var(--brand);
}

@media (max-width: 860px) {
  .hero-visual .phone-stage {
    margin-top: 18px;
  }

  .hero-visual .phone.phone--hero {
    width: min(342px, 70vw);
  }
}

@media (max-width: 560px) {
  .hero-visual {
    min-height: 0;
    padding-top: 12px;
  }

  .hero-visual .phone.phone--hero {
    width: min(306px, 77vw);
    border-radius: 43px;
  }

  .hero-visual .phone-screen {
    border-radius: 35px;
  }

  .hero-visual .phone-glow {
    width: 300px;
    height: 300px;
  }

  .hero-visual .phone-controls .phone-mode {
    min-height: 26px;
    padding-inline: 8px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-recording {
    display: none;
  }

  .phone-still {
    opacity: 1;
  }

  .phone-slide,
  .phone-recording,
  .phone-still {
    transition: none;
  }
}

/* On small screens, lead with the product capture and keep the device upright. */
@media (max-width: 860px) {
  .hero-visual {
    order: -1;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual .phone.phone--hero {
    transform: rotate(0deg);
  }

  .hero-visual .phone.phone--hero:hover {
    transform: translateY(-8px);
  }
}
