:root {
  --dream-white: #ffffff;
  --dream-ink: #131720;
  --dream-copy: #737987;
  --dream-muted: #8d93a0;
  --dream-line: #dfe3e9;
  --dream-line-strong: #ced4dc;
  --dream-blue: #004de6;
  --dream-blue-deep: #003dc1;
  --dream-blue-soft: #eef4ff;
  --dream-blue-soft-strong: #e5eeff;
  --dream-footer: #111821;
  --dream-ui: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--dream-white);
  color: var(--dream-ink);
  font-family: var(--dream-ui);
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
}

svg,
img {
  display: block;
}

.dream-skip {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.dream-skip:focus {
  transform: translateY(0);
}

.dream-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(28px, 3.1vw, 52px);
  color: #fff;
}

.dream-brand {
  justify-self: start;
  font-size: clamp(22px, 1.8vw, 29px);
  font-weight: 720;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.dream-nav {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4vw, 62px);
}

.dream-nav a {
  position: relative;
  padding: 30px 0 28px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.dream-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.dream-nav a:hover::after,
.dream-nav a:focus-visible::after {
  transform: scaleX(1);
}

.dream-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.dream-login-link {
  position: relative;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.dream-login-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.dream-login-link:hover::after,
.dream-login-link:focus-visible::after {
  transform: scaleX(1);
}

.dream-open-button {
  min-width: 138px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: #fff;
  color: #10151d;
  font-size: 14px;
  font-weight: 680;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(4, 36, 74, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dream-open-button:hover,
.dream-open-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(4, 36, 74, 0.23);
}

.dream-menu-button {
  display: grid;
  place-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #fff;
  transition: background 180ms ease;
}

.dream-menu-button:hover,
.dream-menu-button:focus-visible,
.dream-menu-button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
}

.dream-menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0;
  background: #fff;
  transition: opacity 180ms ease, transform 180ms ease;
}

.dream-menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.dream-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.dream-menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.dream-mobile-nav {
  position: fixed;
  z-index: 30;
  top: 72px;
  right: clamp(28px, 3.1vw, 52px);
  width: min(420px, calc(100% - 28px));
  max-height: calc(100dvh - 92px);
  padding: 10px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  background: rgba(10, 36, 68, 0.92);
  color: #fff;
  backdrop-filter: blur(18px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 255, 255, 0.55) transparent;
}

.dream-mobile-nav[hidden] {
  display: none;
}

.dream-mobile-nav nav {
  display: grid;
}

.dream-mobile-nav a {
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 17px;
  font-weight: 650;
  text-decoration: none;
}

.dream-mobile-nav a:hover,
.dream-mobile-nav a:focus-visible,
.dream-mobile-nav a.is-current {
  background: rgba(255, 255, 255, 0.08);
}

.dream-mobile-nav a.dream-menu-cta {
  margin: 10px 0 16px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: var(--dream-ink);
  text-align: center;
}

.dream-mobile-nav a.dream-menu-cta:hover,
.dream-mobile-nav a.dream-menu-cta:focus-visible {
  background: #f1f5fb;
}

.dream-menu-heading {
  padding: 8px 4px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dream-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(480px, 31.25vw, 620px);
  overflow: hidden;
  background-image: url("/assets/aximary-dream-sky.png");
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.dream-hero-copy {
  position: relative;
  z-index: 2;
  width: min(940px, calc(100% - 48px));
  padding-top: 54px;
  color: #fff;
  text-align: center;
}

.dream-hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.dream-hero-copy p {
  max-width: 580px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
  text-wrap: balance;
}

.dream-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 25px;
}

.dream-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.dream-button:hover,
.dream-button:focus-visible {
  transform: translateY(-2px);
}

.dream-button-light {
  background: #fff;
  color: #121820;
  box-shadow: 0 10px 28px rgba(4, 36, 74, 0.18);
}

.dream-button-outline {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 91, 174, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}

.dream-button-outline:hover,
.dream-button-outline:focus-visible {
  background: rgba(8, 91, 174, 0.3);
}

.dream-scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  color: #fff;
}

.dream-scroll-cue svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
  animation: dream-drift 2.4s ease-in-out infinite;
}

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

.dream-operator {
  display: grid;
  grid-template-columns: minmax(340px, 0.38fr) minmax(700px, 1fr);
  align-items: center;
  gap: clamp(48px, 5vw, 88px);
  min-height: 466px;
  padding: 26px clamp(30px, 6.3vw, 98px);
  background: #fff;
}

.dream-operator-copy {
  max-width: 410px;
}

.dream-operator-copy > span {
  display: block;
  margin-bottom: 16px;
  color: var(--dream-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dream-operator-copy h2 {
  margin: 0;
  font-size: clamp(36px, 2.85vw, 48px);
  font-weight: 700;
  letter-spacing: -0.047em;
  line-height: 1.12;
  text-wrap: balance;
}

.dream-operator-copy p {
  margin: 24px 0 0;
  color: var(--dream-copy);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.58;
}

.dream-workspace {
  display: grid;
  grid-template-columns: 155px minmax(390px, 1fr) 204px;
  min-width: 0;
  min-height: 398px;
  overflow: hidden;
  border: 1px solid var(--dream-line-strong);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(35, 53, 78, 0.035);
}

.dream-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px 9px;
  border-right: 1px solid var(--dream-line);
}

.dream-workspace-brand {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 5px;
}

.dream-workspace-brand img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.dream-workspace-brand b {
  overflow: hidden;
  font-size: 11px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dream-workspace-brand svg {
  width: 14px;
  fill: none;
  stroke: #697180;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.dream-sidebar nav {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.dream-sidebar nav a,
.dream-settings {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 7px;
  color: #4f5765;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}

.dream-sidebar nav a.is-active {
  background: var(--dream-blue-soft-strong);
  color: var(--dream-blue);
  font-weight: 650;
}

.dream-sidebar nav svg,
.dream-sidebar nav img,
.dream-settings svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.dream-sidebar nav svg,
.dream-settings svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.dream-settings {
  margin-top: auto;
}

.dream-task {
  min-width: 0;
  padding: 27px 18px 24px;
}

.dream-task-header {
  padding: 0 4px;
}

.dream-task-header h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.dream-task-header > span {
  color: #5f6672;
  font-size: 11px;
}

.dream-progress {
  height: 4px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e8ed;
}

.dream-progress i {
  display: block;
  width: 75%;
  height: 100%;
  border-radius: inherit;
  background: var(--dream-blue);
  transition: width 380ms ease;
}

.dream-connected-tools {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  overflow: hidden;
}

.dream-connected-tools span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 28px;
  gap: 5px;
  padding: 0 7px;
  border: 1px solid #dde3eb;
  border-radius: 6px;
  background: #fff;
  color: #505866;
  font-size: 8.5px;
  font-weight: 620;
  white-space: nowrap;
  box-shadow: 0 3px 9px rgba(35, 53, 78, 0.035);
}

.dream-connected-tools img {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.dream-timeline {
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.dream-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 16px;
  align-items: center;
  gap: 9px;
  min-height: 63px;
  padding: 8px 4px;
}

.dream-timeline li:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 43px;
  bottom: -20px;
  left: 20px;
  width: 1px;
  background: #dfe3e8;
  content: "";
}

.dream-timeline li.is-current {
  margin: 2px -2px;
  padding-right: 9px;
  padding-left: 6px;
  border-radius: 8px;
  background: var(--dream-blue-soft);
}

.dream-step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #cfd5dd;
  border-radius: 50%;
  background: #fff;
  color: #4c5360;
  font-size: 11px;
  font-weight: 700;
}

.is-complete .dream-step-icon {
  border-color: var(--dream-blue);
  background: var(--dream-blue);
  color: #fff;
}

.dream-step-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.is-current .dream-step-icon {
  border: 2px solid var(--dream-blue);
  color: var(--dream-blue);
}

.is-current .dream-step-icon i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.dream-timeline li > div {
  min-width: 0;
}

.dream-timeline b,
.dream-timeline small {
  display: block;
}

.dream-timeline b {
  font-size: 12px;
  font-weight: 680;
}

.dream-timeline small {
  margin-top: 4px;
  overflow: hidden;
  color: #737a87;
  font-size: 10px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dream-timeline time {
  color: #626977;
  font-size: 9px;
  white-space: nowrap;
}

.dream-chevron {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #9299a4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.dream-approval {
  align-self: stretch;
  margin: 16px 10px 16px 0;
  padding: 16px 13px 12px;
  border: 1px solid var(--dream-line);
  border-radius: 9px;
  background: #fff;
}

.dream-approval-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dream-approval-title > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 7px;
  background: var(--dream-blue-soft-strong);
  color: var(--dream-blue);
}

.dream-approval-title svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.dream-approval-title h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -0.015em;
}

.dream-approval > p {
  margin: 12px 0 0;
  color: #606775;
  font-size: 10px;
  line-height: 1.45;
}

.dream-included {
  margin-top: 17px;
}

.dream-approval h4 {
  margin: 0;
  font-size: 10px;
  font-weight: 720;
}

.dream-included ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.dream-included li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #676e7b;
  font-size: 9px;
}

.dream-included svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.dream-next-action {
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid var(--dream-line);
}

.dream-next-action > p {
  margin: 8px 0 10px;
  color: #656c79;
  font-size: 9px;
  line-height: 1.45;
}

.dream-approve-button,
.dream-request-button {
  width: 100%;
  min-height: 34px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 680;
}

.dream-approve-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 12px;
  border: 1px solid var(--dream-blue);
  background: var(--dream-blue);
  color: #fff;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.dream-approve-button:hover,
.dream-approve-button:focus-visible {
  transform: translateY(-1px);
  background: var(--dream-blue-deep);
  box-shadow: 0 8px 18px rgba(0, 77, 230, 0.19);
}

.dream-approve-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.dream-request-button {
  margin-top: 6px;
  border: 1px solid #d7dce3;
  background: #fff;
  color: #2c323b;
  transition: border-color 180ms ease, background 180ms ease;
}

.dream-request-button:hover,
.dream-request-button:focus-visible {
  border-color: #b7bfca;
  background: #f8f9fb;
}

.dream-workspace.is-approved .dream-progress i {
  width: 100%;
}

.dream-workspace.is-approved [data-dream-current-step] {
  background: #eefaf5;
}

.dream-workspace.is-approved [data-dream-current-step] .dream-step-icon {
  border-color: #0a8c5b;
  background: #0a8c5b;
  color: #fff;
}

.dream-workspace.is-approved [data-dream-current-step] .dream-step-icon i {
  width: 11px;
  height: 6px;
  transform: translateY(-1px) rotate(-45deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 0;
  background: transparent;
}

.dream-workspace.is-approved [data-dream-final-step] {
  background: #f6f8fb;
}

.dream-workspace.is-approved .dream-approval-title > span {
  background: #e7f7f0;
  color: #0a8c5b;
}

.dream-approve-button:disabled {
  transform: none;
  border-color: #0a8c5b;
  background: #0a8c5b;
  box-shadow: none;
  cursor: default;
}

.dream-roles {
  padding: clamp(88px, 8vw, 128px) clamp(30px, 6.3vw, 98px);
  background: #fff;
  color: var(--dream-ink);
}

.dream-roles-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.dream-roles-heading > span,
.dream-role-kicker {
  color: var(--dream-blue);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.dream-roles-heading h2 {
  max-width: 940px;
  margin: 16px auto 0;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 730;
  letter-spacing: -0.058em;
  line-height: 1.02;
  text-wrap: balance;
}

.dream-roles-heading p {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--dream-copy);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.dream-role-tabs {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: clamp(42px, 4vw, 62px) auto 18px;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
}

.dream-role-tabs::-webkit-scrollbar {
  display: none;
}

.dream-role-tabs button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #727985;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.dream-role-tabs button:hover,
.dream-role-tabs button:focus-visible {
  color: var(--dream-ink);
}

.dream-role-tabs button:focus-visible {
  outline: 2px solid var(--dream-blue);
  outline-offset: 2px;
}

.dream-role-tabs button.is-active {
  border-color: #ccdaf8;
  background: var(--dream-blue-soft);
  color: var(--dream-blue-deep);
}

.dream-role-panel {
  display: grid;
  max-width: 1540px;
  min-height: 660px;
  grid-template-columns: minmax(420px, 0.88fr) minmax(600px, 1.12fr);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #b9c9e7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(33, 67, 122, 0.08);
}

.dream-role-story {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(38px, 4.2vw, 66px);
  border-right: 1px solid #c8d4e8;
}

.dream-role-story h3 {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: clamp(29px, 2.6vw, 42px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.dream-role-narrative {
  max-width: 650px;
  margin: 28px 0 0;
  color: #282d36;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 470;
  letter-spacing: -0.018em;
  line-height: 1.62;
}

.dream-tool-chip {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  margin: 2px 2px;
  padding: 1px 9px;
  border: 1px solid #c8d6f2;
  border-radius: 8px;
  background: #f5f8ff;
  color: #202631;
  font-size: 0.78em;
  font-weight: 650;
  line-height: 1;
  vertical-align: 0.08em;
  white-space: nowrap;
}

.dream-tool-chip img {
  width: 19px;
  height: 19px;
}

.dream-role-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: auto 0 0;
  padding: 30px 0 24px;
}

.dream-role-details div {
  padding-right: 22px;
}

.dream-role-details div + div {
  padding-left: 22px;
  border-left: 1px solid var(--dream-line);
}

.dream-role-details dt {
  color: var(--dream-muted);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dream-role-details dd {
  margin: 8px 0 0;
  color: #3f4652;
  font-size: 13px;
  line-height: 1.45;
}

.dream-role-boundary {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid #a9c1f7;
  border-radius: 10px;
  background: #f8fbff;
  color: var(--dream-blue-deep);
}

.dream-role-boundary > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--dream-blue-soft-strong);
}

.dream-role-boundary svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.dream-role-boundary b,
.dream-role-boundary p {
  margin: 0;
}

.dream-role-boundary b {
  display: block;
  font-size: 12px;
}

.dream-role-boundary p {
  margin-top: 4px;
  color: #405171;
  font-size: 12px;
  line-height: 1.35;
}

.dream-role-visual {
  position: relative;
  min-width: 0;
  min-height: 660px;
  overflow: hidden;
  background: #fff;
}

.dream-role-lines {
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  width: 100%;
  height: 390px;
  overflow: visible;
}

.dream-role-lines path {
  fill: none;
  stroke: #d7dee9;
  stroke-linecap: round;
  stroke-width: 1.5;
  transition: opacity 180ms ease, stroke 180ms ease, stroke-width 180ms ease;
}

.dream-role-lines path.is-active {
  stroke: var(--dream-blue);
  stroke-width: 2;
}

.dream-role-node,
.dream-role-core {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translate(-50%, -50%);
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.dream-role-node {
  min-width: 106px;
  min-height: 64px;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid #c8d5eb;
  border-radius: 12px;
  background: #fff;
  opacity: 0.32;
  filter: grayscale(1);
  box-shadow: 0 12px 30px rgba(39, 70, 119, 0.08);
}

.dream-role-node.is-active {
  transform: translate(-50%, -50%) scale(1.03);
  opacity: 1;
  filter: none;
  box-shadow: 0 16px 36px rgba(39, 70, 119, 0.13);
}

.dream-role-node img {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
}

.dream-role-node span {
  font-size: 11px;
  font-weight: 700;
}

.dream-role-node-chrome { top: 87px; left: 20%; }
.dream-role-node-drive { top: 87px; left: 80%; }
.dream-role-node-gmail { top: 307px; left: 18%; }
.dream-role-node-slack { top: 307px; left: 82%; }
.dream-role-node-calendar { top: 382px; left: 50%; }

.dream-role-core {
  top: 210px;
  left: 50%;
  flex-direction: column;
  gap: 9px;
}

.dream-role-core img {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(5, 29, 75, 0.22), 0 0 0 8px #f3f7ff;
}

.dream-role-core span {
  font-size: 12px;
  font-weight: 740;
}

.dream-role-status {
  position: absolute;
  bottom: 128px;
  left: 50%;
  display: flex;
  max-width: calc(100% - 48px);
  min-height: 38px;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0 15px;
  transform: translateX(-50%);
  border: 1px solid #bbcdf3;
  border-radius: 999px;
  background: #fff;
  color: #34415a;
  font-size: 11.5px;
  font-weight: 650;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(28, 68, 133, 0.08);
}

.dream-role-status i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--dream-blue);
  box-shadow: 0 0 0 5px var(--dream-blue-soft-strong);
}

.dream-role-steps {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dream-role-steps::before {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: #b9caf0;
  content: "";
}

.dream-role-steps li {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 9px;
  border: 1px solid #cad6eb;
  border-radius: 999px;
  background: #fff;
}

.dream-role-steps li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #a6bceb;
  border-radius: 50%;
  color: var(--dream-blue);
  font-size: 10px;
  font-weight: 750;
}

.dream-role-steps b {
  overflow: hidden;
  font-size: 10.5px;
  font-weight: 670;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dream-role-steps li.is-gated {
  border-color: var(--dream-blue);
  color: var(--dream-blue-deep);
}

.dream-role-steps li.is-gated > span {
  border-color: var(--dream-blue);
  background: var(--dream-blue);
  color: #fff;
}

.dream-coordination {
  padding: clamp(82px, 7vw, 116px) clamp(30px, 6.3vw, 98px) clamp(88px, 7.5vw, 124px);
  border-top: 1px solid #f0f2f5;
  background: #fff;
}

.dream-section-copy {
  max-width: 820px;
}

.dream-section-copy h2,
.dream-control-copy h2 {
  margin: 0;
  font-size: clamp(46px, 4.2vw, 68px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.dream-section-copy p,
.dream-control-copy p {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--dream-copy);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
}

.dream-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(155px, 0.82fr) repeat(3, minmax(190px, 1fr)) minmax(170px, 0.84fr);
  gap: clamp(12px, 1.35vw, 22px);
  margin-top: 56px;
  padding: clamp(28px, 2.5vw, 40px);
  overflow: hidden;
  border: 1px solid var(--dream-line-strong);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(35, 53, 78, 0.045);
}

.dream-flow::before {
  position: absolute;
  z-index: 0;
  top: 104px;
  right: 7.5%;
  left: 7.5%;
  height: 2px;
  background: var(--dream-blue);
  content: "";
}

.dream-flow-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.dream-flow-stage::before,
.dream-flow-stage::after {
  position: absolute;
  z-index: 3;
  top: 68px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--dream-blue);
  border-radius: 50%;
  background: #fff;
  content: "";
}

.dream-flow-stage::before {
  left: -6px;
}

.dream-flow-stage::after {
  right: -6px;
  background: var(--dream-blue);
}

.dream-flow-stage:first-child::before,
.dream-flow-stage:last-child::after {
  display: none;
}

.dream-flow-label {
  display: block;
  min-height: 34px;
  color: var(--dream-ink);
  font-size: 13px;
  font-weight: 700;
}

.dream-flow-card,
.dream-agent-card,
.dream-gate-card {
  position: relative;
  min-height: 146px;
  border: 1px solid var(--dream-line-strong);
  border-radius: 9px;
  background: #fff;
}

.dream-flow-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 16px;
}

.dream-flow-card p {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 560;
  line-height: 1.5;
}

.dream-flow-icon,
.dream-agent-icon,
.dream-gate-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--dream-blue-soft-strong);
  color: var(--dream-blue);
}

.dream-flow-icon {
  width: 34px;
  height: 34px;
}

.dream-flow-icon svg,
.dream-agent-icon svg,
.dream-gate-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.dream-agent-card {
  min-height: 330px;
  padding: 18px 14px 14px;
}

.dream-agent-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dream-agent-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.dream-agent-heading h3,
.dream-gate-card h3 {
  margin: 1px 0 0;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.dream-agent-heading p,
.dream-gate-card p {
  margin: 7px 0 0;
  color: #6f7683;
  font-size: 10.5px;
  line-height: 1.42;
}

.dream-agent-tools {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.dream-agent-tools li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 8px 9px;
  border: 1px solid var(--dream-line);
  border-radius: 7px;
  background: #fff;
}

.dream-agent-tools img {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.dream-agent-tools span,
.dream-agent-tools b,
.dream-agent-tools small {
  display: block;
  min-width: 0;
}

.dream-agent-tools b {
  font-size: 10.5px;
  font-weight: 700;
}

.dream-agent-tools small {
  margin-top: 3px;
  overflow: hidden;
  color: #767d89;
  font-size: 8.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dream-gate-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  padding: 44px 16px 16px;
  border-color: var(--dream-blue);
  text-align: center;
}

.dream-gate-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.dream-gate-card h3 {
  margin-top: 22px;
}

.dream-gate-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  border-radius: 6px;
  background: var(--dream-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.dream-control {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(650px, 1.28fr);
  align-items: center;
  gap: clamp(54px, 6vw, 98px);
  min-height: 760px;
  padding: clamp(84px, 7vw, 116px) clamp(30px, 6.3vw, 98px);
  background: #fff;
  color: var(--dream-ink);
}

.dream-control-copy {
  max-width: 570px;
}

.dream-control-copy p {
  color: var(--dream-copy);
}

.dream-control-visual {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(410px, 1.12fr);
  align-items: center;
  min-width: 0;
}

.dream-live-activity,
.dream-control-approval {
  border: 1px solid rgba(15, 39, 79, 0.13);
  border-radius: 10px;
  background: #fff;
  color: var(--dream-ink);
  box-shadow: 0 28px 60px rgba(1, 34, 118, 0.18);
}

.dream-live-activity {
  position: relative;
  margin: 0;
  padding: 34px 54px 34px 25px;
  list-style: none;
}

.dream-live-activity li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 148px;
}

.dream-live-activity li:not(:last-child)::after {
  position: absolute;
  top: 32px;
  bottom: -2px;
  left: 16px;
  width: 2px;
  background: var(--dream-blue);
  content: "";
}

.dream-live-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--dream-blue);
  border-radius: 50%;
  background: #fff;
  color: var(--dream-blue);
}

.dream-live-marker svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.dream-live-activity li.is-complete .dream-live-marker {
  background: var(--dream-blue);
  color: #fff;
}

.dream-live-marker i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
}

.dream-live-activity h3 {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 720;
}

.dream-live-activity time {
  display: block;
  margin-top: 5px;
  color: #727987;
  font-size: 10px;
}

.dream-live-activity article {
  display: flex;
  gap: 10px;
  grid-column: 2;
  align-self: start;
  margin-top: -91px;
  padding: 13px;
  border: 1px solid var(--dream-line);
  border-radius: 8px;
  background: #fff;
}

.dream-live-activity article .dream-agent-icon {
  width: 30px;
  height: 30px;
}

.dream-live-activity article b,
.dream-live-activity article p {
  display: block;
  margin: 0;
  font-size: 10.5px;
}

.dream-live-activity article p {
  margin-top: 5px;
  color: #6b7280;
  line-height: 1.4;
}

.dream-live-logos {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.dream-live-logos img {
  width: 19px;
  height: 19px;
}

.dream-control-approval {
  position: relative;
  z-index: 2;
  margin-left: -44px;
  padding: 28px;
}

.dream-control-approval > header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dream-control-approval > header .dream-gate-icon {
  width: 44px;
  height: 44px;
}

.dream-control-approval h3 {
  margin: 1px 0 0;
  font-size: 18px;
  font-weight: 720;
}

.dream-control-approval > header p {
  margin: 7px 0 0;
  color: #697180;
  font-size: 11px;
}

.dream-control-approval h4 {
  margin: 24px 0 10px;
  font-size: 11px;
  font-weight: 720;
}

.dream-control-summary {
  margin: 0;
  padding: 0 15px;
  border: 1px solid var(--dream-line);
  border-radius: 8px;
  background: #fbfcfe;
  list-style: none;
}

.dream-control-summary li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 67px;
}

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

.dream-control-summary img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.dream-control-summary span,
.dream-control-summary b,
.dream-control-summary small {
  display: block;
}

.dream-control-summary b {
  font-size: 11.5px;
}

.dream-control-summary small {
  margin-top: 4px;
  color: #747b88;
  font-size: 10px;
}

.dream-control-next {
  margin-top: 20px;
}

.dream-control-next h4 {
  margin-top: 0;
}

.dream-control-next p {
  margin: 0;
  color: #646c79;
  font-size: 10.5px;
  line-height: 1.45;
}

.dream-control-approve,
.dream-control-request {
  width: 100%;
  min-height: 43px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.dream-control-approve {
  margin-top: 22px;
  border: 1px solid var(--dream-blue);
  background: var(--dream-blue);
  color: #fff;
}

.dream-control-request {
  margin-top: 8px;
  border: 1px solid var(--dream-line-strong);
  background: #fff;
  color: var(--dream-ink);
}

.dream-control-approval.is-approved .dream-gate-icon {
  background: #e7f7f0;
  color: #0a8c5b;
}

.dream-control-approve:disabled {
  border-color: #0a8c5b;
  background: #0a8c5b;
  cursor: default;
}

.dream-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 80px;
  padding: 0 clamp(30px, 3.1vw, 52px);
  background: var(--dream-footer);
  color: #fff;
}

.dream-footer b {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.dream-footer i {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.36);
}

.dream-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.dream-footer-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.dream-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.dream-footer-links a:hover,
.dream-footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1320px) {
  .dream-operator {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 74px;
    padding-bottom: 70px;
  }

  .dream-operator-copy {
    max-width: 660px;
  }

  .dream-operator-copy h2 {
    max-width: 700px;
  }

  .dream-workspace {
    grid-template-columns: 155px minmax(370px, 1fr) 210px;
  }

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

  .dream-flow::before,
  .dream-flow-stage::before,
  .dream-flow-stage::after {
    display: none;
  }

  .dream-flow-request,
  .dream-flow-gate {
    grid-column: 1 / -1;
  }

  .dream-flow-card,
  .dream-gate-card {
    min-height: 0;
  }

  .dream-gate-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 16px;
    padding: 20px;
    text-align: left;
  }

  .dream-gate-card .dream-gate-icon {
    grid-row: 1 / 3;
  }

  .dream-gate-card h3 {
    margin-top: 0;
  }

  .dream-gate-card p {
    grid-column: 2;
  }

  .dream-gate-card a {
    grid-row: 1 / 3;
    grid-column: 3;
    width: 170px;
    margin-top: 0;
  }

  .dream-control {
    grid-template-columns: 1fr;
  }

  .dream-control-copy {
    max-width: 760px;
  }

  .dream-control-visual {
    width: min(980px, 100%);
  }
}

@media (max-width: 1100px) {
  .dream-role-panel {
    grid-template-columns: 1fr;
  }

  .dream-role-story {
    min-height: 600px;
    border-right: 0;
    border-bottom: 1px solid #c8d4e8;
  }

  .dream-role-narrative {
    max-width: 780px;
  }
}

@media (max-width: 780px) {
  .dream-header {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .dream-nav,
  .dream-login-link,
  .dream-open-button {
    display: none;
  }

  .dream-header-actions {
    gap: 0;
  }

  .dream-mobile-nav {
    top: 68px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .dream-hero {
    min-height: 700px;
    background-position: 52% center;
  }

  .dream-hero-copy {
    width: min(590px, calc(100% - 36px));
    padding-top: 24px;
  }

  .dream-hero-copy h1 {
    font-size: clamp(42px, 12vw, 62px);
    line-height: 1.02;
  }

  .dream-hero-copy p {
    max-width: 490px;
    font-size: 16px;
  }

  .dream-operator {
    padding: 66px 20px 58px;
  }

  .dream-operator-copy h2 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .dream-workspace {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .dream-sidebar {
    display: none;
  }

  .dream-task {
    padding: 26px 16px 16px;
  }

  .dream-connected-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .dream-approval {
    margin: 0 12px 12px;
    padding: 18px;
  }

  .dream-approval-title h3 {
    font-size: 15px;
  }

  .dream-approval > p,
  .dream-approval h4,
  .dream-next-action > p,
  .dream-included li,
  .dream-approve-button,
  .dream-request-button {
    font-size: 11px;
  }

  .dream-coordination {
    padding: 72px 20px 80px;
  }

  .dream-roles {
    padding: 72px 20px 80px;
  }

  .dream-roles-heading h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .dream-role-tabs {
    justify-content: flex-start;
    margin-top: 34px;
  }

  .dream-role-tabs button {
    padding: 0 13px;
  }

  .dream-role-panel {
    min-height: 0;
  }

  .dream-role-story {
    min-height: 0;
    padding: 30px 24px 26px;
  }

  .dream-role-story h3 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .dream-role-narrative {
    font-size: 18px;
  }

  .dream-role-details {
    grid-template-columns: 1fr;
    margin-top: 26px;
    padding-bottom: 20px;
  }

  .dream-role-details div {
    padding-right: 0;
  }

  .dream-role-details div + div {
    margin-top: 16px;
    padding: 16px 0 0;
    border-top: 1px solid var(--dream-line);
    border-left: 0;
  }

  .dream-role-visual {
    min-height: 650px;
  }

  .dream-role-lines {
    top: 24px;
    height: 360px;
  }

  .dream-role-node {
    min-width: 88px;
    min-height: 56px;
    gap: 6px;
    padding: 8px;
  }

  .dream-role-node img {
    width: 24px;
    height: 24px;
  }

  .dream-role-node-chrome { left: 18%; }
  .dream-role-node-drive { left: 82%; }
  .dream-role-node-gmail { left: 17%; }
  .dream-role-node-slack { left: 83%; }

  .dream-role-core img {
    width: 78px;
    height: 78px;
    border-radius: 21px;
  }

  .dream-role-status {
    bottom: 142px;
    max-width: calc(100% - 28px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dream-role-steps {
    right: 14px;
    bottom: 18px;
    left: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dream-role-steps::before {
    display: none;
  }

  .dream-section-copy h2,
  .dream-control-copy h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .dream-flow {
    grid-template-columns: 1fr;
    margin-top: 38px;
    padding: 18px;
  }

  .dream-flow-request,
  .dream-flow-gate {
    grid-column: auto;
  }

  .dream-agent-card {
    min-height: 0;
  }

  .dream-gate-card {
    display: flex;
    min-height: 0;
    padding: 26px 20px 20px;
    text-align: center;
  }

  .dream-gate-card h3 {
    margin-top: 16px;
  }

  .dream-gate-card a {
    width: 100%;
    margin-top: 22px;
  }

  .dream-control {
    gap: 44px;
    min-height: 0;
    padding: 76px 20px;
  }

  .dream-control-visual {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dream-live-activity {
    padding-right: 25px;
  }

  .dream-control-approval {
    margin-left: 0;
    padding: 22px;
  }

  .dream-footer {
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

@media (max-width: 520px) {
  .dream-brand {
    font-size: 23px;
  }

  .dream-hero-actions {
    display: grid;
    width: min(320px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .dream-button {
    width: 100%;
  }

  .dream-task {
    overflow: hidden;
  }

  .dream-timeline li {
    grid-template-columns: 32px minmax(0, 1fr) 12px;
  }

  .dream-timeline time {
    display: none;
  }

  .dream-timeline small {
    white-space: normal;
  }

  .dream-footer i {
    display: none;
  }

  .dream-footer span {
    flex-basis: 100%;
  }

  .dream-footer-links {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
