:root {
  --deep-twilight: #180358;
  --violet: #6347d2;
  --fuchsia: #de007e;
  --aqua: #7ed5db;
  --coral: #ff7563;
  --ink: #100d22;
  --ink-2: #150f28;
  --surface: #1c1830;
  --surface-2: #2a2641;
  --text: #f8f7fc;
  --text-soft: #e0deee;
  --muted: #9c98bb;
  --line: rgba(232, 230, 246, 0.12);
  --paper: #f8f7fc;
  --paper-ink: #1c1830;
  --paper-muted: #544f71;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(8, 2, 32, 0.45);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Fustat", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 20;
  padding: 8px 12px;
  background: var(--fuchsia);
  color: #fff;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
}

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.lockup__mark,
.lockup__word {
  display: block;
  background: linear-gradient(180deg, #ffffff, #d2c8f9);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}

.lockup__mark {
  height: 56px;
  aspect-ratio: 310 / 300;
  mask-image: url("/assets/brand/sprintpad-mark-white.png");
  -webkit-mask-image: url("/assets/brand/sprintpad-mark-white.png");
}

.lockup__word {
  height: 38px;
  aspect-ratio: 970 / 285;
  mask-image: url("/assets/brand/sprintpad-wordmark-white.png");
  -webkit-mask-image: url("/assets/brand/sprintpad-wordmark-white.png");
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--fuchsia);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.08);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn--light {
  background: #fff;
  color: var(--deep-twilight);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(99, 71, 210, 0.45), transparent 60%),
    radial-gradient(700px 380px at 0% 80%, rgba(222, 0, 126, 0.22), transparent 55%),
    linear-gradient(180deg, var(--deep-twilight), var(--ink));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 80%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--aqua);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
  color: #f383c4;
}

.lede {
  margin: 0 0 28px;
  max-width: 38rem;
  color: var(--text-soft);
  font-size: 1.125rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.legal-links a {
  color: var(--aqua);
  text-underline-offset: 3px;
}

.pad {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pad__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 13, 34, 0.55);
}

.pad__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8c5dd;
}

.pad__dot:nth-child(1) { background: #ff7563; }
.pad__dot:nth-child(2) { background: #7ed5db; }
.pad__dot:nth-child(3) { background: #de007e; }

.pad__title {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.8125rem;
}

.pad__body {
  padding: 18px;
}

.timer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fuchsia) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--fuchsia) 40%, transparent);
  font-variant-numeric: tabular-nums;
  font-size: 0.875rem;
}

.timer__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fuchsia);
  box-shadow: 0 0 0 4px rgba(222, 0, 126, 0.18);
}

.task {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
}

.task:first-of-type {
  border-top: 0;
}

.task__mark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--violet);
}

.task--done .task__mark {
  background: var(--violet);
  box-shadow: inset 0 0 0 2px var(--ink-2);
}

.task__meta {
  color: var(--muted);
  font-size: 0.75rem;
}

.pill {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(126, 213, 219, 0.14);
  color: var(--aqua);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill--wait {
  background: rgba(255, 117, 99, 0.14);
  color: var(--coral);
}

.icon-badge {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 180px;
  height: 180px;
  border-radius: 36px;
  opacity: 0.18;
  pointer-events: none;
}

.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 22px 0 8px;
  color: var(--muted);
  font-size: 0.875rem;
}

.strip strong {
  color: var(--text-soft);
  font-weight: 600;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--ink-2);
  border-block: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.section__intro {
  margin: 0 0 40px;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

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

.card {
  display: flex;
  flex-direction: column;
  padding: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.card h3 {
  margin: 0 22px 8px;
  font-size: 1.125rem;
}

.card p {
  margin: 0 22px;
  color: var(--muted);
}

.card__stage {
  position: relative;
  height: 176px;
  margin-bottom: 18px;
  overflow: hidden;
  background:
    radial-gradient(180px 80px at 90% 0%, rgba(99, 71, 210, 0.28), transparent 70%),
    #141022;
  border-bottom: 1px solid var(--line);
}

.card__stage--lite {
  background:
    radial-gradient(180px 80px at 10% 0%, rgba(126, 213, 219, 0.35), transparent 70%),
    #f3f1fa;
  color: var(--paper-ink);
}

.card__stage--lite .mock,
.card__stage--lite .mock-head strong,
.card__stage--lite .portal-brand strong {
  color: var(--paper-ink);
}

.card__stage--lite .mock-meta,
.card__stage--lite .mock-head small {
  color: #6a6490;
}

.card__stage--lite .mock-panel {
  border-color: rgba(24, 3, 88, 0.08);
  background: #fff;
}

.card__icon {
  width: 40px;
  height: 40px;
  margin: 22px 22px 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--violet) 22%, transparent);
  color: #d2c8f9;
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.about p {
  color: var(--text-soft);
  font-size: 1.0625rem;
}

.stats {
  display: grid;
  gap: 14px;
}

.stat {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--deep-twilight);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.875rem;
}

.cta {
  padding: 72px 0 96px;
}

.cta__panel {
  padding: 48px;
  border-radius: 28px;
  background:
    radial-gradient(600px 200px at 100% 0%, rgba(222, 0, 126, 0.35), transparent 50%),
    linear-gradient(135deg, var(--deep-twilight), #2c176f);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta__panel h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta__panel p {
  margin: 0;
  color: var(--text-soft);
}

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  background: #0b0818;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer p,
.site-footer a {
  color: var(--text-soft);
  font-size: 0.9375rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: #fff;
}

.fineprint {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.8125rem;
}

/* Legal document pages */
.legal-page {
  background: var(--paper);
  color: var(--paper-ink);
}

.legal-page .site-header {
  background: color-mix(in srgb, var(--deep-twilight) 92%, black);
}

.legal-page .site-footer {
  background: var(--deep-twilight);
  color: var(--text);
}

.doc {
  width: min(760px, calc(100% - 40px));
  margin: 48px auto 80px;
}

.doc header h1 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
}

.doc .meta {
  margin: 0 0 32px;
  color: var(--paper-muted);
}

.doc h2 {
  margin: 32px 0 10px;
  font-size: 1.25rem;
}

.doc p,
.doc li {
  color: #3e3a58;
}

.doc a {
  color: var(--violet);
}

.doc nav {
  margin: 0 0 28px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f0eff7;
}

.doc nav a {
  margin-right: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.notice {
  padding: 14px 16px;
  border-left: 4px solid var(--violet);
  background: #f2effd;
  color: #3e298a;
  border-radius: 0 12px 12px 0;
}

.error {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}

.page-hero {
  padding: 64px 0 24px;
  background:
    radial-gradient(700px 280px at 90% 0%, rgba(99, 71, 210, 0.35), transparent 60%),
    linear-gradient(180deg, var(--deep-twilight), var(--ink));
}

.page-hero h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: var(--text-soft);
  font-size: 1.125rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.plan--featured {
  border-color: color-mix(in srgb, var(--fuchsia) 55%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--fuchsia) 16%, transparent), rgba(255, 255, 255, 0.03));
}

.plan__name {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.plan__for {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.875rem;
}

.plan ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.plan li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.plan .btn {
  width: 100%;
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.feature-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.feature-block--flip .feature-block__copy {
  order: 2;
}

.feature-block--flip .feature-block__visual {
  order: 1;
}

.feature-block__visual .pad {
  box-shadow: var(--shadow);
}

.feature-block h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-family: var(--display);
  letter-spacing: -0.03em;
}

.feature-block p {
  margin: 0 0 18px;
  color: var(--muted);
}

.feature-block ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.feature-block li + li {
  margin-top: 8px;
}

/* Generalized product mocks — illustrated UI, not screenshots */
.mock {
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--text-soft);
  pointer-events: none;
  user-select: none;
}

.mock--fill {
  height: 100%;
}

.mock-shell {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 268px;
}

.mock-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 10px;
  background: rgba(8, 4, 24, 0.5);
  border-right: 1px solid var(--line);
}

.mock-nav__mark {
  width: 22px;
  height: 22px;
  margin: 0 0 10px 4px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--violet), var(--fuchsia));
}

.mock-nav__item {
  height: 22px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
}

.mock-nav__item:nth-child(2) { width: 78%; }
.mock-nav__item:nth-child(3) { width: 92%; }
.mock-nav__item:nth-child(4) { width: 64%; }
.mock-nav__item:nth-child(5) { width: 86%; }
.mock-nav__item:nth-child(6) { width: 70%; }

.mock-nav__item.is-on {
  background: color-mix(in srgb, var(--violet) 42%, transparent);
  box-shadow: inset 2px 0 0 var(--aqua);
}

.mock-nav__item span {
  display: none;
}

.mock-main {
  padding: 14px 16px 16px;
  min-width: 0;
}

.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.mock-head strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--text);
}

.mock-head small,
.mock-meta {
  color: var(--muted);
  font-size: 0.6875rem;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.mock-row:first-of-type {
  border-top: 0;
}

.mock-stack {
  display: grid;
  gap: 8px;
}

.mock-panel {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.timer--hero {
  margin-bottom: 12px;
}

.timer__actions {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

.timer__btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.timer__btn--stop {
  border-radius: 4px;
  background: color-mix(in srgb, var(--fuchsia) 70%, #fff);
}

@keyframes mock-pulse {
  50% { opacity: 0.45; box-shadow: 0 0 0 6px rgba(222, 0, 126, 0.08); }
}

.timer__dot {
  animation: mock-pulse 1.6s ease-in-out infinite;
}

.log-flag {
  flex-shrink: 0;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(126, 213, 219, 0.16);
  color: var(--aqua);
}

.log-flag--off {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.avatars {
  display: flex;
}

.avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #141022;
  margin-left: -6px;
  background: linear-gradient(135deg, var(--violet), var(--aqua));
}

.avatar:first-child {
  margin-left: 0;
}

.avatar--2 { background: linear-gradient(135deg, var(--fuchsia), var(--coral)); }
.avatar--3 { background: linear-gradient(135deg, var(--aqua), #3d8a9a); }
.avatar--4 { background: linear-gradient(135deg, #8b7cf0, var(--deep-twilight)); }

.meter {
  display: grid;
  gap: 4px;
}

.meter__track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.meter__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--aqua));
}

.meter__fill--hot {
  background: linear-gradient(90deg, var(--fuchsia), var(--coral));
}

.meter__fill--wait {
  background: linear-gradient(90deg, var(--coral), #ffb199);
}

.mile {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 12px;
}

.mile__node {
  display: grid;
  justify-items: center;
  gap: 4px;
  flex: 0 0 auto;
  width: 56px;
}

.mile__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 3px rgba(99, 71, 210, 0.25);
}

.mile__dot--wait {
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 117, 99, 0.25);
}

.mile__dot--next {
  background: transparent;
  border: 2px solid var(--muted);
  box-shadow: none;
}

.mile__line {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin-bottom: 16px;
}

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

.cal span {
  aspect-ratio: 1;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.cal span.is-on {
  background: color-mix(in srgb, var(--fuchsia) 45%, transparent);
}

.cal span.is-mark {
  background: color-mix(in srgb, var(--aqua) 40%, transparent);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(99, 71, 210, 0.22);
  color: #d2c8f9;
  font-size: 0.625rem;
  font-weight: 650;
}

.chip--ok {
  background: rgba(126, 213, 219, 0.18);
  color: var(--aqua);
}

.agent-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #2a2641, var(--violet));
  box-shadow: inset 0 0 0 1px var(--line);
}

.toggle {
  width: 28px;
  height: 16px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--aqua);
  position: relative;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10222a;
}

.pad--lite {
  background: linear-gradient(180deg, #fff, #f3f1fa);
  color: var(--paper-ink);
  border-color: rgba(24, 3, 88, 0.1);
}

.pad--lite .pad__chrome {
  background: #ece9f8;
  border-bottom-color: rgba(24, 3, 88, 0.08);
}

.pad--lite .pad__title,
.pad--lite .mock-meta,
.pad--lite .mock-head small {
  color: #6a6490;
}

.pad--lite .mock-head strong,
.pad--lite .mock {
  color: var(--paper-ink);
}

.pad--lite .mock-row,
.pad--lite .mock-panel {
  border-color: rgba(24, 3, 88, 0.08);
}

.pad--lite .mock-panel {
  background: #fff;
}

.pad--lite .meter__track {
  background: rgba(24, 3, 88, 0.08);
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.portal-brand__mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--deep-twilight), var(--fuchsia));
}

.portal-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #6a6490;
  font-size: 0.6875rem;
  font-weight: 650;
}

.portal-nav span.is-on {
  color: var(--deep-twilight);
  box-shadow: inset 0 -2px 0 var(--fuchsia);
}

.pay {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--fuchsia);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
}

.card .mock-shell {
  min-height: 0;
  height: 100%;
  grid-template-columns: 56px 1fr;
}

.card .mock-nav {
  padding: 10px 8px;
}

.card .mock-nav__mark {
  width: 16px;
  height: 16px;
  margin-bottom: 8px;
}

.card .mock-nav__item {
  height: 8px;
}

.card .mock-main {
  padding: 10px 12px;
}

.card .timer {
  margin-bottom: 8px;
  padding: 7px 10px;
  font-size: 0.75rem;
}

.card .mock-head {
  margin-bottom: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .timer__dot {
    animation: none;
  }
}

.error h1 {
  font-family: var(--display);
  font-size: 3rem;
  margin: 0 0 8px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

.demo-steps {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: demo;
}

.demo-steps li {
  counter-increment: demo;
  position: relative;
  padding: 0 0 22px 48px;
}

.demo-steps li:last-child {
  padding-bottom: 0;
}

.demo-steps li::before {
  content: counter(demo);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--violet) 28%, transparent);
  color: #d2c8f9;
  font-weight: 700;
  font-size: 0.875rem;
}

.demo-steps strong {
  display: block;
  margin-bottom: 4px;
}

.demo-steps span {
  color: var(--muted);
}

.demo-form__panel,
.demo-form__done {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.demo-form h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.demo-form__lede {
  margin: 0 0 22px;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(16, 13, 34, 0.55);
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--aqua) 55%, transparent);
  outline-offset: 1px;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--coral);
}

.check.is-invalid input {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.field__error,
.check .field__error {
  margin: 0;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 500;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  margin: 8px 0 16px;
  color: var(--text-soft);
  font-size: 0.875rem;
}

.check input {
  margin-top: 3px;
}

.check label {
  cursor: pointer;
}

.check a {
  color: var(--aqua);
}

.check .field__error {
  grid-column: 2;
}

.form-error {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.875rem;
}

.demo-form .btn {
  width: 100%;
}

.demo-form .btn:disabled {
  opacity: 0.45;
  filter: grayscale(0.35);
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 900px) {
  .demo-grid,
  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero__grid,
  .features,
  .about,
  .cta__panel,
  .site-footer__grid,
  .plans,
  .feature-block,
  .mock-shell,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .feature-block--flip .feature-block__copy,
  .feature-block--flip .feature-block__visual {
    order: unset;
  }

  .mock-nav {
    display: none;
  }

  .card .mock-shell {
    grid-template-columns: 1fr;
  }

  .card .mock-nav {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .cta__panel {
    padding: 28px;
  }

  .lockup__mark {
    height: 44px;
  }

  .lockup__word {
    height: 28px;
  }

  .nav .hide-sm {
    display: none;
  }

  .nav {
    gap: 10px 14px;
  }

  .nav a:not(.btn) {
    font-size: 0.8125rem;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1120px, calc(100% - 28px));
  }

  .nav .btn--ghost {
    display: none;
  }

  .icon-badge {
    width: 120px;
    height: 120px;
  }
}
