:root {
  --ink: #1c2736;
  --muted: #667385;
  --line: #dde6ed;
  --soft: #eef4f5;
  --brand: #12636c;
  --brand-dark: #0c4f57;
  --accent: #a97828;
  --white: #ffffff;
  --panel: #fbfcfd;
  --shadow: 0 16px 38px rgba(25, 40, 58, 0.08);
  --page-width: 1080px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #f1f5f7;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(20, 34, 52, 0.06);
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 7px 24px;
  color: var(--muted);
  font-size: 13px;
}

.topbar strong {
  color: var(--brand);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 10px 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 112px;
}

.brand-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 20px;
  color: #2d3a4c;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  border-color: var(--brand);
}

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

.nav-login,
.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-login {
  border: 1px solid var(--line);
  color: #334155;
  background: rgba(255, 255, 255, 0.72);
}

.nav-login:hover {
  border-color: rgba(11, 111, 125, 0.35);
  color: var(--brand);
  background: #f4fafb;
}

.nav-call,
.btn.primary {
  color: var(--white);
  background: var(--brand);
}

.btn.primary:hover,
.nav-call:hover {
  background: var(--brand-dark);
}

.btn.ghost {
  color: var(--brand);
  background: #eaf4f5;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 34px;
  align-items: center;
  max-width: var(--page-width);
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: 58px 24px 70px;
}

.eyebrow,
.section-heading span,
.section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 800;
}

.hero h1 {
  max-width: 680px;
  margin: 16px 0 18px;
  font-size: 50px;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--brand);
  font-size: 28px;
}

.hero-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.88) contrast(0.96);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  color: var(--white);
  background: rgba(18, 65, 82, 0.84);
  backdrop-filter: blur(8px);
}

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

.floating-card span {
  margin-top: 8px;
  line-height: 1.6;
}

.section {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 72px 24px;
  scroll-margin-top: 120px;
}

.page-hero {
  padding-top: 64px;
  padding-bottom: 54px;
}

.page-hero span {
  color: var(--accent);
  font-weight: 800;
}

.page-hero h1 {
  max-width: 860px;
  margin: 12px 0 12px;
  font-size: 42px;
  line-height: 1.18;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.contact-copy h2 {
  margin: 10px 0 0;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.quick-grid,
.advantage-grid,
.package-grid,
.process-grid,
.case-grid,
.testimonial-grid,
.news-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.advantage-card,
.package-card,
.process-card,
.case-card,
.testimonial-card,
.news-card,
.product-card,
.lead-form,
.pain-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card,
.advantage-card,
.case-card,
.testimonial-card,
.news-card,
.product-card {
  padding: 24px;
}

.service-card span,
.package-card > span,
.case-card span,
.process-card span,
.news-card time {
  color: var(--brand);
  font-weight: 800;
}

.service-card h3,
.advantage-card h3,
.package-card h3,
.process-card h3,
.case-card h3,
.news-card h3 {
  margin: 12px 0 10px;
  font-size: 20px;
}

.service-card p,
.advantage-card p,
.process-card p,
.case-card p,
.testimonial-card p,
.news-card p,
.product-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.pain-section,
.package-section,
.testimonial-section,
.faq-section {
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--page-width)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--page-width)) / 2 + 24px));
  background: var(--soft);
}

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

.pain-item {
  padding: 18px 20px;
  color: #2a3a50;
  font-weight: 650;
}

.advantage-card {
  border-top: 4px solid var(--brand);
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  padding: 28px;
  background: var(--white);
}

.package-card strong {
  display: block;
  margin: 12px 0 18px;
  color: var(--accent);
  font-size: 28px;
}

.package-card ul {
  display: grid;
  gap: 10px;
  min-height: 126px;
  margin: 0;
  padding: 0 0 0 20px;
  color: var(--muted);
}

.package-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand);
  font-weight: 800;
}

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

.process-card {
  padding: 24px;
  background: var(--white);
}

.process-card span {
  font-size: 30px;
}

.case-grid,
.testimonial-grid,
.news-grid,
.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  display: grid;
  gap: 14px;
  background: var(--white);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.product-meta em {
  border-radius: 999px;
  padding: 4px 9px;
  color: #7c4f11;
  background: #fff3dd;
  font-style: normal;
}

.product-card h3 {
  margin: 0;
  font-size: 20px;
}

.product-card strong {
  color: var(--accent);
  font-size: 26px;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.testimonial-card p {
  min-height: 88px;
  margin-top: 0;
  color: #26364c;
}

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

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 72px;
}

.contact-meta {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--muted);
}

.contact-meta strong {
  color: var(--brand);
  font-size: 30px;
}

.qr-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.qr-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 14px 34px rgba(21, 32, 51, 0.09);
}

.qr-card img {
  width: 118px;
  height: 118px;
  border: 6px solid var(--white);
  border-radius: 6px;
  outline: 1px solid var(--line);
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(21, 32, 51, 0.08);
}

.advisor-qr-card {
  border-color: rgba(8, 123, 141, 0.26);
}

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

.qr-card strong {
  color: var(--ink);
}

.qr-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: none;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #27364a;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.form-tip {
  min-height: 24px;
  margin: 0;
  color: var(--brand);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - var(--page-width)) / 2 + 24px));
  color: #cbd5e1;
  background: #152033;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer div:last-child {
  display: grid;
  gap: 8px;
  text-align: right;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background:
    linear-gradient(180deg, rgba(241, 245, 247, 0.98), rgba(234, 241, 243, 0.98)),
    #f1f5f7;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(360px, 440px) minmax(280px, 360px);
  gap: 18px;
  align-items: stretch;
  width: min(840px, 100%);
}

.auth-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.auth-admin-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(18, 99, 108, 0.2);
  border-radius: 8px;
  padding: 28px;
  background: #f8fbfc;
  box-shadow: var(--shadow);
}

.auth-admin-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.auth-admin-card h1 {
  margin: 12px 0 10px;
  font-size: 30px;
  line-height: 1.2;
}

.auth-admin-card p {
  color: var(--muted);
  line-height: 1.75;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.auth-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.auth-brand strong,
.auth-brand small {
  display: block;
}

.auth-brand small {
  margin-top: 4px;
  color: var(--muted);
}

.auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.auth-switch button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-switch button.active {
  border-color: var(--brand);
  color: var(--white);
  background: var(--brand);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #27364a;
  font-weight: 700;
}

.auth-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.auth-links a {
  color: var(--brand);
  font-weight: 700;
}

.member-page {
  min-height: 100vh;
  padding: 24px max(20px, calc((100vw - var(--page-width)) / 2 + 20px)) 56px;
  background: #f1f5f7;
}

.member-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.member-header .auth-brand {
  margin-bottom: 0;
}

.member-header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.member-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.member-hero h1 {
  margin: 10px 0;
  font-size: 36px;
  line-height: 1.2;
}

.member-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.member-status-card,
.member-metric,
.member-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.member-status-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  background: #f8fbfc;
}

.member-status-card span,
.member-status-card small,
.member-metric span,
.member-metric small {
  color: var(--muted);
}

.member-status-card strong {
  color: var(--brand);
  font-size: 28px;
}

.member-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 18px 0;
}

.member-metric {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.member-metric strong {
  color: var(--ink);
  font-size: 24px;
}

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

.member-panel {
  overflow: hidden;
}

.member-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  background: #f8fbfc;
}

.member-panel-head h2 {
  margin: 0;
  font-size: 18px;
}

.member-panel-head span {
  color: var(--muted);
  font-size: 14px;
}

.member-table,
.member-detail-list,
.member-timeline {
  padding: 18px 20px;
}

.member-table {
  overflow-x: auto;
}

.member-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.member-table th,
.member-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.member-table th {
  color: var(--muted);
  font-size: 13px;
}

.member-table span,
.member-table em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

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

.member-detail-list div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.member-detail-list strong {
  color: var(--muted);
}

.member-detail-list span {
  color: var(--ink);
}

.member-timeline {
  display: grid;
  gap: 12px;
}

.member-timeline-item {
  border-left: 3px solid rgba(18, 99, 108, 0.28);
  padding: 4px 0 4px 12px;
}

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

.member-timeline-item span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.65;
}

.member-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

body.visual-editing {
  padding-bottom: 76px;
}

body.visual-editing [data-edit-path] {
  outline: 2px dashed rgba(8, 123, 141, 0.42);
  outline-offset: 4px;
  cursor: pointer;
}

body.visual-editing [data-sort-path] {
  cursor: grab;
}

.visual-dragging {
  opacity: 0.56;
}

.visual-toolbar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: calc(var(--page-width) - 20px);
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(8, 123, 141, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-toolbar strong {
  color: var(--brand);
}

.visual-toolbar span {
  flex: 1;
  color: var(--muted);
  font-size: 14px;
}

.visual-exit {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--white);
  background: var(--brand);
  font-weight: 800;
}

.visual-modal {
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 28, 46, 0.48);
}

.visual-modal-panel {
  width: min(620px, 100%);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 72px rgba(15, 28, 46, 0.28);
}

.visual-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--line);
}

.visual-modal-head span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.visual-modal-head h2 {
  margin: 6px 0 0;
  font-size: 24px;
}

.visual-modal-head button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.visual-field {
  display: grid;
  gap: 10px;
  padding: 20px 24px 0;
  color: #27364a;
  font-weight: 800;
}

.visual-field textarea {
  width: 100%;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.visual-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px 24px;
}

.visual-actions button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.visual-actions #visual-save {
  border-color: var(--brand);
  color: var(--white);
  background: var(--brand);
}

.visual-actions span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-call {
    display: none;
  }

  .nav-actions {
    flex-basis: 100%;
    order: 3;
  }

  .nav-login {
    flex: 1;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    order: 4;
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .quick-grid,
  .advantage-grid,
  .package-grid,
  .process-grid,
  .case-grid,
  .testimonial-grid,
  .news-grid,
  .product-grid,
  .member-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-shell,
  .member-hero,
  .member-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 84px;
    height: 84px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1,
  .page-hero h1,
  .section-heading h2,
  .split h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .hero-stats,
  .quick-grid,
  .advantage-grid,
  .package-grid,
  .process-grid,
  .case-grid,
  .testimonial-grid,
  .news-grid,
  .product-grid,
  .member-metrics {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 12px;
    color: var(--ink);
    background: var(--soft);
  }

  .site-footer {
    display: grid;
  }

  .site-footer div:last-child {
    text-align: left;
  }

  .qr-panel,
  .qr-card {
    grid-template-columns: 1fr;
  }

  .qr-card {
    align-items: start;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .auth-page {
    padding: 18px;
  }

  .auth-shell,
  .auth-card,
  .auth-admin-card,
  .member-hero {
    min-width: 0;
  }

  .member-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .member-hero,
  .auth-card,
  .auth-admin-card {
    padding: 22px;
  }

  .member-hero h1 {
    font-size: 28px;
  }

  .member-detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .visual-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}
