:root {
  --ink: #211b15;
  --muted: #6b5d4f;
  --paper: #f8efe2;
  --paper-strong: #fffaf1;
  --charcoal: #101417;
  --charcoal-2: #1d211f;
  --gold: #c89645;
  --gold-2: #efcf8a;
  --green: #58b984;
  --line: rgba(55, 42, 27, 0.14);
  --line-dark: rgba(239, 207, 138, 0.24);
  --shadow: 0 28px 72px rgba(34, 25, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(248, 239, 226, 0.96), rgba(248, 239, 226, 0.98)),
    url("../../assets/owner-playbook/restaurant-bg.jpg") center / cover fixed;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px max(24px, calc((100vw - 1220px) / 2));
  color: #fff7e8;
  background: rgba(16, 20, 23, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 132px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 247, 232, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255, 247, 232, 0.84);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
  outline: none;
}

main {
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
  padding: 34px 0 82px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(480px, 0.92fr) minmax(430px, 1fr);
  gap: 34px;
  min-height: 560px;
  padding: 42px;
  overflow: hidden;
  color: #fff8ec;
  background:
    linear-gradient(115deg, rgba(8, 13, 18, 0.98) 0%, rgba(12, 17, 19, 0.94) 52%, rgba(20, 18, 14, 0.82) 100%);
  border: 1px solid rgba(239, 207, 138, 0.22);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(239, 207, 138, 0.13);
  border-radius: 24px;
  pointer-events: none;
}

.hero-copy,
.hero-photo {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 14px;
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-size: clamp(34px, 3.1vw, 40px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 12px;
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-size: clamp(25px, 2.1vw, 29px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: 0;
}

.lead {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 248, 236, 0.88);
  font-size: 16.5px;
  font-weight: 750;
  line-height: 1.5;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(239, 207, 138, 0.46);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 36px rgba(200, 150, 69, 0.28);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 480px;
}

.hero-points span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(239, 207, 138, 0.22);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.hero-photo {
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 207, 138, 0.3);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.hero-photo img,
.story-photo img,
.module-showcase img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.hero-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 18px;
  color: #fff8ec;
  background: rgba(16, 20, 23, 0.76);
  border: 1px solid rgba(239, 207, 138, 0.26);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.hero-photo figcaption span {
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
}

.hero-photo figcaption strong {
  font-size: 24px;
  line-height: 1.25;
}

.hero-photo figcaption em {
  color: rgba(255, 248, 236, 0.78);
  font-style: normal;
  font-weight: 800;
}

.owner-board,
.daily-flow,
.modules,
.feature-suite,
.role-paths,
.training,
.activation {
  margin-top: 30px;
  padding: 38px;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(65, 48, 30, 0.12);
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(31, 24, 16, 0.1);
}

.owner-board {
  color: #fff8ec;
  background: linear-gradient(150deg, rgba(16, 20, 23, 0.97), rgba(36, 29, 20, 0.93));
  border-color: rgba(239, 207, 138, 0.22);
}

.sample-note {
  margin: 8px 0 0;
  color: rgba(255, 248, 236, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.daily-flow,
.role-paths {
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(245, 233, 216, 0.94));
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head.compact {
  max-width: 560px;
}

.section-head h2 {
  margin-bottom: 0;
}

.owner-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.story-photo {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 207, 138, 0.2);
  border-radius: 22px;
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72));
}

.story-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px;
  color: #fff8ec;
  background: rgba(16, 20, 23, 0.68);
  border: 1px solid rgba(239, 207, 138, 0.2);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.insight-card {
  min-width: 0;
  min-height: 270px;
  display: grid;
  align-content: start;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid rgba(239, 207, 138, 0.18);
  border-radius: 20px;
}

.metric-label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.metric-value {
  display: block;
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
}

.insight-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 750;
}

.insight-card b {
  margin-top: auto;
  color: #a86124;
  font-size: 17px;
  line-height: 1.45;
}

.module-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flow-grid,
.feature-grid,
.role-grid {
  display: grid;
  gap: 16px;
}

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

.flow-grid article {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  color: #fff8ec;
  background: linear-gradient(145deg, rgba(16, 20, 23, 0.96), rgba(36, 32, 25, 0.92));
  border: 1px solid rgba(239, 207, 138, 0.22);
  border-radius: 20px;
}

.flow-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 14px;
  font-weight: 900;
}

.flow-grid p {
  margin: 0;
  color: rgba(255, 248, 236, 0.78);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 760;
  white-space: nowrap;
}

.module-showcase article {
  min-width: 0;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(31, 24, 16, 0.08);
}

.module-showcase img {
  height: 210px;
}

.module-showcase div {
  padding: 20px;
}

.module-showcase span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 14px;
  font-weight: 900;
}

.module-showcase p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
}

.module-showcase .module-summary-nowrap {
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.module-showcase b {
  display: block;
  margin-top: 12px;
  color: #a86124;
  font-size: 15px;
  line-height: 1.45;
}

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

.feature-grid article {
  min-height: 212px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.98);
  border: 1px solid rgba(55, 42, 27, 0.14);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31, 24, 16, 0.07);
}

.feature-grid span {
  width: fit-content;
  max-width: 100%;
  padding: 6px 11px;
  color: #7b4b16;
  background: rgba(239, 207, 138, 0.26);
  border: 1px solid rgba(200, 150, 69, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p,
.feature-grid b {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 740;
  line-height: 1.55;
}

.feature-grid b {
  margin-top: auto;
  color: #a86124;
}

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

.role-grid article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.role-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 740;
}

.role-grid small {
  color: #7d6b59;
  font-size: 13px;
  line-height: 1.5;
}

.role-grid a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0 14px;
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.training {
  background: rgba(255, 253, 248, 0.97);
}

.training-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}

.training-head .section-head {
  margin-bottom: 0;
}

.training-head .section-head > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.training-principle {
  display: grid;
  min-width: 290px;
  gap: 2px;
  padding: 13px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(200, 150, 69, 0.08);
}

.training-principle span {
  color: #8b642d;
  font-size: 12px;
  font-weight: 900;
}

.training-principle strong {
  font-size: 17px;
}

.training-workflow {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.training-photo {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d8cec0;
}

.training-photo::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(13, 17, 19, 0.78));
  pointer-events: none;
}

.training-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  gap: 3px;
  color: #fff;
}

.training-photo figcaption strong {
  font-size: 21px;
}

.training-photo figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.training-strip {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.training-strip li {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
}

.training-strip li:last-child {
  border-bottom: 1px solid var(--line);
}

.training-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: var(--gold-2);
  background: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
}

.training-strip strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.training-strip p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.training-strip b {
  color: #7b5827;
  font-size: 13px;
  white-space: nowrap;
}

.training-handoff {
  margin: 22px 0 0;
  padding: 14px 16px;
  color: #5f5347;
  background: #f5ecdd;
  border-radius: 6px;
  font-size: 14px;
}

.activation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff8ec;
  background: linear-gradient(135deg, rgba(16, 20, 23, 0.98), rgba(39, 33, 25, 0.96));
  border-color: rgba(239, 207, 138, 0.24);
}

.activation div {
  max-width: 720px;
}

.activation h2 {
  margin-bottom: 8px;
}

.activation p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 248, 236, 0.78);
  font-size: 18px;
  font-weight: 760;
}

@media (max-width: 1040px) {
  .hero,
  .owner-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 430px;
  }

  .insight-grid,
  .module-showcase,
  .flow-grid,
  .feature-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

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

  .module-showcase .module-summary-nowrap {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    background-attachment: scroll;
  }

  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .brand {
    width: 100%;
  }

  .brand img {
    width: 120px;
    height: 34px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav a {
    justify-content: center;
    padding: 0 8px;
    font-size: 14px;
  }

  main {
    width: min(calc(100% - 32px), 1220px);
    padding: 18px 0 56px;
  }

  .hero,
  .owner-board,
  .daily-flow,
  .modules,
  .feature-suite,
  .role-paths,
    .training,
    .activation {
    padding: 20px;
    border-radius: 22px;
  }

  .hero,
  .hero-copy,
  .hero-photo {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(25px, 7vw, 28px);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(21px, 5.8vw, 24px);
    line-height: 1.25;
  }

  .lead {
    font-size: 15.5px;
  }

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

  .button {
    min-width: 0;
    width: 100%;
    padding-inline: 14px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .hero-points span,
  .daily-flow-card,
  .role-grid article {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .training-head {
    display: grid;
    gap: 18px;
  }

  .training-principle {
    min-width: 0;
  }

  .training-workflow {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .training-photo {
    min-height: 300px;
  }

  .training-strip li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .training-strip b {
    grid-column: 2;
  }

  .hero-points span {
    min-height: 56px;
    padding: 12px 14px;
  }

  .daily-flow-card {
    padding: 20px;
  }

  .hero-photo,
  .story-photo {
    min-height: 330px;
  }

  .hero-photo figcaption,
  .story-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .metric-value {
    font-size: 42px;
  }

  .flow-grid article {
    min-height: 142px;
    padding: 20px 16px;
  }

  .flow-grid p {
    font-size: 12px;
  }
}

/* Align the owner workflow with the public homepage design system. */
:root {
  --ink: #162435;
  --muted: #5b6875;
  --paper: #f6f6f2;
  --paper-strong: #ffffff;
  --charcoal: #101b28;
  --charcoal-2: #1a2d40;
  --gold: #c18a32;
  --gold-2: #efd39b;
  --green: #3d9a68;
  --line: #dcdedb;
  --line-dark: rgba(255, 255, 255, 0.09);
  --shadow: none;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.topbar {
  min-height: 72px;
  padding: 10px max(24px, calc((100% - 1180px) / 2));
  color: #fff;
  background: rgba(12, 20, 29, 0.96);
  border-bottom-color: var(--line-dark);
  backdrop-filter: none;
}

.brand {
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.brand strong {
  font-size: 19px;
  line-height: 1.25;
}

.brand small {
  color: #d6bf91;
  font-size: 12px;
  font-weight: 700;
}

.nav {
  gap: 26px;
}

.nav a {
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #e9edf0;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: #f0ca7b;
  background: transparent;
}

main {
  width: min(100% - 48px, 1180px);
  padding: 24px 0 78px;
}

.hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.82fr);
  gap: 52px;
  min-height: 610px;
  padding: 52px;
  color: #fff;
  background: linear-gradient(115deg, rgba(8, 16, 24, 0.99), rgba(16, 27, 40, 0.94));
  border-color: rgba(239, 207, 138, 0.3);
  border-radius: 8px;
  box-shadow: none;
}

.hero::before {
  inset: 18px;
  border-radius: 6px;
}

.eyebrow {
  margin-bottom: 12px;
  color: #efc875;
  font-size: 13px;
  font-weight: 900;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-family: "Noto Serif TC", serif;
  font-size: 46px;
  line-height: 1.18;
}

h2 {
  margin-bottom: 12px;
  font-family: "Noto Serif TC", serif;
  font-size: 34px;
  line-height: 1.3;
}

h3 {
  font-size: 21px;
  line-height: 1.4;
}

.lead {
  max-width: 640px;
  margin-bottom: 24px;
  color: #f0f2f3;
  font-size: 18px;
  line-height: 1.65;
}

.button {
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
}

.button.primary,
.role-grid a {
  color: #111921;
  background: #d5a044;
  box-shadow: none;
}

.hero-points {
  max-width: 520px;
}

.hero-points span {
  min-height: 50px;
  padding: 9px 12px;
  color: #f7e7c7;
  background: rgba(13, 24, 35, 0.68);
  border-color: rgba(239, 200, 117, 0.42);
  border-radius: 4px;
  font-size: 14px;
}

.hero-photo {
  min-height: 470px;
  border-radius: 8px;
  box-shadow: none;
}

.hero-photo figcaption,
.story-photo figcaption {
  border-radius: 6px;
  background: rgba(13, 24, 34, 0.9);
}

.hero-photo figcaption strong {
  font-size: 22px;
}

.owner-board,
.daily-flow,
.modules,
.feature-suite,
.role-paths,
.training,
.activation {
  margin-top: 28px;
  padding: 36px;
  background: #fff;
  border-color: var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.owner-board,
.activation {
  color: #fff;
  background: var(--charcoal);
  border-color: rgba(239, 207, 138, 0.24);
}

.daily-flow,
.role-paths {
  background: #eef1f2;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head.compact {
  max-width: 680px;
}

.story-photo,
.insight-card,
.flow-grid article,
.module-showcase article,
.feature-grid article,
.role-grid article {
  border-radius: 8px;
  box-shadow: none;
}

.insight-card {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.metric-value {
  font-size: 46px;
}

.insight-card b,
.module-showcase b,
.feature-grid b {
  color: #9a691e;
}

.flow-grid article {
  color: #fff;
  background: var(--charcoal);
  border-color: rgba(239, 207, 138, 0.22);
}

.flow-grid span,
.module-showcase span {
  color: #111921;
  background: #d5a044;
  border-radius: 5px;
}

.module-showcase article,
.feature-grid article,
.role-grid article {
  background: #fff;
  border-color: var(--line);
}

.feature-grid span {
  color: #80571c;
  background: #f5e8cc;
  border-color: #e5c98e;
  border-radius: 4px;
}

.role-grid a {
  border-radius: 6px;
}

.training {
  background: #fff;
}

.training-principle {
  background: #f5f1e8;
}

.training-handoff {
  color: #58636d;
  background: #eef1f2;
}

.activation {
  background: var(--charcoal-2);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 12px 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .nav {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }

  .nav a {
    min-height: 40px;
    font-size: 13px;
  }

  main {
    width: min(100% - 28px, 1180px);
    padding-top: 14px;
  }

  .hero {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 8px;
  }

  .hero::before {
    inset: 10px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.18;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 360px;
    border-radius: 8px;
  }

  .owner-board,
  .daily-flow,
  .modules,
  .feature-suite,
  .role-paths,
  .training,
  .activation {
    padding: 24px;
    border-radius: 8px;
  }
}

/* Exact public-home design alignment. Keep this page's content, not a second visual system. */
body {
  background: #f6f6f2;
  color: #162435;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: normal;
}

.topbar {
  min-height: 72px;
  padding: 10px max(24px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(12, 20, 29, 0.96);
}

.brand {
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.brand strong {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.brand small {
  margin-top: 1px;
  color: #d6bf91;
  font-size: 12px;
  font-weight: 700;
}

.nav {
  gap: 26px;
}

.nav a {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #e9edf0;
  font-size: 14px;
  font-weight: 700;
}

main {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero {
  display: block;
  min-height: 660px;
  padding: 0;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background: #101b28;
}

.hero::before {
  z-index: 1;
  inset: 0;
  border: 0;
  border-radius: 0;
  background: rgba(7, 13, 19, 0.69);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(100% - 48px, 1180px);
  min-height: 660px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 78px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 18px;
  font-family: "Noto Serif TC", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.18;
}

.hero .lead {
  margin-bottom: 24px;
  color: #f0f2f3;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-photo figcaption {
  z-index: 4;
  top: 50%;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: auto;
  left: auto;
  width: 430px;
  padding: 24px;
  border: 1px solid rgba(238, 205, 137, 0.38);
  border-radius: 8px;
  background: rgba(12, 23, 34, 0.93);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
}

.hero-photo img {
  object-position: center 44%;
}

.hero-photo::after {
  display: none;
}

.hero-brief-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-brief-head > div {
  display: grid;
  gap: 5px;
}

.hero-brief-head span {
  color: #e6bd6d;
  font-size: 13px;
  font-weight: 900;
}

.hero-brief-head strong {
  font-size: 22px;
  font-weight: 700;
}

.hero-brief-head small {
  flex: 0 0 auto;
  padding: 5px 7px;
  border-radius: 4px;
  background: #253a4d;
  color: #d7dee3;
  font-size: 11px;
}

.hero-brief-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-brief-list li {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
}

.hero-brief-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(233, 194, 113, 0.45);
  border-radius: 4px;
  color: #ebc475;
  font-size: 11px;
  font-weight: 900;
}

.hero-brief-list li strong {
  color: #fff;
  font-size: 16px;
}

.hero-brief-list li p {
  margin: 4px 0 0;
  color: #cbd3d9;
  font-size: 14px;
  line-height: 1.58;
}

.hero-brief-foot {
  margin: 16px 0 0;
  color: #aab5bd;
  font-size: 12px;
  line-height: 1.6;
}

.section-head h2,
.section-head.compact h2,
.training-head h2,
.activation h2 {
  margin-bottom: 12px;
  color: inherit;
  font-family: "Noto Serif TC", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
}

.owner-board,
.daily-flow,
.modules,
.feature-suite,
.role-paths,
.training,
.activation {
  margin-top: 0;
  padding: 78px 70px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.daily-flow,
.modules,
.feature-suite,
.role-paths,
.training {
  background: transparent;
}

.daily-flow,
.feature-suite,
.training {
  background: #fff;
}

.owner-board,
.activation {
  background: #101b28;
}

.flow-grid article,
.insight-card,
.module-showcase article,
.feature-grid article,
.role-grid article,
.story-photo,
.training-photo {
  border-radius: 8px;
}

@media (max-width: 900px) {
  main {
    width: min(100% - 32px, 1320px);
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-copy {
    min-height: auto;
    padding: 58px 32px 32px;
  }

  .hero-photo {
    position: relative;
    min-height: 390px;
    border-radius: 0;
  }

  .hero-photo figcaption {
    top: auto;
    right: 20px;
    bottom: 20px;
    width: min(390px, calc(100% - 40px));
    transform: none;
  }

  .owner-board,
  .daily-flow,
  .modules,
  .feature-suite,
  .role-paths,
  .training,
  .activation {
    padding: 58px 32px;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: sticky;
    min-height: 64px;
    align-items: center;
    flex-direction: row;
    padding: 10px 16px;
  }

  .brand {
    width: auto;
  }

  .nav {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.22;
  }

  .section-head h2,
  .section-head.compact h2,
  .training-head h2,
  .activation h2 {
    font-size: 28px;
    line-height: 1.38;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }
}

/* Homepage is the visual source of truth. The owner page keeps its own content,
   while using the same full-width bands, alignment and visual rhythm. */
main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero {
  width: 100%;
}

.owner-board,
.daily-flow,
.modules,
.feature-suite,
.role-paths,
.training,
.activation {
  width: 100%;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
}

.daily-flow,
.feature-suite,
.training {
  background: #fff;
}

.modules,
.role-paths {
  background: #f6f6f2;
}

@media (min-width: 1280px) {
  .role-paths {
    padding-right: max(24px, calc((100% - 1320px) / 2));
    padding-left: max(24px, calc((100% - 1320px) / 2));
  }

  .role-grid article {
    padding-right: 18px;
    padding-left: 18px;
  }

  .role-grid p,
  .role-grid small {
    font-size: clamp(13px, 1vw, 14px);
    letter-spacing: 0;
    white-space: nowrap;
  }
}

.owner-board,
.activation {
  color: #f4f7f8;
  background: #101b28;
}

@media (max-width: 900px) {
  main {
    width: 100%;
  }

  .owner-board,
  .daily-flow,
  .modules,
  .feature-suite,
  .role-paths,
  .training,
  .activation {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .owner-board,
  .daily-flow,
  .modules,
  .feature-suite,
  .role-paths,
  .training,
  .activation {
    padding: 46px 22px;
  }
}
