:root {
  color-scheme: light;
  --midnight: #0f1720;
  --sage: #21c7ba;
  --ivory: #f6f8f7;
  --taupe: #a89d8c;
  --brass: #18d1c2;
  --copper: #7894a6;
  --paper: #f7faf8;
  --white: #ffffff;
  --ink: #0f1720;
  --graphite: #22313d;
  --steel: #6f8395;
  --muted: #6f6860;
  --line: rgba(15, 23, 32, 0.14);
  --line-strong: rgba(15, 23, 32, 0.34);
  --mist: rgba(246, 248, 247, 0.78);
  --shadow: 0 32px 92px rgba(15, 23, 32, 0.18);
  --shadow-soft: 0 18px 48px rgba(15, 23, 32, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  font-family:
    Poppins, Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(110deg, rgba(33, 199, 186, 0.1), transparent 34%),
    linear-gradient(180deg, var(--paper), #f3eee2 48%, var(--ivory));
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4.4vw, 70px);
  background: rgba(251, 250, 245, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(50, 65, 88, 0.08);
  backdrop-filter: blur(18px);
}

.lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background:
    linear-gradient(145deg, rgba(50, 65, 88, 0.98), rgba(39, 49, 61, 0.98)),
    var(--midnight);
  color: var(--ivory);
  border: 1px solid rgba(173, 142, 96, 0.44);
  box-shadow: 0 16px 34px rgba(50, 65, 88, 0.28);
  font-size: 14px;
  font-weight: 900;
}

.mark svg {
  width: 39px;
  height: 39px;
}

.tr-logo-plate {
  fill: rgba(15, 23, 32, 0.96);
  stroke: rgba(24, 209, 194, 0.82);
  stroke-width: 1.8;
}

.tr-logo-t,
.tr-logo-r,
.tr-logo-accent {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tr-logo-t {
  stroke: var(--ivory);
  stroke-width: 5.2;
}

.tr-logo-r {
  stroke: var(--brass);
  stroke-width: 4.2;
}

.tr-logo-accent {
  stroke: var(--brass);
  stroke-width: 3.4;
}

.tr-logo-dot {
  fill: var(--sage);
}

.lockup strong {
  display: block;
  color: var(--midnight);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lockup span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  background: rgba(239, 236, 227, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: #43505d;
  font-size: 12px;
  font-weight: 900;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--midnight);
  background: var(--white);
  box-shadow: 0 10px 20px rgba(50, 65, 88, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--midnight);
  background:
    linear-gradient(135deg, var(--midnight), #202b3a 66%),
    var(--midnight);
  color: var(--white);
  padding: 12px 16px;
  box-shadow: 0 16px 34px rgba(50, 65, 88, 0.18);
  font-size: 13px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--brass);
  box-shadow: 0 22px 44px rgba(50, 65, 88, 0.26);
  outline: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.64);
  color: var(--midnight);
  border-color: var(--line-strong);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.84fr);
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(50, 65, 88, 0.08), rgba(126, 130, 104, 0.13) 42%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(50, 65, 88, 0.045) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(50, 65, 88, 0.035) 0 1px, transparent 1px 84px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -22vw;
  z-index: -1;
  width: 54vw;
  height: 54vw;
  background: radial-gradient(circle, rgba(173, 142, 96, 0.16), transparent 62%);
  animation: signal-drift 12s ease-in-out infinite alternate;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(40px, 5.5vw, 86px);
}

.eyebrow {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.phone-break {
  display: none;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--midnight);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.92;
}

.lead {
  max-width: 760px;
  color: #2b3440;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.27;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.credibility-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.credibility-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(50, 65, 88, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #43505d;
  font-size: 12px;
  font-weight: 900;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
}

.trust-item {
  position: relative;
  padding: 16px 16px 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.trust-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--sage));
}

.trust-item strong {
  display: block;
  color: var(--midnight);
  font-size: 12px;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: #59626b;
  font-size: 14px;
  line-height: 1.38;
}

.hero-panel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--midnight);
}

.hero-panel video,
.hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  transform: scale(1.05);
  animation: slow-cinema 16s ease-in-out infinite alternate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(50, 65, 88, 0.06), rgba(50, 65, 88, 0.88)),
    linear-gradient(90deg, rgba(50, 65, 88, 0.16), rgba(50, 65, 88, 0.78));
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(239, 236, 227, 0.28);
  pointer-events: none;
}

.product-card {
  position: relative;
  z-index: 1;
  width: min(82%, 650px);
  margin: clamp(64px, 11vw, 140px) auto 0;
  background: rgba(251, 250, 245, 0.94);
  border: 1px solid rgba(239, 236, 227, 0.72);
  box-shadow: var(--shadow);
  animation: panel-rise 700ms ease both;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.card-head strong {
  display: block;
  color: var(--midnight);
  font-size: 17px;
}

.card-head span,
.note-row span {
  color: #66717c;
  font-size: 12px;
  font-weight: 800;
}

.confidence {
  height: 8px;
  margin: 22px;
  background: rgba(50, 65, 88, 0.1);
}

.confidence span {
  display: block;
  width: 74%;
  height: 100%;
  background: linear-gradient(90deg, var(--midnight), var(--brass));
}

.note-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 22px;
  border-top: 1px solid rgba(50, 65, 88, 0.11);
}

.note-row p {
  margin-bottom: 0;
  color: #2f3944;
  font-size: 14px;
  line-height: 1.46;
}

.section {
  padding: clamp(52px, 6vw, 96px) clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.58fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

.centered-head {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

h2 {
  margin-bottom: 0;
  color: var(--midnight);
  font-size: clamp(32px, 4.6vw, 70px);
  line-height: 0.98;
  font-weight: 900;
}

.section-note {
  margin-bottom: 0;
  color: #56616b;
  font-size: 16px;
  line-height: 1.58;
}

.feature-grid,
.step-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.trust-section {
  background:
    linear-gradient(180deg, rgba(50, 65, 88, 0.04), rgba(239, 236, 227, 0.5)),
    var(--paper);
}

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

.feature,
.step,
.price-card,
.trust-card,
.quote-panel,
.form-panel {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: 24px;
  box-shadow: 0 16px 44px rgba(50, 65, 88, 0.08);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.feature:hover,
.step:hover,
.price-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(173, 142, 96, 0.5);
  box-shadow: 0 26px 58px rgba(50, 65, 88, 0.14);
}

.feature h3,
.step h3,
.price-card h3,
.trust-card h3 {
  margin-bottom: 12px;
  color: var(--midnight);
  font-size: 22px;
}

.feature p,
.step p,
.price-card p,
.trust-card p,
.quote-panel p {
  margin-bottom: 0;
  color: #57626d;
  line-height: 1.55;
}

.trust-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(173, 142, 96, 0.42);
  background: rgba(239, 236, 227, 0.62);
  color: var(--brass);
  font-size: 13px;
  font-weight: 900;
}

.demo-section {
  background:
    linear-gradient(180deg, rgba(50, 65, 88, 0.04), rgba(255, 255, 255, 0.48)),
    var(--paper);
}

.demo-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.phone-demo {
  min-height: 520px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(50, 65, 88, 0.97), rgba(31, 40, 52, 0.98)),
    var(--midnight);
  border: 1px solid rgba(239, 236, 227, 0.32);
  box-shadow: var(--shadow);
  color: var(--white);
}

.phone-top {
  padding: 12px 14px;
  border: 1px solid rgba(239, 236, 227, 0.2);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.chat-line {
  width: fit-content;
  max-width: 88%;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(239, 236, 227, 0.18);
  font-size: 14px;
  line-height: 1.42;
  animation: message-in 520ms ease both;
}

.chat-line.bot {
  background: rgba(239, 236, 227, 0.12);
}

.chat-line.user {
  margin-left: auto;
  background: rgba(173, 142, 96, 0.28);
  animation-delay: 280ms;
}

.chat-line:nth-of-type(4) {
  animation-delay: 520ms;
}

.chat-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 18px;
}

.chat-actions span {
  display: block;
  padding: 11px 13px;
  border: 1px solid rgba(173, 142, 96, 0.38);
  background: rgba(239, 236, 227, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.onboarding-ladder {
  display: grid;
  gap: 12px;
}

.onboarding-ladder article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(50, 65, 88, 0.08);
}

.onboarding-ladder strong {
  color: var(--midnight);
  font-size: 18px;
}

.onboarding-ladder span {
  color: #56616b;
  line-height: 1.5;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

.step {
  min-height: 230px;
}

.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 26px;
  color: var(--brass);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 16px;
}

.quote-panel {
  background:
    linear-gradient(135deg, rgba(50, 65, 88, 0.96), rgba(39, 49, 61, 0.96)),
    var(--midnight);
  color: var(--white);
}

.quote-panel h2 {
  color: var(--white);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.research-list {
  display: grid;
  gap: 10px;
}

.research-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  background: rgba(239, 236, 227, 0.72);
  border: 1px solid var(--line);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.research-list div:hover {
  transform: translateX(4px);
  background: var(--white);
}

.research-list strong {
  color: var(--midnight);
}

.research-list span {
  color: #69737d;
}

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

.price-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(239, 236, 227, 0.88), rgba(255, 255, 255, 0.86));
  border-color: rgba(173, 142, 96, 0.44);
}

.price {
  margin: 22px 0;
  color: var(--midnight);
  font-size: 36px;
  font-weight: 900;
}

.price small {
  color: #68717a;
  font-size: 14px;
  font-weight: 700;
}

.price-card ul,
.signup-list {
  margin: 0;
  padding-left: 18px;
  color: #4c5661;
  line-height: 1.8;
}

.signup-section {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  border-bottom: 1px solid var(--line);
}

.signup-copy,
.signup-form-wrap {
  padding: clamp(34px, 5vw, 76px);
}

.signup-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  background:
    linear-gradient(135deg, rgba(50, 65, 88, 0.97), rgba(126, 130, 104, 0.9)),
    var(--midnight);
  color: var(--white);
}

.signup-copy h1,
.signup-copy .lead {
  color: var(--white);
}

.signup-copy .lead,
.signup-copy .section-note {
  color: rgba(255, 255, 255, 0.76);
}

.signup-list {
  color: rgba(255, 255, 255, 0.82);
}

.signup-form-wrap {
  background:
    linear-gradient(145deg, rgba(239, 236, 227, 0.82), rgba(255, 255, 255, 0.64)),
    var(--paper);
}

.form-panel {
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  color: var(--midnight);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.9);
  color: var(--ink);
  padding: 13px 12px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(173, 142, 96, 0.14);
  background: var(--white);
}

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

.form-status {
  min-height: 22px;
  margin-top: 14px;
  color: var(--midnight);
  font-size: 14px;
  font-weight: 800;
}

.signup-next {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer {
  padding: 26px clamp(20px, 5vw, 76px);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes panel-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes slow-cinema {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes signal-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-5%, -4%, 0);
  }
}

@keyframes message-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.status-page {
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 6vw, 92px) clamp(20px, 5vw, 76px);
}

.status-hero {
  max-width: 1040px;
}

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

.status-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.status-card h3 {
  color: var(--midnight);
  margin-bottom: 8px;
}

.status-card p {
  margin-bottom: 0;
  color: #56616b;
  font-weight: 800;
}

.status-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 22px;
  background: var(--taupe);
}

.status-dot.is-ok {
  background: #5f7d5a;
  box-shadow: 0 0 0 6px rgba(95, 125, 90, 0.14);
}

.status-dot.is-bad {
  background: #9f4f4f;
  box-shadow: 0 0 0 6px rgba(159, 79, 79, 0.14);
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .section-head,
  .demo-wrap,
  .split,
  .signup-section,
  .experience-band,
  .why-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 36px 22px;
  }

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

  .product-card {
    width: calc(100% - 44px);
    margin-top: 58px;
  }

  .trust-row,
  .feature-grid,
  .service-grid,
  .case-grid,
  .trust-architecture,
  .step-grid,
  .status-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .onboarding-ladder article {
    grid-template-columns: 1fr;
  }

  .why-list article,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    padding-inline: 14px;
  }

  h1 {
    font-size: 46px;
  }

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

  .hero-panel::after {
    inset: 18px;
  }

  .note-row,
  .research-list div,
  .footer {
    display: block;
  }

  .footer p {
    margin-bottom: 12px;
  }
}

/* First-viewport pass: make the homepage feel like a live research desk. */
.hero-wow {
  min-height: calc(100vh - 124px);
  display: block;
  padding: clamp(28px, 4vw, 58px) clamp(18px, 5vw, 76px) clamp(22px, 3vw, 44px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.92), rgba(39, 49, 61, 0.86) 58%, rgba(50, 65, 88, 0.9)),
    var(--midnight);
}

.hero-wow::before {
  background:
    linear-gradient(115deg, rgba(16, 21, 28, 0.9), rgba(39, 49, 61, 0.72) 48%, rgba(50, 65, 88, 0.6)),
    repeating-linear-gradient(90deg, rgba(239, 236, 227, 0.06) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(239, 236, 227, 0.045) 0 1px, transparent 1px 96px);
}

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

.hero-wow .hero-panel {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: auto;
  background: var(--midnight);
}

.hero-wow .hero-panel video,
.hero-wow .hero-panel img {
  opacity: 0.34;
  filter: saturate(0.86) contrast(1.12);
  object-position: center;
}

.hero-wow .hero-panel::before {
  background:
    linear-gradient(90deg, rgba(16, 21, 28, 0.96), rgba(16, 21, 28, 0.64) 48%, rgba(16, 21, 28, 0.82)),
    linear-gradient(180deg, rgba(16, 21, 28, 0.18), rgba(16, 21, 28, 0.88));
}

.hero-wow .hero-panel::after {
  inset: clamp(18px, 3vw, 42px);
  border-color: rgba(239, 236, 227, 0.18);
}

.hero-wow .hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  min-height: auto;
  padding: 0;
  gap: clamp(28px, 5vw, 72px);
}

.hero-kicker,
.radar-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-kicker span,
.radar-strip span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(239, 236, 227, 0.2);
  background: rgba(239, 236, 227, 0.08);
  color: rgba(255, 254, 250, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.hero-wow h1 {
  max-width: 930px;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.hero-wow .lead {
  max-width: 780px;
  color: rgba(255, 254, 250, 0.84);
}

.hero-wow .button.secondary {
  background: rgba(239, 236, 227, 0.08);
  color: var(--white);
  border-color: rgba(239, 236, 227, 0.3);
}

.mission-board {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  top: clamp(130px, 18vh, 190px);
  z-index: 2;
  width: min(500px, 38vw);
  border: 1px solid rgba(239, 236, 227, 0.24);
  background:
    linear-gradient(180deg, rgba(251, 250, 245, 0.96), rgba(239, 236, 227, 0.9)),
    var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.board-status {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(50, 65, 88, 0.16);
  background: rgba(255, 255, 255, 0.54);
}

.board-status span {
  color: #66717c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.board-status strong {
  color: var(--midnight);
  font-size: 13px;
  text-transform: uppercase;
}

.terminal-note {
  background: transparent;
}

.mission-board .card-head,
.mission-board .note-row {
  padding-left: 20px;
  padding-right: 20px;
}

.mission-board .confidence {
  margin-left: 20px;
  margin-right: 20px;
}

.mission-board .radar-strip {
  padding: 18px 20px 20px;
}

.mission-board .radar-strip span {
  border-color: rgba(50, 65, 88, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #43505d;
}

.hero-wow .trust-row {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  max-width: none;
  margin-top: clamp(54px, 10vh, 120px);
}

.hero-wow .trust-item {
  background: rgba(16, 21, 28, 0.54);
  border-color: rgba(239, 236, 227, 0.18);
  box-shadow: none;
}

.hero-wow .trust-item strong {
  color: var(--white);
}

.hero-wow .trust-item span {
  color: rgba(255, 254, 250, 0.7);
}

.morning-research-section {
  background:
    linear-gradient(180deg, var(--paper), rgba(239, 236, 227, 0.72)),
    var(--paper);
}

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

.brief-wall article {
  position: relative;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.brief-wall article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--midnight), var(--brass));
}

.brief-wall strong {
  display: block;
  color: var(--midnight);
  font-size: 15px;
  text-transform: uppercase;
}

.brief-wall span {
  display: block;
  margin-top: 12px;
  color: #59626b;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .mission-board {
    position: relative;
    top: auto;
    right: auto;
    width: min(720px, 100%);
    margin-top: 32px;
  }

  .hero-wow .trust-row,
  .brief-wall {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hero-wow {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-wow h1 {
    font-size: clamp(42px, 15vw, 62px);
    line-height: 0.95;
  }

  .hero-wow .lead {
    font-size: 18px;
  }

  .hero-wow .trust-row,
  .brief-wall {
    grid-template-columns: 1fr;
  }

  .mission-board {
    margin-top: 28px;
  }
}

/* journey-v1: shorter homepage with real destination pages and persistent mobile navigation. */
.compact-home-hero {
  min-height: min(820px, calc(100svh - 76px));
}

.journey-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(50, 65, 88, 0.16);
}

.journey-strip a {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.94), rgba(239, 236, 227, 0.82)),
    var(--paper);
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.journey-strip a:hover,
.journey-strip a:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
  outline: none;
}

.journey-strip span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-strip strong {
  color: var(--midnight);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.04;
}

.journey-strip em {
  color: #59626b;
  font-size: 15px;
  font-style: normal;
  line-height: 1.46;
}

.page-hero {
  padding: clamp(54px, 8vw, 108px) var(--page-pad) clamp(40px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.96), rgba(39, 49, 61, 0.9)),
    var(--midnight);
  color: var(--white);
}

.page-hero > * {
  max-width: var(--content-wide);
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  max-width: 11ch;
  color: var(--white);
  font-size: clamp(46px, 7vw, 92px);
}

.page-hero .lead {
  max-width: 64ch;
  color: rgba(255, 254, 250, 0.8);
}

.product-detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 980px) {
  .nav {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
  }

  .nav-links a {
    flex: 1 1 76px;
    min-width: 0;
    padding-inline: 8px;
  }

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

@media (max-width: 720px) {
  .compact-home-hero {
    min-height: auto;
  }

  .journey-strip {
    display: block;
  }

  .journey-strip a {
    min-height: auto;
    padding: 18px;
    border-bottom: 1px solid rgba(50, 65, 88, 0.14);
  }

  .journey-strip em {
    margin-top: 8px;
  }

  .page-hero {
    padding: 42px 18px 34px;
  }

  .page-hero h1 {
    max-width: 12ch;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  .page-hero .lead {
    max-width: 34ch;
    font-size: 17px;
  }

  .service-section .service-card:nth-child(n + 4) {
    display: none;
  }
}

/* Public premium pass: dark nav, image-led hero, service-card rhythm. */
.nav {
  background: rgba(16, 21, 28, 0.94);
  border-bottom-color: rgba(239, 236, 227, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.lockup strong,
.nav-links a {
  color: var(--white);
}

.lockup span {
  color: rgba(255, 254, 250, 0.66);
}

.mark {
  width: 52px;
  height: 52px;
  background:
    linear-gradient(145deg, #0f1720, #22313d),
    #0f1720;
  border-color: rgba(24, 209, 194, 0.7);
  box-shadow: none;
}

.tr-logo-plate {
  fill: #0f1720;
  stroke: rgba(24, 209, 194, 0.82);
}

.tr-logo-t {
  stroke: var(--ivory);
}

.tr-logo-r {
  stroke: var(--brass);
}

.tr-logo-accent {
  stroke: var(--copper);
}

.tr-logo-dot {
  fill: var(--sage);
}

.nav-links {
  border-color: rgba(239, 236, 227, 0.14);
  background: rgba(239, 236, 227, 0.05);
  box-shadow: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-cta,
.button {
  border-color: rgba(255, 254, 250, 0.18);
  background:
    linear-gradient(135deg, #ffffff, #f6f8f7),
    var(--white);
  color: #0f1720;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  background: rgba(16, 21, 28, 0.08);
  color: var(--midnight);
}

.hero-wow {
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: center;
  padding-top: clamp(34px, 5vh, 68px);
  padding-bottom: clamp(34px, 5vh, 68px);
}

.hero-wow .hero-panel video,
.hero-wow .hero-panel img {
  opacity: 0.58;
  filter: saturate(0.82) contrast(1.05);
}

.hero-wow .hero-panel::before {
  background:
    linear-gradient(180deg, rgba(16, 21, 28, 0.42), rgba(16, 21, 28, 0.88)),
    linear-gradient(90deg, rgba(16, 21, 28, 0.78), rgba(16, 21, 28, 0.44) 44%, rgba(16, 21, 28, 0.82));
}

.hero-wow .hero-copy {
  width: min(820px, 100%);
  margin-inline: 0 auto;
  text-align: left;
  align-items: flex-start;
}

.hero-kicker,
.hero-actions {
  justify-content: flex-start;
}

.hero-wow h1 {
  max-width: 860px;
  margin-inline: 0;
  font-size: clamp(48px, 6.2vw, 92px);
}

.hero-wow .lead {
  margin-inline: 0;
}

.mission-board {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(34px, 5vh, 68px);
  width: min(470px, 34vw);
  margin: 0;
  text-align: left;
}

.hero-wow .trust-row {
  width: min(820px, 100%);
  margin: clamp(22px, 4vh, 34px) 0 0;
}

.method-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(239, 236, 227, 0.88)),
    var(--paper);
}

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

.method-grid article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.method-grid strong {
  display: block;
  color: var(--midnight);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.method-grid span {
  display: block;
  margin-top: 12px;
  color: #59626b;
  line-height: 1.5;
}

.service-section,
.case-study-section {
  background: var(--white);
}

.service-grid,
.case-grid {
  display: grid;
  gap: 16px;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(50, 65, 88, 0.12);
  background: linear-gradient(180deg, #ffffff, rgba(239, 236, 227, 0.56));
  box-shadow: 0 20px 54px rgba(50, 65, 88, 0.07);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(173, 142, 96, 0.42);
  box-shadow: 0 30px 70px rgba(50, 65, 88, 0.12);
}

.service-card h3 {
  max-width: 280px;
  color: var(--midnight);
  font-size: 24px;
  line-height: 1.06;
}

.service-card p {
  margin-top: 38px;
  margin-bottom: 0;
  color: #56616b;
  line-height: 1.58;
}

.experience-band {
  padding: clamp(48px, 6vw, 86px) clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.97), rgba(18, 55, 43, 0.96)),
    var(--midnight);
  color: var(--white);
}

.experience-band h2 {
  max-width: 760px;
  color: var(--white);
}

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

.stats-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(239, 236, 227, 0.18);
  background: rgba(239, 236, 227, 0.06);
}

.stats-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 254, 250, 0.7);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-section {
  background:
    linear-gradient(180deg, rgba(239, 236, 227, 0.52), rgba(255, 255, 255, 0.88)),
    var(--paper);
}

.why-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.why-list {
  display: grid;
  gap: 1px;
  background: rgba(50, 65, 88, 0.12);
  border: 1px solid rgba(50, 65, 88, 0.12);
}

.why-list article {
  padding: 24px 26px;
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.why-list strong {
  color: var(--midnight);
  font-size: 15px;
  text-transform: uppercase;
}

.why-list span,
.about-layout p {
  color: #56616b;
  line-height: 1.62;
}

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

.case-grid article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(50, 65, 88, 0.12);
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(50, 65, 88, 0.07);
}

.case-grid span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-grid h3 {
  margin-top: 16px;
  color: var(--midnight);
  font-size: 22px;
  line-height: 1.08;
}

.case-grid p {
  color: #56616b;
  line-height: 1.54;
}

.case-grid strong {
  display: block;
  margin-top: 26px;
  color: var(--midnight);
  font-size: 13px;
  line-height: 1.45;
}

.about-section {
  background: var(--white);
}

.about-layout p {
  margin: 0;
  font-size: 18px;
}

.final-cta {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.94), rgba(39, 49, 61, 0.92)),
    var(--midnight);
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta .section-note {
  color: rgba(255, 254, 250, 0.72);
}

.final-cta .button.secondary,
.quote-panel .button.secondary {
  background: rgba(239, 236, 227, 0.08);
  border-color: rgba(239, 236, 227, 0.34);
  color: var(--white);
}

@media (max-width: 980px) {
  .method-grid {
    grid-template-columns: 1fr;
  }

  .hero-wow .hero-copy {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero-kicker,
  .hero-actions {
    justify-content: center;
  }

  .hero-wow h1,
  .hero-wow .lead {
    margin-inline: auto;
  }

  .mission-board {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(720px, 100%);
    margin: 28px auto 0;
  }
}

/* mobile-clean-v1 phone-hero-trimmed: phone is a separate reading experience, not the desktop card wall squeezed down. */
@media (max-width: 720px) {
  body {
    background: var(--paper);
  }

  .nav {
    min-height: 68px;
    gap: 10px;
    padding: 10px 14px;
  }

  .mark {
    width: 42px;
    height: 42px;
  }

  .mark svg {
    width: 32px;
    height: 32px;
  }

  .lockup {
    gap: 10px;
  }

  .lockup span span {
    display: none;
  }

  .nav > .nav-cta {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero-wow {
    min-height: auto;
    padding: 22px 18px 26px;
    text-align: left;
  }

  .hero-wow .hero-panel::after {
    inset: 14px;
  }

  .hero-wow .hero-panel video,
  .hero-wow .hero-panel img {
    animation: none;
    transform: none;
  }

  .hero-wow .hero-copy {
    width: 100%;
    text-align: left;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-kicker {
    justify-content: flex-start;
  }

  .hero-kicker span {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .hero-kicker span:nth-child(2),
  .hero-kicker span:nth-child(3),
  .hero-kicker span:nth-child(4) {
    display: none;
  }

  .hero-wow h1 {
    max-width: 100%;
    margin-inline: 0;
    font-size: clamp(34px, 9.8vw, 38px);
    line-height: 1.02;
    text-align: left;
  }

  .hero-wow .lead {
    max-width: 32ch;
    margin-inline: 0;
    font-size: 16px;
    line-height: 1.38;
    text-align: left;
  }

  .hero-actions {
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero-actions .button.secondary,
  .mission-board,
  .hero-wow .trust-row {
    display: none;
  }

  .hero-wow .trust-item,
  .trust-item {
    padding: 14px 0;
    border: 0;
    border-top: 1px solid rgba(239, 236, 227, 0.18);
    background: transparent;
    box-shadow: none;
  }

  .hero-wow .trust-item::before,
  .trust-item::before {
    display: none;
  }

  .section {
    padding: 42px 18px;
  }

  .section-head,
  .centered-head {
    display: block;
    max-width: none;
    margin-bottom: 22px;
    text-align: left;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 31px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .phone-break {
    display: block;
  }

  .section-note {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
  }

  .method-section,
  .morning-research-section,
  #product {
    display: none;
  }

  .service-grid,
  .feature-grid,
  .trust-architecture,
  .case-grid,
  .step-grid,
  .pricing-grid,
  .brief-wall {
    display: block;
  }

  .service-card,
  .feature,
  .trust-card,
  .case-grid article,
  .step,
  .price-card {
    min-height: auto;
    margin: 0;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid rgba(50, 65, 88, 0.14);
    background: transparent;
    box-shadow: none;
  }

  .service-card:nth-child(n + 5),
  .case-grid article:nth-child(n + 3),
  .trust-card:nth-child(n + 4) {
    display: none;
  }

  .service-card h3,
  .feature h3,
  .trust-card h3,
  .case-grid h3,
  .step h3,
  .price-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.16;
  }

  .service-card p,
  .feature p,
  .trust-card p,
  .case-grid p,
  .step p,
  .price-card p {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .experience-band {
    display: block;
    padding: 42px 18px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 22px;
    border-top: 1px solid rgba(239, 236, 227, 0.18);
  }

  .stats-grid article {
    min-height: auto;
    padding: 18px 8px 0 0;
    border: 0;
    background: transparent;
  }

  .stats-grid strong {
    font-size: 32px;
  }

  .stats-grid span {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.3;
  }

  .why-layout,
  .about-layout,
  .split,
  .demo-wrap {
    display: block;
  }

  .why-list {
    margin-top: 24px;
    gap: 0;
    border: 0;
    background: transparent;
  }

  .why-list article {
    display: block;
    padding: 16px 0;
    border-top: 1px solid rgba(50, 65, 88, 0.14);
    background: transparent;
  }

  .phone-demo {
    min-height: auto;
    margin-top: 8px;
    padding: 16px;
    box-shadow: none;
  }

  .chat-line:nth-of-type(n + 5),
  .onboarding-ladder article:nth-child(n + 3) {
    display: none;
  }

  .onboarding-ladder {
    margin-top: 18px;
  }

  .onboarding-ladder article {
    display: block;
    padding: 16px 0;
    border: 0;
    border-top: 1px solid rgba(50, 65, 88, 0.14);
    background: transparent;
    box-shadow: none;
  }

  .research-list div {
    padding: 14px 0;
    border: 0;
    border-top: 1px solid rgba(50, 65, 88, 0.14);
    background: transparent;
  }

  .final-cta {
    padding: 44px 18px;
  }

  .final-cta .cta-row .button {
    width: 100%;
  }

  .footer {
    padding: 22px 18px;
  }

  .mission-board,
  .hero-wow .trust-row {
    display: none !important;
  }
}

/* mobile-overflow-lock-v2: fail closed on phone widths after the live Safari overlap report. */
@media (max-width: 720px) {
  html,
  body,
  .shell {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .hero-wow,
  .section,
  .experience-band,
  .final-cta,
  .footer {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }

  .experience-band {
    display: block !important;
  }

  .experience-band h2 {
    max-width: 12ch;
    font-size: clamp(30px, 8.6vw, 34px);
    line-height: 1.04;
  }

  .stats-grid {
    display: block !important;
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid rgba(239, 236, 227, 0.2);
  }

  .stats-grid article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    width: 100%;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(239, 236, 227, 0.14);
    background: transparent;
  }

  .stats-grid strong {
    font-size: 34px;
    line-height: 1;
  }

  .stats-grid span {
    margin-top: 0;
    color: rgba(255, 254, 250, 0.76);
    font-size: 12px;
    line-height: 1.28;
  }

  .why-layout,
  .why-list,
  .why-list article,
  .service-grid,
  .case-grid,
  .trust-architecture,
  .step-grid,
  .pricing-grid,
  .brief-wall,
  .demo-wrap,
  .split,
  .about-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .why-layout,
  .why-list article,
  .demo-wrap,
  .split,
  .about-layout {
    display: block !important;
  }

  .why-list {
    display: block !important;
    margin-top: 22px;
    border: 0;
    background: transparent;
  }

  .why-list article {
    padding: 16px 0;
    border-top: 1px solid rgba(50, 65, 88, 0.14);
    background: transparent;
  }

  .section-note,
  .why-list span,
  .about-layout p,
  .service-card p,
  .case-grid p,
  .trust-card p,
  .step p,
  .price-card p,
  .research-list span {
    overflow-wrap: anywhere;
  }
}

/* css-mastery-v1: disciplined variables, auto-fit grids, restrained motion, and text overflow control. */
:root {
  --page-pad: clamp(18px, 4.8vw, 72px);
  --section-y: clamp(54px, 7vw, 104px);
  --content-wide: 1180px;
  --measure: 68ch;
  --grid-min: 250px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html,
body {
  overflow-x: clip;
}

body {
  text-rendering: optimizeLegibility;
}

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

.nav {
  padding-inline: var(--page-pad);
}

.nav-links {
  max-width: min(100%, 720px);
}

.hero-wow {
  min-height: calc(100svh - 76px);
  padding: clamp(36px, 7vh, 78px) var(--page-pad);
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.96), rgba(39, 49, 61, 0.92) 58%, rgba(50, 65, 88, 0.94)),
    var(--midnight);
}

.hero-wow::before {
  background:
    linear-gradient(110deg, rgba(16, 21, 28, 0.92), rgba(39, 49, 61, 0.66) 54%, rgba(16, 21, 28, 0.84)),
    repeating-linear-gradient(90deg, rgba(239, 236, 227, 0.04) 0 1px, transparent 1px 112px);
}

.hero-wow .hero-panel video,
.hero-wow .hero-panel img {
  opacity: 0.42;
  filter: saturate(0.78) contrast(1.08);
  transform: none;
  animation: none;
}

.hero-wow .hero-copy {
  width: min(760px, 100%);
  gap: clamp(22px, 4vh, 46px);
}

.hero-wow h1 {
  max-width: 12ch;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 0.98;
}

.hero-wow .lead {
  max-width: 58ch;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.45;
}

.credibility-strip span,
.hero-kicker span,
.radar-strip span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mission-board {
  width: min(430px, 32vw);
}

.hero-wow .trust-row {
  width: min(760px, 100%);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.section {
  padding: var(--section-y) var(--page-pad);
}

.section > * {
  max-width: var(--content-wide);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.52fr);
}

.section-note,
.lead,
.feature p,
.step p,
.price-card p,
.trust-card p,
.quote-panel p,
.service-card p,
.case-grid p,
.brief-wall span,
.method-grid span,
.why-list span,
.about-layout p {
  max-width: var(--measure);
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
}

.method-grid,
.service-grid,
.feature-grid,
.trust-architecture,
.case-grid,
.step-grid,
.pricing-grid,
.brief-wall {
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-min), 1fr));
}

.service-card,
.feature,
.step,
.price-card,
.trust-card,
.case-grid article,
.method-grid article,
.brief-wall article {
  min-height: 0;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.service-card {
  padding: 24px;
}

.service-card h3,
.case-grid h3,
.feature h3,
.step h3,
.trust-card h3 {
  text-wrap: balance;
}

.service-card p {
  margin-top: 24px;
}

.experience-band {
  padding: var(--section-y) var(--page-pad);
}

.experience-band > *,
.final-cta > * {
  max-width: var(--content-wide);
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.why-list article {
  grid-template-columns: minmax(140px, 0.36fr) minmax(0, 1fr);
}

[data-reveal] {
  transition:
    opacity 520ms var(--ease-out),
    transform 520ms var(--ease-out);
}

.button,
.nav-cta {
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .mission-board {
    width: min(680px, 100%);
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 18px;
    --section-y: 44px;
    --grid-min: 100%;
  }

  .nav {
    position: sticky;
  }

  .hero-wow {
    min-height: auto;
    padding: 28px var(--page-pad) 34px;
  }

  .hero-wow::before {
    background: linear-gradient(135deg, rgba(16, 21, 28, 0.95), rgba(39, 49, 61, 0.84));
  }

  .hero-wow .hero-panel video,
  .hero-wow .hero-panel img {
    opacity: 0.22;
  }

  .hero-wow h1 {
    max-width: 11ch;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.02;
  }

  .hero-wow .lead {
    max-width: 34ch;
  }

  .phone-break {
    display: none;
  }

  .section-head,
  .centered-head {
    margin-bottom: 24px;
  }

  h2 {
    font-size: clamp(29px, 8.4vw, 34px);
    line-height: 1.08;
  }

  .service-card:nth-child(4),
  .case-grid article:nth-child(2) {
    border-bottom: 1px solid rgba(50, 65, 88, 0.14);
  }

  .experience-band h2 {
    max-width: 13ch;
  }

  .button,
  .nav-cta {
    white-space: normal;
    text-align: center;
  }

  .credibility-strip span,
  .hero-kicker span,
  .radar-strip span {
    white-space: normal;
  }
}

/* premium-curves-v1: replace the low-resolution moving hero with a crisp product surface. */
:root {
  --steel: #40566f;
  --mint: #88b49a;
  --signal: #4d86a5;
  --radius-card: 8px;
  --radius-panel: 22px;
  --radius-shell: 30px;
  --radius-pill: 999px;
}

body {
  background:
    linear-gradient(135deg, rgba(77, 134, 165, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfaf5 0%, #f1eee5 52%, #e7e2d5 100%);
}

.shell {
  overflow: clip;
}

.nav {
  width: min(calc(100% - 32px), 1320px);
  margin: 12px auto 0;
  border-radius: var(--radius-panel);
  border: 1px solid rgba(239, 236, 227, 0.16);
  background: rgba(16, 21, 28, 0.9);
  box-shadow: 0 18px 60px rgba(16, 21, 28, 0.24);
}

.mark,
.nav-links,
.nav-links a,
.nav-cta,
.button,
.credibility-strip span,
.hero-kicker span,
.radar-strip span,
.field input,
.field select,
.field textarea {
  border-radius: var(--radius-pill);
}

.field textarea {
  border-radius: var(--radius-card);
}

.premium-curves-v1 {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(54px, 8vh, 96px) var(--page-pad) clamp(58px, 8vh, 104px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.98), rgba(39, 49, 61, 0.92) 56%, rgba(64, 86, 111, 0.94)),
    var(--midnight);
}

.premium-curves-v1::before {
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 254, 250, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(136, 180, 154, 0.14), transparent 38%, rgba(77, 134, 165, 0.12));
  background-size:
    88px 88px,
    88px 88px,
    auto;
}

.premium-curves-v1::after,
.hero-wow .hero-panel {
  display: none;
}

.premium-curves-v1 .hero-copy {
  width: min(780px, 100%);
  gap: 34px;
}

.premium-curves-v1 h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4.7rem;
  line-height: 0.98;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.premium-curves-v1 .lead {
  max-width: 60ch;
  color: rgba(255, 254, 250, 0.82);
  font-size: 1.22rem;
  line-height: 1.5;
}

.premium-curves-v1 .eyebrow {
  color: #d1b27d;
}

.research-lens {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  justify-self: end;
}

.insight-console {
  filter: saturate(1.02);
}

.research-lens::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 34px;
  z-index: -1;
  border: 1px solid rgba(239, 236, 227, 0.12);
  border-radius: var(--radius-shell);
  background: linear-gradient(135deg, rgba(239, 236, 227, 0.1), rgba(77, 134, 165, 0.08));
}

.console-frame {
  overflow: hidden;
  border: 1px solid rgba(239, 236, 227, 0.24);
  border-radius: var(--radius-shell);
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(239, 236, 227, 0.94)),
    var(--paper);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(50, 65, 88, 0.12);
}

.console-top span,
.source-stack span,
.market-pulse span {
  color: #607080;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-top strong {
  color: var(--midnight);
  font-size: 13px;
  text-transform: uppercase;
}

.signal-curve {
  display: grid;
  gap: 14px;
  padding: 22px 20px 18px;
}

.signal-curve svg {
  display: block;
  width: 100%;
  height: auto;
}

.curve-grid {
  fill: none;
  stroke: rgba(50, 65, 88, 0.12);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.curve-line {
  fill: none;
  stroke: var(--signal);
  stroke-linecap: round;
  stroke-width: 5;
}

.curve-shadow {
  fill: rgba(77, 134, 165, 0.12);
  stroke: none;
}

.signal-curve div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(50, 65, 88, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
}

.signal-curve span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
}

.signal-curve strong {
  color: var(--midnight);
  font-size: 13px;
}

.source-stack {
  display: grid;
  gap: 1px;
  background: rgba(50, 65, 88, 0.1);
}

.source-stack article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 254, 250, 0.92);
}

.source-stack p {
  margin: 0;
  color: #2f3944;
  font-size: 14px;
  line-height: 1.48;
}

.market-pulse {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.market-pulse div {
  min-height: 98px;
  display: grid;
  gap: 7px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(239, 236, 227, 0.16);
  border-radius: var(--radius-card);
  background: rgba(16, 21, 28, 0.58);
}

.market-pulse strong {
  color: var(--white);
}

.market-pulse em {
  width: fit-content;
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  background: rgba(136, 180, 154, 0.18);
  color: rgba(255, 254, 250, 0.84);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.journey-strip {
  gap: 12px;
  padding: var(--page-pad);
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.88), rgba(239, 236, 227, 0.72));
}

.journey-strip a,
.service-card,
.feature,
.step,
.price-card,
.trust-card,
.case-grid article,
.method-grid article,
.brief-wall article,
.quote-panel,
.form-panel,
.status-card,
.phone-demo,
.onboarding-ladder article {
  border-radius: var(--radius-card);
}

.journey-strip a,
.service-card,
.feature,
.step,
.price-card,
.trust-card,
.case-grid article,
.method-grid article,
.brief-wall article,
.status-card,
.onboarding-ladder article {
  border-color: rgba(50, 65, 88, 0.13);
  background: rgba(255, 254, 250, 0.86);
  box-shadow: 0 18px 52px rgba(50, 65, 88, 0.08);
}

.experience-band,
.final-cta,
.page-hero,
.signup-copy {
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.97), rgba(39, 49, 61, 0.94) 58%, rgba(64, 86, 111, 0.92)),
    var(--midnight);
}

.stats-grid article {
  border-radius: var(--radius-card);
}

.final-cta {
  border-top: 1px solid rgba(239, 236, 227, 0.12);
}

.cookie-banner {
  position: fixed;
  left: auto;
  right: 22px;
  bottom: 18px;
  z-index: 60;
  width: min(430px, calc(100% - 36px));
  margin: 0;
  padding: 15px;
  border: 1px solid rgba(239, 236, 227, 0.2);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.96), rgba(39, 49, 61, 0.96)),
    var(--midnight);
  box-shadow: 0 24px 70px rgba(16, 21, 28, 0.36);
  color: rgba(255, 254, 250, 0.82);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 14px;
}

.cookie-banner p {
  max-width: 62ch;
  margin: 0;
  font-size: 12px;
  line-height: 1.46;
}

.cookie-banner a {
  display: inline-flex;
  margin-top: 10px;
  color: #d1b27d;
  font-size: 13px;
  font-weight: 900;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cookie-actions .button {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 12px;
}

.cookie-actions .button.secondary {
  border-color: rgba(239, 236, 227, 0.28);
  background: rgba(255, 254, 250, 0.08);
  color: rgba(255, 254, 250, 0.88);
}

.legal-hero {
  max-width: 920px;
}

.legal-section {
  padding-top: 18px;
}

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

.legal-card {
  padding: 24px;
  border: 1px solid rgba(50, 65, 88, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.legal-card p,
.legal-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-note {
  max-width: 900px;
}

.legal-note h2 {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .premium-curves-v1 {
    grid-template-columns: 1fr;
  }

  .research-lens {
    justify-self: start;
    width: min(100%, 720px);
  }
}

@media (max-width: 720px) {
  .nav {
    width: 100%;
    margin: 0;
    border-radius: 0 0 18px 18px;
  }

  .premium-curves-v1 {
    padding: 30px 18px 38px;
  }

  .premium-curves-v1 h1 {
    max-width: 11ch;
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .premium-curves-v1 .lead {
    max-width: 34ch;
    font-size: 1rem;
  }

  .research-lens {
    width: 100%;
    margin-top: 2px;
  }

  .research-lens::before {
    display: none;
  }

  .console-frame {
    border-radius: 20px;
  }

  .console-top,
  .source-stack article {
    display: block;
  }

  .source-stack span {
    display: block;
    margin-bottom: 8px;
  }

  .market-pulse {
    grid-template-columns: 1fr;
  }

  .journey-strip {
    padding: 18px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 15px;
    border-radius: 18px;
  }

  .cookie-actions .button {
    flex: 1 1 150px;
  }

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

  .service-card,
  .feature,
  .trust-card,
  .case-grid article,
  .step,
  .price-card {
    border-radius: 0;
    box-shadow: none;
  }
}

/* whole-site-operations-v1: operational-ease copy plus clean desktop tabs and mobile burger navigation. */
.operations-nav {
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 12px;
  overflow: visible;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin-left: auto;
}

.operations-nav .nav-links {
  width: auto;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 4px;
  white-space: nowrap;
}

.operations-nav .nav-cta {
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(239, 236, 227, 0.22);
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.08);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms var(--ease-out),
    opacity 180ms var(--ease-out);
}

.operations-nav.is-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.operations-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.operations-nav.is-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.operations-hero h1 {
  max-width: 12.5ch;
}

.operations-console .console-frame {
  padding: clamp(18px, 3vw, 28px);
}

.decision-surface {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.78fr);
  gap: 16px;
  align-items: stretch;
}

.alert-feed-mini {
  display: grid;
  gap: 10px;
}

.alert-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 254, 250, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 254, 250, 0.05);
}

.alert-item strong,
.decision-card-live h2 {
  display: block;
  color: var(--white);
  font-size: 13px;
  line-height: 1.25;
}

.alert-item p,
.decision-card-live dd {
  margin: 5px 0 0;
  color: rgba(255, 254, 250, 0.66);
  font-size: 12px;
  line-height: 1.38;
}

.alert-dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 5px rgba(173, 142, 96, 0.14);
}

.alert-item.is-hot .alert-dot {
  background: #88b49a;
  box-shadow: 0 0 0 5px rgba(136, 180, 154, 0.14);
}

.decision-card-live {
  padding: 18px;
  border: 1px solid rgba(136, 180, 154, 0.32);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(180deg, rgba(136, 180, 154, 0.16), rgba(255, 254, 250, 0.04)),
    rgba(255, 254, 250, 0.06);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
  animation: decision-breathe 4.8s ease-in-out infinite;
}

.decision-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(136, 180, 154, 0.34);
  border-radius: 999px;
  color: #d7eadc;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-card-live dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.decision-card-live div {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 254, 250, 0.1);
}

.decision-card-live dt {
  color: #d1b27d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-state-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 16px;
}

.decision-state-rail span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 254, 250, 0.12);
  border-radius: var(--radius-pill);
  color: rgba(255, 254, 250, 0.66);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.decision-state-rail span.is-active {
  border-color: rgba(136, 180, 154, 0.42);
  background: rgba(136, 180, 154, 0.18);
  color: #d7eadc;
}

.decision-card-live[data-state="wait"] {
  border-color: rgba(173, 142, 96, 0.42);
  box-shadow: inset 0 0 0 1px rgba(173, 142, 96, 0.1);
}

.decision-card-live[data-state="escalate"] {
  border-color: rgba(77, 134, 165, 0.46);
  box-shadow: inset 0 0 0 1px rgba(77, 134, 165, 0.12);
}

.operations-pulse div {
  border-radius: var(--radius-card);
}

.operations-grid-public .service-card {
  min-height: 230px;
}

.operations-band h2 {
  max-width: 14ch;
}

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

.operations-page-hero .lead {
  max-width: 62ch;
}

.operations-demo-wrap {
  align-items: stretch;
}

.operations-phone-demo .chat-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card-featured {
  border-color: rgba(136, 180, 154, 0.46);
  background:
    linear-gradient(180deg, rgba(136, 180, 154, 0.14), rgba(255, 255, 255, 0.8)),
    var(--white);
}

/* marketing-launch-v1: connect homepage, pricing, and launch content into one commercial story. */
.launch-offer-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: stretch;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(50, 65, 88, 0.14);
  border-radius: var(--radius-shell);
  background:
    radial-gradient(circle at 12% 10%, rgba(136, 180, 154, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 254, 250, 0.96), rgba(239, 236, 227, 0.72));
  box-shadow: var(--shadow-soft);
}

.launch-offer-band h2 {
  max-width: 18ch;
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
  line-height: 0.96;
}

.launch-offer-band p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.offer-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(50, 65, 88, 0.16);
  border-radius: var(--radius-panel);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 20px 55px rgba(21, 27, 36, 0.2);
}

.offer-card span,
.tier-ribbon {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(173, 142, 96, 0.38);
  border-radius: 999px;
  color: #ead8b8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.offer-card strong {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0;
  line-height: 0.95;
}

.offer-card em {
  color: rgba(255, 254, 250, 0.72);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.55;
}

.pricing-plan-section {
  padding-top: 18px;
}

.tiered-pricing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tiered-pricing-grid .price-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
}

.tier-ribbon {
  border-color: rgba(50, 65, 88, 0.14);
  color: var(--slate);
  background: rgba(239, 236, 227, 0.7);
}

.price-card-featured .tier-ribbon {
  border-color: rgba(136, 180, 154, 0.36);
  color: #2d5b40;
  background: rgba(136, 180, 154, 0.18);
}

.pricing-note {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(50, 65, 88, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 254, 250, 0.72);
  color: var(--muted);
}

.pricing-note strong {
  color: var(--ink);
}

.waitlist-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(50, 65, 88, 0.14);
  border-radius: var(--radius-shell);
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.96), rgba(39, 49, 61, 0.92)),
    var(--midnight);
  color: rgba(255, 254, 250, 0.8);
  box-shadow: var(--shadow-soft);
}

.waitlist-band h2 {
  max-width: 13ch;
  margin: 8px 0 14px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

.waitlist-band p {
  max-width: 66ch;
  margin-bottom: 0;
  color: rgba(255, 254, 250, 0.72);
  line-height: 1.7;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(239, 236, 227, 0.16);
  border-radius: var(--radius-panel);
  background: rgba(255, 254, 250, 0.08);
}

.waitlist-form .field {
  margin-bottom: 0;
}

.waitlist-form .field span {
  color: rgba(255, 254, 250, 0.88);
  font-size: 13px;
  font-weight: 900;
}

.waitlist-form .form-status {
  min-height: 0;
  margin: 0;
  color: rgba(255, 254, 250, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.waitlist-form.is-complete {
  border-color: rgba(136, 180, 154, 0.42);
}

.mobile-sticky-cta {
  display: none;
}

@keyframes decision-breathe {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1080px) {
  .operations-nav {
    width: min(calc(100% - 24px), 1320px);
  }

  .operations-nav .nav-links a {
    padding-inline: 10px;
  }

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

@media (max-width: 980px) {
  .operations-nav {
    position: sticky;
    width: 100%;
    min-height: 68px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 0 0 18px 18px;
  }

  .operations-nav .lockup {
    flex: 1 1 auto;
    min-width: 0;
  }

  .operations-nav .lockup > span:last-child {
    min-width: 0;
  }

  .operations-nav .lockup strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    z-index: 30;
    display: none;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(239, 236, 227, 0.14);
    border-radius: 18px;
    background: rgba(16, 21, 28, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  .operations-nav.is-open .nav-menu {
    display: block;
  }

  .operations-nav .nav-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    padding: 0;
    gap: 8px;
    border: 0;
    background: transparent;
  }

  .operations-nav .nav-links a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 11px 12px;
    border: 1px solid rgba(239, 236, 227, 0.12);
    border-radius: var(--radius-card);
    background: rgba(255, 254, 250, 0.06);
    white-space: normal;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .decision-surface {
    grid-template-columns: 1fr;
  }

  .launch-offer-band {
    grid-template-columns: 1fr;
  }

  .waitlist-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .operations-nav .mark {
    width: 40px;
    height: 40px;
  }

  .operations-nav .nav-cta {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
    white-space: nowrap !important;
  }

  .operations-hero h1,
  .operations-page-hero h1 {
    max-width: 12ch;
    font-size: clamp(34px, 10vw, 42px);
  }

  .operations-console .console-frame {
    padding: 15px;
  }

  .alert-item {
    padding: 12px;
  }

  .operations-phone-demo .chat-actions {
    grid-template-columns: 1fr;
  }

  .launch-offer-band {
    width: min(100%, calc(100% - 20px));
    margin-top: 16px;
    padding: 22px 16px;
    border-radius: 0;
  }

  .launch-offer-band h2 {
    max-width: 13ch;
    font-size: clamp(34px, 10vw, 42px);
  }

  .offer-card {
    border-radius: var(--radius-card);
  }

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

  .pricing-note {
    display: grid;
    gap: 8px;
  }

  .waitlist-band {
    width: 100%;
    margin-top: 16px;
    padding: 22px 16px 94px;
    border-radius: 0;
  }

  .waitlist-form {
    border-radius: var(--radius-card);
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 55;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(173, 142, 96, 0.44);
    border-radius: var(--radius-pill);
    background:
      linear-gradient(135deg, var(--midnight), #202b3a 66%),
      var(--midnight);
    color: var(--white);
    box-shadow: 0 18px 50px rgba(16, 21, 28, 0.32);
    font-size: 13px;
    font-weight: 900;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 14px;
  }
}

@media (max-width: 430px) {
  .operations-nav {
    gap: 8px;
  }

  .operations-nav .nav-cta {
    max-width: 86px;
    white-space: nowrap !important;
  }

  .operations-nav .lockup span span {
    display: none;
  }
}

/* premium-fintech-alerts-v1: TR monogram, premium fintech palette, visible /alert command center. */
:root {
  --radius-panel: 8px;
  --radius-shell: 8px;
  --alert-dark: #0f1720;
  --alert-panel: #17222c;
  --alert-graphite: #22313d;
  --alert-ivory: #f6f8f7;
  --alert-brass: #18d1c2;
  --alert-mint: #21c7ba;
  --alert-copper: #7894a6;
  --alert-steel: #6f8395;
}

body {
  background:
    linear-gradient(180deg, #f7faf8 0%, #eef4f2 44%, #e4ecea 100%),
    var(--alert-ivory);
}

.nav {
  background: rgba(15, 23, 32, 0.92);
  border-color: rgba(246, 248, 247, 0.14);
}

.mark {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(15, 23, 32, 0.98), rgba(34, 40, 42, 0.98)),
    var(--alert-dark);
}

.mark svg {
  width: 41px;
  height: 41px;
}

.tr-logo-mark {
  color: var(--alert-ivory);
}

.tr-logo-plate {
  fill: #0f1720;
  stroke: rgba(24, 209, 194, 0.78);
}

.tr-logo-t {
  stroke: var(--alert-ivory);
}

.tr-logo-r {
  stroke: var(--alert-brass);
}

.tr-logo-accent {
  stroke: var(--alert-copper);
}

.tr-logo-dot {
  fill: var(--alert-mint);
}

.premium-fintech-v2 {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.78fr);
  background:
    linear-gradient(90deg, rgba(246, 248, 247, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(246, 248, 247, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #0f1720 0%, #17222c 56%, #243433 100%);
  background-size:
    84px 84px,
    84px 84px,
    auto;
}

.premium-fintech-v2 .hero-copy {
  justify-content: center;
}

.premium-fintech-v2 h1 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(72px, 11vw, 152px);
  line-height: 0.82;
}

.premium-fintech-v2 .lead {
  max-width: 680px;
  color: rgba(246, 248, 247, 0.86);
  font-size: clamp(19px, 2vw, 25px);
}

.premium-fintech-v2 .credibility-strip span {
  border-color: rgba(246, 248, 247, 0.14);
  background: rgba(246, 248, 247, 0.08);
  color: rgba(246, 248, 247, 0.84);
}

.premium-fintech-v2 .button {
  border-color: rgba(24, 209, 194, 0.56);
  background: var(--alert-ivory);
  color: var(--alert-dark);
}

.premium-fintech-v2 .button.secondary {
  border-color: rgba(246, 248, 247, 0.22);
  background: rgba(246, 248, 247, 0.08);
  color: var(--alert-ivory);
}

.alert-command-console .console-frame {
  border-color: rgba(246, 248, 247, 0.18);
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(246, 248, 247, 0.94)),
    var(--alert-ivory);
}

.alert-command-console .console-top {
  background: rgba(15, 23, 32, 0.04);
}

.alert-command-console .console-top strong,
.decision-card-live h2,
.alert-item strong {
  color: var(--alert-dark);
}

.alert-item {
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 32, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.alert-item.is-hot {
  border-color: rgba(120, 148, 166, 0.34);
  background: rgba(255, 250, 240, 0.94);
}

.alert-dot {
  background: var(--alert-mint);
  box-shadow: 0 0 0 5px rgba(33, 199, 186, 0.13);
}

.decision-card-live {
  border-radius: 8px;
  border-color: rgba(15, 23, 32, 0.13);
  background: #ffffff;
}

.decision-label,
.decision-state-rail .is-active,
.alert-system-grid article span {
  color: var(--alert-copper);
}

.decision-state-rail span {
  border-radius: 8px;
}

.market-pulse div {
  border-radius: 8px;
  background: rgba(15, 23, 32, 0.64);
}

.market-pulse em {
  background: rgba(33, 199, 186, 0.18);
}

.alert-system-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.96), rgba(246, 248, 247, 0.84)),
    var(--alert-ivory);
}

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

.alert-system-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.88);
  box-shadow: 0 22px 58px rgba(15, 23, 32, 0.08);
}

.alert-system-grid h3 {
  max-width: 12ch;
  margin: 18px 0 14px;
  color: var(--alert-dark);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.02;
}

.alert-system-grid p,
.alert-system-grid strong {
  color: #5f5850;
  line-height: 1.58;
}

.alert-system-grid strong {
  display: block;
  margin-top: 20px;
  color: var(--alert-dark);
}

.service-card,
.case-grid article,
.offer-card,
.waitlist-form,
.journey-strip a,
.stats-grid article,
.price-card,
.trust-card,
.feature,
.step,
.status-card,
.legal-card {
  border-radius: 8px;
}

@media (max-width: 1120px) {
  .premium-fintech-v2 {
    grid-template-columns: 1fr;
  }

  .premium-fintech-v2 h1 {
    font-size: clamp(62px, 12vw, 128px);
  }

  .alert-command-console {
    justify-self: start;
  }

  .alert-system-grid {
    grid-template-columns: 1fr;
  }

  .alert-system-grid article {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .premium-fintech-v2 {
    padding-top: 36px;
  }

  .premium-fintech-v2 h1 {
    max-width: none;
    font-size: clamp(48px, 15vw, 72px);
  }

  .premium-fintech-v2 .hero-copy {
    gap: 24px;
  }

  .alert-system-section {
    padding-inline: 16px;
  }

  .alert-system-grid article {
    padding: 20px;
  }

  .mobile-sticky-cta {
    border-color: rgba(24, 209, 194, 0.5);
    background:
      linear-gradient(135deg, #0f1720, #22313d 70%),
      var(--alert-dark);
  }
}

/* brand-direction-13-v1: supplied logo board choice, blue-grey/off-white with bright teal signal. */
:root {
  --brand-ink: #0b1118;
  --brand-night: #0f1720;
  --brand-blue-grey: #22313d;
  --brand-steel: #7894a6;
  --brand-silver: #d7e0e5;
  --brand-paper: #f7faf8;
  --brand-ice: #eef4f2;
  --brand-signal: #18d1c2;
  --brand-signal-soft: #21c7ba;
  --brand-line: rgba(15, 23, 32, 0.14);
  --midnight: var(--brand-night);
  --sage: var(--brand-signal-soft);
  --ivory: #f6f8f7;
  --taupe: var(--brand-steel);
  --brass: var(--brand-signal);
  --copper: var(--brand-steel);
  --paper: var(--brand-paper);
  --ink: var(--brand-night);
  --graphite: var(--brand-blue-grey);
  --steel: var(--brand-steel);
  --muted: #5d6b74;
  --line: var(--brand-line);
  --line-strong: rgba(15, 23, 32, 0.3);
  --mist: rgba(238, 244, 242, 0.78);
  --shadow: 0 32px 92px rgba(15, 23, 32, 0.18);
  --shadow-soft: 0 18px 48px rgba(15, 23, 32, 0.1);
  --alert-dark: var(--brand-night);
  --alert-panel: #17222c;
  --alert-graphite: var(--brand-blue-grey);
  --alert-ivory: #f6f8f7;
  --alert-brass: var(--brand-signal);
  --alert-mint: var(--brand-signal-soft);
  --alert-copper: var(--brand-steel);
  --alert-steel: var(--brand-steel);
}

body {
  background:
    linear-gradient(112deg, rgba(24, 209, 194, 0.1), transparent 32%),
    linear-gradient(180deg, var(--brand-paper) 0%, var(--brand-ice) 52%, #e4ecea 100%);
}

.nav,
.operations-nav {
  background: rgba(11, 17, 24, 0.94);
  border-color: rgba(215, 224, 229, 0.16);
}

.mark {
  background:
    linear-gradient(145deg, #0b1118, #182634 68%, #0f1720),
    var(--brand-night);
  border-color: rgba(24, 209, 194, 0.58);
}

.tr-logo-plate {
  fill: var(--brand-night);
  stroke: rgba(24, 209, 194, 0.78);
}

.tr-logo-t {
  stroke: #f6f8f7;
}

.tr-logo-r {
  stroke: var(--brand-signal);
}

.tr-logo-accent {
  stroke: var(--brand-steel);
}

.tr-logo-dot {
  fill: var(--brand-signal-soft);
}

.eyebrow,
.premium-curves-v1 .eyebrow,
.premium-fintech-v2 .eyebrow,
.journey-strip span,
.case-grid span,
.step::before,
.decision-label,
.decision-state-rail .is-active,
.alert-system-grid article span {
  color: var(--brand-signal);
}

.nav-cta,
.button,
.premium-fintech-v2 .button {
  border-color: rgba(24, 209, 194, 0.5);
  background:
    linear-gradient(135deg, #f7faf8, #dfe9e7),
    var(--brand-paper);
  color: var(--brand-night);
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  border-color: rgba(24, 209, 194, 0.82);
  box-shadow: 0 24px 52px rgba(24, 209, 194, 0.18);
}

.premium-fintech-v2 {
  background:
    linear-gradient(90deg, rgba(215, 224, 229, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(215, 224, 229, 0.036) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(24, 209, 194, 0.16), transparent 30%),
    linear-gradient(135deg, #0b1118 0%, #122331 58%, #173f46 100%);
  background-size:
    84px 84px,
    84px 84px,
    auto,
    auto;
}

.premium-fintech-v2 h1 {
  max-width: 7.8ch;
  font-size: clamp(56px, 7.8vw, 118px);
}

.premium-fintech-v2 .lead {
  color: rgba(246, 248, 247, 0.86);
}

.alert-command-console {
  max-width: 620px;
  justify-self: end;
}

.premium-fintech-v2 .credibility-strip span,
.premium-fintech-v2 .button.secondary {
  border-color: rgba(215, 224, 229, 0.18);
  background: rgba(246, 248, 247, 0.08);
  color: rgba(246, 248, 247, 0.86);
}

.alert-command-console .console-frame,
.decision-card-live,
.alert-system-grid article,
.service-card,
.case-grid article,
.offer-card,
.waitlist-form,
.journey-strip a,
.status-card,
.trust-card,
.feature,
.step,
.price-card {
  border-color: rgba(15, 23, 32, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 242, 0.72)),
    var(--brand-paper);
}

.alert-item {
  border-color: rgba(15, 23, 32, 0.1);
  background: rgba(255, 255, 255, 0.76);
}

.alert-item.is-hot {
  border-color: rgba(24, 209, 194, 0.34);
  background: rgba(239, 254, 252, 0.94);
}

.alert-dot {
  background: var(--brand-signal);
  box-shadow: 0 0 0 5px rgba(24, 209, 194, 0.13);
}

.alert-item p,
.decision-card-live dd {
  color: #526271;
}

.decision-card-live dt {
  color: #7894a6;
}

.decision-state-rail span {
  color: #5d6b74;
  background: #eef4f2;
}

.decision-state-rail .is-active {
  color: #0f1720;
  background: rgba(24, 209, 194, 0.18);
}

.market-pulse div,
.experience-band,
.final-cta-dark,
.signup-copy,
.quote-panel {
  background:
    linear-gradient(135deg, rgba(11, 17, 24, 0.98), rgba(18, 35, 49, 0.96) 58%, rgba(20, 69, 73, 0.94)),
    var(--brand-night);
}

.market-pulse em,
.mobile-sticky-cta {
  background: rgba(24, 209, 194, 0.18);
}

.mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

body.has-scrolled .mobile-sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.alert-system-section,
.method-section,
.why-section,
.signup-form-wrap,
.trust-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.96), rgba(238, 244, 242, 0.86)),
    var(--brand-paper);
}

.service-card:hover,
.case-grid article:hover,
.price-card:hover,
.trust-card:hover,
.feature:hover,
.step:hover {
  border-color: rgba(24, 209, 194, 0.42);
}

@media (max-width: 720px) {
  .premium-fintech-v2 h1 {
    max-width: none;
    font-size: clamp(48px, 15vw, 72px);
  }

  .alert-command-console {
    max-width: none;
    justify-self: stretch;
  }

  .mobile-sticky-cta {
    border-color: rgba(24, 209, 194, 0.54);
    background:
      linear-gradient(135deg, #0b1118, #122331 72%, #17474a),
      var(--brand-night);
  }
}
