:root {
  --bg: #ffffff;
  --ink: #111722;
  --muted: #5f6673;
  --soft: #fff7f2;
  --line: #e8edf3;
  --dark: #142232;
  --dark-2: #0f1b29;
  --accent: #c95535;
  --accent-2: #e87955;
  --green: #25a36a;
  --blue: #3275d6;
  --orange: #d88b24;
  --shadow: 0 20px 55px rgba(23, 31, 43, .15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 86px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(28px, 5vw, 72px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #edf0f4;
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 300px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-image {
  display: block;
  width: 300px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(36px, 5vw, 70px);
}

.main-nav a {
  color: #111827;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.button,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(201, 85, 53, .22);
}

.button-secondary {
  border: 1px solid rgba(201, 85, 53, .28);
  background: #fff;
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(23, 31, 43, .08);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero-fullpage {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff8f4 54%, #fff 100%);
}

.hero-intro,
.hero-product {
  min-height: calc(100svh - 86px);
  scroll-margin-top: 86px;
}

.hero-intro {
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 138px) clamp(28px, 5vw, 72px) clamp(48px, 7vw, 86px);
  position: relative;
  background:
    radial-gradient(circle at 50% 44%, rgba(201, 85, 53, .13), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(201, 85, 53, .12), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fff 72%, #fff8f4 100%);
  overflow: hidden;
}

.hero-intro::before,
.hero-intro::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-intro::before {
  width: 170px;
  height: 170px;
  left: 9%;
  top: 28%;
  border: 1px solid rgba(201, 85, 53, .14);
  animation: hero-float 7s ease-in-out infinite;
}

.hero-intro::after {
  width: 220px;
  height: 220px;
  right: 10%;
  bottom: 14%;
  background: rgba(201, 85, 53, .07);
  filter: blur(6px);
  animation: hero-float 8s ease-in-out infinite reverse;
}

.hero-product {
  display: grid;
  align-items: center;
  padding: 28px clamp(28px, 5vw, 72px) 42px;
  background: linear-gradient(180deg, #fff8f4 0%, #fff 100%);
  overflow: hidden;
}

.hero-copy {
  max-width: 980px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: hero-copy-in .75s ease-out both;
}

.hero-intro h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(40px, 3.9vw, 60px);
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-intro p {
  margin: 28px 0 0;
  color: #333b47;
  font-size: 19px;
  line-height: 2;
}

.hero-intro .hero-offer {
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(201, 85, 53, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--accent);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
  box-shadow: 0 12px 28px rgba(201, 85, 53, .1);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-intro .button {
  min-width: 188px;
  min-height: 58px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}

.hero-intro .button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 42%, transparent 72%);
  transform: translateX(-120%);
  animation: cta-shine 3.4s ease-in-out infinite;
}

.hero-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  color: #344050;
  font-size: 14px;
  font-weight: 750;
}

.hero-scroll-hint {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vh, 38px);
  z-index: 2;
  margin: 0;
  padding: 11px 15px;
  border: 1px solid rgba(201, 85, 53, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(23, 31, 43, .1);
  animation: scroll-hint-float 1.8s ease-in-out infinite;
}

.hero-scroll-hint strong,
.hero-scroll-hint em {
  font: inherit;
}

.hero-scroll-hint em {
  color: var(--accent);
  font-style: normal;
}

.scroll-mouse {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--accent);
  border: 0;
  border-radius: 50%;
  background: rgba(201, 85, 53, .12);
}

.scroll-mouse i {
  width: 11px;
  height: 11px;
  display: block;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scroll-arrow-down 1.2s ease-in-out infinite;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-hint-float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

@keyframes scroll-arrow-down {
  0% {
    opacity: .35;
    transform: translateY(-3px) rotate(45deg);
  }
  45% {
    opacity: 1;
    transform: translateY(3px) rotate(45deg);
  }
  100% {
    opacity: .35;
    transform: translateY(-3px) rotate(45deg);
  }
}

@keyframes hero-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes cta-shine {
  0%, 45% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

.proof-item,
.cta-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-item::before,
.cta-notes span::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 2px solid #1f2937;
  border-radius: 50%;
}

.shield-icon::before {
  border-radius: 6px 6px 9px 9px;
}

.lock-icon::before {
  border-radius: 4px;
}

.product-stage {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transform-origin: center top;
}

.hero-product.is-product-active .product-stage {
  animation: product-stage-in .72s cubic-bezier(.2, .74, .24, 1) both;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: auto -8% -7% 18%;
  height: 32%;
  background: rgba(201, 85, 53, .16);
  filter: blur(38px);
}

.browser-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #d6dce5;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-product.is-product-active .dashboard-shell {
  animation: product-shell-in .72s cubic-bezier(.2, .74, .24, 1) .12s both;
}

.hero-product.is-product-active .stat-grid article,
.hero-product.is-product-active .dashboard-grid .panel {
  animation: product-card-in .48s ease-out both;
}

.hero-product.is-product-active .stat-grid article:nth-child(1) { animation-delay: .22s; }
.hero-product.is-product-active .stat-grid article:nth-child(2) { animation-delay: .28s; }
.hero-product.is-product-active .stat-grid article:nth-child(3) { animation-delay: .34s; }
.hero-product.is-product-active .stat-grid article:nth-child(4) { animation-delay: .4s; }
.hero-product.is-product-active .dashboard-grid .panel:nth-child(1) { animation-delay: .44s; }
.hero-product.is-product-active .dashboard-grid .panel:nth-child(2) { animation-delay: .5s; }
.hero-product.is-product-active .dashboard-grid .panel:nth-child(3) { animation-delay: .56s; }
.hero-product.is-product-active .dashboard-grid .panel:nth-child(4) { animation-delay: .62s; }
.hero-product.is-product-active .dashboard-grid .panel:nth-child(5) { animation-delay: .68s; }

.dashboard-shell {
  transform: translateY(2px);
}

@keyframes product-stage-in {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes product-shell-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.965);
  }
  to {
    opacity: 1;
    transform: translateY(2px) scale(1);
  }
}

@keyframes product-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.browser-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: var(--dark);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f16752;
}

.browser-top span:nth-child(2) {
  background: #f0c54a;
}

.browser-top span:nth-child(3) {
  background: #48c979;
}

.dashboard-preview,
.mini-app {
  display: grid;
  grid-template-columns: 112px 1fr;
}

.dashboard-preview {
  min-height: 590px;
}

.preview-sidebar,
.mini-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 14px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: rgba(255, 255, 255, .74);
}

.preview-sidebar strong,
.mini-sidebar strong {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
}

.sidebar-logo-image {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
}

.preview-sidebar button,
.preview-sidebar span,
.mini-sidebar span {
  padding: 8px 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  font-size: 12px;
  font-weight: 750;
  color: rgba(255, 255, 255, .74);
  text-align: left;
  cursor: pointer;
}

.preview-sidebar button:hover,
.preview-sidebar .active,
.mini-sidebar .active {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.preview-sidebar button {
  position: relative;
}

.preview-sidebar button::after {
  content: "›";
  position: absolute;
  right: 9px;
  opacity: .44;
}

.preview-sidebar button.active::after,
.preview-sidebar button:hover::after {
  opacity: 1;
}

.preview-main {
  padding: 24px;
  background: #fff;
}

.preview-panel {
  display: none;
}

.preview-panel.active {
  display: block;
}

.welcome-line {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 850;
}

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

.stat-grid article,
.panel,
.profile-metrics article,
.report-stats article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.stat-grid article {
  min-height: 92px;
  padding: 16px;
}

.stat-grid span,
.panel-title,
.profile-metrics span,
.report-stats span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.stat-grid strong {
  display: block;
  margin-top: 8px;
  color: #111827;
  font-size: 20px;
}

.stat-grid em {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.panel {
  padding: 16px;
}

.today-panel,
.chart-panel {
  min-height: 190px;
}

.today-panel {
  grid-column: span 2;
}

.panel-title {
  margin-bottom: 12px;
  color: #111827;
  font-size: 13px;
}

.panel-title span {
  float: right;
  color: #6b7280;
  font-size: 11px;
}

.class-row,
.member-line,
.notify-row {
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #edf0f4;
}

.class-row {
  grid-template-columns: 45px 1fr 46px 54px;
}

.member-line {
  grid-template-columns: 24px 1fr 58px 50px;
}

.notify-row {
  grid-template-columns: 1fr auto 32px;
}

.class-row span,
.class-row em,
.member-line em,
.notify-row span {
  color: #6b7280;
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.class-row strong,
.member-line strong,
.notify-row strong {
  color: #111827;
  font-size: 12px;
}

.class-row b,
.member-line b {
  padding: 3px 6px;
  border-radius: 999px;
  font-size: 10px;
  text-align: center;
}

.green,
.member-line b {
  background: #eaf8f0;
  color: var(--green);
}

.orange {
  background: #fff5e6;
  color: var(--orange);
}

.blue {
  background: #edf4ff;
  color: var(--blue);
}

.panel a {
  display: inline-block;
  margin-top: 10px;
  color: #3469c7;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.chart-panel svg,
.line-chart-large svg {
  width: 100%;
  height: auto;
}

.chart-panel path,
.line-chart-large path {
  fill: none;
  stroke: #3778d4;
  stroke-width: 4;
  stroke-linecap: round;
}

.chart-panel line,
.line-chart-large line {
  stroke: #edf0f4;
  stroke-width: 2;
}

.contract-panel,
.whatsapp-panel {
  min-height: 174px;
}

.member-line span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9e2ef, #f4d9ca);
}

.notify-row em {
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.face-panel {
  position: relative;
}

.face-panel > strong {
  display: block;
  margin-top: 8px;
  font-size: 38px;
}

.face-panel > span,
.face-panel > em {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.face-symbol {
  position: absolute;
  right: 22px;
  bottom: 44px;
  width: 54px;
  height: 54px;
  border: 3px solid var(--accent);
  border-radius: 14px;
}

.face-symbol::before,
.face-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--accent);
}

.face-symbol::before {
  top: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.face-symbol::after {
  bottom: 9px;
  width: 28px;
  height: 13px;
  border-top: 0;
  border-radius: 0 0 20px 20px;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.preview-toolbar button {
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  padding: 9px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.preview-toolbar button.ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: #334155;
}

.preview-toolbar span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 750;
}

.filter-grid,
.mini-stat-row,
.message-board,
.settings-grid {
  display: grid;
  gap: 10px;
}

.filter-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 12px;
}

.filter-grid span,
.filter-search,
.settings-grid article {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
}

.filter-search {
  gap: 8px;
}

.filter-search span {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  white-space: nowrap;
}

.filter-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font: inherit;
}

.filter-search input::-webkit-search-cancel-button {
  display: none;
}

.mock-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr .8fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
}

.table-head {
  background: #f8fafc;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
}

.table-row {
  min-height: 58px;
  border-top: 1px solid var(--line);
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.table-row b {
  color: #111827;
}

.table-row em {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.class-management .table-head,
.class-management .table-row {
  grid-template-columns: 1.05fr 1.15fr .75fr .75fr 1fr;
}

.mini-stat-row {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 12px;
}

.mini-stat-row article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mini-stat-row span {
  color: #64748b;
  font-size: 11px;
  font-weight: 850;
}

.mini-stat-row strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}

.checkin-preview-grid {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  gap: 12px;
}

.checkin-card,
.ticket-card,
.message-board article,
.report-preview-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.checkin-card {
  text-align: center;
}

.checkin-card .avatar-photo {
  margin: 0 auto 10px;
}

.checkin-card h3 {
  margin: 0;
  font-size: 18px;
}

.checkin-card span,
.ticket-card div,
.message-board span,
.donut-small span {
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}

.checkin-card em {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.ticket-card {
  display: grid;
  gap: 12px;
}

.ticket-card strong,
.message-board strong {
  color: #111827;
  font-size: 14px;
}

.ticket-card div {
  display: flex;
  justify-content: space-between;
}

.message-board {
  grid-template-columns: repeat(2, 1fr);
}

.message-board article {
  display: grid;
  gap: 8px;
}

.message-board em {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.report-preview-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 12px;
}

.wide-chart {
  min-height: 250px;
}

.donut-small {
  display: grid;
  align-content: center;
  text-align: center;
}

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

.efficiency-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(28px, 5vw, 72px);
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
  border-bottom: 1px solid #f0e5de;
}

.efficiency-copy,
.efficiency-panel {
  max-width: 640px;
}

.efficiency-copy {
  justify-self: end;
}

.efficiency-copy > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(201, 85, 53, .24);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.efficiency-copy h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.18;
}

.efficiency-copy p {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.85;
}

.efficiency-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(201, 85, 53, .18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(23, 31, 43, .1);
}

.efficiency-panel h3 {
  margin: 0 0 20px;
  color: #111827;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.35;
}

.efficiency-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.efficiency-panel li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.65;
}

.efficiency-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.platform-suite {
  padding: clamp(48px, 7vw, 76px) clamp(28px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid #f0f2f5;
}

.suite-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.suite-heading > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 85, 53, .22);
  border-radius: 999px;
  background: #fff7f2;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.suite-heading h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.suite-heading p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.85;
}

.suite-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.suite-grid article {
  min-height: 150px;
  position: relative;
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.suite-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -32px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(201, 85, 53, .08);
  transform: scale(.75);
  transition: transform .22s ease, opacity .22s ease;
}

.suite-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 85, 53, .28);
  box-shadow: 0 18px 38px rgba(23, 31, 43, .11);
}

.suite-grid article:hover::after {
  opacity: 1;
  transform: scale(1);
}

.suite-grid article.reveal {
  transform: translateY(18px);
}

.suite-grid article.reveal.is-visible {
  transform: translateY(0);
}

.suite-grid article.reveal.is-visible:nth-child(2) { transition-delay: .05s; }
.suite-grid article.reveal.is-visible:nth-child(3) { transition-delay: .1s; }
.suite-grid article.reveal.is-visible:nth-child(4) { transition-delay: .15s; }
.suite-grid article.reveal.is-visible:nth-child(5) { transition-delay: .2s; }
.suite-grid article.reveal.is-visible:nth-child(6) { transition-delay: .25s; }

.suite-grid article > span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 15px;
  border: 1px solid rgba(201, 85, 53, .18);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7f2, #fff);
  color: var(--accent);
  position: relative;
  box-shadow: 0 10px 22px rgba(201, 85, 53, .11);
}

.suite-grid article > span::before,
.suite-grid article > span::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.suite-card-booking > span::before {
  inset: 11px 10px 8px;
  border-radius: 5px;
}

.suite-card-booking > span::after {
  left: 15px;
  right: 15px;
  top: 23px;
  height: 0;
  box-shadow: 0 9px 0 currentColor;
}

.suite-card-member > span::before {
  width: 13px;
  height: 13px;
  left: 15px;
  top: 9px;
  border-radius: 50%;
}

.suite-card-member > span::after {
  width: 24px;
  height: 13px;
  left: 10px;
  bottom: 9px;
  border-radius: 16px 16px 5px 5px;
}

.suite-card-trial > span::before {
  inset: 10px;
  border-radius: 50%;
}

.suite-card-trial > span::after {
  width: 13px;
  height: 6px;
  right: 8px;
  top: 8px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.suite-card-payment > span::before {
  inset: 13px 8px 11px;
  border-radius: 5px;
}

.suite-card-payment > span::after {
  left: 12px;
  right: 12px;
  top: 21px;
  height: 0;
  border-top-width: 3px;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.suite-card-report > span::before {
  width: 0;
  height: 24px;
  left: 12px;
  bottom: 10px;
  border-right-width: 4px;
  box-shadow: 9px -8px 0 -1px currentColor, 20px -16px 0 -1px currentColor;
}

.suite-card-report > span::after {
  display: none;
}

.suite-card-staff > span::before {
  width: 16px;
  height: 16px;
  left: 8px;
  top: 10px;
  border-radius: 50%;
}

.suite-card-staff > span::after {
  width: 15px;
  height: 15px;
  right: 8px;
  bottom: 9px;
  border-radius: 4px;
  transform: rotate(45deg);
}

.suite-grid h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 17px;
  line-height: 1.35;
}

.suite-grid p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.75;
}

.feature-strip {
  padding: 42px clamp(28px, 5vw, 72px) 54px;
  background: #fff;
  border-bottom: 1px solid #f0f2f5;
}

.feature-strip h2,
.workflow h2,
.system-section > h2 {
  margin: 0 0 38px;
  text-align: center;
  color: #111827;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.25;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1320px;
  margin: 0 auto;
}

.feature-row article {
  min-height: 190px;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid #e5e9ef;
}

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

.line-icon {
  width: 54px;
  height: 54px;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent);
  position: relative;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.users-icon::before {
  width: 20px;
  height: 20px;
  left: 17px;
  top: 5px;
  border-radius: 50%;
}

.users-icon::after {
  width: 34px;
  height: 18px;
  left: 10px;
  bottom: 5px;
  border-radius: 20px 20px 6px 6px;
}

.calendar-icon::before {
  inset: 8px 7px 5px;
  border-radius: 4px;
}

.calendar-icon::after {
  left: 14px;
  right: 14px;
  top: 22px;
  height: 0;
  box-shadow: 0 12px 0 currentColor;
}

.doc-icon::before {
  inset: 5px 12px 7px;
  border-radius: 3px;
}

.doc-icon::after {
  width: 20px;
  height: 0;
  left: 17px;
  top: 23px;
  box-shadow: 0 10px 0 currentColor, 0 20px 0 currentColor;
}

.report-icon::before {
  width: 0;
  height: 34px;
  left: 12px;
  bottom: 8px;
  border-right-width: 4px;
  box-shadow: 12px -12px 0 -1px currentColor, 25px -24px 0 -1px currentColor;
}

.report-icon::after {
  display: none;
}

.whats-icon::before {
  inset: 7px;
  border-radius: 50%;
}

.whats-icon::after {
  width: 13px;
  height: 13px;
  left: 12px;
  bottom: 7px;
  border-top: 0;
  border-right: 0;
  transform: rotate(-18deg);
}

.scan-icon::before {
  inset: 7px;
  border-radius: 7px;
}

.scan-icon::after {
  width: 18px;
  height: 18px;
  left: 18px;
  top: 13px;
  border-radius: 50%;
  box-shadow: 0 20px 0 -7px currentColor;
}

.feature-row h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.feature-row p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.8;
}

.workflow {
  padding: 50px clamp(28px, 5vw, 72px) 76px;
  background: #fff;
  border-bottom: 1px solid #f0f2f5;
}

.workflow-line {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1fr;
  align-items: center;
  gap: 18px;
}

.workflow-line article {
  text-align: center;
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.step-icon {
  width: 66px;
  height: 56px;
  margin: 0 auto 14px;
  color: var(--accent);
  position: relative;
}

.step-icon::before,
.step-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.onboard-icon::before {
  inset: 10px 5px 4px;
  border-radius: 4px;
}

.onboard-icon::after {
  width: 18px;
  height: 18px;
  left: 24px;
  top: 18px;
  border-radius: 50%;
}

.operate-icon::before {
  inset: 5px 8px 4px;
  border-radius: 4px;
}

.operate-icon::after {
  width: 18px;
  height: 18px;
  left: 24px;
  top: 21px;
  border-radius: 50%;
}

.growth-icon::before {
  width: 0;
  height: 34px;
  left: 12px;
  bottom: 5px;
  border-right-width: 4px;
  box-shadow: 15px -10px 0 -1px currentColor, 31px -24px 0 -1px currentColor;
}

.growth-icon::after {
  width: 26px;
  height: 26px;
  right: 2px;
  top: 0;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-8deg);
}

.workflow-line h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.workflow-line p {
  max-width: 260px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.8;
}

.flow-arrow {
  color: #c6cbd2;
  font-size: 48px;
  text-align: center;
}

.system-section {
  padding: 50px clamp(28px, 5vw, 72px) 0;
  background:
    radial-gradient(circle at 4% 35%, rgba(201, 85, 53, .11), transparent 23%),
    radial-gradient(circle at 94% 82%, rgba(201, 85, 53, .13), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff9f5 100%);
}

.system-row {
  max-width: 1320px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}

.system-row.reverse {
  grid-template-columns: .78fr 1.22fr;
}

.member-mockup,
.report-mockup {
  min-height: 420px;
}

.mini-app {
  min-height: 390px;
}

.mini-sidebar {
  padding: 16px 10px;
}

.mini-sidebar strong {
  font-size: 18px;
}

.mini-sidebar span {
  font-size: 10px;
  padding: 6px 8px;
}

.profile-card-ui,
.report-ui {
  padding: 24px;
  background: #fff;
}

.profile-top {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  align-items: start;
}

.avatar-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #f0c7ad 0 18%, transparent 19%),
    radial-gradient(circle at 50% 72%, #263342 0 30%, transparent 31%),
    linear-gradient(135deg, #d7e1eb, #f8e2d7);
}

.profile-top h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.profile-top small {
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf8f0;
  color: var(--green);
  font-size: 11px;
}

.profile-top dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  margin: 0;
}

.profile-top div div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px;
  font-size: 11px;
}

.profile-top dt {
  color: #6b7280;
  font-weight: 800;
}

.profile-top dd {
  margin: 0;
  color: #111827;
  font-weight: 750;
}

.profile-tabs {
  display: flex;
  gap: 20px;
  margin: 20px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
}

.profile-tabs span:first-child {
  color: var(--accent);
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.profile-metrics article {
  padding: 14px;
}

.profile-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.history-box {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.history-box strong,
.report-title {
  color: #111827;
  font-size: 13px;
}

.history-box p {
  margin: 7px 0 0;
  color: #4b5563;
  font-size: 11px;
}

.booking-mockup,
.print-mockup {
  min-height: 400px;
}

.booking-ui {
  padding: 24px;
  background: #fff;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.booking-header span,
.booking-days span,
.booking-list span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.booking-header strong {
  display: block;
  margin-top: 3px;
  font-size: 28px;
}

.booking-header button,
.print-toolbar button {
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.booking-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.booking-days span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  text-align: center;
}

.booking-days .active {
  border-color: rgba(201, 85, 53, .35);
  background: #fff7f2;
  color: var(--accent);
}

.booking-days b {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-size: 22px;
}

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

.booking-list article {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.booking-list time {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

.booking-list strong {
  display: block;
  color: #111827;
  font-size: 15px;
}

.booking-list em {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.print-ui {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 400px;
  background: #fff;
}

.print-ui aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 14px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: rgba(255, 255, 255, .72);
}

.print-ui aside strong {
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.print-ui aside span {
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.print-ui aside .active {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.print-ui section {
  padding: 24px;
  background: #f8fafc;
}

.print-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.print-toolbar .ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: #334155;
}

.contract-paper {
  min-height: 280px;
  padding: 26px;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 31, 43, .08);
}

.contract-paper h4 {
  margin: 0 0 16px;
  font-size: 24px;
}

.contract-paper p {
  margin: 9px 0;
  color: #334155;
  font-size: 13px;
  font-weight: 750;
}

.contract-paper div:not(.signature-line) {
  height: 12px;
  margin-top: 18px;
  border-radius: 999px;
  background: #e8edf3;
}

.contract-paper div:nth-of-type(2) {
  width: 74%;
}

.signature-line {
  margin-top: 46px;
  padding-top: 14px;
  border-top: 1px solid #cfd8e3;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.system-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.25;
}

.system-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.system-copy li {
  position: relative;
  padding-left: 30px;
  color: #232b36;
  font-size: 17px;
  font-weight: 750;
}

.system-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.report-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 900;
}

.report-title span {
  color: #6b7280;
  font-size: 11px;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.report-stats article {
  min-height: 78px;
  padding: 12px;
}

.report-stats strong {
  display: block;
  margin-top: 7px;
  font-size: 14px;
}

.report-stats em {
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.report-body {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 12px;
  margin-top: 14px;
}

.line-chart-large,
.donut-card {
  min-height: 190px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.donut {
  width: 108px;
  height: 108px;
  margin: 14px auto;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 72%, #f0b59f 72% 90%, #f6ddd2 90% 98%, #edf0f4 98% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: #fff;
}

.donut-card ul {
  margin: 0;
  padding-left: 20px;
  color: #4b5563;
  font-size: 11px;
  font-weight: 750;
}

.cta-section {
  max-width: 1360px;
  margin: 20px auto 32px;
  padding: 34px clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: 10px;
  background:
    radial-gradient(circle at 6% 20%, rgba(201, 85, 53, .17), transparent 24%),
    linear-gradient(135deg, #fff2eb 0%, #ffe1d4 100%);
}

.cta-section h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.cta-section p {
  margin: 8px 0 0;
  color: #344050;
  font-size: 16px;
}

.cta-section .button {
  min-width: 210px;
  min-height: 60px;
  font-size: 18px;
}

.cta-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 750;
}

.cta-notes span::before {
  width: 15px;
  height: 15px;
  border-color: #1f2937;
}

.site-footer {
  padding: 38px clamp(20px, 5vw, 64px) 24px;
  background: #141820;
  color: rgba(255, 255, 255, .78);
}

.footer-brand,
.footer-contact,
.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand img {
  width: min(220px, 56vw);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  text-align: right;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 22px 0;
  font-style: normal;
}

.footer-contact a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-contact a:hover {
  color: #ffd8c6;
}

.footer-contact span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .product-stage {
    max-width: 980px;
  }

  .feature-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 0;
  }

  .feature-row article:nth-child(3) {
    border-right: 0;
  }

  .workflow-line {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    font-size: 34px;
  }

  .system-row,
  .system-row.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .hero-intro,
  .hero-product {
    min-height: calc(100svh - 72px);
    scroll-margin-top: 72px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .brand-logo-image {
    width: 210px;
    height: 52px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid #e2e6ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav a {
    padding: 14px;
  }

  .menu-button {
    display: block;
  }

  .hero-intro {
    align-content: center;
    padding: 34px 18px 104px;
  }

  .hero-product {
    align-items: start;
    padding: 10px 14px 12px;
  }

  .hero-intro h1 {
    font-size: clamp(27px, 7vw, 34px);
    line-height: 1.2;
    white-space: normal;
  }

  .hero-intro p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.8;
  }

  .hero-intro .hero-offer {
    width: 100%;
    margin-top: 16px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 40px;
  }

  .hero-intro .button {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .hero-proof {
    gap: 14px;
    margin-top: 24px;
  }

  .hero-scroll-hint {
    bottom: 24px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .scroll-mouse {
    width: 26px;
    height: 26px;
  }

  .scroll-mouse i {
    width: 9px;
    height: 9px;
  }

  .product-stage {
    width: 100%;
    max-width: 100%;
  }

  .dashboard-shell {
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(23, 31, 43, .13);
  }

  .browser-top {
    height: 20px;
    padding: 0 12px;
  }

  .browser-top span {
    width: 6px;
    height: 6px;
  }

  .dashboard-preview,
  .mini-app {
    grid-template-columns: 1fr;
  }

  .preview-sidebar,
  .mini-sidebar {
    display: flex;
    flex-direction: row;
    overflow: auto;
    gap: 6px;
    height: 36px;
    align-items: center;
    padding: 6px;
    scrollbar-width: none;
  }

  .preview-sidebar::-webkit-scrollbar,
  .mini-sidebar::-webkit-scrollbar {
    display: none;
  }

  .preview-sidebar strong,
  .mini-sidebar strong {
    display: none;
  }

  .preview-sidebar button,
  .mini-sidebar span {
    white-space: nowrap;
    flex: 0 0 auto;
    height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px 0 8px;
    font-size: 10px;
    line-height: 1;
  }

  .preview-sidebar button::after {
    right: 8px;
    line-height: 1;
  }

  .preview-main,
  .profile-card-ui,
  .report-ui {
    padding: 8px;
  }

  .welcome-line {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .stat-grid article {
    min-height: 58px;
    padding: 8px;
  }

  .stat-grid span,
  .panel-title,
  .profile-metrics span,
  .report-stats span {
    font-size: 10px;
  }

  .stat-grid strong {
    margin-top: 4px;
    font-size: 15px;
  }

  .stat-grid em {
    margin-top: 3px;
    font-size: 9px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 88px;
    gap: 6px;
    margin-top: 6px;
  }

  .panel {
    padding: 8px;
  }

  .today-panel,
  .chart-panel,
  .contract-panel,
  .whatsapp-panel {
    min-height: 0;
  }

  .chart-panel,
  .contract-panel,
  .whatsapp-panel {
    display: none;
  }

  .preview-panel[data-preview-panel="reports"] .chart-panel {
    display: block;
  }

  .face-panel {
    min-height: 0;
  }

  .face-panel > strong {
    margin-top: 4px;
    font-size: 28px;
  }

  .face-panel > span,
  .face-panel > em {
    font-size: 10px;
  }

  .face-symbol {
    position: relative;
    right: auto;
    bottom: auto;
    width: 40px;
    height: 40px;
    margin: 18px auto 0;
    border-width: 2px;
    border-radius: 12px;
  }

  .face-symbol::before,
  .face-symbol::after {
    border-width: 2px;
  }

  .face-symbol::before {
    top: 8px;
    width: 14px;
    height: 14px;
  }

  .face-symbol::after {
    bottom: 7px;
    width: 22px;
    height: 10px;
  }

  .stat-grid,
  .profile-metrics,
  .report-stats,
  .report-body,
  .filter-grid,
  .mini-stat-row,
  .checkin-preview-grid,
  .message-board,
  .report-preview-grid,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .mock-table {
    overflow: visible;
    border: 0;
    display: grid;
    gap: 8px;
  }

  .table-head {
    display: none;
  }

  .table-row {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .table-row span {
    font-size: 12px;
  }

  .table-row span:nth-child(n+4) {
    display: none;
  }

  .table-row em {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    white-space: nowrap;
  }

  .filter-grid,
  .preview-toolbar span {
    display: none;
  }

  .preview-toolbar {
    margin-bottom: 10px;
    gap: 8px;
  }

  .preview-toolbar button {
    padding: 8px 10px;
    font-size: 11px;
  }

  .mini-stat-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .mini-stat-row article {
    padding: 10px;
  }

  .mini-stat-row strong {
    font-size: 15px;
  }

  .checkin-preview-grid,
  .message-board,
  .report-preview-grid,
  .settings-grid {
    gap: 8px;
  }

  .ticket-card:nth-child(3),
  .message-board article:nth-child(n+3),
  .settings-grid article:nth-child(n+5) {
    display: none;
  }

  .checkin-card,
  .ticket-card,
  .message-board article,
  .report-preview-grid article {
    padding: 12px;
  }

  .checkin-card .avatar-photo {
    width: 54px;
    height: 54px;
  }

  .wide-chart {
    min-height: 190px;
  }

  .donut-small {
    display: none;
  }

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

  .settings-grid article {
    min-height: 44px;
  }

  .today-panel {
    grid-column: auto;
  }

  .class-row {
    grid-template-columns: 38px 1fr;
    gap: 4px 6px;
    padding: 5px 0;
  }

  .class-row span,
  .class-row em,
  .member-line em,
  .notify-row span {
    font-size: 10px;
  }

  .class-row strong,
  .member-line strong,
  .notify-row strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .class-row b,
  .member-line b {
    padding: 2px 5px;
    font-size: 9px;
  }

  .class-row em,
  .class-row b {
    grid-column: 2;
  }

  .feature-strip,
  .efficiency-section,
  .platform-suite,
  .workflow,
  .system-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .efficiency-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .efficiency-copy,
  .efficiency-panel {
    max-width: none;
  }

  .efficiency-copy {
    justify-self: stretch;
  }

  .efficiency-copy h2 {
    font-size: 29px;
  }

  .efficiency-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .efficiency-panel {
    padding: 20px;
  }

  .efficiency-panel h3 {
    font-size: 22px;
  }

  .platform-suite {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .suite-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .suite-heading h2 {
    font-size: 29px;
  }

  .suite-heading p {
    font-size: 15px;
    line-height: 1.75;
  }

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

  .suite-grid article {
    min-height: 0;
    padding: 16px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-row article,
  .feature-row article:nth-child(3) {
    min-height: 0;
    padding: 0 8px 26px;
    border-right: 0;
    border-bottom: 1px solid #e5e9ef;
  }

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

  .profile-top,
  .profile-top dl {
    grid-template-columns: 1fr;
  }

  .profile-tabs {
    overflow: auto;
  }

  .member-mockup,
  .report-mockup,
  .booking-mockup,
  .print-mockup {
    min-height: 0;
  }

  .booking-ui,
  .print-ui section {
    padding: 14px;
  }

  .booking-header {
    display: grid;
    margin-bottom: 12px;
  }

  .booking-header strong {
    font-size: 22px;
  }

  .booking-days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .booking-days span {
    padding: 8px 4px;
    font-size: 10px;
  }

  .booking-days b {
    font-size: 16px;
  }

  .booking-list article {
    grid-template-columns: 46px 1fr;
    gap: 8px;
    padding: 12px;
  }

  .booking-list em {
    grid-column: 2;
    width: fit-content;
  }

  .print-ui {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .print-ui aside {
    display: none;
  }

  .print-toolbar {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .contract-paper {
    min-height: 230px;
    padding: 18px;
  }

  .contract-paper h4 {
    font-size: 20px;
  }

  .signature-line {
    margin-top: 32px;
  }

  .system-copy h3 {
    font-size: 29px;
  }

  .system-copy li {
    font-size: 15px;
  }

  .cta-section {
    grid-template-columns: 1fr;
    margin-left: 16px;
    margin-right: 16px;
  }

  .cta-section .button {
    width: 100%;
  }

  .site-footer {
    padding: 32px 16px 22px;
  }

  .footer-brand {
    display: grid;
    gap: 14px;
  }

  .footer-brand p {
    text-align: left;
    font-size: 15px;
    line-height: 1.5;
  }

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

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

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

  .product-stage {
    opacity: 1;
    transform: none;
  }
}
