:root {
  --ink: #211832;
  --text: #4f435f;
  --soft-text: #786c85;
  --purple: #6d4cc2;
  --purple-deep: #4b2d86;
  --violet-soft: #eee7ff;
  --blue: #2e7da8;
  --green: #1f8a70;
  --peach: #f8d8c3;
  --cream: #fffaf4;
  --paper: #ffffff;
  --line: #e6daef;
  --shadow: 0 20px 45px rgba(50, 35, 74, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbf8ff;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(230, 218, 239, 0.9);
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.brand small {
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 850;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 850;
}

nav a {
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
}

nav a:hover {
  background: var(--violet-soft);
  color: var(--purple-deep);
}

.nav-cta {
  background: var(--ink);
  color: white;
}

.nav-cta:hover {
  background: var(--purple-deep);
  color: white;
}

main {
  overflow: hidden;
}

.splash-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(109, 76, 194, 0.22), transparent 18rem),
    radial-gradient(circle at 78% 72%, rgba(31, 138, 112, 0.18), transparent 20rem),
    linear-gradient(135deg, #fffaf4 0%, #fbf8ff 45%, #eee7ff 100%);
}

.splash-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.splash-hero {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  min-height: min(760px, calc(100vh - 2rem));
  place-content: center;
  border: 0.18rem solid rgba(109, 76, 194, 0.32);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.72);
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
  box-shadow: 0 30px 80px rgba(75, 45, 134, 0.2);
  overflow: hidden;
}

.splash-hero::before,
.splash-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.splash-hero::before {
  inset: auto auto -10rem -10rem;
  width: 24rem;
  height: 24rem;
  border: 1.8rem solid rgba(109, 76, 194, 0.12);
}

.splash-hero::after {
  top: -7rem;
  right: -6rem;
  width: 19rem;
  height: 19rem;
  border: 1.4rem solid rgba(31, 138, 112, 0.13);
}

.splash-logo-wrap,
.splash-kicker,
.splash-hero h1,
.splash-lead,
.splash-button {
  position: relative;
  z-index: 1;
}

.splash-logo-wrap {
  display: grid;
  width: clamp(8rem, 18vw, 13rem);
  height: clamp(8rem, 18vw, 13rem);
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 0 0 0.9rem rgba(238, 231, 255, 0.82),
    0 28px 55px rgba(109, 76, 194, 0.22);
}

.splash-logo-wrap img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.splash-kicker {
  margin: 0 0 0.65rem;
  color: var(--green);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.splash-hero h1 {
  max-width: none;
  margin-bottom: 1.4rem;
  color: var(--purple-deep);
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: 0.9;
}

.splash-lead {
  max-width: 54rem;
  margin-top: 0.5in;
  margin-bottom: 2rem;
  color: var(--text);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 650;
}

.splash-button {
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--purple);
  color: white;
  padding: 0.95rem 1.7rem;
  font-weight: 950;
  box-shadow: 0 18px 36px rgba(109, 76, 194, 0.32);
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.splash-button:hover {
  transform: translateY(-2px);
  background: var(--purple-deep);
  box-shadow: 0 22px 42px rgba(75, 45, 134, 0.34);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(22rem, 1.04fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 4.8rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98), rgba(251, 248, 255, 0.92)),
    linear-gradient(135deg, #fffaf4 0%, #f0e8ff 58%, #dff5f1 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1.8rem solid rgba(109, 76, 194, 0.08);
  border-radius: 50%;
}

.hero-copy,
.product-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.22rem;
  font-weight: 950;
}

.lead {
  max-width: 43rem;
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 950;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.button.primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 14px 30px rgba(109, 76, 194, 0.28);
}

.button.secondary {
  background: white;
  color: var(--purple-deep);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 2rem 0 0;
}

.hero-stats div {
  border: 1px solid rgba(230, 218, 239, 0.92);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  padding: 1rem;
}

.hero-stats dt {
  color: var(--purple-deep);
  font-size: 1.65rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 0.15rem 0 0;
  color: var(--soft-text);
  font-size: 0.88rem;
  font-weight: 750;
}

.product-card {
  border: 1px solid rgba(230, 218, 239, 0.98);
  border-radius: 1.4rem;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-top {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 3.4rem;
  border-bottom: 1px solid var(--line);
  background: #fffaf4;
  padding: 0.9rem 1rem;
}

.app-top .dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--peach);
}

.app-top .dot:nth-child(2) {
  background: #d9cef2;
}

.app-top .dot:nth-child(3) {
  background: #bfe8df;
}

.app-top strong {
  margin-left: 0.35rem;
  font-weight: 950;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0.9rem;
  padding: 0.9rem;
  background: linear-gradient(180deg, #ffffff, #fbf8ff);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
  padding: 1rem;
}

.panel-label {
  margin-bottom: 0.42rem;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.schedule-panel {
  grid-row: span 2;
}

.schedule-panel h2,
.spring-panel h2 {
  font-size: 1.35rem;
}

.schedule-panel article {
  display: grid;
  gap: 0.18rem;
  margin-top: 0.75rem;
  border-left: 0.28rem solid var(--purple);
  border-radius: 0.8rem;
  background: #f6f1ff;
  padding: 0.82rem 0.9rem;
}

.schedule-panel article:nth-of-type(2) {
  border-left-color: var(--green);
  background: #eefaf6;
}

.schedule-panel article:nth-of-type(3) {
  border-left-color: var(--blue);
  background: #eef7fb;
}

.schedule-panel time {
  color: var(--purple-deep);
  font-size: 0.84rem;
  font-weight: 950;
}

.schedule-panel span,
.spring-panel p,
.mini-panel strong,
.section p,
.spring-section p,
.spring-section li,
.pricing p,
footer p {
  color: var(--text);
}

.spring-panel {
  background: #fff8f3;
}

.pill {
  display: inline-flex;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: var(--ink);
  padding: 0.42rem 0.72rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
}

.mini-panel {
  background: #ffffff;
}

.section,
.feature-grid,
.spring-section,
.pricing,
.final-cta,
footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
}

.split,
.pricing,
.spring-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.split p,
.spring-section p,
.pricing p {
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0 clamp(3.5rem, 7vw, 6rem);
}

.feature-grid article {
  min-height: 14rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: white;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(50, 35, 74, 0.07);
}

.feature-grid article:nth-child(2n) {
  background: #fffaf4;
}

.feature-grid article:nth-child(3n) {
  background: #f0faf7;
}

.feature-grid span {
  color: var(--purple);
  font-weight: 950;
}

.feature-grid p {
  color: var(--text);
}

.spring-section {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 231, 255, 0.9)),
    white;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.spring-section ul,
.price-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.spring-section li,
.price-card li {
  margin-bottom: 0.72rem;
}

.pricing {
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.tier-pricing {
  grid-template-columns: minmax(16rem, 0.8fr) repeat(3, minmax(13.5rem, 1fr));
  align-items: stretch;
}

.tier-pricing > div:first-child {
  align-self: center;
}

.tier-pricing > div:first-child h2 {
  overflow-wrap: break-word;
  max-width: 22ch;
}

.price-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: white;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-price {
  border-color: rgba(109, 76, 194, 0.45);
  box-shadow: 0 24px 56px rgba(109, 76, 194, 0.17);
}

.price-card > p {
  margin-bottom: 0.3rem;
  color: var(--green);
  font-weight: 950;
}

.price-card strong {
  display: block;
  margin-bottom: 1.15rem;
  color: var(--purple-deep);
  font-size: clamp(2.8rem, 4.5vw, 4.35rem);
  font-weight: 950;
  line-height: 1;
  overflow-wrap: normal;
  white-space: nowrap;
}

.price-card strong span {
  color: var(--soft-text);
  font-size: 1rem;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.final-cta {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  border-radius: 1.4rem;
  background:
    linear-gradient(135deg, rgba(33, 24, 50, 0.94), rgba(75, 45, 134, 0.92)),
    var(--ink);
  padding: clamp(2rem, 5vw, 4rem);
  color: white;
}

.final-cta .eyebrow,
.final-cta h2 {
  color: white;
}

.final-cta h2 {
  max-width: 16ch;
}

.final-cta .button.primary {
  background: white;
  color: var(--purple-deep);
  box-shadow: none;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
}

footer a {
  color: var(--purple-deep);
  font-weight: 950;
}

.page-hero {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3.5rem);
}

.page-hero h1 {
  max-width: 13ch;
}

.product-hero {
  display: grid;
  min-height: 0;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.25rem, 5vw, 4rem);
}

.product-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.15rem, 4.8vw, 4.2rem);
}

.product-hero .lead {
  max-width: 48rem;
  margin-inline: auto;
}

.pricing-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
}

.pricing-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.15rem, 4.8vw, 4.2rem);
}

.pricing-hero .lead {
  max-width: 48rem;
  margin-inline: auto;
}

.examples-hero {
  display: grid;
  min-height: 0;
  justify-items: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}

.examples-hero h1 {
  max-width: 17ch;
  font-size: clamp(2.15rem, 4.8vw, 4.2rem);
}

.examples-hero .lead {
  max-width: 49rem;
  margin-inline: auto;
}

.screen-stack {
  position: relative;
  min-height: 34rem;
}

.mock-screen {
  border: 1px solid rgba(230, 218, 239, 0.98);
  border-radius: 1.35rem;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.main-screen {
  width: 100%;
}

.mock-top {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 3.3rem;
  border-bottom: 1px solid var(--line);
  background: #fffaf4;
  padding: 0.85rem 1rem;
}

.mock-top span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--peach);
}

.mock-top span:nth-child(2) {
  background: #d9cef2;
}

.mock-top span:nth-child(3) {
  background: #bfe8df;
}

.mock-top strong {
  margin-left: 0.35rem;
}

.mock-body {
  display: grid;
  grid-template-columns: 10rem 1fr;
  min-height: 24rem;
}

.sidebar-preview {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  border-right: 1px solid var(--line);
  background: #fbf8ff;
  padding: 1rem;
}

.sidebar-preview p {
  margin: 0;
  border-radius: 0.55rem;
  background: white;
  padding: 0.55rem;
  color: var(--text);
  font-weight: 850;
}

.workspace-preview,
.dashboard-shot,
.calendar-shot,
.chat-shot,
.game-shot {
  padding: 1.1rem;
}

.workspace-preview h2,
.dashboard-shot h3 {
  font-size: 1.6rem;
  line-height: 1.1;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0.9rem 0;
}

.metric-row span {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #fbf8ff;
  padding: 0.7rem;
  color: var(--purple-deep);
  font-size: 0.82rem;
  font-weight: 950;
}

.workspace-preview article,
.dashboard-shot article {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.65rem;
  border-left: 0.28rem solid var(--purple);
  border-radius: 0.75rem;
  background: #f6f1ff;
  padding: 0.78rem;
}

.floating-card {
  position: absolute;
  right: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
  padding: 1rem;
  box-shadow: 0 18px 36px rgba(50, 35, 74, 0.14);
}

.spring-card {
  bottom: 2rem;
  width: min(22rem, 78%);
}

.game-card {
  left: 1.4rem;
  bottom: -1.2rem;
  width: min(20rem, 72%);
}

.box-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 clamp(3.5rem, 7vw, 5rem);
}

.box-row article {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: white;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(50, 35, 74, 0.07);
}

.box-row span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.screenshot-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.screenshot-section.product-box {
  border: 0.22rem solid var(--purple);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 50px rgba(109, 76, 194, 0.12);
  padding: clamp(1.35rem, 3.5vw, 2.5rem);
}

.screenshot-section.reverse .copy-block {
  order: 2;
}

.copy-block p {
  color: var(--text);
  font-size: 1.05rem;
}

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

.calendar-grid span {
  min-height: 4.5rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #fbf8ff;
  padding: 0.5rem;
  font-weight: 850;
}

.calendar-grid .event-day {
  background: #f0faf7;
  color: #12634d;
}

.calendar-grid .today {
  background: var(--purple);
  color: white;
}

.chat-shot {
  display: grid;
  gap: 0.8rem;
}

.bubble {
  max-width: 82%;
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  font-weight: 800;
}

.bubble.spring {
  background: #f6f1ff;
}

.bubble.user {
  justify-self: end;
  background: var(--purple);
  color: white;
}

.chat-bar {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: var(--soft-text);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.example-grid article {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: white;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 14px 34px rgba(50, 35, 74, 0.07);
}

.mini-shot {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  border-radius: 1rem;
  background: #fbf8ff;
  padding: 1rem;
}

.mini-shot span,
.balance-shot span,
.resident-shot span {
  border-radius: 0.7rem;
  background: white;
  padding: 0.65rem;
  font-weight: 900;
}

.file-shot small {
  color: var(--soft-text);
  font-weight: 850;
}

.bingo-card {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #f0faf7;
  padding: 1rem;
}

.bingo-card div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.bingo-card span {
  border-radius: 0.55rem;
  background: white;
  padding: 0.6rem;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.game-shot {
  background: #122944;
  color: white;
}

.one-on-one-section {
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.one-on-one-shot {
  background: #fff;
}

.one-on-one-shot h3 {
  padding: 1.1rem 1.1rem 0;
  font-size: 2rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.8rem 1.1rem 0;
}

.profile-stats span,
.one-on-one-shot article {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fbf8ff;
  padding: 0.85rem;
}

.profile-stats span {
  color: var(--purple-deep);
  font-weight: 950;
}

.one-on-one-shot article {
  margin: 0.8rem 1.1rem;
}

.one-on-one-shot article p {
  margin: 0.35rem 0 0;
}

.game-shot .mock-top {
  margin: -1.1rem -1.1rem 1rem;
  color: var(--ink);
}

.tv-display-shot {
  display: grid;
  gap: 1rem;
  align-content: center;
  min-height: 24rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 0.35rem solid #071a31;
  background:
    radial-gradient(circle at 75% 12%, rgba(255, 225, 106, 0.16), transparent 24rem),
    #102743;
}

.tv-display-shot .tv-label {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.8rem;
  color: #dbeafe;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-shot h3 {
  font-size: 2rem;
}

.tv-display-shot h3 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.tv-call-card {
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: #ffe16a;
  padding: clamp(1rem, 3vw, 1.8rem);
  color: #08233f;
  text-align: center;
}

.tv-call-card span {
  font-weight: 950;
  text-transform: uppercase;
}

.big-call {
  display: block;
  margin: 0.5rem 0 1rem;
  color: #ffe16a;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
}

.tv-call-card .big-call {
  margin: 0.2rem 0 0;
  color: #08233f;
  font-size: clamp(5rem, 12vw, 9.5rem);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.tv-display-shot .number-grid {
  grid-template-columns: repeat(8, 1fr);
}

.number-grid span {
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.8rem;
  text-align: center;
  font-weight: 950;
}

.tv-display-shot .number-grid span {
  background: rgba(255, 255, 255, 0.16);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.tv-feud-shot {
  display: grid;
  gap: 1rem;
  min-height: 24rem;
  border: 0.4rem solid #071a31;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 225, 106, 0.18), transparent 21rem),
    #0d2140;
  padding: clamp(1rem, 2.5vw, 1.6rem);
}

.tv-score-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.8rem;
  align-items: center;
  color: #ffe16a;
  font-weight: 950;
  text-align: center;
}

.tv-score-row span {
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.65rem;
}

.tv-score-row strong {
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.tv-question {
  display: grid;
  min-height: 5.5rem;
  place-items: center;
  border: 0.18rem solid rgba(255, 225, 106, 0.85);
  border-radius: 1rem;
  background: #17365d;
  padding: 1rem;
  color: white;
  font-size: clamp(1.25rem, 2.6vw, 2.1rem);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.tv-answer-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.tv-answer-board span {
  border-radius: 0.65rem;
  background: #f7d856;
  padding: 0.8rem;
  color: #08233f;
  font-weight: 950;
}

.mobile-preview-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.mobile-preview-row div {
  display: grid;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(50, 35, 74, 0.07);
}

.mobile-preview-row strong {
  color: var(--purple-deep);
  font-size: 1.15rem;
}

.mobile-preview-row span {
  border-radius: 0.7rem;
  background: #fbf8ff;
  padding: 0.65rem;
  font-weight: 900;
}

.pilot-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  width: min(1060px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.pilot-card,
.pilot-aside {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: white;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

nav [aria-current="page"] {
  background: var(--violet-soft);
  color: var(--purple-deep);
}

.spring-hero {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  justify-items: center;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.spring-hero-copy {
  display: grid;
  justify-items: center;
}

.spring-question {
  margin: 0 0 0.85rem;
  color: var(--green);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 950;
}

.spring-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 5.25vw, 4.8rem);
}

.spring-hero .lead {
  max-width: 54rem;
  margin-inline: auto;
}

.spring-ai-screen {
  width: min(680px, 100%);
  background: linear-gradient(180deg, #ffffff, #fbf8ff);
  text-align: left;
}

.spring-thread {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.spring-thread .bubble {
  max-width: 92%;
}

.spring-feature-grid {
  padding-top: 0;
}

.spring-memory-band,
.spring-workflow {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto clamp(2rem, 5vw, 4rem);
}

.spring-memory-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  border: 0.22rem solid var(--purple);
  border-radius: 1.35rem;
  background: #ffffff;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(109, 76, 194, 0.12);
}

.spring-memory-band h2 {
  max-width: 12ch;
}

.spring-workflow h2 {
  max-width: 18ch;
}

.memory-list {
  display: grid;
  gap: 0.8rem;
}

.memory-list p {
  margin: 0;
  border-radius: 0.9rem;
  background: #f6f1ff;
  padding: 1rem;
}

.workflow-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-row article {
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: white;
  padding: 1.25rem;
  box-shadow: 0 14px 34px rgba(50, 35, 74, 0.07);
}

.workflow-row b {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--purple-deep);
  font-weight: 950;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    justify-content: flex-end;
  }

  .hero,
  .split,
  .pricing,
  .tier-pricing,
  .spring-section,
  .screenshot-section,
  .spring-hero,
  .spring-memory-band,
  .pilot-layout {
    grid-template-columns: 1fr;
  }

  .product-card {
    order: -1;
  }

  .feature-grid,
  .box-row,
  .workflow-row,
  .example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-section.reverse .copy-block {
    order: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: center;
  }

  nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.25rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

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

  nav a {
    flex: 0 0 auto;
    padding: 0.55rem 0.72rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-stats,
  .app-grid,
  .feature-grid,
  .box-row,
  .example-grid,
  .workflow-row,
  .mobile-preview-row,
  .mock-body,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .schedule-panel {
    grid-row: auto;
  }

  .brand img {
    width: 2.55rem;
    height: 2.55rem;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 1rem;
  }

  .screen-stack {
    min-height: auto;
  }

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