:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #292d2c;
  background: #f8f8f4;
  font-synthesis: none;
  font-size: 15px;
  line-height: 1.55;
  --orange: #f26440;
  --orange-dark: #d64a2b;
  --muted: #777f79;
  --line: #e7e9e2;
  --green: #30754f;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #f9ac96;
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 36px;
  font-weight: 650;
  letter-spacing: -1.5px;
  line-height: 1.2;
}
h2 {
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 1.25;
}
h3 {
  font-size: 17px;
  letter-spacing: -0.3px;
}
p {
  color: var(--muted);
}
button {
  border: 0;
}
small,
.small {
  font-size: 12px;
  color: var(--muted);
}
.brand {
  display: flex;
  align-items: center;
  font-size: 25px;
  letter-spacing: -1px;
  font-weight: 750;
  gap: 8px;
}
.brand-dot {
  color: var(--orange);
  margin-left: -9px;
}
.brand-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--orange);
  color: #fff;
  font-size: 25px;
  letter-spacing: -4px;
  padding-right: 4px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--orange);
  color: white;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 650;
  padding: 12px 18px;
  min-height: 46px;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.button.secondary {
  background: #fff;
  color: #373d37;
  border-color: var(--line);
}
.button.secondary:hover {
  background: #f5f5ef;
}
.button.danger {
  background: #fff0ec;
  color: #b63d25;
}
.text-link {
  font-weight: 600;
  font-size: 14px;
  color: #484e49;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-width: 0;
}
.card p {
  margin-top: 7px;
}
.grid {
  display: grid;
  gap: 20px;
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 1.7px;
  font-weight: 750;
  color: #858a81;
  margin-bottom: 15px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 650;
  padding: 5px 9px;
  border-radius: 20px;
  background: #f2f3ed;
  color: #767e73;
}
.badge.good {
  background: #edf5ec;
  color: var(--green);
}
.badge.warning {
  background: #fff2e4;
  color: #a06526;
}
.green-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #66a273;
  display: inline-block;
}
.stack {
  display: grid;
  gap: 18px;
}
.muted {
  color: var(--muted);
}
.notice {
  padding: 14px 18px;
  background: #fff4e8;
  border: 1px solid #f0dcc2;
  border-radius: 12px;
  font-size: 13px;
  color: #856331;
}
.notice a {
  text-decoration: underline;
}
.empty {
  padding: 40px;
  text-align: center;
  border: 1px dashed #dce0d5;
  border-radius: 14px;
}
.empty p {
  max-width: 460px;
  margin: 8px auto 20px;
}
.loading {
  display: grid;
  min-height: 80vh;
  place-items: center;
  color: var(--muted);
}
.field {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  min-width: 0;
}
.field input,
.field textarea,
.field select {
  background: #fff;
  border: 1px solid #dadfd5;
  border-radius: 10px;
  padding: 12px 13px;
  width: 100%;
  color: #313731;
  min-height: 46px;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.field small {
  font-weight: 400;
}
.check {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #616960;
  align-items: flex-start;
}
.check input {
  accent-color: var(--orange);
  margin-top: 5px;
}
.check a {
  text-decoration: underline;
}
.form-error {
  color: #b43f2d;
  font-size: 13px;
  white-space: pre-wrap;
}
.form-status {
  font-size: 13px;
  color: var(--green);
}
.space-top {
  margin-top: 20px;
}
.space-bottom {
  margin-bottom: 20px;
}
.inline-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.inline-form .field {
  flex: 1;
}
.pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 14px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 10px);
  background: #263a2e;
  color: #fff;
  border-radius: 12px;
  padding: 13px 22px;
  z-index: 20;
  max-width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
#toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
dialog {
  width: min(600px, 94vw);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  max-height: 85vh;
}
dialog::backdrop {
  background: #17251e66;
  backdrop-filter: blur(4px);
}
#dialog-body {
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.auth-art {
  background: #eef0e5;
  padding: 45px 9%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.auth-art h1 {
  font-size: 54px;
  line-height: 1.12;
  max-width: 480px;
  position: relative;
  z-index: 1;
}
.auth-art img {
  width: 80%;
  max-width: 440px;
  align-self: center;
  margin: -25px 0;
  mix-blend-mode: multiply;
}
.auth-form {
  padding: 50px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-box {
  width: 100%;
  max-width: 410px;
}
.auth-box h1 {
  font-size: 30px;
  margin-bottom: 10px;
}
.auth-box form {
  display: grid;
  gap: 16px;
  margin: 28px 0 20px;
}
.auth-box .button {
  width: 100%;
}
.auth-switch {
  text-align: center;
  font-size: 13px;
}
.auth-switch a {
  font-weight: 650;
  color: var(--orange-dark);
}
.shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 100vh;
}
.sidebar {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 0;
  height: 100vh;
}
.sidebar .brand {
  margin: 0 10px;
}
.workspace-switch {
  padding: 13px;
  background: #f7f8f2;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  gap: 11px;
  align-items: center;
}
.company-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #e6eadd;
  color: #687458;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
}
.workspace-switch strong {
  font-size: 12px;
  display: block;
  max-width: 133px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.workspace-switch small {
  font-size: 10px;
}
.main-nav {
  display: grid;
  gap: 5px;
}
.main-nav a {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 11px 13px;
  border-radius: 10px;
  color: #747b73;
  font-size: 13px;
  font-weight: 550;
}
.main-nav a .nav-icon {
  width: 20px;
  text-align: center;
  font-size: 17px;
}
.main-nav a.active {
  background: #fff0e9;
  color: #d55233;
}
.sidebar-bottom {
  margin-top: auto;
  display: grid;
  gap: 14px;
}
.sidebar-bottom .button {
  font-size: 12px;
  min-height: 40px;
}
.shell-content {
  min-width: 0;
}
.topbar {
  height: 80px;
  border-bottom: 1px solid var(--line);
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff9;
  gap: 15px;
}
.topbar small {
  font-size: 12px;
}
.user-chip {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}
.user-chip .company-icon {
  border-radius: 50%;
  background: #f2e9e2;
  color: #9c7463;
}
.content {
  max-width: 1280px;
  padding: 36px 42px 65px;
  margin: auto;
}
.page-head {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.page-head p {
  margin-top: 8px;
  font-size: 14px;
}
.page-head h1 {
  font-size: 32px;
}
.hero-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  background: #edf0e5;
  border: 1px solid #e2e7d8;
  border-radius: 22px;
  overflow: hidden;
  padding: 34px 34px 24px;
  min-height: 250px;
}
.hero-card h2 {
  font-size: 29px;
  max-width: 430px;
}
.hero-card p {
  max-width: 440px;
  font-size: 14px;
  margin: 12px 0 24px;
}
.hero-card img {
  width: 260px;
  margin: -22px -26px -55px -22px;
  mix-blend-mode: multiply;
  align-self: center;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 20px;
  background: white;
}
.stat strong {
  display: block;
  font-size: 28px;
  letter-spacing: -1px;
  font-weight: 650;
  margin: 8px 0;
}
.stat small {
  font-size: 11px;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 17px;
}
.section-title h2 {
  font-size: 19px;
}
.onboarding-list {
  display: grid;
  gap: 0;
}
.onboarding-item {
  display: flex;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.onboarding-item:last-child {
  border: 0;
  padding-bottom: 0;
}
.onboarding-item .step-number {
  width: 32px;
  height: 32px;
  font-size: 12px;
  flex-shrink: 0;
}
.onboarding-item div {
  flex: 1;
}
.onboarding-item h3 {
  font-size: 14px;
}
.onboarding-item p {
  font-size: 12px;
  margin: 2px 0 0;
}
.step-number {
  display: grid;
  place-items: center;
  background: #f5f0e9;
  color: #a18064;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}
.step-number.done {
  background: #e7f1e3;
  color: var(--green);
}
.agent-card {
  display: grid;
  gap: 20px;
}
.agent-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.avatar {
  width: 70px;
  height: 70px;
  background: #f5eee4;
  border-radius: 18px;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.agent-card-header div {
  flex: 1;
}
.agent-card-header h2 {
  font-size: 22px;
}
.agent-card-header p {
  font-size: 12px;
}
.table-wrap {
  overflow: auto;
}
.data-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
.data-table th {
  font-size: 11px;
  color: #8d948b;
  text-align: left;
  font-weight: 600;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.data-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.data-table td small {
  display: block;
}
.data-table tr:last-child td {
  border: 0;
}
.approval-card {
  display: grid;
  gap: 15px;
}
.approval-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.approval-content {
  background: #f8f9f5;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 13px;
}
.connection-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}
.connection-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #edf3e9;
  font-size: 21px;
  color: #608061;
}
.connection-card h2 {
  font-size: 20px;
  margin: 5px 0;
}
.connection-card p {
  font-size: 13px;
}
.connection-card .button-row {
  align-self: end;
}
.chat-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
}
.thread-list {
  display: grid;
  gap: 8px;
  align-content: start;
}
.thread-button {
  display: grid;
  text-align: left;
  gap: 3px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px;
  color: #424b40;
}
.thread-button.active {
  border-color: #e99c86;
  background: #fff6ef;
}
.bubble {
  padding: 12px 16px;
  border-radius: 14px;
  background: #f1f3ed;
  margin: 12px 0;
  max-width: 86%;
  font-size: 13px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.bubble.outbound {
  margin-left: auto;
  background: #eaf2e4;
}
.bubble small {
  display: block;
  font-size: 10px;
  margin-top: 5px;
}
.chat-window {
  min-height: 380px;
}
.plan-card {
  display: grid;
  gap: 15px;
}
.plan-card h2 {
  font-size: 24px;
}
.plan-card ul {
  padding-left: 18px;
  color: #717a6b;
  font-size: 13px;
}
.progress {
  height: 7px;
  border-radius: 10px;
  background: #eef0e7;
  overflow: hidden;
}
.progress progress {
  width: 100%;
  height: 100%;
  appearance: none;
  border: 0;
  display: block;
}
.progress progress::-webkit-progress-bar {
  background: #eef0e7;
}
.progress progress::-webkit-progress-value {
  background: #ee926f;
}
.legal-page {
  max-width: 900px;
  padding: 60px 30px;
  margin: auto;
}
.legal-page pre {
  font-family: inherit;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.8;
}
.site-nav {
  max-width: 1320px;
  padding: 28px 55px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.site-nav nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
.landing-hero {
  max-width: 1320px;
  margin: auto;
  padding: 60px 55px 75px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 25px;
}
.landing-hero h1 {
  font-size: clamp(45px, 5.2vw, 72px);
  letter-spacing: -3.5px;
  font-weight: 650;
  line-height: 1.08;
  margin: 22px 0;
}
.landing-hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.landing-hero p {
  max-width: 475px;
  line-height: 1.8;
  font-size: 16px;
}
.landing-hero .button-row {
  margin: 26px 0 16px;
}
.landing-hero .small {
  font-size: 11px;
}
.hero-stage {
  position: relative;
  min-width: 0;
  background: #edf0e5;
  border-radius: 50% 46% 42% 48%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.hero-stage img {
  width: 112%;
  height: auto;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
}
.orbit {
  position: absolute;
  inset: 8%;
  border: 1px dashed #ccd7bf;
  border-radius: 50%;
}
.floating-note {
  position: absolute;
  top: 7%;
  left: 0;
  background: white;
  box-shadow: 0 7px 25px #2c3a1610;
  padding: 11px 17px;
  font-size: 11px;
  border-radius: 10px;
  z-index: 2;
  transform: rotate(-4deg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-preview {
  position: absolute;
  bottom: 6%;
  right: -1%;
  padding: 20px 24px;
  border: 1px solid #eceee4;
  box-shadow: 0 15px 35px #273c1310;
  border-radius: 14px;
  background: white;
  z-index: 2;
  max-width: 320px;
  transform: rotate(3deg);
}
.chat-preview small {
  font-size: 9px;
  letter-spacing: 1px;
}
.chat-preview p {
  font-size: 14px;
  margin: 7px 0 10px;
  color: #4c5548;
}
.chat-preview strong {
  font-size: 12px;
  color: #5c7952;
}
.landing-section {
  max-width: 1320px;
  padding: 70px 55px;
  margin: auto;
}
.landing-section h2 {
  font-size: 36px;
  letter-spacing: -1.3px;
  margin-bottom: 30px;
}
.landing-section .card {
  padding: 30px;
}
.landing-section .card h3 {
  margin-top: 23px;
}
.landing-section .card p {
  font-size: 14px;
}
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-bottom: 90px;
}
.feature-section p {
  margin-bottom: 28px;
}
.feature-list {
  display: grid;
  gap: 28px;
}
.feature-list article {
  display: flex;
  gap: 20px;
}
.feature-list article > span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #f1e9dd;
  color: #a98758;
  width: 43px;
  height: 43px;
  border-radius: 12px;
}
.feature-list p {
  font-size: 13px;
  margin: 5px 0 0;
}
.landing-cta {
  text-align: center;
  background: #ebeee1;
  padding: 65px 24px;
}
.landing-cta h2 {
  font-size: 38px;
  margin: 15px 0 25px;
}
.site-footer {
  display: flex;
  gap: 25px;
  align-items: center;
  max-width: 1320px;
  margin: auto;
  padding: 35px 55px;
}
.site-footer p {
  font-size: 11px;
}
.site-footer nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 11px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 1050px) {
  .content {
    padding: 28px;
  }
  .topbar {
    padding: 0 28px;
  }
  .shell {
    grid-template-columns: 202px 1fr;
  }
  .sidebar {
    padding: 25px 13px;
  }
  .grid.three {
    grid-template-columns: 1fr;
  }
  .hero-card {
    grid-template-columns: 1fr 150px;
    padding: 28px;
  }
  .hero-card img {
    width: 215px;
  }
  .auth-art h1 {
    font-size: 42px;
  }
  .hero-stage .chat-preview {
    right: 0;
  }
  .feature-section {
    gap: 45px;
  }
  .landing-hero,
  .landing-section {
    padding-left: 35px;
    padding-right: 35px;
  }
  .site-nav {
    padding: 25px 35px;
  }
}
@media (max-width: 760px) {
  h1 {
    font-size: 30px;
  }
  .auth-layout {
    display: block;
  }
  .auth-art {
    padding: 24px;
    background: transparent;
  }
  .auth-art h1,
  .auth-art img,
  .auth-art > small {
    display: none;
  }
  .auth-form {
    padding: 25px 24px 60px;
  }
  .shell {
    display: block;
  }
  .sidebar {
    height: auto;
    position: relative;
    padding: 18px 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .sidebar .brand {
    font-size: 23px;
    margin: 0;
  }
  .workspace-switch,
  .sidebar-bottom {
    display: none;
  }
  .main-nav {
    display: flex;
    overflow: auto;
    padding-bottom: 13px;
    gap: 5px;
  }
  .main-nav a {
    white-space: nowrap;
    padding: 9px 12px;
    font-size: 12px;
  }
  .main-nav a .nav-icon {
    display: none;
  }
  .topbar {
    height: 54px;
    padding: 0 20px;
  }
  .topbar > small {
    font-size: 10px;
  }
  .content {
    padding: 24px 20px 45px;
  }
  .page-head {
    align-items: flex-start;
    margin-bottom: 22px;
  }
  .page-head h1 {
    font-size: 28px;
  }
  .page-head p {
    font-size: 12px;
  }
  .page-head > .button {
    font-size: 11px;
    padding: 10px 12px;
  }
  .hero-card {
    grid-template-columns: 1fr 100px;
    padding: 23px;
    min-height: 240px;
  }
  .hero-card h2 {
    font-size: 24px;
  }
  .hero-card p {
    font-size: 12px;
  }
  .hero-card img {
    width: 180px;
    margin-left: -36px;
  }
  .hero-card .button {
    font-size: 12px;
    padding: 11px 13px;
  }
  .stats {
    gap: 9px;
  }
  .stat {
    padding: 14px 11px;
  }
  .stat strong {
    font-size: 23px;
  }
  .stat small {
    font-size: 9px;
  }
  .stat > span {
    font-size: 11px;
  }
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 21px;
  }
  .chat-grid {
    grid-template-columns: 1fr;
  }
  .thread-list {
    display: flex;
    overflow: auto;
  }
  .thread-button {
    min-width: 185px;
  }
  .site-nav {
    padding: 22px 24px;
  }
  .site-nav nav > a:not(.button) {
    display: none;
  }
  .site-nav .button {
    padding: 10px 14px;
    min-height: 40px;
  }
  .landing-hero {
    grid-template-columns: 1fr;
    padding: 38px 25px 55px;
    gap: 42px;
  }
  .landing-hero h1 {
    font-size: 53px;
    letter-spacing: -2.6px;
  }
  .landing-hero p {
    font-size: 14px;
  }
  .hero-stage {
    max-width: 430px;
    width: 95%;
    margin: auto;
  }
  .chat-preview {
    padding: 15px 20px;
    max-width: 280px;
  }
  .landing-section {
    padding: 45px 25px;
  }
  .landing-section h2 {
    font-size: 30px;
  }
  .feature-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer {
    padding: 30px 25px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .site-footer nav {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
  .landing-cta h2 {
    font-size: 31px;
  }
  .hero-card .eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .button-row {
    gap: 9px;
  }
  .onboarding-item a {
    font-size: 11px;
  }
  .notice {
    font-size: 12px;
  }
}

[hidden] {
  display: none !important;
}
.hero-stage {
  border-radius: 36% 42% 34% 42%;
  background: #193029;
}
.hero-stage img {
  width: 100%;
  border-radius: inherit;
  mix-blend-mode: normal;
}
.auth-art img {
  border-radius: 28px;
  mix-blend-mode: normal;
}
.hero-card img {
  border-radius: 50%;
  mix-blend-mode: normal;
  width: 205px;
  margin: 0 0 -25px 5px;
}
.text-link[data-action] {
  background: transparent;
  color: #725834;
  padding: 0;
  text-decoration: underline;
}
.hero-card {
  gap: 15px;
}
@media (max-width: 760px) {
  .hero-card img {
    width: 150px;
    margin: 0 -35px -10px -20px;
  }
}
