:root {
  --ink-1000: #191f2b;
  --ink-950: #252d3b;
  --ink-900: #334153;
  --ink-800: #4a5c76;
  --ink-700: #61728a;
  --sky-600: #2a7dc5;
  --sky-500: #3f99de;
  --sky-400: #69b6e9;
  --copper-600: #a85d2a;
  --copper-500: #c67634;
  --copper-400: #df9556;
  --accent-500: #f4b13f;
  --accent-600: #df9830;
  --paper-100: #eef1f6;
  --paper-70: #f4f6fa;
  --paper-50: #f7f8fb;
  --paper-0: #ffffff;
  --line-soft: rgba(29, 41, 58, 0.13);
  --line-strong: rgba(29, 41, 58, 0.24);
  --shadow-soft: 0 10px 30px rgba(25, 33, 45, 0.08);
  --shadow-lift: 0 18px 45px rgba(25, 33, 45, 0.14);
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink-950);
  line-height: 1.54;
  background:
    radial-gradient(circle at 14% -10%, rgba(63, 153, 222, 0.16), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(198, 118, 52, 0.18), transparent 24%),
    linear-gradient(180deg, #eff3f8 0%, #f7f8fb 46%, #eef3f8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
}

body::before {
  width: 460px;
  height: 460px;
  top: -250px;
  right: -130px;
  background: radial-gradient(circle, rgba(102, 177, 230, 0.18) 0%, rgba(102, 177, 230, 0) 70%);
}

body::after {
  width: 500px;
  height: 500px;
  bottom: -290px;
  left: -170px;
  background: radial-gradient(circle, rgba(211, 220, 235, 0.3) 0%, rgba(211, 220, 235, 0) 72%);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-1000);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

p {
  margin: 0;
}

a {
  color: var(--sky-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: #215f99;
}

small,
.small {
  font-size: 0.86rem;
  color: var(--ink-700);
}

.app-shell {
  width: min(100% - 2rem, 1160px);
  margin: 0 auto;
  padding: 1.35rem 0 2.2rem;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 251, 253, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-m);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 34px rgba(25, 33, 45, 0.08);
}

.panel {
  padding: clamp(1rem, 2.2vw, 1.4rem);
}

.btn {
  border: 0;
  border-radius: 16px;
  padding: 0.74rem 1.24rem;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.14s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--copper-400) 0%, var(--copper-500) 52%, var(--copper-600) 100%);
  box-shadow: 0 12px 26px rgba(98, 53, 26, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(98, 53, 26, 0.3);
}

.btn-secondary {
  color: var(--ink-900);
  border: 1px solid rgba(31, 44, 61, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 252, 0.9));
}

.btn-secondary:hover {
  box-shadow: 0 10px 24px rgba(35, 46, 63, 0.14);
}

.btn-danger {
  color: #fff;
  background: linear-gradient(130deg, #a22929, #c64040);
  box-shadow: 0 8px 20px rgba(162, 41, 41, 0.24);
}

.input,
.textarea,
.select {
  width: 100%;
  border-radius: var(--radius-s);
  border: 1px solid var(--line-strong);
  padding: 0.72rem 0.84rem;
  font-size: 0.96rem;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink-950);
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 3px rgba(63, 153, 222, 0.18);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  padding: 0.24rem 0.72rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2b638c;
  background: linear-gradient(130deg, rgba(91, 173, 231, 0.2), rgba(91, 173, 231, 0.08));
  border: 1px solid rgba(63, 153, 222, 0.24);
}

.badge.warn {
  color: #76511a;
  background: rgba(244, 177, 63, 0.25);
}

.badge.error {
  color: #822222;
  background: rgba(198, 64, 64, 0.17);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.stack-12 > * + * {
  margin-top: 12px;
}

.stack-16 > * + * {
  margin-top: 16px;
}

.stack-24 > * + * {
  margin-top: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.brand-link-center {
  justify-content: center;
  width: 100%;
}

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

.brand-logo-lg {
  max-width: min(440px, 72vw);
}

.brand-logo-md {
  max-width: min(320px, 72vw);
}

.brand-logo-sm {
  max-width: min(220px, 58vw);
}

.hero-modern {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
}

.hero-copy h2 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--ink-800);
  max-width: 54ch;
}

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

.metric-item {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(248, 250, 253, 0.95);
  padding: 0.7rem;
}

.metric-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-950);
}

.metric-item span {
  font-size: 0.78rem;
}

.hero-preview {
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: linear-gradient(180deg, #f9fbff 0%, #f4f7fb 100%);
  color: var(--ink-950);
  padding: 1rem;
}

.hero-preview h3 {
  color: var(--ink-1000);
  font-size: 1.24rem;
}

.price-tag {
  color: var(--ink-1000);
  font-size: clamp(2.2rem, 5.2vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-tag span {
  font-size: 1rem;
  color: var(--ink-700);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.94rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  left: 0;
  top: 0.47rem;
  background: linear-gradient(120deg, var(--sky-500), var(--sky-600));
}

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

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
}

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

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  body::before,
  body::after {
    display: none;
  }

  .grid.cols-2,
  .hero-modern,
  .feature-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

:root {
  --navy-975: #08121d;
  --navy-950: #0d1d2d;
  --navy-900: #14314a;
  --navy-850: #1b4c6d;
}

body.marketing-page {
  background:
    radial-gradient(circle at 14% 0%, rgba(90, 171, 231, 0.22), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(244, 177, 63, 0.18), transparent 24%),
    linear-gradient(180deg, #edf2f7 0%, #f5f8fb 48%, #eef3f8 100%);
}

body.marketing-page::before {
  width: 520px;
  height: 520px;
  top: -280px;
  right: -120px;
  background: radial-gradient(circle, rgba(87, 161, 220, 0.24) 0%, rgba(87, 161, 220, 0) 70%);
}

body.marketing-page::after {
  width: 560px;
  height: 560px;
  bottom: -320px;
  left: -150px;
  background: radial-gradient(circle, rgba(199, 213, 230, 0.45) 0%, rgba(199, 213, 230, 0) 72%);
}

body.auth-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(90, 171, 231, 0.22), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(198, 118, 52, 0.22), transparent 22%),
    linear-gradient(180deg, #edf1f6 0%, #f5f7fb 42%, #eef3f7 100%);
}

body.auth-page::before {
  width: 540px;
  height: 540px;
  top: -280px;
  right: -140px;
  background: radial-gradient(circle, rgba(80, 160, 220, 0.18) 0%, rgba(80, 160, 220, 0) 72%);
}

body.auth-page::after {
  width: 560px;
  height: 560px;
  bottom: -320px;
  left: -160px;
  background: radial-gradient(circle, rgba(202, 212, 225, 0.34) 0%, rgba(202, 212, 225, 0) 72%);
}

body.signup-page::before,
body.signup-page::after {
  display: none;
}

body.legal-page {
  background:
    radial-gradient(circle at 18% -4%, rgba(90, 171, 231, 0.16), transparent 30%),
    radial-gradient(circle at 96% -2%, rgba(198, 118, 52, 0.15), transparent 20%),
    linear-gradient(180deg, #eef3f8 0%, #f7f9fb 44%, #eff3f7 100%);
}

.legal-stage {
  min-height: 100vh;
  padding-top: 6.2rem;
}

.legal-page .home-nav-links a.is-current {
  color: var(--home-steel-950);
}

.legal-hero {
  padding-top: 1rem;
}

.legal-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.72fr);
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(16, 37, 63, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 149, 86, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 251, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 46px rgba(14, 28, 47, 0.08);
}

.legal-hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.legal-quick-facts {
  display: grid;
  gap: 0.82rem;
}

.legal-fact {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(16, 37, 63, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 184, 115, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.legal-fact strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--ink-1000);
  font-size: 1.02rem;
}

.legal-fact span {
  display: block;
  color: var(--ink-800);
  line-height: 1.6;
}

.pricing-hero-visual {
  display: grid;
  gap: 0.82rem;
}

.pricing-hero-shot {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(16, 37, 63, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 36px rgba(14, 28, 47, 0.08);
}

.pricing-hero-shot img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.pricing-hero-note {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(16, 37, 63, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 184, 115, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.pricing-hero-note strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--ink-1000);
  font-size: 1rem;
}

.pricing-hero-note span {
  display: block;
  color: var(--ink-800);
  line-height: 1.6;
}

.legal-content {
  padding-top: 1.5rem;
}

.legal-document-grid {
  display: grid;
  gap: 1rem;
}

.legal-section-card {
  padding: 1.22rem 1.2rem;
  border-radius: 26px;
  border: 1px solid rgba(16, 37, 63, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 252, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 38px rgba(14, 28, 47, 0.06);
}

.legal-section-card h2 {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  letter-spacing: -0.03em;
}

.legal-section-card p,
.legal-section-card li {
  color: var(--ink-800);
  line-height: 1.7;
}

.legal-section-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.marketing-cta-section {
  padding-top: 1.5rem;
}

.marketing-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(17, 35, 58, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 201, 255, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(12, 27, 43, 0.96) 0%, rgba(20, 45, 69, 0.94) 52%, rgba(33, 84, 117, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(10, 22, 35, 0.18);
}

.marketing-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.marketing-cta-copy p {
  margin: 0;
  max-width: 48ch;
  color: rgba(232, 240, 248, 0.82);
  line-height: 1.7;
}

.marketing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.72rem;
}

.marketing-cta-panel .btn-home-secondary {
  background: rgba(255, 255, 255, 0.12);
}

.marketing-trust-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.marketing-trust-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(237, 243, 249, 0.86);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-500);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.btn-ghost {
  color: var(--ink-900);
  border: 1px solid rgba(31, 44, 61, 0.12);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  box-shadow: 0 12px 24px rgba(27, 37, 49, 0.1);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-lead {
  color: var(--ink-800);
  font-size: 1rem;
  line-height: 1.65;
}

.marketing-shell {
  width: min(100% - 2rem, 1220px);
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0.85rem;
  z-index: 10;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-frame {
  border-radius: 34px;
  padding: clamp(1.3rem, 4vw, 2.1rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(125, 210, 255, 0.16), transparent 32%),
    linear-gradient(145deg, var(--navy-975) 0%, var(--navy-950) 38%, var(--navy-850) 100%);
  color: rgba(233, 241, 248, 0.88);
  box-shadow: 0 28px 60px rgba(10, 21, 35, 0.24);
}

.hero-frame h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.marketing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.15rem;
  align-items: stretch;
}

.marketing-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-summary {
  max-width: 58ch;
  color: rgba(230, 239, 248, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.72;
}

.hero-actions .btn-primary {
  color: #14263a;
  background: linear-gradient(132deg, #f6c15a 0%, #ecab34 58%, #d58d17 100%);
  box-shadow: 0 12px 24px rgba(213, 141, 23, 0.26);
}

.hero-actions .btn-primary:hover {
  box-shadow: 0 16px 28px rgba(213, 141, 23, 0.34);
}

.hero-frame .btn-secondary {
  color: #eff5fb;
  border-color: rgba(240, 246, 252, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero-frame .btn-secondary:hover {
  box-shadow: 0 12px 24px rgba(8, 17, 29, 0.18);
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.proof-pill {
  padding: 0.56rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(232, 240, 248, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
}

.marketing-console {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(201, 223, 243, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 16, 28, 0.2));
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(221, 233, 244, 0.74);
}

.console-callout {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(5, 12, 22, 0.28);
  border: 1px solid rgba(199, 223, 243, 0.12);
}

.console-callout strong,
.timeline-row strong,
.console-metric strong {
  color: #fff;
}

.console-callout .small,
.timeline-row p,
.console-metric span {
  color: rgba(228, 237, 247, 0.76);
}

.caps-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(222, 232, 244, 0.78);
}

.console-timeline {
  display: grid;
  gap: 0.78rem;
}

.timeline-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.timeline-badge {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(96, 182, 238, 0.95), rgba(42, 125, 197, 0.95));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.console-metric {
  padding: 0.88rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(199, 223, 243, 0.08);
}

.console-metric strong {
  display: block;
  margin-bottom: 0.32rem;
  font-size: 0.96rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
}

.signal-item {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 249, 252, 0.95));
}

.signal-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--ink-1000);
}

.section-block {
  margin-top: 0.35rem;
}

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

.workflow-card {
  border-radius: 28px;
}

.step-chip {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #2a7dc5, #54ace6);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
}

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

.feature-panel {
  min-height: 220px;
  border-radius: 30px;
}

.feature-panel-wide {
  grid-column: span 2;
}

.feature-panel.dark {
  background:
    radial-gradient(circle at 92% 10%, rgba(126, 219, 240, 0.12), transparent 28%),
    linear-gradient(160deg, #102235 0%, #17314a 100%);
  border-color: rgba(194, 220, 243, 0.1);
}

.feature-panel.dark h3 {
  color: #fff;
}

.feature-panel.dark .small {
  color: rgba(229, 237, 246, 0.78);
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 1.9rem);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 251, 0.96));
}

.marketing-list {
  gap: 0.62rem;
}

.pricing-panel {
  padding: 1.15rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(121, 209, 240, 0.14), transparent 28%),
    linear-gradient(160deg, #0f1f30 0%, #16314c 100%);
  color: rgba(236, 243, 249, 0.92);
}

.pricing-panel .price-tag {
  color: #fff;
}

.pricing-panel .price-tag span,
.pricing-panel .small,
.pricing-panel a {
  color: rgba(228, 237, 247, 0.78);
}

.pricing-panel .btn-secondary {
  color: #eef4fb;
  border-color: rgba(240, 246, 252, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.footer-note {
  text-align: center;
  margin-top: 0.4rem;
}

.auth-shell {
  width: min(100% - 2rem, 1220px);
  margin: 0 auto;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: 1.2rem 0 2rem;
}

.auth-surface {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border-radius: 34px;
  min-height: min(780px, calc(100dvh - 3.2rem));
}

.auth-story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 149, 86, 0.24), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(129, 218, 244, 0.14), transparent 28%),
    linear-gradient(160deg, #101820 0%, var(--navy-950) 42%, #204663 100%);
  color: rgba(232, 240, 248, 0.84);
}

.auth-story > * {
  position: relative;
  z-index: 1;
}

.auth-story::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(127, 209, 241, 0.16) 0%, rgba(127, 209, 241, 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.signup-page .auth-story::after {
  display: none;
}

.signup-page .auth-shell {
  width: min(100% - 2rem, 860px);
}

.login-page .auth-shell {
  width: min(100% - 2rem, 760px);
}

.forgot-password-page .auth-shell,
.reset-password-page .auth-shell {
  width: min(100% - 2rem, 760px);
}

.signup-page .auth-surface {
  grid-template-columns: 1fr;
  min-height: auto;
  max-width: 760px;
  margin: 0 auto;
}

.login-page .auth-surface {
  grid-template-columns: 1fr;
  min-height: auto;
  max-width: 620px;
  margin: 0 auto;
}

.forgot-password-page .auth-surface,
.reset-password-page .auth-surface {
  grid-template-columns: 1fr;
  min-height: auto;
  max-width: 620px;
  margin: 0 auto;
}

.signup-page .auth-story {
  background:
    linear-gradient(162deg, #101820 0%, #183148 46%, #32506a 100%);
  color: rgba(236, 243, 249, 0.86);
}

.signup-page .auth-story-card,
.signup-page .step-rail-item {
  backdrop-filter: none;
}

.signup-page .auth-story-card {
  background: rgba(255, 255, 255, 0.08);
}

.auth-story h1 {
  color: #fff;
  font-size: clamp(2.15rem, 4.4vw, 3.9rem);
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.auth-story .small {
  color: rgba(230, 239, 248, 0.76);
}

.auth-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.auth-story-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.auth-story-card strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #fff;
}

.auth-story-card span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.55;
}

.step-rail {
  display: grid;
  gap: 0.8rem;
}

.step-rail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.88rem 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 25, 37, 0.28);
}

.step-rail-item > span {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(223, 149, 86, 0.2);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
}

.auth-form-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 149, 86, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.95));
}

.signup-page .auth-form-panel {
  min-height: min(780px, calc(100dvh - 3.2rem));
}

.login-page .auth-form-panel {
  min-height: auto;
}

.forgot-password-page .auth-form-panel,
.reset-password-page .auth-form-panel {
  min-height: auto;
}

.auth-inline-link {
  margin: -0.2rem 0 0;
  text-align: right;
}

.auth-panel-note {
  margin: 0;
  color: var(--ink-800);
  line-height: 1.62;
}

.auth-form-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.auth-page .wizard-progress {
  width: fit-content;
  padding: 0.42rem 0.84rem;
  background: rgba(198, 118, 52, 0.12);
  border-color: rgba(198, 118, 52, 0.24);
  color: var(--copper-600);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field-full {
  grid-column: 1 / -1;
}

.auth-label {
  display: grid;
  gap: 0.42rem;
}

.auth-label > span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-900);
}

.auth-page .input {
  background: rgba(247, 249, 252, 0.98);
  border-color: rgba(30, 42, 58, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.signup-step {
  min-height: 310px;
}

.soft-card {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(198, 118, 52, 0.12);
  background: linear-gradient(180deg, rgba(245, 239, 232, 0.6), rgba(236, 242, 248, 0.74));
}

.soft-card-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.soft-card-dark strong,
.soft-card-dark .small {
  color: #fff;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-800);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--copper-400), var(--copper-600));
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.55;
}

.checkbox-row input {
  margin-top: 0.18rem;
}

.signup-step-note {
  color: var(--ink-700);
}

.signup-flow-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.signup-flow-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 118, 52, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-800);
  font-size: 0.8rem;
  font-weight: 600;
}

.signup-plan-summary-card {
  border: 1px solid rgba(198, 118, 52, 0.14);
  background:
    radial-gradient(circle at top left, rgba(198, 118, 52, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.92));
}

.signup-plan-summary-card .small.is-alert {
  color: #8f2020;
  font-weight: 700;
}

.signup-email-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.signup-email-verify-btn {
  min-width: 0;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
}

.signup-email-status {
  color: var(--ink-700);
}

.signup-email-status.is-alert {
  color: #9f2f2f;
}

.signup-email-status.is-success {
  color: #18603d;
}

.signup-email-badge {
  margin-left: auto;
}

.password-rule-list {
  gap: 0.45rem;
}

.password-rule {
  transition: color 160ms ease;
}

.password-rule::before {
  background: rgba(30, 42, 58, 0.2);
}

.password-rule.is-met {
  color: #18603d;
}

.password-rule.is-met::before {
  background: linear-gradient(120deg, #5aa469, #1f7a4c);
}

.password-rule.is-failed {
  color: #9f2f2f;
}

.password-rule.is-failed::before {
  background: linear-gradient(120deg, #d97979, #b54646);
}

.auth-summary {
  border-radius: 24px;
}

.billing-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.promo-hint {
  margin: 0;
  color: var(--ink-700);
}

.billing-blocked-card {
  border-color: rgba(30, 42, 58, 0.08);
  background: linear-gradient(180deg, rgba(243, 245, 249, 0.92), rgba(238, 242, 247, 0.88));
}

.auth-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin-top: auto;
  padding-top: 1rem;
  padding-bottom: 0.2rem;
  border-top: 1px solid rgba(30, 42, 58, 0.08);
  background: linear-gradient(180deg, rgba(248, 250, 253, 0), rgba(248, 250, 253, 0.94) 28%, rgba(248, 250, 253, 0.99) 100%);
  justify-content: space-between;
  align-items: center;
}

.auth-actions .btn {
  min-width: 140px;
}

.auth-submit {
  width: 100%;
}

.auth-footer-link {
  margin-top: auto;
}

.legal-page .legal-shell {
  width: min(100% - 2rem, 1040px);
  padding: 1.2rem 0 3rem;
}

.legal-page .legal-shell > .card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 253, 0.9));
}

.legal-page .legal-shell > .card:first-child {
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 149, 86, 0.26), transparent 24%),
    radial-gradient(circle at 76% 18%, rgba(131, 220, 244, 0.14), transparent 28%),
    linear-gradient(160deg, #101820 0%, var(--navy-950) 46%, #235271 100%);
  color: rgba(236, 243, 249, 0.9);
  box-shadow: 0 26px 52px rgba(12, 23, 37, 0.18);
}

.legal-page .legal-shell > .card:first-child h1,
.legal-page .legal-shell > .card:first-child a {
  color: #fff;
}

.legal-page .legal-shell > .card:first-child .small {
  color: rgba(230, 239, 247, 0.78);
}

.legal-page ul {
  margin: 0;
  padding-left: 1.1rem;
}

@media (max-width: 980px) {
  .marketing-grid,
  .signal-strip,
  .workflow-grid,
  .bento-grid,
  .pricing-band,
  .auth-surface,
  .auth-story-grid,
  .billing-choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .feature-panel-wide {
    grid-column: auto;
  }

  .console-metrics {
    grid-template-columns: 1fr;
  }

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

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

  .marketing-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .marketing-shell,
  .auth-shell,
  .legal-page .legal-shell {
    width: min(100% - 1rem, 1220px);
  }

  .site-header,
  .hero-frame,
  .signal-strip,
  .pricing-band,
  .auth-surface {
    border-radius: 24px;
  }

  .site-actions,
  .hero-actions,
  .marketing-cta-actions,
  .pricing-panel .actions,
  .auth-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-actions .btn,
  .hero-actions .btn,
  .marketing-cta-actions .btn,
  .pricing-panel .btn,
  .auth-actions .btn {
    width: 100%;
  }

  .hero-frame h1,
  .auth-story h1 {
    max-width: none;
  }

  .legal-stage {
    padding-top: 6.7rem;
  }

  .legal-hero-card,
  .legal-section-card {
    padding: 1rem;
    border-radius: 24px;
  }
}

body.marketing-page {
  --font-display: "Barlow Condensed", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --home-steel-950: #131a22;
  --home-steel-900: #202b36;
  --home-steel-850: #2f3d4a;
  --home-steel-700: #5f7487;
  --home-steel-500: #8ea2b2;
  --home-sand-200: #ddd5c8;
  --home-sand-100: #ebe6df;
  --home-copper-600: #a85d2a;
  --home-copper-500: #c67634;
  --home-copper-400: #df9556;
  background: #f7f8fc;
}

body.auth-page,
body.legal-page {
  --font-display: "Barlow Condensed", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
}

body.marketing-page::before,
body.marketing-page::after {
  display: none;
}

.home-stage {
  padding-bottom: 3.5rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(168, 93, 42, 0.1), transparent 22%),
    linear-gradient(180deg, #f7f8fc 0%, #f7f8fc 100%);
}

.home-container {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
}

.home-stage .eyebrow {
  color: var(--home-copper-500);
}

.hero-orbit {
  position: relative;
  overflow: hidden;
  padding-bottom: 8.6rem;
  background:
    radial-gradient(circle at 84% 8%, rgba(198, 118, 52, 0.66), transparent 22%),
    radial-gradient(circle at 18% 22%, rgba(96, 116, 136, 0.24), transparent 28%),
    linear-gradient(130deg, #18222c 0%, #233646 34%, #4c6173 63%, #c89b74 100%);
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 24%;
  background: linear-gradient(180deg, rgba(246, 245, 242, 0.9), #f7f8fc 68%);
  clip-path: polygon(0 76%, 100% 18%, 100% 100%, 0 100%);
}

.hero-orbit .home-container {
  position: relative;
  z-index: 100;
  padding-top: 5.8rem;
}

.home-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 50%;
  width: min(100% - 2rem, 1240px);
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 0;
  padding: 0.82rem 0.9rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
  z-index: 1000;
}

.home-nav::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border: 0;
  border-bottom: 1px solid rgba(16, 37, 63, 0.12);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 33, 59, 0.08);
  z-index: 0;
}

.home-nav > * {
  position: relative;
  z-index: 1;
}

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

.brand-lockup-logo {
  display: block;
  width: min(250px, 30vw);
  height: auto;
}

.brand-mark-shell {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(31, 46, 61, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12rem;
  font-family: var(--font-display);
  line-height: 1;
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--home-steel-950);
  text-transform: uppercase;
}

.brand-tld {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(44, 61, 75, 0.78);
  text-transform: uppercase;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.home-nav-links a,
.nav-link-plain {
  color: rgba(32, 43, 54, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.home-nav-links a:hover,
.nav-link-plain:hover {
  color: var(--home-steel-950);
}

.home-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.home-nav-actions .nav-link-plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.22rem;
  border-radius: 16px;
  border: 1px solid rgba(31, 46, 61, 0.12);
  background: rgba(43, 62, 79, 0.06);
  color: var(--home-steel-950);
  font-size: 1.01rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.home-nav-actions .nav-link-plain:hover {
  color: var(--home-steel-950);
  background: rgba(43, 62, 79, 0.1);
}

.btn-nav-primary {
  padding: 0.78rem 1.3rem;
  background: linear-gradient(180deg, var(--home-copper-400), var(--home-copper-500));
  color: #fff;
  font-size: 1.02rem;
  box-shadow: 0 12px 30px rgba(69, 35, 16, 0.22);
}

.btn-nav-primary:hover {
  color: #fff;
  box-shadow: 0 14px 32px rgba(69, 35, 16, 0.28);
}

.hero-orbit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.92fr);
  gap: 1.5rem;
  align-items: center;
  min-height: 720px;
  padding: clamp(1.2rem, 3vw, 2.8rem) 0 0;
}

.hero-copy {
  position: relative;
  max-width: 610px;
  padding-bottom: 1.2rem;
}

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

.hero-kicker {
  display: block;
  padding: 0;
  background: none;
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 223, 193, 0.9);
}

.hero-kicker::before {
  display: none;
}

.hero-copy h1 {
  margin: 0;
  max-width: 9.5ch;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(2.55rem, 5.7vw, 4.3rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: none;
}

.hero-orbit .hero-summary {
  max-width: 48ch;
  color: rgba(244, 247, 251, 0.82);
  font-size: clamp(0.98rem, 1.65vw, 1.04rem);
  line-height: 1.72;
}

.hero-cta-dock {
  margin-top: 1.25rem;
}

.hero-actions .btn {
  min-width: 176px;
  padding: 1rem 1.7rem;
  font-size: 1.08rem;
}

.btn-home-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--home-copper-400), var(--home-copper-600));
  box-shadow: 0 16px 36px rgba(73, 38, 16, 0.24);
}

.btn-home-primary:hover {
  color: #fff;
  box-shadow: 0 18px 40px rgba(73, 38, 16, 0.3);
}

.btn-home-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 26px rgba(17, 28, 44, 0.12);
}

.btn-home-secondary:hover {
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 28px rgba(17, 28, 44, 0.16);
}

.hero-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.hero-mini-proof span {
  position: relative;
  padding-left: 1rem;
  color: rgba(245, 248, 251, 0.84);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-mini-proof span::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-copper-400), #f3c08a);
}

.hero-trustline {
  margin: 0;
  max-width: 44ch;
  color: rgba(244, 247, 251, 0.76);
  font-size: 0.9rem;
  line-height: 1.7;
}

.hero-trustline a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 0.18em;
}

.hero-trustline a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.78);
}

.hero-scene {
  position: relative;
  min-height: 650px;
}

.scene-dashboard,
.scene-phone {
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
}

.scene-dashboard {
  position: absolute;
  left: 0;
  bottom: 88px;
  width: min(430px, calc(100% - 74px));
  padding: 1rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(245, 243, 239, 0.92), rgba(229, 232, 236, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 34px 68px rgba(20, 28, 38, 0.22);
  transform: rotate(2.2deg);
  z-index: 1;
}

.scene-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.scene-dashboard-title {
  display: grid;
  gap: 0.18rem;
}

.scene-dashboard-title strong {
  color: #1d2c3a;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.scene-dashboard-title span {
  color: rgba(24, 39, 66, 0.62);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scene-dashboard-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.66rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(24, 39, 66, 0.72);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.scene-dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.82rem;
}

.scene-dashboard-kpi {
  padding: 0.82rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 20px rgba(44, 64, 98, 0.08);
}

.scene-dashboard-kpi-primary {
  background:
    linear-gradient(180deg, rgba(79, 166, 225, 0.16), rgba(255, 255, 255, 0.82));
}

.scene-dashboard-kpi strong {
  display: block;
  margin-bottom: 0.24rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1d2c3a;
}

.scene-dashboard-kpi span {
  display: block;
  font-size: 0.86rem;
  color: rgba(24, 39, 66, 0.74);
}

.scene-dashboard-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0.72rem;
  margin-top: 0.78rem;
}

.scene-board-card {
  min-height: 188px;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 10px 24px rgba(44, 64, 98, 0.08);
}

.scene-board-label {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: rgba(24, 39, 66, 0.58);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-board-card h3 {
  font-size: 1.02rem;
  line-height: 1.14;
}

.scene-board-list {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.scene-board-list li {
  position: relative;
  padding-left: 0.9rem;
  color: rgba(24, 39, 66, 0.76);
  font-size: 0.82rem;
  line-height: 1.52;
}

.scene-board-list li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-copper-400), #f1c089);
}

.scene-activity-list {
  display: grid;
  gap: 0.6rem;
}

.scene-activity-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(24, 39, 66, 0.08);
}

.scene-activity-row:first-of-type {
  border-top: 0;
  padding-top: 0.1rem;
}

.scene-activity-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.24rem;
  border-radius: 999px;
  background: rgba(63, 153, 222, 0.24);
  box-shadow: 0 0 0 4px rgba(63, 153, 222, 0.1);
}

.scene-activity-dot.is-live {
  background: linear-gradient(135deg, #4ea9e4, #2a7dc5);
}

.scene-activity-row strong {
  display: block;
  color: #1d2c3a;
  font-size: 0.82rem;
}

.scene-activity-row span {
  display: block;
  margin-top: 0.16rem;
  color: rgba(24, 39, 66, 0.7);
  font-size: 0.78rem;
  line-height: 1.46;
}

.scene-dashboard-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.scene-footer-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(24, 39, 66, 0.72);
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scene-footer-chip.is-live {
  background: rgba(79, 166, 225, 0.16);
  color: #2a74b4;
}

.scene-phone {
  position: absolute;
  top: 12px;
  right: 12px;
  width: min(326px, calc(100% - 120px));
  padding: 0.88rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(249, 247, 243, 0.92), rgba(232, 236, 242, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 34px 70px rgba(20, 28, 38, 0.24);
  transform: rotate(-2.5deg);
  z-index: 3;
}

.scene-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(27, 42, 70, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-phone-top-label {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.scene-phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-copper-400), #efb57a);
}

.scene-phone-counter {
  color: rgba(27, 42, 70, 0.56);
}

.scene-phone-shell {
  position: relative;
  margin-top: 0.74rem;
  padding: 0.68rem;
  border-radius: 34px;
  background: linear-gradient(180deg, #222d39 0%, #0f1720 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -16px 24px rgba(5, 12, 18, 0.42),
    0 18px 36px rgba(11, 18, 26, 0.28);
}

.scene-phone-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 31px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.scene-phone-notch {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  width: 102px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #0c1016, #18202b);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 7px 18px rgba(5, 10, 16, 0.28);
  z-index: 4;
}

.scene-phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 8%, rgba(93, 168, 227, 0.2), transparent 26%),
    #111c2c;
}

.scene-phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 17, 27, 0.12) 0%, rgba(9, 17, 27, 0.06) 24%, rgba(9, 17, 27, 0.72) 100%),
    linear-gradient(122deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 28%, rgba(255, 255, 255, 0) 44%);
  pointer-events: none;
  z-index: 1;
}

.scene-phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #111c2c;
}

.scene-phone-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.1rem;
  z-index: 3;
  padding: 0 0.9rem 0.84rem;
}

.scene-status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.74rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fefefe;
  background: linear-gradient(125deg, rgba(79, 166, 225, 0.95), rgba(49, 120, 184, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.scene-phone-overlay h2 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(1.02rem, 2.1vw, 1.24rem);
  color: #fff;
  text-shadow: 0 12px 30px rgba(3, 9, 16, 0.35);
}

.scene-phone-overlay p {
  margin-top: 0.42rem;
  max-width: 25ch;
  font-size: 0.76rem;
  line-height: 1.52;
  color: #d8e9fb;
}

.scene-phone-progress {
  position: absolute;
  top: 3.65rem;
  right: 0.82rem;
  z-index: 3;
  display: grid;
  gap: 0.22rem;
}

.scene-phone-progress-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.24);
  transition: transform 0.2s ease, background 0.2s ease, height 0.2s ease;
}

.scene-phone-progress-dot.is-active {
  height: 1.32rem;
  background: linear-gradient(180deg, rgba(79, 166, 225, 0.98), rgba(223, 149, 86, 0.92));
  transform: translateX(-1px);
}

.scene-floating-label {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.78rem 0.96rem;
  border-radius: 16px;
  background: rgba(245, 243, 239, 0.78);
  color: rgba(24, 34, 44, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(14, 28, 47, 0.12);
  z-index: 4;
}

.scene-label-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-copper-400), #efb57a);
}

.home-band {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.home-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  padding-top: 0.15rem;
}

.home-band-item {
  min-height: 100%;
  padding-right: 1rem;
  border-right: 1px solid rgba(16, 37, 63, 0.12);
}

.home-band-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.band-index {
  display: block;
  margin-bottom: 0.82rem;
  color: var(--home-copper-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-band-item strong {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--ink-1000);
  font-size: 1rem;
}

.home-band-item p {
  color: var(--ink-800);
  font-size: 0.96rem;
  line-height: 1.65;
}

.home-proof {
  padding-top: 4.2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.proof-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(16, 37, 63, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 48px rgba(14, 28, 47, 0.08);
}

.proof-card-wide {
  grid-column: 1 / -1;
}

.proof-card img,
.proof-card video {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  background: #e9eef5;
}

.proof-intake-stage,
.proof-analytics-stage,
.proof-library-stage {
  padding: 0.8rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(84, 166, 228, 0.16), transparent 28%),
    linear-gradient(180deg, #dfe7f0 0%, #e9eef5 100%);
}

.proof-intake-stage,
.proof-analytics-stage {
  height: 282px;
}

.proof-card-analytics-wide .proof-analytics-stage {
  height: 320px;
}

.proof-library-stage {
  min-height: 324px;
}

.proof-mock-shell {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 0.8rem;
  border-radius: 22px;
  border: 1px solid rgba(162, 178, 199, 0.34);
  background: rgba(249, 251, 253, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 34px rgba(19, 32, 53, 0.1);
}

.proof-ui-topbar,
.proof-card-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.proof-ui-pill,
.proof-ui-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.proof-ui-pill {
  color: rgba(36, 55, 80, 0.76);
  background: rgba(232, 239, 247, 0.92);
}

.proof-ui-status {
  color: #fff;
  background: linear-gradient(135deg, rgba(70, 149, 213, 0.98), rgba(43, 119, 183, 0.96));
}

.proof-card-headline strong {
  color: var(--ink-1000);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
}

.proof-card-headline span {
  color: rgba(87, 104, 129, 0.84);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-intake-shell,
.proof-analytics-shell,
.proof-library-shell {
  grid-template-rows: auto minmax(0, 1fr);
}

.proof-intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(170px, 0.78fr);
  gap: 0.7rem;
  min-height: 0;
}

.proof-intake-form {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.6rem;
  min-width: 0;
}

.proof-intake-form-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.38rem;
}

.proof-input-chip {
  grid-column: span 3;
  min-width: 0;
  padding: 0.48rem 0.56rem;
  border-radius: 14px;
  border: 1px solid rgba(175, 191, 210, 0.36);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.proof-input-chip-full {
  grid-column: 1 / -1;
}

.proof-input-chip-city {
  grid-column: span 3;
}

.proof-input-chip-state {
  grid-column: span 1;
}

.proof-input-chip-zip {
  grid-column: span 2;
}

.proof-input-chip span {
  display: block;
  margin-bottom: 0.16rem;
  color: rgba(103, 120, 145, 0.88);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-input-chip strong {
  display: block;
  color: rgba(43, 58, 79, 0.94);
  font-size: 0.68rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.proof-intake-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.proof-intake-actions span {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 0.32rem 0.45rem;
  border-radius: 12px;
  border: 1px solid rgba(177, 191, 209, 0.42);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(48, 63, 84, 0.92);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
}

.proof-intake-actions .is-primary {
  color: #fff;
  border-color: rgba(46, 117, 180, 0.42);
  background: linear-gradient(135deg, rgba(68, 147, 211, 0.98), rgba(40, 112, 176, 0.96));
}

.proof-queue-card,
.proof-analytics-panel {
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(168, 183, 201, 0.3);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(19, 32, 53, 0.08);
}

.proof-queue-card {
  padding: 0.62rem;
}

.proof-queue-list {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.46rem;
}

.proof-queue-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.54rem;
  border-radius: 14px;
  background: rgba(242, 246, 250, 0.94);
}

.proof-queue-row strong {
  display: block;
  color: rgba(31, 45, 66, 0.94);
  font-size: 0.64rem;
  line-height: 1.24;
}

.proof-queue-row span {
  display: block;
  margin-top: 0.14rem;
  color: rgba(91, 107, 131, 0.86);
  font-size: 0.5rem;
  font-weight: 600;
}

.proof-queue-badge {
  flex: 0 0 auto;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  background: rgba(227, 236, 245, 0.96);
  color: rgba(58, 78, 108, 0.92);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-queue-badge.is-live {
  color: #fff;
  background: linear-gradient(135deg, rgba(73, 158, 220, 0.98), rgba(45, 118, 182, 0.96));
}

.proof-session-stage {
  height: 292px;
  padding: 0.7rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.62rem;
  background:
    radial-gradient(circle at 16% 14%, rgba(84, 166, 228, 0.16), transparent 26%),
    linear-gradient(180deg, #dfe7f0 0%, #e9eef5 100%);
}

.proof-session-surface {
  display: grid;
  grid-template-columns: minmax(112px, 0.82fr) minmax(0, 1.18fr);
  gap: 0.72rem;
  height: 100%;
  min-height: 0;
}

.proof-session-left,
.proof-session-right {
  min-width: 0;
}

.proof-session-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-session-video-panel {
  width: 100%;
  min-height: 0;
  border-radius: 22px;
  border: 1px solid rgba(161, 178, 199, 0.34);
  background: rgba(249, 251, 253, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 34px rgba(19, 32, 53, 0.1);
  display: grid;
  place-items: center;
  padding: 0.6rem 0.35rem 0.52rem;
}

.proof-session-phone {
  width: 78px;
  padding: 0.24rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(19, 29, 43, 0.98), rgba(10, 17, 27, 0.98));
  box-shadow: 0 14px 26px rgba(11, 18, 28, 0.24);
}

.proof-session-phone-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  padding: 0.18rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #1d2734 0%, #111a24 100%);
}

.proof-session-notch {
  position: absolute;
  top: 0.34rem;
  left: 50%;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(7, 12, 20, 0.92);
  z-index: 2;
}

.proof-session-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 10%, rgba(93, 168, 227, 0.2), transparent 24%),
    #111c2c;
}

.proof-session-phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 17, 27, 0.14) 0%, rgba(9, 17, 27, 0.04) 24%, rgba(9, 17, 27, 0.46) 100%),
    linear-gradient(122deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 28%, rgba(255, 255, 255, 0) 44%);
  pointer-events: none;
  z-index: 1;
}

.proof-session-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #111c2c;
}

.proof-session-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  margin-top: 0.52rem;
}

.proof-session-control {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2b3851;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 250, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(16, 29, 45, 0.08);
}

.proof-session-control svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.proof-session-control.is-danger {
  color: #fff;
  background: linear-gradient(180deg, rgba(230, 80, 80, 0.96), rgba(189, 48, 48, 0.98));
}

.proof-session-close-ticket {
  width: 82px;
  margin-top: 0.48rem;
  min-height: 25px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(35, 48, 69, 0.9);
  font-family: var(--font-display);
  font-size: 0.54rem;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 250, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(16, 29, 45, 0.08);
}

.proof-session-status {
  margin: 0.36rem 0 0;
  color: rgba(95, 110, 135, 0.88);
  font-size: 0.58rem;
  font-weight: 600;
}

.proof-session-right {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.42rem;
}

.proof-session-mini-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(168, 183, 201, 0.3);
  background: rgba(249, 251, 253, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(19, 32, 53, 0.08);
  padding: 0.48rem 0.56rem;
}

.proof-session-card-title {
  color: var(--ink-1000);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.15;
}

.proof-session-link,
.proof-session-field div,
.proof-session-note-line div,
.proof-session-action,
.proof-session-copy-link {
  border-radius: 10px;
  border: 1px solid rgba(177, 191, 209, 0.44);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(48, 63, 84, 0.88);
}

.proof-session-link {
  margin-top: 0.36rem;
  min-height: 18px;
}

.proof-session-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
  margin-top: 0.36rem;
}

.proof-session-field span,
.proof-session-note-line span {
  display: block;
  margin-bottom: 0.14rem;
  color: rgba(103, 120, 145, 0.9);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.proof-session-field div,
.proof-session-note-line div {
  min-height: 18px;
  padding: 0.18rem 0.34rem;
  font-size: 0.53rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.proof-session-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
  margin-top: 0.32rem;
}

.proof-session-action,
.proof-session-copy-link {
  min-height: 18px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 700;
}

.proof-session-copy-link {
  margin-top: 0.3rem;
}

.proof-session-note-line + .proof-session-note-line {
  margin-top: 0.22rem;
}

.proof-session-inline-record {
  margin-top: 0.32rem;
  padding-top: 0.28rem;
  border-top: 1px solid rgba(177, 191, 209, 0.3);
}

.proof-session-record-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.proof-session-record-badge {
  padding: 0.14rem 0.4rem;
  border-radius: 999px;
  background: rgba(217, 241, 255, 0.96);
  color: rgba(50, 102, 150, 0.92);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-session-record-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.22rem;
  margin-top: 0.28rem;
}

.proof-session-record-pills span {
  padding: 0.14rem 0.36rem;
  border-radius: 999px;
  background: rgba(236, 242, 249, 0.95);
  color: rgba(87, 104, 129, 0.92);
  font-size: 0.46rem;
  font-weight: 700;
}

.proof-analytics-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.42rem;
}

.proof-analytics-stat {
  padding: 0.5rem 0.56rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 8px 18px rgba(22, 36, 58, 0.06);
}

.proof-analytics-stat span {
  display: block;
  color: rgba(103, 120, 145, 0.88);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-analytics-stat strong {
  display: block;
  margin-top: 0.2rem;
  color: rgba(30, 45, 67, 0.94);
  font-size: 0.88rem;
  line-height: 1.1;
}

.proof-analytics-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 0.62rem;
  min-height: 0;
}

.proof-card-analytics-wide .proof-analytics-panels {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.98fr) minmax(0, 0.98fr);
}

.proof-analytics-panel {
  padding: 0.64rem;
}

.proof-analytics-bar-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.46rem;
  margin-top: 0.46rem;
}

.proof-analytics-bar-row span,
.proof-analytics-bar-row strong,
.proof-analytics-check {
  color: rgba(48, 63, 84, 0.9);
  font-size: 0.54rem;
  font-weight: 700;
}

.proof-analytics-bar {
  height: 0.42rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(39, 59, 90, 0.12);
}

.proof-analytics-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(63, 153, 222, 0.98), rgba(198, 118, 52, 0.92));
}

.proof-analytics-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(177, 191, 209, 0.3);
}

.proof-analytics-check:first-of-type {
  margin-top: 0.26rem;
  padding-top: 0.42rem;
}

.proof-analytics-check strong {
  color: rgba(31, 48, 74, 0.98);
  font-size: 0.62rem;
  white-space: nowrap;
}

.proof-customer-stage {
  position: relative;
  height: 282px;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow: hidden;
  perspective: 1800px;
  background:
    radial-gradient(circle at 16% 12%, rgba(84, 166, 228, 0.18), transparent 28%),
    linear-gradient(180deg, #dfe8f1 0%, #e8eef5 100%);
}

.proof-customer-orbit {
  position: relative;
  width: min(100%, 320px);
  height: 100%;
  display: grid;
  place-items: center;
}

.proof-customer-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 58%;
  height: 28px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(16, 29, 44, 0.24) 0%, rgba(16, 29, 44, 0) 74%);
  filter: blur(10px);
  animation: proof-phone-shadow 8s ease-in-out infinite;
}

.proof-floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: rgba(36, 54, 78, 0.88);
  border: 1px solid rgba(173, 190, 210, 0.42);
  box-shadow: 0 14px 24px rgba(18, 31, 48, 0.08);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.proof-floating-chip-top {
  top: 10px;
  left: 18px;
}

.proof-floating-chip-side {
  top: 108px;
  right: 6px;
}

.proof-floating-chip-bottom {
  bottom: 6px;
  left: 28px;
}

.proof-customer-phone {
  position: relative;
  top: auto;
  right: auto;
  width: min(236px, 100%);
  margin: 0 auto;
  padding: 0.72rem;
  border-radius: 28px;
  transform: rotateX(8deg) rotateY(-14deg) rotateZ(-4deg);
  transform-style: preserve-3d;
  background: linear-gradient(180deg, rgba(249, 247, 243, 0.94), rgba(232, 236, 242, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 26px 54px rgba(20, 28, 38, 0.2);
}

.proof-customer-phone-floating {
  animation: proof-phone-float 8s ease-in-out infinite;
}

.proof-customer-phone .scene-phone-shell {
  margin-top: 0;
}

.proof-customer-phone .scene-phone-overlay {
  bottom: 0.85rem;
  padding: 0 0.8rem 0.74rem;
}

.proof-customer-phone .scene-phone-overlay h2 {
  max-width: 11ch;
  font-size: 1rem;
}

.proof-customer-phone .scene-phone-overlay p {
  max-width: 22ch;
  font-size: 0.72rem;
}

.proof-library-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.88fr);
  gap: 0.74rem;
  min-height: 0;
}

.proof-library-list {
  display: grid;
  gap: 0.48rem;
  align-content: start;
}

.proof-library-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.78rem 0.82rem;
  border-radius: 16px;
  border: 1px solid rgba(175, 191, 210, 0.34);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 10px 22px rgba(19, 32, 53, 0.06);
}

.proof-library-item strong {
  display: block;
  color: rgba(32, 47, 69, 0.96);
  font-size: 0.72rem;
  line-height: 1.24;
}

.proof-library-item span {
  display: block;
  margin-top: 0.18rem;
  color: rgba(92, 108, 132, 0.86);
  font-size: 0.56rem;
  line-height: 1.42;
}

.proof-library-item-status {
  flex: 0 0 auto;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.52rem;
  border-radius: 999px;
  background: rgba(230, 238, 246, 0.96);
  color: rgba(48, 72, 103, 0.92);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-export-card {
  height: 100%;
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 184, 115, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(233, 239, 246, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 34px rgba(19, 32, 53, 0.08);
}

.proof-export-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(45, 116, 180, 0.12);
  color: rgba(42, 101, 154, 0.92);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-export-card h3 {
  margin-top: 0.75rem;
  color: rgba(28, 42, 62, 0.96);
  font-size: 1.1rem;
  line-height: 1.14;
}

.proof-export-list {
  margin: 0.82rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.proof-export-list li {
  position: relative;
  padding-left: 0.86rem;
  color: rgba(76, 93, 118, 0.92);
  font-size: 0.74rem;
  line-height: 1.5;
}

.proof-export-list li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-copper-400), #f0bb82);
}

.proof-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.94rem;
}

.proof-export-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: rgba(52, 68, 90, 0.92);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes proof-phone-float {
  0%,
  100% {
    transform: rotateX(8deg) rotateY(-14deg) rotateZ(-4deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotateX(11deg) rotateY(-7deg) rotateZ(-2deg) translate3d(10px, -12px, 0);
  }

  55% {
    transform: rotateX(5deg) rotateY(-18deg) rotateZ(-6deg) translate3d(-8px, 6px, 0);
  }

  78% {
    transform: rotateX(9deg) rotateY(-10deg) rotateZ(-3deg) translate3d(7px, -5px, 0);
  }
}

@keyframes proof-phone-shadow {
  0%,
  100% {
    transform: translateX(-50%) scale(0.94);
    opacity: 0.46;
  }

  25% {
    transform: translateX(-50%) scale(1.04);
    opacity: 0.56;
  }

  55% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.38;
  }

  78% {
    transform: translateX(-50%) scale(0.98);
    opacity: 0.5;
  }
}

@media (max-width: 1180px) {
  .record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .proof-intake-stage,
  .proof-analytics-stage,
  .proof-customer-stage {
    height: 308px;
  }

  .proof-library-stage {
    min-height: 360px;
  }

  .proof-intake-grid,
  .proof-analytics-panels,
  .proof-library-grid {
    grid-template-columns: 1fr;
  }

  .proof-analytics-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-session-stage {
    height: 312px;
    padding: 0.85rem;
  }

  .proof-session-surface {
    grid-template-columns: minmax(124px, 0.92fr) minmax(0, 1.08fr);
    gap: 0.66rem;
  }

  .proof-session-phone {
    width: 86px;
  }

  .proof-customer-orbit {
    width: 100%;
  }

  .proof-floating-chip-side {
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-customer-orbit::after,
  .proof-customer-phone-floating {
    animation: none;
  }
}

.proof-card-body {
  padding: 1rem;
}

.proof-card-body strong {
  display: block;
  color: var(--ink-1000);
  font-size: 1.04rem;
}

.proof-card-body p {
  margin: 0;
  color: var(--ink-800);
  line-height: 1.64;
}

.home-editorial {
  padding-top: 4.3rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
}

.editorial-list {
  padding-top: 0.24rem;
}

.editorial-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(16, 37, 63, 0.12);
}

.editorial-row:last-child {
  border-bottom: 1px solid rgba(16, 37, 63, 0.12);
}

.editorial-row > span {
  color: var(--home-copper-500);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.editorial-row h3 {
  font-size: 1.22rem;
}

.editorial-row p {
  color: var(--ink-800);
  line-height: 1.68;
}

.home-record {
  padding-top: 4.3rem;
}

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

.record-card {
  min-height: 100%;
  padding: 1.18rem;
  border-radius: 24px;
  border: 1px solid rgba(16, 37, 63, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 184, 115, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 251, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 20px 40px rgba(14, 28, 47, 0.08);
}

.record-card strong {
  display: block;
  color: var(--ink-1000);
  font-size: 1.02rem;
  line-height: 1.34;
}

.record-card p {
  margin: 0;
  color: var(--ink-800);
  line-height: 1.66;
}

.pricing-wash {
  position: relative;
  overflow: hidden;
  padding-top: 4.7rem;
}

.pricing-wash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 24%, rgba(118, 224, 255, 0.18), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(255, 175, 84, 0.16), transparent 22%);
  pointer-events: none;
}

.pricing-heading {
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 37, 63, 0.12);
}

.pricing-heading h2 {
  max-width: 19ch;
}

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

.pricing-setup-grid,
.home-setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.home-setup-strip {
  padding: clamp(1rem, 3vw, 1.4rem) 0 clamp(1.3rem, 4vw, 2rem);
}

.home-setup-card {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(198, 118, 52, 0.14);
  background:
    radial-gradient(circle at top left, rgba(198, 118, 52, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 251, 0.9));
  box-shadow: 0 18px 36px rgba(26, 41, 58, 0.08);
}

.pricing-tier-card {
  position: relative;
  min-height: 100%;
  padding: 1.55rem;
  border-radius: calc(var(--radius-l) + 4px);
  border: 1px solid rgba(17, 34, 58, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 185, 119, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 20px 40px rgba(14, 28, 47, 0.08);
}

.pricing-tier-card-featured {
  border-color: rgba(176, 102, 42, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 26px 52px rgba(88, 48, 20, 0.14);
}

.pricing-tier-head h3 {
  margin: 0;
  color: var(--home-steel-950);
  font-size: 1.7rem;
  line-height: 1;
}

.pricing-tier-head p {
  margin: 0.5rem 0 0;
  color: var(--ink-800);
  line-height: 1.62;
}

.pricing-tier-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  color: var(--home-copper-700);
  background: rgba(255, 228, 200, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-tier-badge-muted {
  color: var(--home-steel-900);
  background: rgba(220, 230, 243, 0.8);
}

.pricing-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.pricing-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-900);
}

.pricing-points li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-copper-500), var(--home-copper-400));
}

.pricing-tier-card .price-tag {
  color: var(--home-steel-950);
  font-size: clamp(4rem, 8vw, 5.8rem);
  line-height: 0.92;
  margin: 0.1rem 0 0;
}

.pricing-tier-card .price-tag span {
  font-size: 1.18rem;
  color: var(--ink-700);
}

.pricing-tier-actions {
  margin-top: auto;
}

.pricing-tier-actions .btn {
  width: 100%;
  padding: 1rem 1.4rem;
  font-size: 1.02rem;
}

.pricing-footnote {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 34, 58, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-700);
}

.pricing-footnote a {
  color: var(--home-steel-900);
  font-weight: 600;
}

.home-footer {
  margin-top: 2.6rem;
  padding: 1.6rem 0 2.2rem;
  border-top: 1px solid rgba(16, 37, 63, 0.12);
}

.home-footer .small {
  color: var(--ink-700);
  text-align: center;
}

.home-footer a {
  color: var(--home-steel-900);
  font-weight: 600;
}

@media (max-width: 1080px) {
  .hero-orbit-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-scene {
    max-width: 760px;
    min-height: 690px;
  }

  .pricing-tier-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .home-nav {
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }

  .home-nav-links {
    order: 3;
    width: 100%;
    gap: 1rem;
  }

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

  .proof-grid,
  .record-grid {
    grid-template-columns: 1fr;
  }

  .scene-dashboard-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-dashboard-kpis .scene-dashboard-kpi-primary {
    grid-column: 1 / -1;
  }

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

  .home-band-item:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 680px) {
  .home-container {
    width: min(100% - 2rem, 1240px);
  }

  .hero-orbit .home-container {
    padding-top: 5.9rem;
  }

  .home-nav {
    width: min(100% - 2rem, 1240px);
    padding: 0.84rem 0.25rem 0.94rem;
  }

  .brand-lockup-logo {
    width: min(210px, 48vw);
  }

  .home-nav-actions {
    gap: 0.9rem;
  }

  .home-nav-actions .nav-link-plain,
  .home-nav .btn-nav-primary {
    padding: 0.82rem 1.08rem;
  }

  .home-nav-links,
  .nav-link-plain {
    display: none;
  }

  .brand-mark-shell {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.04rem;
  }

  .brand-tld {
    font-size: 0.96rem;
  }

  .hero-orbit {
    padding-bottom: 7rem;
  }

  .hero-orbit::after {
    height: 20%;
    clip-path: polygon(0 82%, 100% 20%, 100% 100%, 0 100%);
  }

  .hero-orbit-grid {
    min-height: auto;
    gap: 2.15rem;
    padding-top: 1.7rem;
  }

  .hero-copy {
    padding-inline: 0.12rem;
  }

  .hero-headline {
    gap: 0.8rem;
  }

  .hero-kicker {
    margin-bottom: 0.15rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .hero-orbit .hero-summary {
    margin-top: 1.1rem;
    padding-right: 0;
    line-height: 1.82;
  }

  .hero-cta-dock {
    margin-top: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

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

  .hero-mini-proof {
    gap: 0.92rem;
    margin-top: 0.55rem;
  }

  .hero-mini-proof span {
    width: 100%;
  }

  .hero-scene {
    min-height: 760px;
    margin-top: 0.95rem;
  }

  .scene-dashboard {
    width: calc(100% - 1.8rem);
    left: 0.15rem;
    bottom: 46px;
    transform: rotate(1.4deg);
  }

  .scene-phone {
    top: 10px;
    right: 0;
    width: min(76vw, 308px);
    transform: rotate(-1.2deg);
  }

  .scene-phone-overlay {
    bottom: 1rem;
    padding: 0 0.8rem 0.76rem;
  }

  .scene-phone-overlay h2 {
    font-size: 0.98rem;
  }

  .scene-phone-overlay p {
    font-size: 0.72rem;
  }

  .scene-phone-progress {
    top: 3.35rem;
    right: 0.74rem;
  }

  .scene-dashboard-footer {
    gap: 0.36rem;
  }

  .scene-footer-chip {
    font-size: 0.62rem;
  }

  .scene-floating-label {
    right: 0;
    bottom: 6px;
    max-width: 78%;
    font-size: 0.72rem;
    padding: 0.64rem 0.78rem;
  }

  .home-band {
    margin-top: 1.9rem;
  }

  .home-band-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0.45rem;
  }

  .home-band-item,
  .home-band-item:nth-child(2) {
    padding-right: 0;
    padding-bottom: 1.55rem;
    margin-bottom: 1.55rem;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 37, 63, 0.12);
  }

  .home-band-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .editorial-row {
    grid-template-columns: 1fr;
    gap: 0.84rem;
    padding: 1.7rem 0.12rem;
  }

  .home-editorial {
    padding-top: 3.7rem;
  }

  .home-proof,
  .home-record {
    padding-top: 3.7rem;
  }

  .editorial-grid {
    gap: 1.6rem;
  }

  .editorial-list {
    padding-top: 0.45rem;
  }

  .proof-grid,
  .record-grid {
    gap: 1.15rem;
  }

  .proof-card img,
  .proof-card video {
    height: 236px;
  }

  .proof-intake-stage,
  .proof-analytics-stage,
  .proof-customer-stage {
    height: 306px;
  }

  .proof-library-stage {
    min-height: 388px;
  }

  .proof-customer-stage {
    padding: 0.95rem;
  }

  .proof-card {
    padding: 0.2rem;
  }

  .proof-card-body {
    padding: 1.1rem 0.95rem 1rem;
  }

  .proof-session-stage {
    height: 336px;
    padding: 0.95rem;
  }

  .proof-session-surface {
    gap: 0.8rem;
  }

  .proof-session-phone {
    width: 96px;
  }

  .proof-intake-grid,
  .proof-analytics-panels,
  .proof-library-grid {
    grid-template-columns: 1fr;
  }

  .proof-analytics-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-library-item {
    flex-direction: column;
  }

  .proof-library-item-status {
    align-self: flex-start;
  }

  .section-heading .section-lead,
  .pricing-copy .section-lead {
    line-height: 1.72;
  }

  .section-heading {
    padding-inline: 0.15rem;
  }

  .pricing-wash .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-wash {
    padding-top: 4rem;
  }

  .pricing-wash .btn {
    width: 100%;
  }

  .pricing-tier-grid {
    gap: 1rem;
  }

  .pricing-tier-card {
    padding: 1.35rem 1.2rem;
  }

  .pricing-footnote {
    margin-top: 0.3rem;
    padding: 1rem 1.05rem 1.12rem;
    line-height: 1.74;
  }

  .home-footer {
    margin-top: 2.8rem;
    padding: 2rem 0 3rem;
  }

  .home-footer .small {
    line-height: 1.74;
    padding: 0 0.2rem;
  }
}
