/* CliqCase visual system */
:root {
  --ink: #121318;
  --ink-2: #1d2028;
  --ink-3: #303441;
  --paper: #f7f5ef;
  --paper-2: #eeebe2;
  --white: #ffffff;
  --line: #ded8cc;
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #666b76;
  --muted-dark: #b7becb;
  --blue: #2357ff;
  --blue-2: #173fc2;
  --gold: #b8862f;
  --green: #16875f;
  --red: #c84b4b;
  --shadow: 0 18px 60px rgba(18, 19, 24, 0.12);
  --shadow-soft: 0 8px 28px rgba(18, 19, 24, 0.08);
  --radius: 8px;
  --nav-h: 76px;
  --max: 1180px;
  --font-display: "Noto Serif", Georgia, serif;
  --font-body: "Inter", "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

::selection {
  background: #2357ff;
  color: #ffffff;
}

::-moz-selection {
  background: #2357ff;
  color: #ffffff;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 48px, 880px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 500;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(222, 216, 204, 0.72);
  background: rgba(247, 245, 239, 0.86);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.nav.nav--scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(18, 19, 24, 0.08);
}

.nav-inner {
  width: min(100% - 40px, 1240px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}

.nav-logo img {
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.nav-link {
  padding: 8px 13px;
  border-radius: 999px;
  color: #3e424c;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(18,19,24,0.06);
}

.nav-link[aria-current="page"] {
  color: var(--blue);
  background: rgba(35,87,255,0.09);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-login {
  color: #3f4654;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-drawer {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1;
  color: var(--ink);
  background: transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

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

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

.btn-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(35, 87, 255, 0.24);
}

.btn-primary:hover {
  background: var(--blue-2);
  border-color: var(--blue-2);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: #c5bdae;
  box-shadow: var(--shadow-soft);
}

.btn-ink {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.btn-small {
  min-height: 36px;
  padding: 9px 14px;
  font-size: 0.84rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.section {
  padding: 104px 0;
  position: relative;
}

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

.section--paper {
  background: var(--paper);
}

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

.section--ink p,
.section--ink .section-copy,
.section--ink .muted {
  color: var(--muted-dark);
}

.section-header {
  max-width: 710px;
  margin-bottom: 52px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  margin-top: 12px;
  font-size: 3rem;
}

.section-copy {
  max-width: 640px;
  margin-top: 18px;
  font-size: 1.06rem;
}

.hero {
  position: relative;
  height: 100svh;
  padding: 116px 0 54px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line-dark);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow--right {
  top: -10%;
  right: -5%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(35, 87, 255, 0.18) 0%, rgba(35, 87, 255, 0.06) 50%, transparent 75%);
}

.hero-glow--left {
  bottom: -20%;
  left: 5%;
  width: 35%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(35, 87, 255, 0.07) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: 54px;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  margin-right: 7px;
  vertical-align: middle;
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

.hero-lede {
  margin-top: 24px;
  color: #d8dde7;
  font-size: 1.22rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line-dark);
}

.hero-meta div {
  padding: 10px 12px;
  background: #17191f;
}

.hero-meta strong {
  display: block;
  color: var(--muted-dark);
  font-size: 0.70rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-meta span {
  display: block;
  margin-top: 3px;
  color: rgba(183,190,203,0.55);
  font-size: 0.66rem;
}

.hero-visual {
  position: relative;
  height: calc(100svh - 210px);
  max-height: 680px;
  min-height: 360px;
}

.product-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.product-screen {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8f7f2;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  animation: floatIn 700ms ease both;
}

.screen-top {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 16px;
  border-bottom: 1px solid #ddd6c8;
  color: #59606e;
  background: var(--white);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9c1b3;
}

.screen-url {
  font-size: 0.76rem;
  font-weight: 700;
}

.screen-body {
  display: grid;
  grid-template-columns: 72px 1fr;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.screen-rail {
  padding: 16px 14px;
  border-right: 1px solid #e4ded2;
  background: #efebe2;
}

.rail-mark {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--ink);
}

.rail-item {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: var(--radius);
  border: 1px solid #d8d1c4;
  background: #f9f7f2;
}

.rail-item.active {
  background: var(--blue);
  border-color: var(--blue);
}

.screen-main {
  padding: 22px;
}

.screen-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.screen-heading h3 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 850;
}

.status-pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(22, 135, 95, 0.11);
  font-size: 0.72rem;
  font-weight: 800;
}

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

.case-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e5dfd3;
  border-radius: var(--radius);
  background: var(--white);
}

.case-row.is-focus {
  border-color: rgba(35, 87, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(35, 87, 255, 0.08);
}

.case-strip {
  width: 8px;
  height: 48px;
  border-radius: 999px;
  background: var(--blue);
}

.case-strip.gold {
  background: var(--gold);
}

.case-strip.green {
  background: var(--green);
}

.case-title {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 820;
}

.case-sub {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.case-time {
  color: var(--ink-3);
  font-size: 0.8rem;
  font-weight: 800;
}

.screen-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.screen-panel {
  padding: 14px;
  border: 1px solid #e5dfd3;
  border-radius: var(--radius);
  background: #fbfaf6;
}

.panel-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-value {
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 850;
  line-height: 1;
}

.panel-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-side {
  display: grid;
  gap: 16px;
  padding-bottom: 34px;
  animation: floatIn 850ms 90ms ease both;
}

.side-module {
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.side-module strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1rem;
}

.side-module span {
  display: block;
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.agenda {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.agenda-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #edf1f7;
  font-size: 0.82rem;
}

.agenda-row em {
  color: var(--muted-dark);
  font-style: normal;
}

/* Hero floating toast notifications */
.hero-toast {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 12px;
  background: rgba(22, 24, 32, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255,255,255,0.07) inset;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

.hero-toast--1 {
  top: 14px;
  left: -16px;
  animation: toastIn 600ms 350ms ease both, bobA 6s 1100ms ease-in-out infinite;
}

.hero-toast--2 {
  bottom: 60px;
  right: -12px;
  animation: toastIn 600ms 550ms ease both, bobB 7s 1500ms ease-in-out infinite;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.toast-icon--green {
  background: rgba(22, 135, 95, 0.2);
  color: #2de89e;
}

.toast-icon--blue {
  background: rgba(35, 87, 255, 0.22);
  color: #7aa8ff;
}

.toast-icon svg {
  width: 14px;
  height: 14px;
}

.toast-title {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.toast-sub {
  margin-top: 2px;
  color: var(--muted-dark);
  font-size: 0.72rem;
  line-height: 1.3;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bobA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

@keyframes bobB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.proof-strip {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-item {
  padding: 24px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, background 0.2s;
}

.proof-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

.proof-icon {
  width: 38px;
  height: 38px;
  background: rgba(35,87,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.proof-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.3;
  margin-bottom: 6px;
}

.proof-item span {
  display: block;
  color: var(--muted-dark);
  font-size: 0.8rem;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-3);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 6px var(--blue), inset 0 0 0 8px var(--white);
}

.section--ink .check-list li {
  color: #e4e8ef;
}

.section--ink .check-list li::before {
  box-shadow: inset 0 0 0 6px var(--blue), inset 0 0 0 8px var(--ink);
}

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

.tile-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.tile {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: #c7c0b4;
  box-shadow: var(--shadow-soft);
}

.tile h3 {
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 850;
}

.tile p {
  margin-top: 12px;
  font-size: 0.96rem;
}

.tile-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--blue);
  background: rgba(35, 87, 255, 0.1);
}

.tile-mark svg {
  width: 20px;
  height: 20px;
}

.workflow {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.workflow-step {
  display: grid;
  grid-template-columns: 120px 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: var(--white);
}

.workflow-step span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.workflow-step h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 850;
}

.workflow-step p {
  font-size: 0.95rem;
}

.showcase {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.showcase-tabs {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.showcase-tab {
  flex: 1 0 auto;
  min-width: 150px;
  padding: 15px 18px;
  border: 0;
  color: var(--muted);
  background: var(--white);
  font-weight: 780;
}

.showcase-tab.active,
.showcase-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--ink);
}

.showcase-panel {
  display: none;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  background: var(--line);
}

.showcase-panel.active {
  display: grid;
}

.showcase-copy,
.showcase-visual {
  padding: 34px;
  background: var(--white);
}

.showcase-copy h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 850;
}

.showcase-copy p {
  margin-top: 12px;
}

.mini-dashboard {
  min-height: 250px;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.mini-dashboard.light {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fbfaf6;
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-dashboard.light .mini-row {
  border-bottom-color: var(--line);
}

.mini-row:last-child {
  border-bottom: 0;
}

.mini-row strong {
  font-size: 0.95rem;
}

.mini-row span {
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.mini-dashboard.light .mini-row span {
  color: var(--muted);
}

/* ── Showcase redesign ─────────────────────────────────────── */

.sc-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.sc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.sc-header {
  max-width: 560px;
  margin-bottom: 54px;
}

.sc-section .section-title {
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
}

/* Tab nav */
.sc-nav {
  display: flex;
  gap: 0;
  border: none;
  background: transparent;
  margin-bottom: 2px;
}

.sc-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted-dark);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 680;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

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

.sc-tab.active,
.sc-tab[aria-selected="true"] {
  color: var(--white);
  border-bottom-color: var(--blue);
}

.sc-tab-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Panel layout */
.sc-panel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.sc-panel.active {
  display: grid;
}

/* Copy side */
.sc-copy {
  padding: 40px 40px 40px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-copy h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 720;
  line-height: 1.2;
}

.sc-copy p {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.sc-feats {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.sc-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c8d0df;
  font-size: 0.9rem;
}

.sc-feats li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(35, 87, 255, 0.22);
  border: 1.5px solid rgba(35, 87, 255, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%236b9fff' stroke-width='2'%3E%3Cpolyline points='2 5 4 7 8 3'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Visual side */
.sc-visual {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

/* Shared card */
.sc-card {
  width: 100%;
  max-width: 400px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sc-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sc-card-title {
  font-size: 0.95rem;
  font-weight: 820;
  color: var(--ink);
  line-height: 1.3;
}

.sc-live {
  flex-shrink: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 135, 95, 0.2);
  animation: dotPulse 2.4s ease-in-out infinite;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.sc-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-3);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 740;
}

.sc-tag--green {
  border-color: rgba(22, 135, 95, 0.3);
  color: var(--green);
  background: rgba(22, 135, 95, 0.08);
}

.sc-tag--blue {
  border-color: rgba(35, 87, 255, 0.3);
  color: var(--blue);
  background: rgba(35, 87, 255, 0.08);
}

.sc-tag--ink {
  border-color: rgba(18, 19, 24, 0.2);
  color: var(--ink-3);
  background: rgba(18, 19, 24, 0.06);
}

.sc-tag--muted {
  border-color: var(--line);
  color: var(--muted);
  background: var(--paper-2);
}

.sc-card-rule {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

/* Case stats */
.sc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}

.sc-stat {
  padding: 12px;
  background: var(--white);
}

.sc-stat-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sc-stat-val {
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 860;
  line-height: 1;
}

.sc-stat-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

/* Assigned */
.sc-assign {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sc-avatars {
  display: flex;
}

.sc-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  background: var(--blue);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-right: -8px;
}

.sc-avatar--2 {
  background: var(--green);
}

.sc-assign-names {
  padding-left: 14px;
  color: var(--ink-3);
  font-size: 0.82rem;
  font-weight: 640;
}

.feat-feed-card .sc-assign-names,
.sol-assign-name {
  color: var(--muted-dark);
  font-size: 0.78rem;
}

/* Calendar card */
.sc-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sc-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.sc-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 70px;
}

.sc-day--has {
  border-color: rgba(35, 87, 255, 0.2);
  background: rgba(35, 87, 255, 0.03);
}

.sc-day-name {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sc-day-num {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.sc-day-num--today {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.sc-hearing-chip {
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 740;
  white-space: nowrap;
}

.sc-hearing-chip--blue {
  background: rgba(35, 87, 255, 0.12);
  color: var(--blue);
}

.sc-hearing-chip--gold {
  background: rgba(184, 134, 47, 0.12);
  color: var(--gold);
}

.sc-cal-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* AI card */
.sc-ai-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.sc-ai-head svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.sc-ai-prompt {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-3);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.sc-ai-result {
  padding: 14px;
  border: 1px solid rgba(22, 135, 95, 0.25);
  border-radius: var(--radius);
  background: rgba(22, 135, 95, 0.05);
}

.sc-ai-result-head {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.sc-ai-result-head svg {
  width: 13px;
  height: 13px;
}

.sc-ai-rows {
  display: grid;
  gap: 7px;
}

.sc-ai-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.sc-ai-row span {
  color: var(--muted);
}

.sc-ai-row strong {
  color: var(--ink);
  font-weight: 780;
}

/* Vault card */
.sc-vault-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

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

.sc-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sc-file-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--muted);
}

.sc-file-name {
  flex: 1;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 680;
}

/* Responsive */
@media (max-width: 860px) {
  .sc-panel {
    grid-template-columns: 1fr;
  }

  .sc-copy {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
  }

  .sc-visual {
    padding: 24px;
  }

  .sc-tab {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .sc-tab span:not(.sc-tab-icon) {
    display: none;
  }

  .sc-tab-icon {
    width: 22px;
    height: 22px;
  }

  .sc-week {
    gap: 4px;
  }

  .sc-hearing-chip {
    font-size: 0.55rem;
  }
}

/* ── end showcase redesign ──────────────────────────────────── */

.quote-band {
  padding: 48px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.quote-band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.25;
}

.quote-band cite {
  display: block;
  margin-top: 22px;
  color: var(--muted-dark);
  font-style: normal;
  font-weight: 700;
}

/* ── Features page redesign ────────────────────────────────── */

/* Hero */
.feat-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.feat-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.feat-hero .container {
  position: relative;
  z-index: 1;
}

.feat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.feat-hero-content h1 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--white);
}

.feat-hero-content p {
  margin-top: 18px;
  max-width: 560px;
  color: #d0d6e4;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Feature quick-nav */
.feat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.feat-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: var(--muted-dark);
  background: rgba(255,255,255,0.05);
  font-size: 0.88rem;
  font-weight: 680;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.feat-nav-pill svg {
  width: 15px;
  height: 15px;
}

.feat-nav-pill:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}

/* Feature sections */
.feat-section {
  padding: 104px 0;
}

.feat-section--light {
  background: var(--paper);
}

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

.feat-section--ai {
  background: #0e1220;
  color: var(--white);
}

.feat-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.feat-inner--reverse {
  grid-template-columns: 1.15fr 1fr;
}

.feat-inner--reverse .feat-copy {
  order: 2;
}

.feat-inner--reverse .feat-visual {
  order: 1;
}

/* Copy side */
.feat-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(18,19,24,0.07);
  margin-bottom: -14px;
  letter-spacing: -0.04em;
  user-select: none;
}

.feat-num--dark {
  color: rgba(255,255,255,0.07);
}

.feat-copy h2 {
  margin-top: 6px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.feat-section--dark .feat-copy h2,
.feat-section--ai .feat-copy h2 {
  color: var(--white);
}

.feat-copy p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.72;
}

.feat-section--dark .feat-copy p,
.feat-section--ai .feat-copy p {
  color: var(--muted-dark);
}

.check-list--dark li {
  color: #c4ccd8;
}

.check-list--dark li::before {
  background-color: rgba(35,87,255,0.18);
  border-color: rgba(35,87,255,0.4);
}

/* Store badges */
.feat-store-badges {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.feat-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--muted-dark);
  font-size: 0.85rem;
  font-weight: 680;
}

.feat-store-badge svg {
  width: 14px;
  height: 14px;
}

/* Visual side */
.feat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-card {
  width: 100%;
  max-width: 460px;
}

/* Case timeline */
.feat-timeline {
  display: grid;
  gap: 0;
  margin-bottom: 16px;
}

.feat-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.feat-tl-item:last-child {
  border-bottom: none;
}

.feat-tl-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 4px;
  background: var(--line);
  border: 2px solid var(--line);
}

.feat-tl-dot--blue {
  background: var(--blue);
  border-color: var(--blue);
}

.feat-tl-dot--gold {
  background: var(--gold);
  border-color: var(--gold);
}

.feat-tl-title {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
}

.feat-tl-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

/* eCourts / AI feed card */
.feat-feed-card {
  width: 100%;
  max-width: 440px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.feat-feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.feat-feed-items {
  display: grid;
  gap: 2px;
}

.feat-feed-item {
  display: grid;
  grid-template-columns: 44px 1fr 18px;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.feat-feed-item:last-child {
  border-bottom: none;
}

.feat-feed-item time {
  color: var(--muted-dark);
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.feat-feed-item strong {
  display: block;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 720;
}

.feat-feed-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted-dark);
  font-size: 0.73rem;
}

.feat-feed-item svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

/* AI card specifics */
.feat-ai-prompt {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: #ccd3e0;
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.feat-ai-result {
  padding: 14px;
  border: 1px solid rgba(22,135,95,0.3);
  border-radius: var(--radius);
  background: rgba(22,135,95,0.07);
  margin-bottom: 12px;
}

.feat-ai-result-head {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #2de89e;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.feat-ai-result-head svg {
  width: 13px;
  height: 13px;
}

.feat-ai-rows {
  display: grid;
  gap: 6px;
}

.feat-ai-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.feat-ai-row span { color: var(--muted-dark); }
.feat-ai-row strong { color: var(--white); font-weight: 760; }

.feat-ai-action {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.feat-ai-action svg { width: 14px; height: 14px; color: var(--blue); }

/* Calendar card additions */
.feat-cal-upcoming {
  display: grid;
  gap: 8px;
}

.feat-cal-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-cal-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.feat-cal-dot--blue { background: var(--blue); }
.feat-cal-dot--gold { background: var(--gold); }

.feat-cal-label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.feat-cal-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.73rem;
}

/* Vault file additions */
.feat-file-info {
  flex: 1;
  min-width: 0;
}

.feat-file-meta {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Mobile phone frame */
.feat-phone-wrap {
  display: flex;
  justify-content: center;
}

.feat-phone {
  width: 100%;
  max-width: 340px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  background: #f8f7f2;
  box-shadow: 0 24px 72px rgba(0,0,0,0.5);
}

.feat-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #e5dfd3;
  background: var(--white);
}

.feat-phone-title {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 820;
}

.feat-phone-body {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.feat-phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--white);
  border: 1px solid #e5dfd3;
  border-radius: var(--radius);
}

.feat-phone-strip {
  flex-shrink: 0;
  width: 4px;
  height: 36px;
  border-radius: 999px;
}

.feat-phone-strip--blue  { background: var(--blue); }
.feat-phone-strip--gold  { background: var(--gold); }
.feat-phone-strip--muted { background: var(--line); }

.feat-phone-case {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 760;
}

.feat-phone-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.71rem;
}

.feat-phone-divider {
  height: 1px;
  background: #e5dfd3;
  margin: 4px 0;
}

.feat-phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e5dfd3;
  border: 1px solid #e5dfd3;
  border-radius: var(--radius);
  overflow: hidden;
}

.feat-phone-stats > div {
  padding: 10px;
  background: var(--white);
  text-align: center;
}

.feat-phone-stat-val {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 860;
}

.feat-phone-stat-label {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.65rem;
}

/* Workflow pipeline */
.feat-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
}

.feat-step {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feat-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
}

.feat-step h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 820;
  margin-bottom: 8px;
}

.feat-step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.feat-step-arrow {
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin-top: 40px;
  color: var(--line);
}

.feat-step-arrow svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 1080px) {
  .feat-inner,
  .feat-inner--reverse {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .feat-inner--reverse .feat-copy,
  .feat-inner--reverse .feat-visual {
    order: unset;
  }

  .feat-pipeline {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feat-step-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .feat-hero-content h1 {
    font-size: 2.2rem;
  }

  .feat-section {
    padding: 72px 0;
  }

  .feat-num {
    font-size: 3.5rem;
  }

  .feat-pipeline {
    grid-template-columns: 1fr;
  }

  .feat-phone {
    max-width: 100%;
  }
}

/* ── end features redesign ──────────────────────────────────── */

/* ── Solutions page ─────────────────────────────────────────── */

/* Before/After pain list */
.sol-pain-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.sol-pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sol-pain-list--dark li {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.sol-pain-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.sol-pain-icon svg {
  width: 13px;
  height: 13px;
}

.sol-pain-icon--red {
  background: rgba(200,75,75,0.1);
  color: #c84b4b;
}

.sol-pain-icon--green {
  background: rgba(22,135,95,0.12);
  color: var(--green);
}

.sol-pain-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sol-pain-list li strong {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 760;
}

.sol-pain-list--dark li strong {
  color: var(--white);
}

.sol-pain-list li span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.sol-pain-list--dark li span {
  color: var(--muted-dark);
}

/* Link with arrow */
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 740;
  text-decoration: none;
  transition: gap 160ms ease;
}

.sol-link svg {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}

.sol-link:hover { gap: 9px; }
.sol-link:hover svg { transform: translateX(3px); }

.sol-link--dark {
  color: #7aa8ff;
}

/* Docket rows */
.sol-docket {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.sol-docket-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sol-docket-info {
  flex: 1;
  min-width: 0;
}

.sol-docket-case {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 760;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sol-docket-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.sol-docket-time {
  flex-shrink: 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* Team task list */
.sol-assign-matter {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

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

.sol-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}

.sol-task-name {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 680;
}

.sol-task-name svg {
  width: 13px;
  height: 13px;
  color: var(--muted-dark);
  flex-shrink: 0;
}

/* Portfolio rows */
.sol-portfolio {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.sol-portfolio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sol-portfolio-cat {
  flex: 1;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 720;
}

.sol-portfolio-count {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink-3);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-counsel-row {
  display: flex;
  gap: 28px;
}

/* Roles header */
.sol-roles-header {
  max-width: 620px;
  margin-bottom: 52px;
}

.sol-roles-header h2 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.sol-roles-header p {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Role cards */
.sol-roles {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

.sol-role-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  transition: background 200ms ease, border-color 200ms ease;
}

.sol-role-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

.sol-role-card--highlight {
  border-color: rgba(35,87,255,0.3);
  background: rgba(35,87,255,0.07);
}

.sol-role-card--highlight:hover {
  background: rgba(35,87,255,0.1);
}

.sol-role-badge {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sol-role-badge--muted {
  background: rgba(255,255,255,0.07);
  color: var(--muted-dark);
  border: 1px solid rgba(255,255,255,0.1);
}

.sol-role-badge--gold {
  background: rgba(184,134,47,0.15);
  color: #d4a435;
  border: 1px solid rgba(184,134,47,0.3);
}

.sol-role-badge--blue {
  background: rgba(35,87,255,0.15);
  color: #7aa8ff;
  border: 1px solid rgba(35,87,255,0.3);
}

.sol-role-badge--ink {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.sol-role-card h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 780;
  margin-bottom: 14px;
}

.sol-role-perms {
  display: grid;
  gap: 8px;
}

.sol-role-perms li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-dark);
  font-size: 0.82rem;
  line-height: 1.4;
}

.sol-role-perms li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.sol-role-arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255,255,255,0.18);
}

.sol-role-arrow svg {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 1080px) {
  .sol-roles {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .sol-role-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .sol-roles {
    grid-template-columns: 1fr;
  }

  .sol-counsel-row {
    gap: 16px;
  }
}

/* ── end solutions page ──────────────────────────────────────── */

.page-hero {
  padding: 138px 0 70px;
  color: var(--white);
  background: var(--ink);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.55fr);
  gap: 52px;
  align-items: end;
}

.page-hero h1 {
  font-size: 4rem;
}

.page-hero p {
  max-width: 620px;
  margin-top: 22px;
  color: #d7dde7;
  font-size: 1.12rem;
}

.page-stat {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line-dark);
}

.page-stat div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.page-stat strong {
  display: block;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
}

.page-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-row:nth-child(even) {
  grid-template-columns: 1.12fr 0.88fr;
}

.feature-row:nth-child(even) .feature-copy {
  order: 2;
}

.feature-row:nth-child(even) .feature-visual {
  order: 1;
}

.feature-copy h2 {
  font-size: 2.5rem;
}

.feature-copy p {
  margin-top: 18px;
  font-size: 1.05rem;
}

.feature-visual {
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item time {
  color: var(--blue);
  font-weight: 850;
}

.pricing-hero {
  padding-bottom: 40px;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
  padding: 4px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.billing-opt {
  min-width: 108px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #dfe5ef;
  text-align: center;
  font-weight: 800;
  cursor: pointer;
}

.billing-opt.active {
  color: var(--ink);
  background: var(--white);
}

.billing-save {
  display: inline-flex;
  align-items: center;
  padding-inline: 13px;
  color: #dfe5ef;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.plan {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.plan.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.plan.featured p,
.plan.featured li {
  color: var(--muted-dark);
}

.plan-name {
  color: inherit;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 850;
}

.plan-desc {
  margin-top: 12px;
  min-height: 72px;
}

.plan-price {
  margin-top: 24px;
  color: inherit;
  font-size: 2.6rem;
  font-weight: 880;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.plan.featured .plan-price span {
  color: var(--muted-dark);
}

.plan ul {
  display: grid;
  gap: 11px;
  margin: 28px 0;
}

.plan li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--ink-3);
  font-size: 0.92rem;
}

.plan li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.plan .btn {
  margin-top: auto;
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.calculator h2 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 850;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 750;
}

.calc-range {
  width: 100%;
  margin-top: 14px;
  accent-color: var(--blue);
}

.calc-output {
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.calc-output strong {
  display: block;
  font-size: 1.3rem;
}

.calc-output span {
  display: block;
  margin-top: 6px;
  color: var(--muted-dark);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  color: var(--ink);
  background: #fbfaf6;
  font-size: 0.86rem;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact-facts {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-fact {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--blue);
  background: rgba(35, 87, 255, 0.1);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-form-wrap,
.login-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-note {
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.inline-link {
  color: var(--blue);
  font-weight: 800;
}

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

.calc-price-line {
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-label {
  color: var(--ink-3);
  font-size: 0.88rem;
  font-weight: 760;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #cfc8bc;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(35, 87, 255, 0.1);
}

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

.form-error {
  color: var(--red);
  font-size: 0.82rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-3);
  font-size: 0.92rem;
}

.checkbox-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 850;
}

.faq-a {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open .faq-a {
  display: block;
}

.cta {
  padding: 84px 0;
  color: var(--white);
  background: var(--ink);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.cta h2 {
  font-size: 3rem;
}

.cta p {
  max-width: 640px;
  margin-top: 16px;
  color: var(--muted-dark);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 36px;
}

.footer-brand img {
  width: 130px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.footer-col-title {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.footer-col-links {
  display: grid;
  gap: 10px;
}

.footer-col-links a,
.footer-legal a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-col-links a:hover,
.footer-legal a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-copy {
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.login-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: var(--paper);
}

.login-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  color: var(--white);
  background: var(--ink);
}

.login-side-logo {
  display: inline-flex;
  width: 132px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
}

.login-side h2 {
  margin-top: 80px;
  font-size: 3rem;
}

.login-side p {
  max-width: 480px;
  margin-top: 18px;
  color: var(--muted-dark);
}

.login-benefits {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.login-benefits li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: #e4e8ef;
}

.login-benefits li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.login-form-side {
  display: grid;
  place-items: center;
  padding: 42px;
}

.login-panel {
  width: min(100%, 460px);
}

.login-panel h1 {
  font-size: 2.4rem;
}

.login-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.password-field {
  position: relative;
}

.password-field .form-input {
  padding-right: 48px;
}

.pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
}

.pass-toggle svg {
  width: 18px;
  height: 18px;
  margin: auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.back-link svg {
  width: 15px;
  height: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 240ms;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

@media (max-width: 1080px) {
  .hero-inner,
  .split,
  .split.reverse,
  .page-hero .container,
  .feature-row,
  .feature-row:nth-child(even),
  .contact-layout,
  .login-page {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-copy,
  .feature-row:nth-child(even) .feature-visual {
    order: initial;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

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

  .tile-grid,
  .tile-grid.four,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-inner,
  .calculator {
    grid-template-columns: 1fr;
  }

  .login-side {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-h: 68px;
  }

  .container,
  .container--narrow {
    width: min(100% - 32px, var(--max));
  }

  .nav-inner {
    width: min(100% - 28px, 1240px);
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

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

  .nav-drawer {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    display: block;
    padding: 18px 16px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .nav-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-drawer-links {
    display: grid;
    gap: 6px;
  }

  .nav-drawer-links a {
    padding: 13px 12px;
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 800;
  }

  .nav-drawer-links a:hover {
    background: var(--paper);
  }

  .nav-drawer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .hero,
  .page-hero {
    padding-top: 110px;
  }

  .hero {
    height: auto;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
  }

  .page-hero h1 {
    font-size: 3.1rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-title,
  .cta h2 {
    font-size: 2.35rem;
  }

  .hero-meta,
  .screen-lower {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    height: 440px;
    max-height: 440px;
    min-height: 0;
  }

  .product-stage {
    position: static;
    height: 440px;
  }

  .product-screen {
    height: 100%;
    flex: none;
  }

  .screen-body {
    flex: none;
    min-height: 0;
    height: calc(100% - 44px);
  }

  .product-side {
    padding-bottom: 0;
  }

  .screen-body {
    grid-template-columns: 58px 1fr;
  }

  .screen-main {
    padding: 16px;
  }

  .workflow-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .feature-visual {
    min-height: auto;
  }

  .quote-band {
    padding: 30px;
  }

  .quote-band blockquote {
    font-size: 1.55rem;
  }
}

@media (max-width: 640px) {
  .hero-toast {
    display: none;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-lede,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .tile-grid,
  .tile-grid.four,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-copy h2 {
    font-size: 2rem;
  }

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

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .login-side,
  .login-form-side {
    padding: 28px 16px;
  }

  .login-side h2 {
    margin-top: 48px;
    font-size: 2.35rem;
  }
}

/* ─── About page ─────────────────────────────────────────────── */

.about-origin {
  background: var(--ink-2);
  padding: 88px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.about-origin-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 20px;
  padding: 0;
  font-style: normal;
}

.about-origin-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 0 auto 28px;
}

.about-origin-attr {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin: 0;
}

/* Mission visual card list */
.about-replaces-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-replaces-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.about-replaces-list li:last-child {
  border-bottom: none;
}

.about-replaces-divider {
  margin-top: 4px;
  padding-top: 17px !important;
}

.about-replaces-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  margin-top: 1px;
}

.about-replaces-icon--out {
  background: rgba(239,68,68,0.12);
  color: #ef4444;
}

.about-replaces-icon--in {
  background: rgba(34,197,94,0.12);
  color: #16875f;
}

.about-replaces-list strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.about-replaces-list span {
  font-size: 0.77rem;
  color: var(--muted);
}

/* Principles grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.about-value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}

.about-value-icon {
  width: 44px;
  height: 44px;
  background: rgba(35,87,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}

.about-value-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: 0.87rem;
  color: var(--muted-dark);
  line-height: 1.65;
  margin: 0;
}

/* Vision steps */
.about-vision-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 56px;
}

.about-vision-step {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.about-vision-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 14px;
}

.about-vision-step h3 {
  font-size: 1.05rem;
  font-weight: 820;
  color: var(--ink);
  margin-bottom: 10px;
}

.about-vision-step p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.about-vision-arrow {
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--line);
}

.about-vision-arrow svg {
  width: 20px;
  height: 20px;
}

/* Company block */
.about-company {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.about-company-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(35,87,255,0.12);
  border: 1px solid rgba(35,87,255,0.3);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 28px;
}

.about-company h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-company p {
  font-size: 0.97rem;
  color: var(--muted-dark);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* About responsive */
@media (max-width: 1080px) {
  .about-vision-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-vision-arrow {
    display: none;
  }
}

@media (max-width: 860px) {
  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-vision-steps {
    grid-template-columns: 1fr;
  }

  .about-origin {
    padding: 64px 0;
  }
}

/* ── Pricing page redesign ─────────────────────────────────── */

.pricing-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 36px;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-dark);
  font-size: 0.86rem;
  font-weight: 600;
}

.pricing-trust-item svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  stroke: var(--blue);
}

.pricing-plans-section {
  padding: 72px 0 80px;
  background: var(--ink);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.13);
}

.pricing-card--featured {
  border-color: rgba(35, 87, 255, 0.45);
  background: rgba(35, 87, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(35, 87, 255, 0.25), 0 20px 60px rgba(35, 87, 255, 0.12);
}

.pricing-card--featured:hover {
  background: rgba(35, 87, 255, 0.1);
  border-color: rgba(35, 87, 255, 0.6);
}

.pricing-card--enterprise {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.pricing-card-badge svg {
  width: 10px;
  height: 10px;
  fill: rgba(255, 255, 255, 0.85);
}

.pricing-card-name {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 850;
  font-family: var(--font-body);
}

.pricing-card-desc {
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.55;
  min-height: 56px;
}

.pricing-card-price {
  margin: 26px 0 0;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.price-rupee {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 750;
  align-self: flex-start;
  margin-top: 4px;
}

.price-amount {
  color: var(--white);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.price-period {
  display: block;
  margin-top: 8px;
  color: rgba(183, 190, 203, 0.6);
  font-size: 0.78rem;
}

.price-annual-note {
  display: none;
  margin-top: 4px;
  color: rgba(35, 87, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
}

.price-main--custom {
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
}

.pricing-card-price--custom .price-main--custom {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.pricing-card-features {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  flex: 1;
}

.pricing-card-features li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.4;
}

.pricing-feat-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(35, 87, 255, 0.18);
  flex-shrink: 0;
}

.pricing-feat-check svg {
  width: 9px;
  height: 9px;
  stroke: var(--blue);
}

.pricing-card--featured .pricing-feat-check {
  background: rgba(35, 87, 255, 0.28);
}

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

/* Comparison table – updated for dark section */
.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-featured {
  background: rgba(35, 87, 255, 0.04);
}

.comparison-table .ct {
  color: var(--green);
  font-weight: 700;
}

.comparison-table .cm {
  color: var(--muted);
}

/* Dark FAQ variant */
.faq-list--dark .faq-item--dark {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list--dark .faq-item--dark:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-q--dark {
  color: var(--white);
  background: transparent;
}

.faq-q--dark:hover {
  color: var(--muted-dark);
}

.faq-a--dark p {
  color: var(--muted-dark);
}

/* Pricing responsive */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing-card-desc {
    min-height: unset;
  }
}

@media (max-width: 640px) {
  .pricing-plans-section {
    padding: 48px 0 60px;
  }

  .pricing-hero-trust {
    gap: 10px 20px;
  }
}

/* ── Contact page redesign ─────────────────────────────────── */

.contact-hero {
  padding-bottom: 72px;
}

.contact-hero-chips {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  width: fit-content;
  backdrop-filter: blur(8px);
}

.contact-hero-chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 24px;
}

.contact-hero-chip:first-child {
  padding-left: 0;
}

.contact-hero-chip-val {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.contact-hero-chip-label {
  color: rgba(183, 190, 203, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
}

.contact-hero-chip-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Contact body */
.contact-body {
  padding: 80px 0 100px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.contact-body-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

/* Left column */
.contact-left .section-title {
  color: var(--ink);
  margin-top: 12px;
}

.contact-left .lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-steps {
  display: grid;
  gap: 0;
  margin-top: 36px;
  counter-reset: none;
  list-style: none;
  padding: 0;
}

.contact-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-step:first-child {
  border-top: 1px solid var(--line);
}

.contact-step-num {
  padding-top: 2px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}

.contact-step strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
}

.contact-step p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-direct {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-direct svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: var(--blue);
}

.contact-email-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}

.contact-email-link:hover {
  opacity: 0.75;
}

/* Right column — form card */
.contact-form-card {
  padding: 36px 32px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-form-header {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-form-title {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 850;
  font-family: var(--font-body);
}

.contact-form-header p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Light form variants (--dark classes now render as light) */
.form-label--dark {
  color: var(--ink-3);
}

.form-input--dark,
.form-textarea--dark,
.form-select--dark {
  border-color: #cfc8bc;
  color: var(--ink);
  background: var(--white);
}

.form-input--dark:focus,
.form-textarea--dark:focus,
.form-select--dark:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(35, 87, 255, 0.1);
}

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

.contact-submit {
  width: 100%;
}

/* Contact responsive */
@media (max-width: 900px) {
  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-hero-chips {
    flex-wrap: wrap;
    gap: 16px;
  }

  .contact-hero-chip-sep {
    display: none;
  }

  .contact-hero-chip {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .contact-body {
    padding: 52px 0 72px;
  }

  .contact-form-card {
    padding: 24px 20px 20px;
  }
}

/* ── Security page ─────────────────────────────────────────── */

.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.sec-card {
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.sec-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.sec-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(35, 87, 255, 0.14);
}

.sec-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}

.sec-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 780;
  margin-bottom: 10px;
}

.sec-card p {
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .sec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Legal pages (privacy / terms) ────────────────────────── */

.legal-hero {
  padding-bottom: 72px;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-meta {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

.legal-body {
  padding: 72px 0 100px;
  background: var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* Table of contents */
.legal-toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.legal-toc-title {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-toc ol {
  display: grid;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.legal-toc li {
  counter-increment: toc;
}

.legal-toc a {
  display: block;
  padding: 4px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s;
}

.legal-toc a:hover {
  color: var(--blue);
}

/* Prose */
.legal-prose {
  display: grid;
  gap: 48px;
}

.legal-prose section {
  display: grid;
  gap: 16px;
}

.legal-prose h2 {
  font-size: 1.35rem;
  font-weight: 820;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.legal-prose h3 {
  font-size: 0.97rem;
  font-weight: 750;
  color: var(--ink);
  margin-top: 4px;
}

.legal-prose p {
  color: var(--ink-3);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-prose ul,
.legal-prose ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  list-style: disc;
}

.legal-prose li {
  color: var(--ink-3);
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-prose a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.legal-prose a:hover {
  text-decoration: underline;
}

.legal-contact-block {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-3);
  font-size: 0.92rem;
  line-height: 1.8;
}

.legal-contact-block strong {
  color: var(--ink);
}

/* Legal responsive */
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .legal-body {
    padding: 48px 0 72px;
  }
}
