:root {
  --ink: var(--color-text);
  --muted: var(--color-text-muted);
  --orange: var(--color-brand-primary);
  --line: #e2e6e7;
  --paper: var(--color-background);
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
button {
  color: inherit;
}
button,
input,
select,
textarea {
  max-width: 100%;
}
img,
svg {
  max-width: 100%;
}
svg {
  vertical-align: middle;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.24;
  letter-spacing: -0.045em;
  font-weight: 600;
}
h1 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}
h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
p {
  color: var(--muted);
  margin-bottom: 20px;
}
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}
::selection {
  color: var(--ink);
  background: #fdecc5;
}
.icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
}
.container {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}
.eyebrow {
  display: block;
  color: #7e570f;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 10px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: var(--orange);
  color: #101820;
}
.button-primary:hover {
  background: #f9b842;
}
.button-secondary {
  background: #fff;
  border-color: var(--line);
}
.button-secondary:hover {
  background: #f3f6f8;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #2c4353;
}
.button-danger {
  background: #fff0f0;
  color: #a92531;
  border-color: #f1cbd0;
}
.button-wide {
  width: 100%;
}
.button-small {
  min-height: 44px;
  padding: 9px 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-weight: 600;
  font-size: 0.8rem;
}
.text-link:hover {
  color: #805207;
}
.icon-button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  position: relative;
}
.demo-banner {
  min-height: 42px;
  padding: 6px 30px;
  background: #fff4d9;
  color: #573904;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.69rem;
  text-align: center;
}
.demo-banner .icon {
  width: 15px;
  height: 15px;
}
.demo-banner strong {
  font-weight: 600;
}
.demo-banner small {
  color: #805207;
  font-size: inherit;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
}
.brand-symbol {
  width: 35px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 8px 8px 12px 12px;
}
.brand-symbol .icon {
  width: 22px;
  height: 22px;
}
.brand-depo {
  font-weight: 400;
}
.brand-dot {
  color: var(--orange);
}
.public-header {
  background: #fff;
  border-bottom: 1px solid #eef0f0;
}
.public-header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 28px;
}
.public-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 500;
}
.public-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.public-nav a[aria-current='page'] {
  color: #805207;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reset-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.7rem;
}
.reset-link .icon {
  width: 15px;
  height: 15px;
}
.public-main {
  background: #fff;
}
.hero {
  padding: 65px 0 52px;
  background: linear-gradient(120deg, #fff 25%, #f6f7f2);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-copy h1 {
  font-size: clamp(2.65rem, 4.2vw, 4rem);
  line-height: 1.14;
  margin-bottom: 24px;
}
.hero-copy h1 span {
  color: #ad6e08;
}
.hero-copy > p {
  max-width: 460px;
  font-size: 0.95rem;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0 22px;
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #536353;
  font-size: 0.73rem;
}
.check-dot {
  background: #e4eee1;
  border-radius: 50%;
  color: #18794e;
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
}
.check-dot .icon {
  width: 15px;
  height: 15px;
}
.hero-visual {
  position: relative;
  border-radius: 24px 100px 24px 24px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 18px 60px #17232e0d;
}
.storage-scene {
  width: 100%;
  height: auto;
  display: block;
}
.visual-tag {
  position: absolute;
  left: 22px;
  top: 21px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #ffffffe6;
  border-radius: 50px;
  padding: 10px 14px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #18794e;
  border-radius: 50%;
  flex: 0 0 auto;
}
.visual-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border: 1px solid #ffffffa0;
  background: #fffffff0;
  border-radius: 15px;
  box-shadow: 0 10px 25px #17232e0c;
}
.visual-caption > .icon {
  color: #ad6e08;
  width: 28px;
  height: 28px;
}
.visual-caption strong,
.visual-caption span {
  display: block;
}
.visual-caption strong {
  font-size: 0.85rem;
}
.visual-caption span {
  font-size: 0.68rem;
  color: var(--muted);
}
.visual-caption .caption-arrow {
  margin-left: auto;
  width: 21px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-top: 50px;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #e8ebe6;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.trust-item strong {
  font-size: 0.75rem;
  display: block;
}
.trust-item p {
  font-size: 0.68rem;
  margin: 0;
}
.section {
  padding-block: 70px;
}
.section-muted {
  background: #f6f7f5;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 28px;
}
.section-heading h2 {
  margin-bottom: 10px;
}
.section-heading p {
  margin-bottom: 0;
  max-width: 560px;
  font-size: 0.83rem;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
}
.location-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.location-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.location-art {
  height: 150px;
  background: #e8ede5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 0 30px;
}
.location-art::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #ffffff70;
  top: -70px;
  right: -50px;
}
.mini-door {
  position: relative;
  height: 110px;
  width: 68px;
  background: repeating-linear-gradient(
    to bottom,
    #f5a621 0,
    #f5a621 8px,
    #d9931b 9px,
    #f5a621 10px
  );
  border: 5px solid #fff;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  box-shadow: 4px 0 0 #bec8bd;
}
.mini-door:nth-child(2) {
  height: 128px;
  width: 85px;
}
.mini-door:nth-child(3) {
  background: repeating-linear-gradient(
    to bottom,
    #d4ddd1 0,
    #d4ddd1 8px,
    #b9c7b5 9px,
    #d4ddd1 10px
  );
}
.location-art .art-label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #42554a;
}
.location-body {
  padding: 24px;
}
.location-body h3 {
  margin: 5px 0 10px;
}
.location-body p {
  font-size: 0.76rem;
  margin-bottom: 18px;
}
.location-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.7rem;
}
.location-meta .icon {
  width: 15px;
  height: 15px;
}
.package-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
.package-card.featured {
  border-color: #e4a333;
  background: #fffcf5;
}
.package-card .badge {
  align-self: flex-start;
  margin-bottom: 18px;
}
.package-icon {
  color: #805207;
  background: #fff1d0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  margin-bottom: 20px;
}
.package-card h3 {
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.package-card p {
  font-size: 0.76rem;
  min-height: 50px;
}
.package-card .price {
  margin-bottom: 15px;
}
.price {
  font-size: 1.95rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.3;
}
.price small {
  font-size: 0.69rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.feature-list li {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.72rem;
  color: #525f67;
  padding: 6px 0;
}
.feature-list .icon {
  color: #18794e;
  width: 16px;
  height: 16px;
}
.package-card .button {
  margin-top: auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.step-number {
  display: block;
  font-size: 2rem;
  color: #c99639;
  font-weight: 500;
  margin-bottom: 12px;
}
.steps h3 {
  font-size: 0.94rem;
}
.steps p {
  font-size: 0.77rem;
}
.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: var(--ink);
  color: #fff;
  padding: 40px;
  border-radius: 22px;
}
.cta-panel h2 {
  margin-bottom: 10px;
}
.cta-panel p {
  color: #bac8d2;
  font-size: 0.83rem;
  margin-bottom: 0;
  max-width: 570px;
}
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-block: 30px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.footer p {
  font-size: 0.67rem;
  margin: 0;
  max-width: 610px;
}
.page-intro {
  padding: 48px 0 35px;
}
.page-intro p {
  max-width: 710px;
  margin-bottom: 0;
  font-size: 0.85rem;
}
.profiles-page {
  max-width: 1040px;
  padding-bottom: 64px;
}
.role-group {
  margin-bottom: 36px;
}
.role-group h2 {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.role-card {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.role-card:hover {
  border-color: var(--orange);
  background: #fffcf5;
}
.role-card[aria-pressed='true'] {
  border-color: #d98c0b;
  box-shadow: 0 0 0 1px #d98c0b;
}
.role-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  flex: 0 0 auto;
}
.role-card strong {
  display: block;
  font-size: 0.8rem;
}
.role-card small {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.65;
}
.role-card > .icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
}
.role-card > span:nth-child(2) {
  min-width: 0;
}
.avatar {
  display: grid;
  place-items: center;
  background: #fdecc5;
  color: #805207;
  font-size: 0.8rem;
  font-weight: 600;
}
.portal-layout {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  min-height: calc(100vh - 42px);
}
.sidebar {
  min-width: 0;
  background: var(--ink);
  color: #fff;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
}
.sidebar .brand {
  margin: 0 16px 33px;
  font-size: 1.65rem;
}
.sidebar-label {
  display: block;
  color: #b8c3cc;
  letter-spacing: 0.12em;
  font-size: 0.56rem;
  margin: 0 18px 13px;
  text-transform: uppercase;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 11px;
  padding: 11px 15px;
  color: #cbd4da;
  font-size: 0.73rem;
  font-weight: 400;
}
.nav-item .icon {
  width: 18px;
  height: 18px;
}
.nav-item:hover {
  background: #ffffff09;
  color: #fff;
}
.nav-item.active {
  color: #101820;
  background: var(--orange);
  font-weight: 600;
}
.nav-item .nav-count {
  margin-left: auto;
  font-size: 0.62rem;
  background: #ffffff26;
  border-radius: 30px;
  min-width: 22px;
  text-align: center;
}
.sidebar-bottom {
  margin-top: auto;
  padding: 30px 14px 0;
}
.sidebar-bottom .text-link {
  color: #d6dfe5;
  font-size: 0.69rem;
}
.sidebar-note {
  background: #ffffff07;
  border: 1px solid #ffffff0c;
  border-radius: 13px;
  padding: 15px;
  margin-top: 22px;
}
.sidebar-note > .icon {
  color: var(--orange);
  margin-bottom: 11px;
}
.sidebar-note strong {
  display: block;
  font-size: 0.73rem;
  margin-bottom: 6px;
}
.sidebar-note p {
  color: #b8c3cc;
  font-size: 0.63rem;
  margin: 0;
}
.portal-body {
  min-width: 0;
}
.portal-header {
  min-height: 83px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 38px;
}
.portal-tenant {
  font-size: 0.79rem;
  font-weight: 600;
}
.portal-tenant small {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 400;
}
.portal-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.identity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 44px;
  min-height: 44px;
}
.identity .avatar {
  width: 37px;
  height: 37px;
  border-radius: 50%;
}
.identity strong {
  display: block;
  font-size: 0.71rem;
}
.identity small {
  color: var(--muted);
  display: block;
  font-size: 0.6rem;
}
.notification-count {
  position: absolute;
  right: -4px;
  top: -5px;
  background: #c62f3a;
  color: #fff;
  min-width: 19px;
  height: 19px;
  font-size: 0.6rem;
  border-radius: 20px;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
}
.portal-content {
  max-width: 1350px;
  margin-inline: auto;
  padding: 34px 38px 50px;
}
.portal-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 25px;
}
.portal-heading h1 {
  font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  margin-bottom: 10px;
}
.portal-heading p {
  font-size: 0.76rem;
  max-width: 670px;
  margin-bottom: 0;
}
.portal-heading .eyebrow {
  font-size: 0.58rem;
  margin-bottom: 12px;
}
.panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
}
.panel h2 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.panel > p {
  font-size: 0.73rem;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.panel-heading h2 {
  margin: 0;
}
.stack {
  min-width: 0;
  display: grid;
  gap: 22px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: start;
}
.equal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  margin-bottom: 25px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.65rem;
  margin-bottom: 15px;
}
.stat-top .icon {
  color: #ad6e08;
  width: 20px;
  height: 20px;
}
.stat-value {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.3;
}
.stat small {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 6px;
}
.attention {
  border: 1px solid #ecd397;
  background: #fff8e8;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  gap: 17px;
  align-items: center;
  margin-bottom: 25px;
}
.attention > .icon {
  color: #805207;
  width: 28px;
  height: 28px;
}
.attention div {
  flex: 1;
}
.attention strong {
  font-size: 0.8rem;
}
.attention p {
  margin: 3px 0 0;
  font-size: 0.71rem;
  color: #805207;
}
.booking-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
}
.booking-art {
  width: 88px;
  min-height: 105px;
  display: grid;
  place-items: center;
  background: #f3f4ed;
  border-radius: 13px;
  flex: 0 0 auto;
}
.booking-art .icon {
  width: 43px;
  height: 43px;
  color: #ad6e08;
}
.booking-main {
  flex: 1;
  min-width: 0;
}
.booking-title {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 13px;
}
.booking-title h2,
.booking-title h3 {
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.booking-title small {
  font-size: 0.63rem;
  color: var(--muted);
}
.booking-details {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 22px;
  color: var(--muted);
  font-size: 0.69rem;
  margin-bottom: 15px;
}
.booking-details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.booking-details .icon {
  width: 15px;
  height: 15px;
}
.booking-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid #eef0f0;
  padding-top: 15px;
}
.booking-footer strong {
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}
.booking-footer strong small {
  font-weight: 400;
  font-size: 0.63rem;
  display: block;
  color: var(--muted);
  letter-spacing: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.59rem;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 7px;
  padding: 5px 8px;
  background: #eef1f3;
  color: #3e596c;
  white-space: nowrap;
}
.badge .icon {
  width: 12px;
  height: 12px;
}
.badge-success {
  background: #e9f4ee;
  color: #14683f;
}
.badge-warning {
  background: #fff1d1;
  color: #805207;
}
.badge-danger {
  background: #ffedf0;
  color: #a92531;
}
.badge-info {
  background: #eaf1fa;
  color: #2563a9;
}
.badge-neutral {
  background: #eef1f3;
  color: #53616b;
}
.space-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0;
}
.space-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.65rem;
  color: #4b5c67;
  background: #fafbfb;
}
.space-chip .icon {
  width: 14px;
  height: 14px;
}
.notice {
  display: flex;
  gap: 10px;
  padding: 15px 17px;
  border-radius: 12px;
  border: 1px solid #d7e3ef;
  background: #f0f5fb;
  color: #315b82;
  font-size: 0.72rem;
  margin-bottom: 22px;
}
.notice .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.notice p {
  color: inherit;
  margin: 0;
}
.notice-warning {
  background: #fff8e8;
  border-color: #efdba7;
  color: #805207;
}
.notice-success {
  background: #eaf6ef;
  border-color: #bddfcb;
  color: #14683f;
}
.notice-error {
  background: #fff0f1;
  border-color: #efc8ce;
  color: #a92531;
}
.feedback {
  position: relative;
  margin-bottom: 24px;
}
.feedback:empty {
  display: none;
}
.feedback-public {
  padding-top: 20px;
}
.portal-demo-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.portal-demo-controls .text-link {
  font-size: 0.7rem;
}
.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #eef0f0;
  font-size: 0.74rem;
}
.summary-row span {
  color: var(--muted);
}
.summary-row strong {
  font-weight: 500;
  text-align: right;
}
.summary-row.total {
  font-size: 0.88rem;
  border: 0;
  padding-top: 18px;
}
.summary-row.total strong {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.summary-label {
  display: block;
  margin-top: 21px;
  margin-bottom: 8px;
  font-size: 0.64rem;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin-bottom: 20px;
}
.field label {
  font-size: 0.72rem;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  border: 1px solid #ced6da;
  background: #fff;
  border-radius: 10px;
  min-height: 48px;
  padding: 11px 12px;
  width: 100%;
  min-width: 0;
  color: var(--ink);
  font-size: 0.79rem;
}
.field textarea {
  min-height: 105px;
  resize: vertical;
}
.field small {
  font-size: 0.63rem;
  color: var(--muted);
  line-height: 1.7;
}
.form-grid .field {
  margin-bottom: 0;
}
.form-grid {
  margin-bottom: 20px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-block: 12px;
  min-height: 44px;
  font-size: 0.73rem;
  margin-bottom: 15px;
}
.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #ad6e08;
  flex: 0 0 auto;
}
.form-note {
  font-size: 0.63rem;
  margin: 14px 0 0;
  color: var(--muted);
}
.fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 23px;
  min-width: 0;
}
.fieldset legend {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.payment-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}
.payment-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  min-height: 55px;
  cursor: pointer;
  font-size: 0.76rem;
}
.payment-choice:has(input:checked) {
  border-color: #d98c0b;
  background: #fffbf2;
}
.payment-choice input {
  accent-color: #ad6e08;
  width: 16px;
  height: 16px;
  margin: 0;
}
.payment-choice .icon {
  width: 19px;
}
.payment-choice small {
  margin-left: auto;
  font-size: 0.59rem;
  color: var(--muted);
}
.flow-steps {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 26px;
  font-size: 0.69rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.flow-steps strong {
  color: var(--ink);
  font-weight: 500;
}
.flow-steps .step-dot {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background: #fff0cf;
  color: #805207;
  font-size: 0.64rem;
  font-weight: 600;
}
.flow-steps .icon {
  width: 14px;
}
.access-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.access-card-head {
  background: #f3f5ef;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 24px;
}
.access-card-head > .icon {
  width: 38px;
  height: 38px;
  color: #ad6e08;
}
.access-card-body {
  padding: 24px;
}
.access-card h2 {
  font-size: 1.04rem;
  margin: 0 0 7px;
}
.access-card p {
  font-size: 0.72rem;
}
.access-card .button {
  margin-top: 8px;
}
.event-list {
  display: grid;
}
.event-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #eef0f0;
}
.event-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.event-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e9f4ee;
  color: #18794e;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.event-icon.danger {
  background: #ffedf0;
  color: #c62f3a;
}
.event-icon.neutral {
  background: #eef1f3;
  color: #53616b;
}
.event-icon .icon {
  width: 18px;
  height: 18px;
}
.event-item > div:not(.event-icon) {
  flex: 1;
  min-width: 0;
}
.event-item strong {
  font-size: 0.73rem;
}
.event-item p {
  font-size: 0.66rem;
  margin: 4px 0;
}
.event-item time {
  color: var(--muted);
  font-size: 0.6rem;
  white-space: nowrap;
}
.empty-state {
  text-align: center;
  padding: 40px 22px;
  border: 1px dashed #d6dce0;
  background: #fff;
  border-radius: 18px;
}
.empty-state > .icon {
  width: 40px;
  height: 40px;
  color: #a0afb9;
  margin-bottom: 17px;
}
.empty-state h2 {
  font-size: 1.03rem;
  margin-bottom: 9px;
}
.empty-state p {
  max-width: 470px;
  margin: 0 auto 18px;
  font-size: 0.74rem;
}
.notification {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.notification.unread {
  border-color: #e2c182;
  box-shadow: inset 4px 0 #f5a621;
}
.notification-body {
  flex: 1;
  min-width: 0;
}
.notification-head {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.notification h2 {
  font-size: 0.95rem;
  margin: 0;
}
.notification p {
  font-size: 0.75rem;
  margin: 12px 0;
}
.notification small {
  font-size: 0.62rem;
  color: var(--muted);
}
.notification-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-top: 12px;
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.71rem;
}
th {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.62rem;
  background: #f8f9f9;
}
th,
td {
  padding: 14px 13px;
  border-bottom: 1px solid #edf0f1;
}
td:first-child {
  font-weight: 500;
}
td small {
  display: block;
  font-size: 0.61rem;
  color: var(--muted);
  font-weight: 400;
}
tr:last-child td {
  border-bottom: 0;
}
.tenant-card {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.tenant-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.tenant-card .package-icon {
  margin: 0;
}
.tenant-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.tenant-card p {
  font-size: 0.74rem;
}
.tenant-metrics {
  display: flex;
  gap: 25px;
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.tenant-metrics strong {
  font-size: 1.1rem;
  display: block;
}
.tenant-metrics small {
  font-size: 0.62rem;
  color: var(--muted);
}
.chart-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}
.chart-row > span {
  min-width: 95px;
  font-size: 0.67rem;
}
.chart-track {
  height: 10px;
  border-radius: 8px;
  background: #eef1f0;
  flex: 1;
  overflow: hidden;
}
.chart-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}
.chart-row strong {
  font-size: 0.67rem;
  min-width: 42px;
  text-align: right;
}
.detail-back {
  margin-bottom: 19px;
}
.detail-back .icon {
  transform: rotate(180deg);
  width: 16px;
}
.illustrative-label {
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid #d6e0e6;
  color: #53616b;
  border-radius: 7px;
  padding: 6px 10px;
  font-size: 0.62rem;
}
.receipt {
  background: #f7faf8;
  border: 1px solid #c6dece;
  border-radius: 13px;
  padding: 20px;
}
.receipt h3 {
  color: #18794e;
  font-size: 0.85rem;
}
.receipt .summary-row {
  border-color: #e0ece4;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-content {
  position: fixed;
  z-index: 20;
  top: -100px;
  left: 16px;
  min-height: 48px;
  padding: 12px 20px;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--color-focus);
  border-radius: 12px;
}
.skip-content:focus {
  top: 12px;
}
@media (min-width: 1440px) {
  .portal-content {
    padding: 42px 48px;
  }
  .portal-header {
    padding-inline: 48px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 48px);
  }
  .public-nav {
    gap: 15px;
  }
  .public-header-inner {
    gap: 18px;
  }
  .public-header .reset-link {
    display: none;
  }
  .hero-grid {
    gap: 30px;
  }
  .portal-layout {
    grid-template-columns: 213px minmax(0, 1fr);
  }
  .sidebar {
    padding-inline: 12px;
  }
  .sidebar .brand {
    margin-left: 10px;
  }
  .nav-item {
    padding-inline: 11px;
    font-size: 0.69rem;
  }
  .portal-content {
    padding: 28px 24px 40px;
  }
  .portal-header {
    padding-inline: 24px;
  }
  .portal-header .reset-link {
    font-size: 0;
    padding-inline: 10px;
  }
  .portal-header .reset-link .icon {
    width: 18px;
    height: 18px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split {
    grid-template-columns: 1fr;
  }
  .package-card {
    padding: 21px;
  }
  .booking-art {
    width: 64px;
  }
  .booking-art .icon {
    width: 33px;
  }
}
@media (max-width: 800px) {
  .public-nav {
    display: none;
  }
  .public-header-inner {
    justify-content: space-between;
    min-height: 77px;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .hero-copy h1 {
    font-size: 2.45rem;
  }
  .hero-copy > p {
    font-size: 0.82rem;
  }
  .hero-visual {
    border-radius: 18px 70px 18px 18px;
    border-width: 5px;
  }
  .visual-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    gap: 9px;
  }
  .visual-caption strong {
    font-size: 0.7rem;
  }
  .visual-caption span {
    font-size: 0.58rem;
  }
  .visual-tag {
    left: 12px;
    top: 12px;
    padding: 7px 10px;
    font-size: 0.55rem;
  }
  .visual-caption .caption-arrow {
    display: none;
  }
  .trust-row {
    gap: 20px;
  }
  .trust-item {
    gap: 10px;
  }
  .trust-item strong {
    font-size: 0.67rem;
  }
  .trust-item p {
    font-size: 0.61rem;
  }
  .location-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portal-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .sidebar {
    padding: 12px 20px;
  }
  .sidebar .brand {
    display: none;
  }
  .sidebar-label,
  .sidebar-bottom {
    display: none;
  }
  .sidebar nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 7px;
    scrollbar-width: thin;
  }
  .nav-item {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 46px;
    font-size: 0.69rem;
    gap: 8px;
  }
  .portal-header {
    min-height: 73px;
  }
  .portal-header .identity-copy {
    display: none;
  }
  .portal-header-actions {
    gap: 10px;
  }
  .portal-content {
    padding-top: 25px;
  }
  .portal-heading p {
    font-size: 0.73rem;
  }
  .section {
    padding-block: 48px;
  }
  .notification-head {
    align-items: flex-start;
  }
  .footer-inner {
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 36px);
  }
  .demo-banner {
    gap: 7px;
    padding: 9px 14px;
    font-size: 0.6rem;
    line-height: 1.65;
  }
  .demo-banner small {
    display: none;
  }
  .demo-banner .icon {
    width: 16px;
    height: 16px;
  }
  .brand {
    font-size: 1.6rem;
    gap: 7px;
  }
  .brand-symbol {
    width: 31px;
    height: 35px;
  }
  .public-header .button {
    font-size: 0.67rem;
    padding: 10px 12px;
    min-height: 44px;
  }
  .public-header-inner {
    gap: 10px;
    min-height: 73px;
  }
  .public-header .header-actions {
    gap: 5px;
  }
  .public-header .icon-button {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-copy h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
  .hero-copy > p {
    font-size: 0.85rem;
  }
  .hero .eyebrow {
    font-size: 0.6rem;
    margin-bottom: 20px;
  }
  .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }
  .hero-actions .text-link {
    font-size: 0.73rem;
  }
  .hero-detail {
    font-size: 0.63rem;
  }
  .hero-visual {
    max-width: 410px;
    width: 100%;
    margin-inline: auto;
    max-height: 355px;
  }
  .storage-scene {
    margin-top: -10px;
  }
  .visual-caption {
    padding: 16px;
  }
  .visual-caption strong {
    font-size: 0.78rem;
  }
  .visual-caption span {
    font-size: 0.63rem;
  }
  .trust-row {
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 18px;
  }
  .trust-item strong {
    font-size: 0.74rem;
  }
  .trust-item p {
    font-size: 0.66rem;
  }
  .trust-icon {
    width: 42px;
    height: 42px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .section-heading p {
    font-size: 0.75rem;
  }
  .location-grid,
  .package-grid,
  .role-grid,
  .equal-grid {
    grid-template-columns: 1fr;
  }
  .package-card p {
    min-height: 0;
  }
  .location-art {
    height: 160px;
  }
  .steps {
    gap: 15px;
  }
  .steps h3 {
    font-size: 0.87rem;
  }
  .steps p {
    font-size: 0.69rem;
  }
  .step-number {
    font-size: 1.8rem;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
    gap: 23px;
  }
  .cta-panel h2 {
    font-size: 1.45rem;
  }
  .cta-panel p {
    font-size: 0.76rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
  .page-intro {
    padding-top: 32px;
    padding-bottom: 28px;
  }
  .page-intro p {
    font-size: 0.77rem;
  }
  .role-card {
    min-height: 88px;
  }
  .role-card strong {
    font-size: 0.8rem;
  }
  .role-card small {
    font-size: 0.67rem;
  }
  .sidebar {
    padding: 9px 14px;
  }
  .portal-header {
    padding: 14px 18px;
    gap: 12px;
  }
  .portal-tenant {
    font-size: 0.69rem;
  }
  .portal-tenant small {
    font-size: 0.57rem;
  }
  .portal-header-actions {
    gap: 6px;
  }
  .portal-header .reset-link {
    display: none;
  }
  .identity .avatar {
    width: 34px;
    height: 34px;
    font-size: 0.68rem;
  }
  .portal-content {
    padding: 25px 16px 35px;
  }
  .portal-heading {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 22px;
  }
  .portal-heading h1 {
    font-size: 1.75rem;
  }
  .portal-heading .eyebrow {
    font-size: 0.55rem;
  }
  .portal-heading p {
    font-size: 0.72rem;
  }
  .portal-heading > .button {
    width: 100%;
  }
  .stats-grid {
    gap: 10px;
    margin-bottom: 21px;
  }
  .stat {
    padding: 16px 13px;
    border-radius: 13px;
  }
  .stat-top {
    font-size: 0.59rem;
    gap: 5px;
    margin-bottom: 11px;
  }
  .stat-top .icon {
    width: 16px;
    height: 16px;
  }
  .stat-value {
    font-size: 1.45rem;
  }
  .stat small {
    font-size: 0.54rem;
  }
  .attention {
    flex-wrap: wrap;
    padding: 18px;
    gap: 10px 13px;
  }
  .attention > .icon {
    width: 23px;
    height: 23px;
  }
  .attention div {
    min-width: 210px;
  }
  .attention .button {
    width: 100%;
    margin-top: 4px;
  }
  .panel {
    padding: 20px 17px;
    border-radius: 16px;
  }
  .panel-heading {
    gap: 10px;
    margin-bottom: 16px;
  }
  .panel-heading .text-link {
    font-size: 0.65rem;
  }
  .panel-heading h2 {
    font-size: 0.97rem;
  }
  .booking-card {
    padding: 20px 17px;
    gap: 0;
  }
  .booking-art {
    display: none;
  }
  .booking-title {
    flex-direction: column;
    gap: 9px;
  }
  .booking-title h2,
  .booking-title h3 {
    font-size: 1rem;
  }
  .booking-details {
    font-size: 0.66rem;
    gap: 8px 15px;
  }
  .booking-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .booking-footer strong {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: 1.17rem;
  }
  .booking-footer .button {
    width: 100%;
  }
  .badge {
    font-size: 0.6rem;
  }
  .notification {
    padding: 20px 16px;
    gap: 10px;
  }
  .notification > .event-icon {
    width: 29px;
    height: 29px;
    border-radius: 8px;
  }
  .notification > .event-icon .icon {
    width: 16px;
  }
  .notification-head {
    flex-direction: column;
    gap: 8px;
  }
  .notification h2 {
    font-size: 0.85rem;
  }
  .notification p {
    font-size: 0.71rem;
  }
  .notification-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .notification-footer .button {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .summary-row {
    font-size: 0.69rem;
  }
  .summary-row strong {
    max-width: 62%;
    overflow-wrap: anywhere;
  }
  .event-item {
    gap: 10px;
    flex-wrap: wrap;
  }
  .event-item time {
    margin-left: 46px;
  }
  .event-item strong {
    font-size: 0.71rem;
  }
  .event-item p {
    font-size: 0.65rem;
  }
  .notice {
    font-size: 0.67rem;
    padding: 14px 13px;
  }
  .flow-steps {
    gap: 8px;
    font-size: 0.59rem;
  }
  .flow-steps .step-dot {
    width: 21px;
    height: 21px;
  }
  .flow-steps > .icon {
    width: 12px;
  }
  .access-card-head,
  .access-card-body {
    padding: 20px;
  }
  .tenant-card {
    padding: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
