:root {
  --ink: #171521;
  --muted: #706a78;
  --purple-950: #1e0536;
  --purple-900: #290548;
  --purple-800: #3a0765;
  --purple-700: #4a087a;
  --purple-600: #6415a0;
  --purple-100: #f1e8f7;
  --purple-50: #f8f3fb;
  --green-800: #075c35;
  --green-700: #087a43;
  --green-600: #0b9251;
  --green-100: #def3e7;
  --green-50: #f0f9f4;
  --cream: #f7f5f0;
  --warm: #eee8de;
  --white: #fff;
  --line: #e6e1e8;
  --danger: #b4233d;
  --danger-bg: #fff0f2;
  --amber: #9a5b00;
  --amber-bg: #fff5dd;
  --shadow-sm: 0 8px 25px rgba(29, 7, 47, 0.06);
  --shadow-md: 0 20px 55px rgba(29, 7, 47, 0.12);
  --shadow-lg: 0 40px 90px rgba(29, 7, 47, 0.19);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --font-display: "Sora", "Avenir Next", sans-serif;
  --font-body: "Manrope", "Avenir Next", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

svg {
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(11, 146, 81, 0.36);
  outline-offset: 3px;
}

.app-shell {
  min-height: 100vh;
}

.brand-logo {
  width: 214px;
  height: auto;
}

.brand-logo.small {
  width: 174px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

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

.micro {
  color: var(--muted);
  font-size: 12px;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.btn {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 12px 24px rgba(8, 122, 67, 0.22);
}

.btn-primary:hover {
  background: var(--green-800);
  box-shadow: 0 15px 30px rgba(8, 122, 67, 0.27);
}

.btn-purple {
  color: #fff;
  background: var(--purple-700);
  box-shadow: 0 12px 24px rgba(74, 8, 122, 0.22);
}

.btn-purple:hover {
  background: var(--purple-800);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.btn-secondary:hover {
  border-color: rgba(74, 8, 122, 0.3);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  min-height: 42px;
  padding: 8px 12px;
  color: var(--purple-700);
  background: transparent;
}

.btn-danger {
  color: var(--danger);
  border-color: #f0c5ce;
  background: var(--danger-bg);
}

.btn-lg {
  min-height: 56px;
  padding-inline: 25px;
  border-radius: 16px;
}

.btn-sm {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 11px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.chip,
.status-pill {
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.chip-green,
.status-green {
  color: var(--green-800);
  border-color: #c6e8d4;
  background: var(--green-100);
}

.chip-purple,
.status-purple {
  color: var(--purple-700);
  border-color: #dfcaec;
  background: var(--purple-100);
}

.chip-amber,
.status-amber {
  color: var(--amber);
  border-color: #efd8a3;
  background: var(--amber-bg);
}

.status-red {
  color: #a82138;
  border-color: #f0c4cd;
  background: #fff0f3;
}

.status-neutral {
  color: #514b57;
  border-color: #ded8e1;
  background: #f3f0f3;
}

.welcome-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 5%, rgba(11, 146, 81, 0.1), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(74, 8, 122, 0.14), transparent 28%),
    var(--cream);
}

.welcome-nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.prototype-badge {
  padding: 7px 12px;
  border: 1px solid rgba(74, 8, 122, 0.14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--purple-700);
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
}

.welcome-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 630px;
  margin: 30px auto 60px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
}

.welcome-copy {
  position: relative;
  z-index: 2;
  animation: reveal-up 700ms both;
}

.welcome-copy h1 {
  color: var(--purple-950);
}

.welcome-copy h1 .accent {
  color: var(--green-700);
  position: relative;
}

.welcome-copy h1 .accent::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  content: "";
  opacity: 0.18;
  transform: rotate(-1.5deg);
}

.welcome-lede {
  max-width: 570px;
  margin-bottom: 30px;
  color: #554e5b;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.12fr 1fr .84fr;
  gap: 12px;
}

.hero-actions .btn {
  min-width: 0;
  padding-inline: 14px;
  font-size: 13px;
  white-space: nowrap;
}

.trust-row {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #413a46;
  font-size: 13px;
  font-weight: 700;
}

.trust-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-700);
  background: var(--green-100);
}

.hero-visual {
  min-height: 590px;
  position: relative;
  animation: reveal-scale 850ms 120ms both;
}

.hero-photo-shell {
  position: absolute;
  inset: 22px 8px 0 50px;
  overflow: hidden;
  border-radius: 220px 220px 34px 34px;
  background: var(--warm);
  box-shadow: var(--shadow-lg);
}

.hero-photo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  transform: scale(1.08);
}

.hero-orbit {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(74, 8, 122, 0.25);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-12deg);
}

.hero-orbit::after {
  width: 17px;
  height: 17px;
  position: absolute;
  top: 91px;
  right: 22px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--green-600);
  content: "";
  box-shadow: 0 8px 18px rgba(8, 122, 67, 0.32);
}

.floating-match {
  width: 252px;
  padding: 17px;
  position: absolute;
  right: -26px;
  bottom: 60px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  animation: float 4s ease-in-out infinite;
}

.floating-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.floating-match strong {
  font-family: var(--font-display);
  font-size: 15px;
}

.match-ring {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: conic-gradient(var(--green-600) 0 96%, #e9e5ea 96% 100%);
  font-size: 11px;
  font-weight: 900;
}

.match-ring::before {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  content: "96%";
}

.floating-foot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.floating-24h {
  width: 84px;
  height: 84px;
  position: absolute;
  top: 72px;
  left: 4px;
  border: 10px solid rgba(255,255,255,.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--purple-700);
  background: #fff;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
}

.welcome-proof {
  padding: 80px 20px;
  color: white;
  background: var(--purple-950);
  position: relative;
  overflow: hidden;
}

.welcome-proof::before {
  width: 540px;
  height: 540px;
  position: absolute;
  top: -310px;
  right: -80px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}

.proof-inner {
  width: min(1120px, 100%);
  margin: auto;
  position: relative;
  z-index: 1;
}

.proof-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.proof-heading h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.proof-heading p {
  color: rgba(255,255,255,.66);
  font-size: 17px;
}

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

.proof-card {
  min-height: 235px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  transition: background 200ms ease, transform 200ms ease;
}

.proof-card:hover {
  background: rgba(255,255,255,.085);
  transform: translateY(-5px);
}

.proof-card .number {
  margin-bottom: 48px;
  color: #65dfa2;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.proof-card h3 {
  font-size: 21px;
}

.proof-card p {
  margin: 0;
  color: rgba(255,255,255,.62);
}

.demo-disclaimer {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #d8d0dd;
  background: #12031f;
  font-size: 12px;
}

/* Product shell */
.product-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  background: #f7f6f8;
}

.sidebar {
  height: 100vh;
  padding: 25px 17px 20px;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e8e4ea;
  background: rgba(255,255,255,.91);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.sidebar .brand-logo {
  margin: 0 8px 35px;
}

.side-label {
  margin: 0 11px 9px;
  color: #9a939e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.side-nav {
  display: grid;
  gap: 5px;
}

.side-link {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 0;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #625b68;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  transition: background 170ms ease, color 170ms ease, transform 170ms ease;
}

.side-link:hover {
  color: var(--purple-700);
  background: var(--purple-50);
  transform: translateX(2px);
}

.side-link.active {
  color: var(--purple-700);
  background: var(--purple-100);
}

.side-link .nav-badge {
  min-width: 22px;
  height: 22px;
  margin-left: auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--purple-700);
  font-size: 10px;
}

.sidebar-bottom {
  margin-top: auto;
}

.support-mini {
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(145deg, var(--purple-900), var(--purple-700));
}

.support-mini strong,
.support-mini span {
  display: block;
}

.support-mini strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 13px;
}

.support-mini span {
  color: rgba(255,255,255,.7);
  font-size: 11px;
}

.product-main {
  min-width: 0;
}

.topbar {
  height: 76px;
  padding: 0 34px;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(230,225,232,.88);
  background: rgba(247,246,248,.88);
  backdrop-filter: blur(17px);
  z-index: 15;
}

.topbar-left,
.topbar-right,
.user-box {
  display: flex;
  align-items: center;
}

.topbar-left {
  gap: 12px;
}

.topbar-right {
  gap: 9px;
}

.topbar-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: white;
  cursor: pointer;
  position: relative;
}

.icon-button .dot {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 8px;
  right: 8px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--green-600);
}

.user-box {
  min-height: 44px;
  padding: 5px 7px 5px 12px;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
}

.user-box-copy {
  text-align: right;
  line-height: 1.2;
}

.user-box-copy strong,
.user-box-copy span {
  display: block;
}

.user-box-copy strong {
  font-size: 12px;
}

.user-box-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: linear-gradient(135deg, var(--purple-700), var(--green-600));
  font-size: 11px;
  font-weight: 900;
}

.mobile-logo,
.mobile-bottom-nav,
.mobile-menu-button {
  display: none;
}

.page {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 34px;
  animation: reveal-up 360ms both;
}

.page-head {
  margin-bottom: 27px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.page-head h1 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.2vw, 43px);
  line-height: 1.1;
}

.page-head p {
  margin: 0;
  color: var(--muted);
}

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

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, .72fr);
  gap: 19px;
}

.card {
  border: 1px solid rgba(224,219,227,.85);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
}

.card-pad {
  padding: 22px;
}

.welcome-panel {
  min-height: 285px;
  padding: 31px;
  position: relative;
  overflow: hidden;
  color: white;
  border: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(76, 229, 151, .24), transparent 28%),
    linear-gradient(135deg, var(--purple-950), var(--purple-700));
  box-shadow: var(--shadow-md);
}

.welcome-panel::before,
.welcome-panel::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  content: "";
}

.welcome-panel::before {
  width: 340px;
  height: 340px;
  right: -85px;
  bottom: -180px;
}

.welcome-panel::after {
  width: 210px;
  height: 210px;
  right: -10px;
  bottom: -120px;
}

.welcome-panel-content {
  max-width: 550px;
  position: relative;
  z-index: 1;
}

.welcome-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3vw, 40px);
}

.welcome-panel p {
  max-width: 500px;
  margin-bottom: 25px;
  color: rgba(255,255,255,.7);
  font-size: 15px;
}

.welcome-panel .btn {
  color: var(--purple-950);
  background: #75e2ab;
}

.welcome-panel .btn:hover {
  background: #91edbd;
}

.live-orbit {
  width: 180px;
  height: 180px;
  position: absolute;
  right: 20px;
  top: 13px;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.live-orbit::before {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 15px;
  right: 22px;
  border-radius: 50%;
  background: #75e2ab;
  content: "";
  box-shadow: 0 0 0 7px rgba(117,226,171,.12);
}

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

.quick-card {
  min-height: 142px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  text-align: left;
}

.quick-card:hover {
  border-color: rgba(74,8,122,.22);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.quick-icon {
  width: 39px;
  height: 39px;
  margin-bottom: 22px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--purple-700);
  background: var(--purple-100);
}

.quick-card:nth-child(2) .quick-icon {
  color: var(--green-800);
  background: var(--green-100);
}

.quick-card:nth-child(3) .quick-icon {
  color: var(--amber);
  background: var(--amber-bg);
}

.quick-card strong,
.quick-card span {
  display: block;
}

.quick-card strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.quick-card span {
  color: var(--muted);
  font-size: 11px;
}

.section-title {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.section-title h2,
.section-title h3 {
  margin: 0;
}

.section-title h2 {
  font-size: 22px;
}

.side-stack {
  display: grid;
  gap: 16px;
}

.next-care-card {
  padding: 21px;
}

.care-date {
  width: 57px;
  height: 63px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--purple-700);
  background: var(--purple-100);
  line-height: 1;
}

.care-date strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.care-date span {
  margin-top: -8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.care-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.care-row-copy {
  min-width: 0;
}

.care-row-copy strong,
.care-row-copy span {
  display: block;
}

.care-row-copy strong {
  font-size: 13px;
}

.care-row-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.connection-card {
  padding: 23px;
  color: white;
  background: var(--green-800);
  border: 0;
  position: relative;
  overflow: hidden;
}

.connection-card::after {
  width: 120px;
  height: 120px;
  position: absolute;
  right: -50px;
  bottom: -48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 30px rgba(255,255,255,.035);
}

.connection-card .big {
  margin: 7px 0 3px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}

.connection-card p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.flow-mini {
  padding: 20px;
}

.flow-step {
  padding: 11px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
}

.flow-step + .flow-step {
  border-top: 1px solid #eeeaf0;
}

.flow-dot {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: 10px;
  font-weight: 900;
}

.flow-step.done .flow-dot {
  color: var(--green-800);
  background: var(--green-100);
}

.flow-step strong {
  display: block;
  font-size: 12px;
}

.flow-step span {
  color: var(--muted);
  font-size: 10px;
}

/* Forms and wizard */
.wizard-shell {
  max-width: 980px;
  margin: 0 auto;
}

.wizard-top {
  margin-bottom: 23px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.wizard-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3dee6;
}

.wizard-progress.active,
.wizard-progress.done {
  background: var(--green-600);
}

.wizard-card {
  padding: clamp(22px, 4vw, 42px);
}

.wizard-kicker {
  margin-bottom: 12px;
  color: var(--purple-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wizard-card h2 {
  max-width: 710px;
  font-size: clamp(26px, 3.7vw, 40px);
}

.wizard-lede {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
}

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

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label,
.field-label {
  color: #3c3542;
  font-size: 12px;
  font-weight: 800;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #ded8e1;
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--purple-600);
  outline: none;
  box-shadow: 0 0 0 4px rgba(100,21,160,.09);
}

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

.option-card {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  background: white;
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.option-card:hover {
  border-color: rgba(74,8,122,.34);
  transform: translateY(-2px);
}

.option-card.selected {
  color: var(--purple-700);
  border-color: var(--purple-600);
  background: var(--purple-50);
  box-shadow: inset 0 0 0 1px rgba(74,8,122,.06);
}

.option-card strong {
  font-size: 12px;
}

.option-card .option-check {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  place-items: center;
}

.option-card.selected .option-check {
  color: white;
  border-color: var(--purple-700);
  background: var(--purple-700);
}

.recommendation-box {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #bde5ce;
  border-radius: 17px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--green-50);
}

.recommendation-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
}

.recommendation-box strong,
.recommendation-box span {
  display: block;
}

.recommendation-box strong {
  color: var(--green-800);
  font-size: 13px;
}

.recommendation-box span {
  margin-top: 4px;
  color: #4c695a;
  font-size: 11px;
}

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

.price-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 19px;
}

.market-reference {
  padding: 22px;
  border-radius: 18px;
  color: white;
  background: var(--purple-950);
  position: relative;
  overflow: hidden;
}

.market-reference::after {
  width: 120px;
  height: 120px;
  position: absolute;
  right: -38px;
  top: -48px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 25px rgba(255,255,255,.03);
}

.market-reference span,
.market-reference strong,
.market-reference small {
  display: block;
}

.market-reference span {
  color: rgba(255,255,255,.62);
  font-size: 11px;
}

.market-reference strong {
  margin: 7px 0 3px;
  font-family: var(--font-display);
  font-size: 34px;
}

.market-reference small {
  color: #83e8b7;
  font-size: 10px;
}

.price-summary {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fbfafc;
}

.price-row {
  padding: 7px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
}

.price-row + .price-row {
  border-top: 1px dashed #ddd7e0;
}

.price-row.total {
  color: var(--purple-700);
  font-weight: 850;
}

.soft-choice {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  cursor: pointer;
}

.soft-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--purple-700);
}

.soft-choice strong,
.soft-choice span {
  display: block;
}

.soft-choice strong {
  font-size: 12px;
}

.soft-choice span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.notice {
  padding: 15px 16px;
  border: 1px solid #e5dae9;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #554660;
  background: var(--purple-50);
  font-size: 11px;
}

/* Matching */
.match-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 20px;
}

.filter-strip {
  margin-bottom: 18px;
  padding: 13px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4e4754;
  background: white;
  font-size: 11px;
  font-weight: 750;
}

.profiles-list {
  display: grid;
  gap: 14px;
}

.profile-card {
  padding: 16px;
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.profile-card:hover {
  border-color: rgba(74,8,122,.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.profile-photo {
  width: 105px;
  height: 126px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--warm);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-main {
  min-width: 0;
}

.profile-name-row {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.profile-name-row h3 {
  margin: 0;
  font-size: 17px;
}

.verified {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green-600);
}

.profile-meta {
  margin-bottom: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
}

.profile-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.profile-tag {
  padding: 5px 8px;
  border-radius: 8px;
  color: #5d5562;
  background: #f4f1f5;
  font-size: 9px;
  font-weight: 700;
}

.profile-actions {
  min-width: 130px;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score strong,
.score span {
  display: block;
  text-align: right;
}

.score strong {
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
}

.score span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.map-card {
  min-height: 420px;
  padding: 18px;
  position: sticky;
  top: 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(8,122,67,.13), transparent 26%),
    radial-gradient(circle at 72% 75%, rgba(74,8,122,.12), transparent 28%),
    #f1eee8;
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(27deg, transparent 48%, rgba(74,8,122,.15) 49%, transparent 50%),
    linear-gradient(-38deg, transparent 48%, rgba(8,122,67,.12) 49%, transparent 50%);
  background-size: 76px 76px, 105px 105px;
}

.map-pin {
  width: 34px;
  height: 34px;
  position: absolute;
  border: 5px solid white;
  border-radius: 50% 50% 50% 8px;
  background: var(--green-600);
  box-shadow: 0 8px 18px rgba(8,122,67,.25);
  transform: rotate(-45deg);
}

.map-pin::after {
  width: 7px;
  height: 7px;
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  background: white;
  content: "";
}

.pin-one { top: 30%; left: 25%; }
.pin-two { top: 53%; left: 61%; background: var(--purple-700); }
.pin-three { top: 68%; left: 35%; }

.map-overlay {
  padding: 15px;
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 15px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.map-overlay strong,
.map-overlay span {
  display: block;
}

.map-overlay strong {
  font-size: 12px;
}

.map-overlay span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

/* Profile detail */
.profile-detail-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 20px;
}

.profile-identity {
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 96px;
}

.profile-identity-photo {
  height: 305px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--warm);
}

.profile-identity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-identity h2 {
  margin-bottom: 4px;
  font-size: 26px;
}

.rating-line {
  margin: 13px 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4b444f;
  font-size: 12px;
}

.stars {
  color: #d58900;
  letter-spacing: 1px;
}

.profile-content {
  display: grid;
  gap: 16px;
}

.detail-section {
  padding: 23px;
}

.detail-section h3 {
  margin-bottom: 15px;
}

.match-explainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.match-point {
  padding: 14px;
  border-radius: 14px;
  color: var(--green-800);
  background: var(--green-50);
}

.match-point strong,
.match-point span {
  display: block;
}

.match-point strong {
  margin-top: 14px;
  font-size: 11px;
}

.match-point span {
  margin-top: 3px;
  color: #617067;
  font-size: 9px;
}

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

.credential-row {
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.credential-row + .credential-row {
  border-top: 1px solid var(--line);
}

.credential-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--purple-700);
  background: var(--purple-100);
}

.credential-row strong,
.credential-row span {
  display: block;
}

.credential-row strong { font-size: 11px; }
.credential-row span { color: var(--muted); font-size: 9px; }

.testimonial {
  padding: 20px;
  border-left: 4px solid var(--green-600);
  border-radius: 0 15px 15px 0;
  background: var(--green-50);
  color: #425248;
  font-size: 12px;
}

/* Negotiation */
.negotiation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 325px;
  gap: 20px;
}

.chat-card {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-head {
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.chat-person {
  display: flex;
  align-items: center;
  gap: 11px;
}

.chat-person-photo {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 13px;
}

.chat-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-person strong,
.chat-person span {
  display: block;
}

.chat-person strong { font-size: 12px; }
.chat-person span { color: var(--green-700); font-size: 9px; }

.chat-body {
  min-height: 410px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fbfafc;
}

.chat-time {
  margin: 0 auto;
  color: #9a939e;
  font-size: 9px;
}

.bubble {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: 16px 16px 16px 5px;
  color: #49414e;
  background: white;
  box-shadow: 0 4px 15px rgba(29,7,47,.05);
  font-size: 11px;
}

.bubble.mine {
  margin-left: auto;
  border-radius: 16px 16px 5px 16px;
  color: white;
  background: var(--purple-700);
}

.offer-bubble {
  max-width: 88%;
  padding: 16px;
  border: 1px solid #d8c4e5;
  border-radius: 16px;
  background: var(--purple-50);
}

.offer-bubble.mine {
  margin-left: auto;
  border-color: #bddfc9;
  background: var(--green-50);
}

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

.offer-bubble-head span {
  color: var(--muted);
  font-size: 9px;
}

.offer-amount {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
}

.offer-detail {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.chat-composer {
  padding: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
}

.chat-composer .input {
  min-height: 43px;
}

.summary-card {
  padding: 21px;
  align-self: start;
  position: sticky;
  top: 96px;
}

.summary-block {
  padding: 14px 0;
}

.summary-block + .summary-block {
  border-top: 1px solid var(--line);
}

.summary-block > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.summary-block > strong {
  margin-top: 4px;
  display: block;
  font-size: 13px;
}

.summary-list {
  margin: 7px 0 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #5c5561;
  font-size: 10px;
}

.accept-box {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #c5e7d2;
  border-radius: 15px;
  background: var(--green-50);
}

.accept-box p {
  margin-bottom: 12px;
  color: #486254;
  font-size: 10px;
}

/* Service and report */
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 340px;
  gap: 20px;
}

.service-hero {
  padding: 26px;
  color: white;
  border: 0;
  background: var(--purple-950);
  position: relative;
  overflow: hidden;
}

.service-hero::after {
  width: 260px;
  height: 260px;
  position: absolute;
  right: -90px;
  bottom: -130px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(255,255,255,.025);
}

.service-hero h2 {
  margin: 10px 0 8px;
  font-size: 31px;
}

.service-hero p {
  max-width: 530px;
  color: rgba(255,255,255,.68);
}

.service-timeline {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.service-timeline::before {
  height: 2px;
  position: absolute;
  top: 15px;
  right: 12%;
  left: 12%;
  background: rgba(255,255,255,.18);
  content: "";
}

.service-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  position: relative;
  z-index: 1;
}

.service-step-dot {
  width: 31px;
  height: 31px;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--purple-950);
}

.service-step.done,
.service-step.active {
  color: white;
}

.service-step.done .service-step-dot {
  border-color: #76e5ad;
  color: var(--purple-950);
  background: #76e5ad;
}

.service-step.active .service-step-dot {
  border-color: white;
  box-shadow: 0 0 0 6px rgba(255,255,255,.1);
}

.service-data {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.data-card {
  padding: 18px;
}

.data-card span,
.data-card strong,
.data-card small {
  display: block;
}

.data-card span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.data-card strong {
  margin: 8px 0 2px;
  font-family: var(--font-display);
  font-size: 22px;
}

.data-card small {
  color: var(--muted);
  font-size: 9px;
}

.active-timer {
  margin-top: 17px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.timer-copy {
  display: flex;
  align-items: center;
  gap: 15px;
}

.timer-pulse {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green-600);
  position: relative;
}

.timer-pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--green-600);
  border-radius: 50%;
  content: "";
  animation: pulse 1.8s ease-out infinite;
}

.timer-copy strong,
.timer-copy span {
  display: block;
}

.timer-copy strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.timer-copy span {
  color: var(--muted);
  font-size: 10px;
}

.professional-mini {
  padding: 20px;
}

.professional-header {
  display: flex;
  align-items: center;
  gap: 13px;
}

.professional-header .profile-photo {
  width: 62px;
  height: 72px;
}

.professional-header h3 {
  margin: 0;
  font-size: 15px;
}

.professional-header p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.address-box {
  margin-top: 16px;
  padding: 15px;
  border-radius: 14px;
  background: #f6f3f7;
}

.address-box span,
.address-box strong {
  display: block;
}

.address-box span { color: var(--muted); font-size: 9px; }
.address-box strong { margin-top: 4px; font-size: 11px; }

.support-callout {
  padding: 19px;
  color: white;
  border: 0;
  background: var(--green-800);
}

.support-callout p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 10px;
}

.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  gap: 20px;
}

.receipt {
  padding: clamp(24px, 4vw, 38px);
  position: relative;
  overflow: hidden;
}

.receipt::before {
  height: 7px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(90deg, var(--green-600) 0 68%, var(--purple-700) 68% 100%);
  content: "";
}

.receipt-head {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.receipt-id {
  color: var(--muted);
  font-size: 10px;
}

.receipt-table {
  width: 100%;
  border-collapse: collapse;
}

.receipt-table th,
.receipt-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  text-align: left;
}

.receipt-table th {
  color: var(--muted);
  font-weight: 700;
}

.receipt-table td:last-child,
.receipt-table th:last-child {
  text-align: right;
}

.receipt-total {
  margin-top: 24px;
  padding: 18px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--green-800);
  background: var(--green-50);
}

.receipt-total strong {
  font-family: var(--font-display);
  font-size: 26px;
}

.payment-separation {
  display: grid;
  gap: 15px;
}

.payment-card {
  padding: 21px;
}

.payment-card.professional-payment {
  border-color: #bfe4cc;
}

.payment-card.connect-payment {
  border-color: #dac6e7;
}

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

.payment-value {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 750;
}

.pix-box {
  margin: 14px 0;
  padding: 13px;
  border: 1px dashed #aed6bd;
  border-radius: 12px;
  background: var(--green-50);
}

.pix-box span,
.pix-box strong {
  display: block;
}

.pix-box span { color: var(--muted); font-size: 9px; }
.pix-box strong { margin-top: 3px; font-size: 11px; word-break: break-all; }

/* Financial intelligence */
.finance-page {
  max-width: 1360px;
}

.finance-summary-grid {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(175px, .72fr));
  gap: 14px;
}

.finance-hero-card {
  min-height: 175px;
  padding: 23px;
  color: white;
  border: 0;
  background:
    radial-gradient(circle at 90% 0, rgba(117, 226, 171, .22), transparent 34%),
    var(--purple-950);
  overflow: hidden;
  position: relative;
}

.finance-hero-card::after {
  width: 180px;
  height: 180px;
  position: absolute;
  right: -85px;
  bottom: -105px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.025);
  content: "";
}

.finance-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.finance-label {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 700;
}

.finance-hero-top strong {
  margin-top: 5px;
  display: block;
  font-family: var(--font-display);
  font-size: 35px;
  letter-spacing: -.03em;
}

.finance-hero-top p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 10px;
}

.finance-up {
  color: #75e2ab;
  font-weight: 800;
}

.finance-hero-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #75e2ab;
  background: rgba(255,255,255,.07);
}

.goal-line {
  height: 7px;
  margin-top: 19px;
  border-radius: 99px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}

.goal-line span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-600), #75e2ab);
}

.goal-copy {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.56);
  font-size: 9px;
}

.goal-copy strong { color: rgba(255,255,255,.82); }

.finance-kpi {
  min-height: 175px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.finance-kpi::before {
  width: 5px;
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  border-radius: 0 5px 5px 0;
  background: var(--green-600);
  content: "";
}

.finance-kpi.attention::before { background: #d99718; }
.finance-kpi > span { color: var(--muted); font-size: 10px; font-weight: 750; }
.finance-kpi > strong { margin: 9px 0 6px; font-family: var(--font-display); font-size: 25px; }
.finance-kpi > small { color: var(--muted); font-size: 9px; line-height: 1.45; }
.finance-kpi > small.positive { color: var(--green-700); font-weight: 750; }

.finance-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 18px;
}

.finance-main-stack,
.finance-side-stack {
  display: grid;
  gap: 18px;
}

.finance-side-stack {
  position: sticky;
  top: 92px;
}

.finance-chart-card,
.finance-table-card,
.finance-flow-card,
.receivable-card,
.finance-insight-card {
  padding: 22px;
}

.finance-chart-card .section-title,
.finance-table-card .section-title {
  align-items: flex-start;
}

.finance-chart-card .section-title {
  display: grid;
  gap: 10px;
}

.finance-chart-card .section-title h2,
.finance-table-card .section-title h2 {
  margin-bottom: 4px;
  font-size: 20px;
}

.finance-chart-card .section-title p,
.finance-table-card .section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.finance-legend {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 9px;
}

.finance-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.finance-legend i,
.receivable-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.finance-legend i.gmv { background: #b9e4cd; }
.finance-legend i.fee { background: var(--purple-700); }

.finance-chart {
  height: 218px;
  padding: 16px 10px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 14px;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 53px, #f0edf2 54px);
}

.finance-bar-group {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 24px;
  align-items: end;
  justify-items: center;
}

.finance-bars {
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}

.finance-bar {
  width: 18px;
  min-height: 8px;
  border-radius: 7px 7px 2px 2px;
  display: block;
  transition: transform 180ms ease, filter 180ms ease;
}

.finance-bar-group:hover .finance-bar { transform: translateY(-4px); filter: saturate(1.15); }
.finance-bar.gmv { background: linear-gradient(#d9efe3, #a9dbc0); }
.finance-bar.fee { background: linear-gradient(#7418ac, var(--purple-700)); }
.finance-bar-group.current .finance-bar.fee { box-shadow: 0 7px 18px rgba(74,8,122,.28); }
.finance-bar-group > strong { color: var(--muted); font-size: 9px; }

.finance-chart-note {
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 13px;
  display: grid;
  gap: 3px;
  color: var(--green-800);
  background: var(--green-50);
  font-size: 10px;
}

.finance-chart-note span { color: #607268; font-size: 9px; }

.finance-table-wrap { overflow-x: auto; }

.finance-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.finance-table th,
.finance-table td {
  padding: 13px 9px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  text-align: left;
  white-space: nowrap;
}

.finance-table th {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.finance-table tbody tr:last-child td { border-bottom: 0; }
.finance-table tbody tr:hover td { background: #fbfafc; }

.category-mark {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 3px;
  display: inline-block;
}

.category-mark.purple { background: var(--purple-700); }
.category-mark.green { background: var(--green-600); }
.category-mark.mint { background: #75e2ab; }

.movements-table td:first-child span {
  margin-top: 2px;
  display: block;
  color: var(--muted);
  font-size: 8px;
}

.table-link {
  border: 0;
  color: var(--purple-700);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.finance-flow-card {
  color: white;
  border: 0;
  background: var(--purple-950);
}

.finance-flow-card .section-title { margin-bottom: 19px; }

.money-flow {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  background: rgba(255,255,255,.055);
}

.money-flow > span {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #75e2ab;
  background: rgba(117,226,171,.13);
}

.money-flow strong,
.money-flow small,
.money-flow b { display: block; }
.money-flow strong { font-family: var(--font-display); font-size: 17px; }
.money-flow small { margin-top: 2px; color: rgba(255,255,255,.55); font-size: 8px; }
.money-flow b { grid-column: 2; color: #75e2ab; font-size: 8px; }

.flow-divider {
  height: 22px;
  display: grid;
  place-items: center;
  color: #75e2ab;
  font-size: 15px;
  font-weight: 900;
}

.finance-flow-card > p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.57);
  font-size: 9px;
  line-height: 1.55;
}

.receivable-card .section-title { margin-bottom: 17px; }

.receivable-row {
  margin: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
}

.receivable-row span { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.receivable-row i.paid { background: var(--green-600); }
.receivable-row i.open { background: #e2a127; }
.receivable-row i.late { background: #c72c47; }

.receivable-meter {
  height: 7px;
  margin-bottom: 16px;
  border-radius: 99px;
  background: #eee9f0;
  overflow: hidden;
}

.receivable-meter span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--green-600);
}

.finance-insight-card {
  background: linear-gradient(145deg, #f3fff8, #f7f1fb);
}

.finance-insight-card h3 {
  margin: 16px 0 7px;
  font-size: 19px;
}

.finance-insight-card p {
  color: var(--muted);
  font-size: 10px;
}

/* Professional dashboard */
.pro-hero {
  min-height: 285px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: center;
  gap: 24px;
  color: white;
  border: 0;
  background: linear-gradient(135deg, var(--purple-950), var(--purple-700));
  overflow: hidden;
}

.pro-hero-copy {
  position: relative;
  z-index: 1;
}

.pro-hero h2 {
  margin-bottom: 10px;
  font-size: 35px;
}

.pro-hero p {
  max-width: 560px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.68);
}

.pro-hero-photo {
  height: 265px;
  align-self: end;
  overflow: hidden;
  border-radius: 150px 150px 20px 20px;
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

.pro-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stats-row {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.stat-card {
  padding: 17px;
}

.stat-card span,
.stat-card strong,
.stat-card small {
  display: block;
}

.stat-card span { color: var(--muted); font-size: 9px; font-weight: 750; text-transform: uppercase; }
.stat-card strong { margin: 7px 0 1px; font-family: var(--font-display); font-size: 24px; }
.stat-card small { color: var(--green-700); font-size: 9px; font-weight: 800; }

.opportunity-card {
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.opportunity-head {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.opportunity-head h3 { margin: 0; }

.opportunity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  color: var(--muted);
  font-size: 10px;
}

.opportunity-value {
  min-width: 130px;
  text-align: right;
}

.opportunity-value strong,
.opportunity-value span {
  display: block;
}

.opportunity-value strong { color: var(--purple-700); font-family: var(--font-display); font-size: 22px; }
.opportunity-value span { color: var(--muted); font-size: 9px; }

/* Operations */
.ops-banner {
  margin-bottom: 18px;
  padding: 20px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  border: 0;
  background: var(--purple-950);
}

.ops-banner h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.ops-banner p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 11px;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .7fr);
  gap: 18px;
}

.funnel-card,
.queue-card,
.activity-card {
  padding: 21px;
}

.funnel-bars {
  min-height: 240px;
  display: flex;
  align-items: end;
  gap: 13px;
}

.funnel-bar-group {
  min-width: 0;
  flex: 1;
  text-align: center;
}

.funnel-bar {
  width: 100%;
  min-height: 18px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--purple-600), var(--purple-800));
}

.funnel-bar.green {
  background: linear-gradient(180deg, var(--green-600), var(--green-800));
}

.funnel-bar-group strong,
.funnel-bar-group span {
  display: block;
}

.funnel-bar-group strong {
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 14px;
}

.funnel-bar-group span {
  color: var(--muted);
  font-size: 8px;
}

.queue-list {
  display: grid;
  gap: 9px;
}

.queue-item {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.queue-level {
  width: 8px;
  align-self: stretch;
  border-radius: 999px;
  background: var(--amber);
}

.queue-level.red { background: var(--danger); }
.queue-level.green { background: var(--green-600); }

.queue-copy {
  min-width: 0;
  flex: 1;
}

.queue-copy strong,
.queue-copy span {
  display: block;
}

.queue-copy strong { font-size: 10px; }
.queue-copy span { margin-top: 2px; color: var(--muted); font-size: 9px; }

.activity-list {
  display: grid;
}

.activity-item {
  padding: 12px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
}

.activity-item + .activity-item {
  border-top: 1px solid var(--line);
}

.activity-dot {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
}

.activity-item strong,
.activity-item span {
  display: block;
}

.activity-item strong { font-size: 10px; }
.activity-item span { margin-top: 2px; color: var(--muted); font-size: 8px; }
.activity-time { color: var(--muted); font-size: 8px; }

.settings-demo {
  padding: 20px;
}

.setting-row {
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.setting-row + .setting-row {
  border-top: 1px solid var(--line);
}

.setting-row strong,
.setting-row span { display: block; }
.setting-row strong { font-size: 10px; }
.setting-row span { margin-top: 2px; color: var(--muted); font-size: 8px; }

.toggle {
  width: 42px;
  height: 24px;
  padding: 3px;
  border: 0;
  border-radius: 999px;
  display: flex;
  justify-content: flex-end;
  background: var(--green-600);
  cursor: pointer;
}

.toggle::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  content: "";
  box-shadow: 0 2px 7px rgba(0,0,0,.2);
}

/* Modals, toast, helpers */
.role-modal {
  padding: 18px;
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(22,7,33,.65);
  backdrop-filter: blur(12px);
  z-index: 100;
  animation: fade-in 180ms both;
}

.role-dialog {
  width: min(760px, 100%);
  padding: 28px;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow-lg);
  animation: reveal-scale 250ms both;
}

.role-dialog-head {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.role-dialog h2 {
  margin-bottom: 6px;
  font-size: 29px;
}

.role-dialog p {
  margin: 0;
  color: var(--muted);
}

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

.role-card {
  min-height: 200px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: white;
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.role-card:hover {
  border-color: rgba(74,8,122,.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.role-card-icon {
  width: 47px;
  height: 47px;
  margin-bottom: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--purple-700);
  background: var(--purple-100);
}

.role-card:nth-child(2) .role-card-icon {
  color: var(--green-800);
  background: var(--green-100);
}

.role-card:nth-child(3) .role-card-icon {
  color: var(--amber);
  background: var(--amber-bg);
}

.role-card strong,
.role-card span {
  display: block;
}

.role-card strong { margin-bottom: 5px; font-size: 13px; }
.role-card span { color: var(--muted); font-size: 10px; }

.close-button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: white;
  cursor: pointer;
}

.toast-region {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
}

.toast {
  width: min(360px, calc(100vw - 40px));
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: var(--purple-950);
  box-shadow: var(--shadow-lg);
  font-size: 11px;
  animation: toast-in 250ms both;
}

.empty-placeholder {
  padding: 70px 25px;
  display: grid;
  place-items: center;
  text-align: center;
}

.empty-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 17px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--purple-700);
  background: var(--purple-100);
}

.empty-placeholder h2 {
  margin-bottom: 7px;
  font-size: 23px;
}

.empty-placeholder p {
  max-width: 440px;
  color: var(--muted);
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-scale {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  from { opacity: .7; transform: scale(.85); }
  to { opacity: 0; transform: scale(1.4); }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .welcome-hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .floating-match { right: 0; }
  .dashboard-grid,
  .match-layout,
  .negotiation-grid,
  .service-layout,
  .report-grid,
  .ops-grid,
  .finance-main-grid { grid-template-columns: 1fr; }
  .finance-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .finance-hero-card { grid-column: 1 / -1; }
  .finance-side-stack { position: static; grid-template-columns: repeat(2, 1fr); }
  .finance-side-stack > .notice { grid-column: 1 / -1; }
  .map-card,
  .summary-card,
  .profile-identity { position: static; }
  .map-card { min-height: 300px; }
  .profile-detail-grid { grid-template-columns: 280px 1fr; }
  .profile-identity-photo { height: 260px; }
}

@media (max-width: 860px) {
  .welcome-hero {
    margin-top: 8px;
    grid-template-columns: 1fr;
  }

  .welcome-copy { padding-top: 35px; }
  .hero-visual { min-height: 520px; }
  .hero-photo-shell { inset: 10px 25px 0; }
  .floating-24h { left: 5px; }
  .floating-match { right: 6px; bottom: 28px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 180px; }
  .proof-card .number { margin-bottom: 28px; }

  .product-layout { display: block; }
  .sidebar { display: none; }
  .topbar { height: 68px; padding: 0 20px; }
  .mobile-logo { width: 156px; display: block; }
  .topbar-title { display: none; }
  .user-box-copy { display: none; }
  .user-box { padding: 4px; border: 0; background: transparent; }
  .page { padding: 24px 20px 92px; }
  .mobile-bottom-nav {
    height: 70px;
    padding: 7px 12px max(7px, env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    z-index: 50;
  }
  .mobile-nav-link {
    border: 0;
    display: grid;
    place-items: center;
    gap: 2px;
    color: #827b87;
    background: transparent;
    font-size: 8px;
    font-weight: 800;
  }
  .mobile-nav-link.active { color: var(--purple-700); }
  .mobile-nav-link .icon { width: 19px; height: 19px; }
  .profile-detail-grid { grid-template-columns: 1fr; }
  .profile-identity { display: grid; grid-template-columns: 170px 1fr; gap: 17px; }
  .profile-identity-photo { height: 210px; margin: 0; }
  .form-grid.three { grid-template-columns: repeat(2, 1fr); }
  .price-composer { grid-template-columns: 1fr; }
  .pro-hero { grid-template-columns: 1fr 210px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 14px; }
  .welcome-nav { width: calc(100% - 28px); min-height: 76px; }
  .welcome-nav .brand-logo { width: 165px; }
  .prototype-badge span { display: none; }
  .welcome-hero { width: calc(100% - 30px); margin-bottom: 35px; }
  .welcome-copy h1 { font-size: 43px; }
  .welcome-lede { font-size: 15px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 430px; }
  .hero-photo-shell { inset: 5px 4px 0 26px; border-radius: 180px 180px 28px 28px; }
  .floating-match { width: 215px; padding: 14px; right: -3px; bottom: 22px; }
  .floating-24h { width: 68px; height: 68px; top: 42px; font-size: 17px; }
  .welcome-proof { padding-block: 55px; }
  .demo-disclaimer { align-items: flex-start; text-align: left; }

  .topbar { padding: 0 14px; }
  .mobile-logo { width: 142px; }
  .topbar-right .prototype-badge { display: none; }
  .page { padding: 21px 14px 88px; }
  .page-head { margin-bottom: 20px; display: block; }
  .page-head h1 { font-size: 29px; }
  .page-actions { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; }
  .welcome-panel { min-height: 335px; padding: 24px; }
  .welcome-panel h2 { font-size: 28px; }
  .live-orbit { right: -75px; top: -60px; }
  .quick-actions { grid-template-columns: 1fr; }
  .quick-card { min-height: 98px; display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 13px; }
  .quick-icon { margin: 0; grid-row: 1 / 3; }
  .quick-card strong { align-self: end; }
  .quick-card span { align-self: start; }

  .form-grid,
  .form-grid.three,
  .option-grid { grid-template-columns: 1fr; }
  .wizard-card { padding: 21px 17px; }
  .wizard-card h2 { font-size: 27px; }
  .wizard-footer { align-items: stretch; }
  .wizard-footer .btn { flex: 1; padding-inline: 12px; }
  .recommendation-box { grid-template-columns: auto 1fr; }
  .recommendation-box .chip { grid-column: 1 / -1; justify-self: start; }

  .filter-strip { overflow-x: auto; flex-wrap: nowrap; }
  .filter-chip { flex: 0 0 auto; }
  .profile-card { grid-template-columns: 78px 1fr; align-items: start; }
  .profile-photo { width: 78px; height: 92px; }
  .profile-actions { grid-column: 1 / -1; width: 100%; display: flex; align-items: center; justify-content: space-between; }
  .profile-actions .btn { flex: 1; }
  .score strong,
  .score span { text-align: left; }

  .profile-identity { display: block; }
  .profile-identity-photo { height: 300px; margin-bottom: 18px; }
  .match-explainer { grid-template-columns: 1fr; }
  .negotiation-grid { gap: 13px; }
  .chat-card { min-height: 540px; }
  .chat-body { min-height: 350px; padding: 17px; }
  .bubble { max-width: 88%; }
  .offer-bubble { max-width: 96%; }
  .chat-composer { flex-wrap: wrap; }
  .chat-composer .input { flex: 1; }

  .service-data { grid-template-columns: 1fr; }
  .active-timer { align-items: stretch; flex-direction: column; }
  .service-timeline { grid-template-columns: repeat(4, minmax(60px, 1fr)); overflow-x: auto; }
  .receipt-head { display: block; }
  .receipt-id { margin-top: 10px; }
  .receipt-table th:nth-child(2),
  .receipt-table td:nth-child(2) { display: none; }
  .pro-hero { min-height: 430px; padding: 23px; grid-template-columns: 1fr; }
  .pro-hero-photo { width: 180px; height: 190px; justify-self: end; margin-bottom: -24px; }
  .opportunity-card { grid-template-columns: 1fr; }
  .opportunity-value { text-align: left; display: flex; align-items: center; justify-content: space-between; }
  .stats-row { gap: 9px; }
  .stat-card { padding: 14px; }
  .funnel-bars { min-width: 480px; }
  .funnel-card { overflow-x: auto; }
  .finance-summary-grid { grid-template-columns: 1fr; }
  .finance-hero-card { grid-column: auto; }
  .finance-side-stack { grid-template-columns: 1fr; }
  .finance-side-stack > .notice { grid-column: auto; }
  .finance-chart-card,
  .finance-table-card,
  .finance-flow-card,
  .receivable-card,
  .finance-insight-card { padding: 18px; }
  .finance-chart { gap: 6px; padding-inline: 0; }
  .finance-bar { width: 11px; }
  .finance-legend { margin-top: 9px; flex-wrap: wrap; }
  .finance-chart-card .section-title { display: block; }

  .role-dialog { padding: 22px 17px; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 110px; display: grid; grid-template-columns: auto 1fr; column-gap: 13px; }
  .role-card-icon { margin: 0; grid-row: 1 / 3; }
  .role-card strong { align-self: end; }
  .role-card span { align-self: start; }
}

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