:root {
  --ink: #22313b;
  --muted: #687680;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #e5ded2;
  --sage: #7fa58e;
  --green: #0f7057;
  --green-dark: #0b4e41;
  --coral: #cf684f;
  --blue: #2e6f91;
  --gold: #d5a958;
  --mint: #9fe3c2;
  --sun: #ffd166;
  --shadow: 0 18px 50px rgba(35, 49, 59, 0.14);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green-dark);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid rgba(229, 222, 210, 0.8);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-size: 13px;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  color: var(--muted);
  font-weight: 800;
  font-size: 15px;
}

.site-nav a:hover {
  color: var(--green);
}

.site-nav a[aria-current="page"] {
  color: var(--green);
}

.nav-cta {
  padding: 9px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0d2a2f 0%, #0f7057 42%, #cf684f 100%);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 26, 31, 0.72), rgba(13, 26, 31, 0.2) 58%, rgba(13, 26, 31, 0.08)),
    linear-gradient(0deg, rgba(13, 26, 31, 0.55), rgba(13, 26, 31, 0.02) 55%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header-height) 0 0;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 76px 76px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 16vh;
  width: 46vw;
  height: 46vw;
  opacity: 0.16;
  background:
    conic-gradient(from 45deg, transparent 0 15%, rgba(255, 209, 102, 0.9) 15% 30%, transparent 30% 47%, rgba(159, 227, 194, 0.9) 47% 64%, transparent 64% 100%);
  clip-path: polygon(50% 0, 100% 38%, 84% 100%, 17% 100%, 0 38%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 60px);
  align-items: end;
  padding: calc(var(--header-height) + 72px) 0 72px;
  color: var(--white);
}

.hero-layout-rich {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
}

.hero-copy {
  max-width: 780px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .kicker {
  color: #ffd79e;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
}

.hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 25px);
}

.hero-copy h1 {
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #12a072);
  box-shadow: 0 16px 34px rgba(15, 112, 87, 0.28);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost-dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button.small {
  min-height: 40px;
  padding-inline: 14px;
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-card span {
  color: #ffd79e;
  font-weight: 900;
}

.hero-card strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.35;
}

.hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-product {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.product-phone {
  width: min(330px, 100%);
  min-height: 560px;
  padding: 18px;
  border: 10px solid #1e2a2f;
  border-radius: 42px;
  background: #f9faf6;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(255, 255, 255, 0.08);
  transform: rotate(1.5deg);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 10px 8px 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.preference-card,
.result-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(35, 49, 59, 0.1);
}

.preference-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.pill {
  display: inline-flex;
  margin: 4px 4px 4px 0;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.pill.good {
  background: var(--sage);
}

.pill.bad {
  background: var(--coral);
}

.route-map {
  position: relative;
  height: 230px;
  margin: 16px 0;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(46, 111, 145, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(46, 111, 145, 0.14) 1px, transparent 1px),
    #eef5ef;
  background-size: 42px 42px;
}

.route-line {
  position: absolute;
  height: 8px;
  border-radius: 999px;
}

.route-a {
  width: 78%;
  left: 12%;
  top: 44%;
  background: rgba(15, 112, 87, 0.34);
  transform: rotate(-22deg);
}

.route-b {
  width: 62%;
  left: 22%;
  top: 62%;
  background: rgba(207, 104, 79, 0.28);
  transform: rotate(18deg);
}

.map-dot {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 7px;
  background: var(--coral);
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(35, 49, 59, 0.2);
}

.map-dot::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--white);
}

.dot-one {
  left: 18%;
  top: 24%;
  background: var(--green);
}

.dot-two {
  right: 20%;
  top: 34%;
}

.dot-three {
  left: 46%;
  bottom: 18%;
  background: var(--blue);
}

.result-card span {
  color: var(--muted);
  font-weight: 900;
}

.result-card strong {
  display: block;
  color: var(--green);
  font-size: 30px;
  line-height: 1.15;
}

.result-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.floating-proof {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: 170px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(11, 78, 65, 0.86);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.value-ribbon {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #102d30;
  background: linear-gradient(90deg, var(--sun), var(--mint), #ffffff, var(--sun));
}

.ribbon-marquee {
  display: flex;
  width: max-content;
  min-width: 200%;
  padding: 12px 0;
  animation: ribbonMove 28s linear infinite;
}

.ribbon-track {
  display: flex;
  min-width: 50%;
  flex: 0 0 auto;
  justify-content: space-around;
  gap: 12px;
  padding-right: 12px;
}

.ribbon-track span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-weight: 900;
  white-space: nowrap;
}

@keyframes ribbonMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.impact-dashboard-section {
  background:
    linear-gradient(180deg, #fffdf8, #edf6f1);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.market-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dash-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.dash-card.wide {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.dash-card span {
  color: var(--coral);
  font-weight: 900;
}

.dash-card.wide span,
.dash-card.wide p {
  color: rgba(255, 255, 255, 0.86);
}

.dash-card strong {
  display: block;
  color: var(--green);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
}

.dash-card.wide strong {
  color: var(--sun);
}

.dash-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.chart-card {
  background: #fff8ec;
}

.bar-set {
  min-height: 120px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 12px 0;
}

.bar-set i {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--coral), var(--gold));
}

.floating-proof span {
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.floating-proof p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.stats-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.stats-grid article {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
  border-left: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stats-grid article:last-child {
  border-right: 1px solid var(--line);
}

.stats-grid strong {
  color: var(--green);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.stats-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.stats-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(35, 49, 59, 0.1);
}

.section {
  padding: clamp(68px, 8vw, 116px) 0;
}

.page-hero {
  padding: calc(var(--header-height) + 64px) 0 72px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 209, 102, 0.34), transparent 22%),
    radial-gradient(circle at 62% 76%, rgba(159, 227, 194, 0.42), transparent 26%),
    linear-gradient(120deg, rgba(237, 246, 241, 0.95), rgba(251, 250, 246, 0.9) 54%, rgba(255, 238, 225, 0.82)),
    #edf6f1;
}

.page-hero.compact-hero {
  padding-bottom: 56px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 74px);
}

.page-hero h1::after,
.section-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--coral);
}

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

.page-hero img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-hero-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
}

.team-hero-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.team-hero-panel article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.team-hero-panel article:hover {
  transform: translateY(-4px);
}

.team-hero-panel strong {
  color: var(--green);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.team-hero-panel span {
  color: var(--muted);
  font-weight: 900;
}

.tinted {
  background: #edf6f1;
}

.muted-section {
  background: #f5f1e9;
}

.two-column,
.media-split,
.business-layout,
.deck-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.media-split.reverse {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.section-copy p,
.section-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  margin-bottom: 36px;
}

.cards {
  display: grid;
  gap: 16px;
}

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

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

.cards article,
.filter-panel,
.results-panel,
.business-detail,
.team-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cards article {
  min-height: 230px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cards article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(35, 49, 59, 0.16);
}

.scenario-cards article,
.portal-cards article {
  position: relative;
  overflow: hidden;
}

.scenario-cards article::before,
.portal-cards article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--green);
}

.scenario-cards .accent-coral::before {
  background: var(--coral);
}

.scenario-cards .accent-blue::before {
  background: var(--blue);
}

.portal-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.no-margin {
  margin-top: 0;
}

.icon {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-weight: 900;
}

.slide-feature {
  margin-top: 36px;
}

.slide-feature img,
.media-frame,
.deck-viewer > img {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.slide-feature.compact {
  margin-top: 28px;
}

.media-frame {
  background: var(--white);
}

.media-frame img {
  width: 100%;
}

.process-panel,
.feature-dashboard,
.business-model-grid,
.timeline-panel {
  display: grid;
  gap: 14px;
}

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

.process-panel article,
.feature-dashboard section,
.business-model-grid article,
.timeline-panel article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.origin-story-band,
.product-flow-section,
.team-spectrum-section {
  background:
    linear-gradient(135deg, #fffdf8, #edf6f1 55%, #fff4e5);
}

.story-rail,
.product-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.story-rail article,
.product-flow article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-rail article::before,
.product-flow article::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(159, 227, 194, 0.28);
}

.story-rail span,
.product-flow span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #12a072);
  font-weight: 900;
}

.story-rail article:nth-child(even) span,
.product-flow article:nth-child(even) span {
  background: linear-gradient(135deg, var(--coral), var(--gold));
}

.revenue-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 16px;
}

.revenue-showcase article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.revenue-showcase .revenue-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.revenue-showcase span {
  color: var(--coral);
  font-weight: 900;
}

.revenue-showcase .revenue-hero span,
.revenue-showcase .revenue-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.revenue-showcase strong {
  color: var(--green);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
}

.revenue-showcase .revenue-hero strong {
  color: var(--sun);
}

.revenue-showcase p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.donut {
  width: 128px;
  height: 128px;
  margin: 10px 0;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 37%, var(--coral) 37% 67%, var(--blue) 67% 90%, var(--gold) 90% 100%);
  box-shadow: inset 0 0 0 28px var(--white);
}

.capability-spectrum {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.capability-spectrum article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 60px;
  gap: 16px;
  align-items: center;
}

.capability-spectrum span,
.capability-spectrum strong {
  font-weight: 900;
}

.capability-spectrum i {
  position: relative;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9efe9;
}

.capability-spectrum i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--mint), var(--sun));
}

.process-panel article:hover,
.feature-dashboard section:hover,
.business-model-grid article:hover,
.timeline-panel article:hover {
  transform: translateY(-4px);
}

.process-panel article.active {
  border-color: rgba(15, 112, 87, 0.35);
  background: #f3fbf6;
}

.process-panel span,
.timeline-panel span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--coral);
  font-weight: 900;
}

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

.business-model-grid strong {
  display: block;
  color: var(--green);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
}

.business-model-grid span,
.feature-dashboard p,
.timeline-panel p,
.process-panel p {
  color: var(--muted);
}

.compact-insights {
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--white);
}

.app-demo {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(280px, 1fr) minmax(260px, 340px);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid #d9e8df;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.filter-panel,
.results-panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 28px;
}

.filter-panel label {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.filter-panel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.range-control {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.range-control label {
  display: block;
  min-height: auto;
}

.range-control input {
  width: 100%;
  accent-color: var(--coral);
}

.phone-preview {
  display: grid;
  place-items: center;
  padding: 34px;
  border-left: 1px solid #d9e8df;
  border-right: 1px solid #d9e8df;
  background:
    linear-gradient(90deg, rgba(46, 111, 145, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(46, 111, 145, 0.12) 1px, transparent 1px),
    #f7fbf8;
  background-size: 64px 64px;
}

.phone {
  width: min(300px, 100%);
  aspect-ratio: 9 / 18.4;
  padding: 12px;
  border: 9px solid #26343a;
  border-radius: 38px;
  background: #26343a;
  box-shadow: 0 24px 48px rgba(35, 49, 59, 0.24);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #fbfaf6;
}

.phone-top {
  position: absolute;
}

.screen-title {
  display: block;
  padding: 22px 18px 10px;
  text-align: center;
  font-weight: 900;
}

.mini-map {
  position: relative;
  height: 62%;
  margin: 0 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(28deg, transparent 45%, rgba(207, 104, 79, 0.22) 46%, rgba(207, 104, 79, 0.22) 49%, transparent 50%),
    linear-gradient(120deg, transparent 50%, rgba(15, 112, 87, 0.22) 51%, rgba(15, 112, 87, 0.22) 54%, transparent 55%),
    linear-gradient(90deg, rgba(46, 111, 145, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(46, 111, 145, 0.12) 1px, transparent 1px),
    #eef4ef;
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
}

.pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50% 50% 50% 8px;
  background: var(--coral);
  box-shadow: 0 10px 20px rgba(35, 49, 59, 0.2);
  transform: rotate(-45deg);
  cursor: pointer;
}

.pin::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--white);
}

.pin.active {
  background: var(--green);
  outline: 7px solid rgba(15, 112, 87, 0.15);
}

.pin-a {
  left: 18%;
  top: 22%;
}

.pin-b {
  left: 58%;
  top: 34%;
}

.pin-c {
  left: 44%;
  top: 68%;
}

.screen-card {
  margin: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(35, 49, 59, 0.12);
}

.screen-card span {
  color: var(--muted);
  font-weight: 800;
}

.screen-card strong {
  display: block;
  color: var(--green);
  font-size: 34px;
  line-height: 1.1;
}

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

.restaurant {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
}

.restaurant strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.restaurant p {
  margin-bottom: 0;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag {
  border-radius: 999px;
  padding: 3px 9px;
  color: var(--white);
  background: var(--sage);
  font-size: 13px;
  font-weight: 900;
}

.business-layout {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 16px;
}

.tab {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.tab.active {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.business-detail {
  min-height: 166px;
  padding: 22px;
}

.business-detail strong {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 20px;
}

.business-detail p {
  margin-bottom: 0;
}

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

.team-grid article {
  min-height: 190px;
  padding: 24px;
}

.team-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-summary-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-summary-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--coral);
  font-weight: 900;
}

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

.member-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.member-main {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.member-main h2 {
  margin-bottom: 12px;
}

.member-lead {
  color: var(--muted);
  font-size: 18px;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.member-tags span {
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

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

.member-detail section {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.member-detail section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.member-detail h3 {
  color: var(--green-dark);
}

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

.member-detail ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.member-detail li + li {
  margin-top: 7px;
}

.deck-layout {
  align-items: end;
  margin-bottom: 28px;
}

.deck-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-weight: 900;
}

.deck-viewer > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--white);
}

.proposal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.proposal-metrics-band {
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--coral));
}

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

.proposal-metrics article {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.proposal-metrics strong {
  color: var(--sun);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.proposal-metrics span {
  margin-top: 8px;
  font-weight: 900;
}

.proposal-toc {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proposal-toc strong {
  margin-bottom: 8px;
}

.proposal-toc a {
  padding: 6px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.proposal-toc a:hover {
  color: var(--green);
}

.proposal-list {
  display: grid;
  gap: 22px;
}

.proposal-section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proposal-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--green);
}

.proposal-section:nth-child(3n + 2)::before {
  background: var(--coral);
}

.proposal-section:nth-child(3n)::before {
  background: var(--blue);
}

.proposal-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.proposal-section p {
  color: var(--muted);
  font-size: 17px;
}

.quote {
  padding: 18px;
  border-left: 5px solid var(--coral);
  background: #fff7f1;
  color: var(--ink);
  font-weight: 900;
}

.insight-grid,
.three-text-columns,
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.insight-grid article,
.three-text-columns section,
.sdg-grid section,
.two-card section,
.comparison-list section {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
}

.insight-grid article::after,
.three-text-columns section::after,
.sdg-grid section::after,
.two-card section::after,
.comparison-list section::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px auto;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 112, 87, 0.24);
}

.insight-grid strong {
  display: block;
  color: var(--green);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
}

.insight-grid span,
.sdg-grid p,
.three-text-columns p,
.two-card p,
.comparison-list p {
  color: var(--muted);
}

.two-card,
.comparison-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.team-summary-grid.text-only {
  margin-top: 22px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.thumb.active {
  border-color: var(--green);
}

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

.cta-section {
  padding: 0 0 clamp(68px, 8vw, 116px);
  background: var(--paper);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green-dark);
}

.cta-box .kicker {
  color: #ffd79e;
}

.cta-box h2 {
  margin-bottom: 0;
}

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

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .three-cards,
  .four-cards,
  .team-grid,
  .team-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-demo {
    grid-template-columns: 260px 1fr;
  }

  .results-panel {
    grid-column: 1 / -1;
    border-top: 1px solid #d9e8df;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: #edf6f1;
  }

  .nav-cta {
    color: var(--white);
  }

  .hero-layout,
  .hero-layout-rich,
  .dashboard-layout,
  .page-hero-layout,
  .team-hero-layout,
  .two-column,
  .media-split,
  .media-split.reverse,
  .business-layout,
  .deck-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-bottom: 44px;
  }

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

  .hero-product {
    min-height: auto;
    justify-items: start;
  }

  .product-phone {
    width: min(360px, 100%);
  }

  .floating-proof {
    right: auto;
    left: min(250px, 55%);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    min-height: 120px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .app-demo {
    grid-template-columns: 1fr;
  }

  .phone-preview {
    border: 1px solid #d9e8df;
    border-left: 0;
    border-right: 0;
  }

  .result-list {
    grid-template-columns: 1fr;
  }

  .market-dashboard {
    grid-template-columns: 1fr;
  }

  .deck-controls {
    justify-content: flex-start;
  }

  .thumbs {
    grid-template-columns: repeat(6, 1fr);
  }

  .proposal-layout {
    grid-template-columns: 1fr;
  }

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

  .proposal-toc {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-grid,
  .three-text-columns,
  .sdg-grid,
  .two-card,
  .comparison-list,
  .process-panel,
  .business-model-grid,
  .story-rail,
  .product-flow,
  .revenue-showcase {
    grid-template-columns: 1fr;
  }

  .capability-spectrum article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(13, 26, 31, 0.78), rgba(13, 26, 31, 0.25)),
      linear-gradient(90deg, rgba(13, 26, 31, 0.5), rgba(13, 26, 31, 0.16));
  }

  .hero-layout {
    padding-top: calc(var(--header-height) + 46px);
  }

  .hero-actions,
  .cta-box,
  .footer-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-product {
    display: none;
  }

  .value-ribbon {
    display: none;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .three-cards,
  .four-cards,
  .team-grid,
  .team-summary-grid,
  .member-profile {
    grid-template-columns: 1fr;
  }

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

  .team-hero-panel article {
    min-height: 118px;
  }

  .member-main {
    position: static;
  }

  .cards article,
  .team-grid article {
    min-height: auto;
  }

  .filter-panel,
  .results-panel {
    padding: 22px;
  }

  .phone-preview {
    padding: 26px 18px;
  }

  .phone {
    width: min(270px, 100%);
  }

  .deck-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  #slideCounter {
    text-align: center;
  }

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

  .proposal-toc {
    grid-template-columns: 1fr;
  }

  .proposal-metrics {
    grid-template-columns: 1fr;
  }
}
