﻿:root {
  --brand-dark: #2d3436;
  --brand-orange: #e17055;
  --brand-orange-dark: #d65f43;
  --warm-bg: #faf7f2;
  --surface: #ffffff;
  --muted: #636e72;
  --border: #e9e2d8;
  --green: #2f9e44;
  --blue: #2f80ed;
  --gray: #868e96;
  --shadow: 0 20px 60px rgba(45, 52, 54, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brand-dark);
  background: var(--warm-bg);
  font-family: "Noto Sans SC", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

body.is-modal-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 7vw;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand::before {
  content: "";
  width: 22px;
  height: 22px;
  background:
    linear-gradient(135deg, rgba(225, 112, 85, 0.9), rgba(225, 112, 85, 0.64)),
    var(--brand-orange);
  border-radius: 6px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.34), 0 8px 18px rgba(225, 112, 85, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
}

.nav a {
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand-dark);
  border-bottom-color: var(--brand-orange);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand-dark);
}

.section {
  width: min(1160px, 86vw);
  margin: 0 auto;
  padding: 88px 0;
}

.section.compact {
  padding-top: 56px;
}

.page-hero {
  padding-top: 86px;
  padding-bottom: 42px;
}

.page-hero .hero-subtitle {
  max-width: 820px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 72px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
}

.tag-row span + span::before {
  content: "·";
  margin-right: 12px;
  color: rgba(99, 110, 114, 0.44);
  font-weight: 900;
}

.tag-row .accent-tag {
  color: var(--brand-orange);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 22px;
}

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

.hero-actions .button {
  min-height: 46px;
  padding: 0 18px;
  font-weight: 750;
}

.hero-actions .button.primary {
  box-shadow: 0 12px 26px rgba(225, 112, 85, 0.18);
}

.hero-actions .button.secondary,
.hero-actions .button.ghost {
  background: rgba(255, 255, 255, 0.62);
}

.hero-actions .button.secondary {
  border-color: rgba(45, 52, 54, 0.22);
}

.hero-actions .button.secondary:hover {
  border-color: rgba(225, 112, 85, 0.34);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(1px);
}

.button.primary {
  color: #fff;
  background: var(--brand-orange);
}

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

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  color: #8f9699;
  background: #e5e1da;
  border-color: #d8d2c8;
  transform: none;
}

.button:disabled:hover,
.button[aria-disabled="true"]:hover {
  background: #e5e1da;
}

.button.secondary {
  color: var(--brand-dark);
  background: var(--surface);
  border-color: var(--brand-dark);
}

.button.ghost {
  color: var(--brand-dark);
  background: transparent;
  border-color: var(--border);
}

.portrait-panel {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-panel p {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 14px;
}

.portrait-placeholder {
  display: grid;
  align-content: end;
  min-height: 460px;
  padding: 28px;
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(45, 52, 54, 0.1), rgba(45, 52, 54, 0.72)),
    linear-gradient(135deg, #b2bec3, #636e72);
}

.portrait-placeholder span {
  font-size: 14px;
}

.portrait-placeholder strong {
  max-width: 240px;
  margin-top: 4px;
  font-size: 28px;
  line-height: 1.2;
}

.hero-proof {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
}

.proof-orbit {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.86) 0 24%, transparent 25%),
    radial-gradient(circle at 38% 34%, rgba(225, 112, 85, 0.16), transparent 28%),
    radial-gradient(circle at 62% 68%, rgba(47, 111, 126, 0.16), transparent 30%);
}

.proof-orbit::before,
.proof-orbit::after {
  content: "";
  position: absolute;
  inset: 44px;
  border: 2px solid rgba(47, 111, 126, 0.18);
  border-radius: 50%;
  box-shadow: 0 24px 80px rgba(45, 52, 54, 0.08);
}

.proof-orbit::after {
  inset: 86px;
  border: 1px dashed rgba(225, 112, 85, 0.28);
  box-shadow: none;
}

.proof-summary {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 188px;
  height: 188px;
  padding: 18px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(250, 247, 242, 0.94));
  border: 1px solid rgba(225, 112, 85, 0.28);
  border-radius: 999px;
  box-shadow: 0 24px 70px rgba(45, 52, 54, 0.14);
  transform: translate(-50%, -50%);
}

.proof-summary span {
  color: rgba(45, 52, 54, 0.82);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.proof-card {
  position: absolute;
  min-width: 118px;
  padding: 12px 14px 13px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(233, 226, 216, 0.78);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(45, 52, 54, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.proof-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(225, 112, 85, 0.34);
  box-shadow: 0 20px 48px rgba(45, 52, 54, 0.12);
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 0;
  color: #2f6f7e;
  font-size: 15px;
  font-weight: 900;
}

.proof-card::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 10px;
  background: var(--brand-orange);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(225, 112, 85, 0.13);
}

.proof-card-experience {
  top: 18px;
  left: 0;
}

.proof-card-product {
  top: 18px;
  right: 0;
}

.proof-card-business {
  bottom: 24px;
  left: 0;
}

.proof-card-ai {
  right: 0;
  bottom: 24px;
}

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

.split-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.split-heading > div {
  max-width: 760px;
}

.split-heading .button {
  flex: 0 0 auto;
  margin-top: 10px;
}

.button.soft-link {
  color: var(--brand-teal);
  background: rgba(47, 111, 126, 0.08);
  border-color: rgba(47, 111, 126, 0.14);
  box-shadow: none;
}

.button.soft-link:hover {
  color: var(--ink);
  background: rgba(47, 111, 126, 0.13);
  border-color: rgba(47, 111, 126, 0.2);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-heading .section-note {
  margin-top: 12px;
  padding-left: 12px;
  color: rgba(82, 105, 115, 0.64);
  font-size: 13px;
  border-left: 2px solid rgba(47, 111, 126, 0.2);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.story-eyebrow {
  color: var(--muted);
  font-size: 14px;
  background: transparent;
  border: 0;
  padding: 0;
}

.audience-grid,
.community-grid,
.activity-grid,
.case-grid,
.principle-grid,
.social-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-card,
.event-card,
.activity-card,
.case-card,
.principle-card,
.social-card,
.info-card {
  min-height: 238px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(45, 52, 54, 0.05);
}

.audience-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.audience-grid .audience-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 88px;
  height: 70px;
  background: rgba(225, 112, 85, 0.12);
  border-radius: 8px;
  opacity: 0.78;
  pointer-events: none;
  transform: rotate(-7deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.audience-grid .audience-card > * {
  position: relative;
  z-index: 1;
}

.audience-grid .audience-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(255, 247, 243, 0.94), rgba(255, 255, 255, 0.98));
}

.audience-grid .audience-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(239, 248, 247, 0.94), rgba(255, 255, 255, 0.98));
  border-color: rgba(47, 111, 126, 0.18);
}

.audience-grid .audience-card:nth-child(2)::after {
  background: rgba(47, 111, 126, 0.12);
}

.audience-grid .audience-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(246, 243, 236, 0.94), rgba(255, 255, 255, 0.98));
  border-color: rgba(143, 116, 72, 0.18);
}

.audience-grid .audience-card:nth-child(3)::after {
  background: rgba(143, 116, 72, 0.12);
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 112, 85, 0.5);
  box-shadow: 0 18px 42px rgba(45, 52, 54, 0.1);
}

.audience-grid .audience-card:hover::after {
  opacity: 1;
  transform: rotate(-7deg) translateY(-4px);
}

.audience-card.featured {
  border-color: rgba(225, 112, 85, 0.72);
  box-shadow: 0 18px 44px rgba(225, 112, 85, 0.14);
}

.audience-card.featured:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 22px 48px rgba(225, 112, 85, 0.18);
}

.community-audience-grid .audience-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 248, 240, 0.96), rgba(255, 255, 255, 0.98));
}

.community-audience-grid .audience-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(235, 248, 239, 0.96), rgba(255, 255, 255, 0.98));
}

.community-audience-grid .audience-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(236, 245, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.community-audience-grid .audience-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  background: rgba(225, 112, 85, 0.08);
  border-radius: 50%;
  transition: transform 180ms ease, opacity 180ms ease;
}

.community-audience-grid .audience-card:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 112, 85, 0.52);
  box-shadow: 0 24px 58px rgba(45, 52, 54, 0.12);
}

.community-audience-grid .audience-card:hover::after {
  opacity: 0.86;
  transform: scale(1.18);
}

.community-audience-grid .audience-card h3 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.community-audience-grid .audience-card p {
  position: relative;
  z-index: 1;
}

.audience-icon {
  display: inline-flex;
  width: 36px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  background: rgba(225, 112, 85, 0.1);
  border: 1px solid rgba(225, 112, 85, 0.22);
  border-radius: 50%;
}

.audience-card p,
.event-card p,
.case-card p,
.principle-card p,
.social-card p,
.info-card p {
  color: var(--muted);
}

.audience-card a,
.event-card a,
.activity-card a,
.case-card a,
.text-link {
  color: var(--brand-orange);
  font-weight: 900;
}

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

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-note {
  margin: 16px 0 0;
  color: rgba(82, 105, 115, 0.5);
  font-size: 12px;
  line-height: 1.7;
}

.project-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 152px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(45, 52, 54, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-item:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 112, 85, 0.42);
  box-shadow: 0 16px 36px rgba(45, 52, 54, 0.09);
}

.project-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(225, 112, 85, 0.1), transparent 46%),
    linear-gradient(135deg, rgba(47, 128, 237, 0.08), rgba(47, 158, 68, 0.06)),
    #f8f7f3;
  border: 1px solid rgba(45, 52, 54, 0.08);
  overflow: hidden;
}

.project-thumb::after {
  content: attr(data-logo);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.project-thumb img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 900;
}

.project-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.project-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.growth-loop {
  position: relative;
  min-height: 640px;
  margin-top: 18px;
}

.growth-loop::before {
  content: "";
  position: absolute;
  inset: 66px 27%;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(82, 105, 115, 0.18);
  border-radius: 999px;
  box-shadow: inset 0 0 80px rgba(225, 112, 85, 0.05);
}

.growth-loop::after {
  content: "";
  position: absolute;
  inset: 146px 34%;
  border: 1px dashed rgba(225, 112, 85, 0.24);
  border-radius: 999px;
}

.growth-loop-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 10px;
  width: 190px;
  height: 190px;
  align-content: center;
  justify-items: center;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 248, 240, 0.98), rgba(244, 250, 246, 0.96));
  border: 1px solid rgba(225, 112, 85, 0.22);
  border-radius: 50%;
  box-shadow: 0 20px 54px rgba(45, 52, 54, 0.1), 0 0 0 12px rgba(255, 255, 255, 0.42);
  transform: translate(-50%, -50%);
}

.growth-loop-center strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: rgba(47, 111, 126, 0.72);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(47, 111, 126, 0.1);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(45, 52, 54, 0.06);
}

.growth-loop-item {
  position: absolute;
  z-index: 2;
  width: min(340px, 30vw);
  min-height: 170px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(220, 211, 198, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(45, 52, 54, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.growth-loop-item:hover {
  z-index: 4;
  border-color: rgba(225, 112, 85, 0.52);
  box-shadow: 0 24px 58px rgba(45, 52, 54, 0.14);
  transform: translateY(-8px) scale(1.025);
}

.growth-loop-item h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.growth-loop-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.growth-loop-learning {
  top: 0;
  left: 50%;
  background: linear-gradient(145deg, rgba(255, 248, 240, 0.96), rgba(255, 255, 255, 0.98));
  transform: translateX(-50%);
}

.growth-loop-learning:hover {
  transform: translateX(-50%) translateY(-8px) scale(1.025);
}

.growth-loop-efficiency {
  top: 235px;
  right: 0;
  background: linear-gradient(145deg, rgba(244, 250, 246, 0.96), rgba(255, 255, 255, 0.98));
}

.growth-loop-events {
  bottom: 0;
  left: 50%;
  background: linear-gradient(145deg, rgba(246, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
  transform: translateX(-50%);
}

.growth-loop-events:hover {
  transform: translateX(-50%) translateY(-8px) scale(1.025);
}

.growth-loop-network {
  top: 235px;
  left: 0;
  background: linear-gradient(145deg, rgba(252, 249, 238, 0.96), rgba(255, 255, 255, 0.98));
}

.case-list {
  display: grid;
  gap: 16px;
}

.case-section-title {
  margin-bottom: 20px;
}

.case-section-title h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 34px);
}

.case-list-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(45, 52, 54, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.case-list-item:hover {
  border-color: rgba(225, 112, 85, 0.42);
  box-shadow: 0 22px 54px rgba(45, 52, 54, 0.1);
  transform: translateY(-5px);
}

.case-list-item.featured {
  border-color: rgba(225, 112, 85, 0.62);
  box-shadow: 0 18px 44px rgba(225, 112, 85, 0.12);
}

.case-list-item.featured:hover {
  box-shadow: 0 24px 58px rgba(225, 112, 85, 0.16);
}

.case-list-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.case-list-top .meta-row {
  margin: 0;
}

.case-list-top .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-list-main h3 {
  margin-top: 14px;
  font-size: 28px;
}

.case-title-year {
  margin-left: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.case-year {
  display: inline-flex;
  margin: 0 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  vertical-align: middle;
}

.case-list-main p {
  color: var(--muted);
  font-size: 17px;
}

.case-list-main blockquote {
  margin: 20px 0 0;
  padding: 16px 18px;
  color: rgba(45, 52, 54, 0.72);
  font-size: 16px;
  font-weight: 600;
  background: rgba(225, 112, 85, 0.05);
}

.case-list-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.case-list-side a,
.case-detail-trigger {
  flex: 0 0 auto;
  color: var(--brand-orange);
  font-weight: 900;
}

.case-detail-trigger {
  padding: 0;
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.case-detail-trigger:hover {
  color: var(--ink);
}

.more-cases-note {
  margin-top: 26px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.more-cases-note strong {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 22px;
}

.more-cases-note strong::before {
  content: "";
  width: 6px;
  height: 28px;
  background: rgba(47, 111, 126, 0.46);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(47, 111, 126, 0.08);
}

.more-case-list {
  display: grid;
  gap: 0;
}

.more-case-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.more-case-year {
  color: rgba(47, 111, 126, 0.7);
  font-size: 14px;
  font-weight: 900;
}

.more-case-list h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.more-case-list p {
  margin: 0;
  color: rgba(99, 110, 114, 0.86);
  font-size: 15px;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-card.featured {
  border-color: rgba(225, 112, 85, 0.62);
  box-shadow: 0 18px 44px rgba(225, 112, 85, 0.12);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 8px;
}

.meta-row span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #f4efe8;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status.delivered {
  color: var(--blue);
  border-color: rgba(47, 128, 237, 0.25);
  background: rgba(47, 128, 237, 0.08);
}

.status.closed {
  color: var(--gray);
  border-color: rgba(134, 142, 150, 0.25);
  background: rgba(134, 142, 150, 0.08);
}

.featured-case {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status.online {
  color: var(--green);
  border-color: rgba(47, 158, 68, 0.25);
  background: rgba(47, 158, 68, 0.08);
}

.case-list-top .status,
.case-list-top .meta-row span {
  min-height: 28px;
  padding: 3px 10px;
  color: #5f686b;
  font-size: 13px;
  font-weight: 800;
  background: rgba(250, 247, 242, 0.92);
  border: 1px solid rgba(217, 209, 199, 0.86);
  border-radius: 999px;
}

.case-modal[hidden] {
  display: none;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 36, 38, 0.42);
  backdrop-filter: blur(4px);
}

.case-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 94vw);
  max-height: min(720px, 86vh);
  overflow: auto;
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(225, 112, 85, 0.28);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(18, 24, 26, 0.24);
  animation: modalIn 180ms ease both;
}

.case-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
  background: #f4efe8;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}

.case-modal-close:hover {
  color: var(--ink);
  border-color: rgba(225, 112, 85, 0.44);
}

.case-modal-head {
  padding-right: 38px;
  margin-bottom: 18px;
}

.case-modal-head h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 40px);
}

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

.case-modal-content {
  min-width: 0;
}

.case-modal-media {
  position: relative;
  display: grid;
  min-height: 430px;
  max-height: calc(86vh - 96px);
  align-self: center;
  place-items: center;
  overflow: hidden;
  color: rgba(82, 105, 115, 0.78);
  font-size: 16px;
  font-weight: 900;
  padding: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 242, 0.78)),
    var(--surface);
  border: 0;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 18px 42px rgba(45, 52, 54, 0.08);
}

.case-modal-media::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(47, 111, 126, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.case-modal-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(86vh - 128px);
  object-fit: contain;
  padding: 6px;
  background: #ffffff;
  border: 1px solid rgba(220, 211, 198, 0.78);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(45, 52, 54, 0.1);
}

.case-image-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 211, 198, 0.92);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(45, 52, 54, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}

.case-image-nav:hover {
  color: var(--brand-orange);
  border-color: rgba(225, 112, 85, 0.38);
}

.case-image-prev {
  left: 18px;
}

.case-image-next {
  right: 18px;
}

.case-image-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: none;
  gap: 8px;
  transform: translateX(-50%);
}

.case-image-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(82, 105, 115, 0.34);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.case-image-dots button.is-active {
  width: 22px;
  background: var(--brand-orange);
  border-radius: 999px;
}

.case-modal-media.has-multiple .case-image-nav {
  display: inline-flex;
}

.case-modal-media.has-multiple .case-image-dots {
  display: flex;
}

.case-modal-media span {
  position: relative;
  z-index: 1;
}

.case-modal-media.has-image::before,
.case-modal-media.has-image span {
  display: none;
}

.case-modal-media:not(.has-image) img {
  display: none;
}

.case-modal-grid {
  display: grid;
  gap: 14px;
}

.case-modal-grid div {
  padding: 18px 20px;
  background: rgba(250, 247, 242, 0.74);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.case-modal-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-orange);
  font-size: 15px;
}

.case-modal-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.status.upcoming-label {
  color: #2f6f7e;
  border-color: rgba(47, 111, 126, 0.24);
  background: rgba(47, 111, 126, 0.08);
}

.status.past {
  color: var(--blue);
  border-color: rgba(47, 128, 237, 0.25);
  background: rgba(47, 128, 237, 0.08);
}

.case-copy h3 {
  margin-top: 0;
  font-size: 32px;
}

.case-summary {
  color: var(--muted);
  font-size: 18px;
}

.case-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.case-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #9a5a36;
  font-size: 14px;
  font-weight: 900;
  background: rgba(225, 112, 85, 0.09);
  border: 1px solid rgba(225, 112, 85, 0.16);
  border-radius: 8px;
}

blockquote {
  margin: 24px 0;
  padding: 20px 22px;
  background: rgba(225, 112, 85, 0.08);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
}

.featured-case blockquote {
  color: rgba(45, 52, 54, 0.74);
  font-weight: 600;
  background: rgba(225, 112, 85, 0.05);
}

.screenshot-preview {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f4efe8;
}

.screenshot-preview.real-screenshot {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(225, 112, 85, 0.05), transparent 46%),
    #fff;
}

.screenshot-preview.real-screenshot img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  max-height: 390px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 18px 24px rgba(45, 52, 54, 0.14));
}

.mock-window {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.mock-window span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.mock-list {
  padding: 28px;
}

.mock-list b {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}

.mock-list p {
  color: var(--muted);
}

.mock-list i {
  display: block;
  height: 48px;
  margin-top: 14px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.story-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 54px;
  align-items: start;
}

.story-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.story-points span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 18px;
  color: rgba(45, 52, 54, 0.72);
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(47, 111, 126, 0.06), rgba(255, 255, 255, 0.82));
  border: 0;
  border-radius: 8px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.story-points span::before {
  content: none;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.timeline span {
  display: block;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-top: 4px;
  line-height: 1.45;
}

.trust-list {
  display: grid;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 180ms ease, border-color 180ms ease;
}

.trust-item:hover {
  padding-left: 8px;
  border-bottom-color: rgba(225, 112, 85, 0.55);
}

.trust-item span {
  position: relative;
  display: inline-flex;
  width: 44px;
  align-items: center;
  color: var(--brand-teal);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}

.trust-item span::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 16px;
  width: 18px;
  height: 2px;
  background: rgba(225, 112, 85, 0.5);
  transform: rotate(-55deg);
  transform-origin: left center;
}

.trust-item h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.timeline.detailed li {
  padding: 24px 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.timeline.detailed {
  gap: 30px;
}

.timeline.detailed li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 14px;
  height: 30px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(47, 111, 126, 0.44) 0 4px,
      transparent 4px 8px
    ) left center / 2px 100% no-repeat,
    repeating-linear-gradient(
      180deg,
      rgba(47, 111, 126, 0.26) 0 4px,
      transparent 4px 8px
    ) right center / 2px 100% no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline.detailed li:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 112, 85, 0.24);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(45, 52, 54, 0.08);
}

.timeline.detailed span {
  color: #9a5a36;
}

.timeline.detailed p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.principle-card {
  min-height: 220px;
}

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

.social-card {
  min-height: 190px;
}

.qr-mini {
  display: grid;
  place-items: center;
  width: 116px;
  aspect-ratio: 1;
  margin-top: 16px;
  border: 1px dashed rgba(45, 52, 54, 0.3);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.detail-grid {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
}

.case-detail {
  display: grid;
  gap: 18px;
}

.case-detail section,
.gallery-placeholder {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.case-detail h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.case-detail ul,
.case-detail ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.gallery-placeholder span {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 1px dashed rgba(45, 52, 54, 0.26);
  border-radius: 8px;
  color: var(--muted);
  background: #f8f3ec;
  font-weight: 800;
}

.event-list {
  display: grid;
  gap: 16px;
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: center;
  min-height: auto;
  padding: 30px 24px 24px 60px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 237, 0.28);
  background: #fff;
  box-shadow: 0 18px 42px rgba(45, 52, 54, 0.1);
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 76px solid rgba(47, 111, 126, 0.92);
  border-right: 76px solid transparent;
}

.event-card::after {
  content: attr(data-event-issue);
  position: absolute;
  top: 12px;
  left: 7px;
  width: 44px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transform: rotate(-45deg);
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 12px;
}

.event-card-meta > span:not(.status) {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  background: rgba(250, 247, 242, 0.96);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.event-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.event-card p + p {
  margin-top: 8px;
}

.event-card-media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  min-height: 150px;
  color: var(--muted);
  font-weight: 800;
  background: linear-gradient(135deg, #f4f6f3, #f7efe9);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-media.collage {
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.event-card-media.collage img {
  border-radius: 6px;
}

.event-card-media.collage img:first-child {
  grid-row: 1 / span 2;
}

.event-card-media.duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.event-card-media.duo img {
  border-radius: 6px;
}

.event-card-media.placeholder {
  border-style: dashed;
}

.event-card.is-hidden {
  display: none;
}

.event-cold-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.event-cold-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(45, 52, 54, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.event-cold-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 111, 126, 0.26);
  background: #fff;
  box-shadow: 0 18px 42px rgba(45, 52, 54, 0.1);
}

.event-cold-media {
  display: grid;
  aspect-ratio: 4 / 3;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.event-cold-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.event-cold-media.collage {
  grid-template-columns: 1.2fr 0.85fr;
  grid-template-rows: repeat(2, 1fr);
}

.event-cold-media.collage img:first-child {
  grid-row: 1 / span 2;
}

.event-cold-media.duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-cold-copy {
  display: grid;
  gap: 8px;
}

.event-cold-copy div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.event-cold-copy span,
.event-cold-copy time {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  font-size: 13px;
  font-weight: 900;
  background: rgba(250, 247, 242, 0.92);
  border: 1px solid rgba(217, 209, 199, 0.86);
  border-radius: 999px;
}

.event-cold-copy span {
  color: var(--brand-teal);
}

.event-cold-copy time {
  color: #9a5a36;
}

.event-cold-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.event-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.event-pagination button {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  color: rgba(82, 105, 115, 0.62);
  font: inherit;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(220, 211, 198, 0.72);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.event-pagination button:hover,
.event-pagination button.is-active {
  color: rgba(47, 111, 126, 0.88);
  background: rgba(47, 111, 126, 0.1);
  border-color: rgba(47, 111, 126, 0.28);
  transform: translateY(-1px);
}

.media-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(225, 112, 85, 0.08);
  color: var(--muted);
}

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

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

.activity-card {
  min-height: auto;
  padding: 16px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.activity-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 112, 85, 0.46);
  background: #fff;
  box-shadow: 0 18px 42px rgba(45, 52, 54, 0.1);
}

.activity-photo {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 190px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 8px;
  background-color: #e9eee9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.activity-photo span {
  display: inline-flex;
  padding: 6px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(45, 52, 54, 0.72);
}

.activity-photo-1 {
  background-image: linear-gradient(180deg, rgba(45, 52, 54, 0), rgba(45, 52, 54, 0.2)), url("./images/activities/activity-01.jpg"), linear-gradient(135deg, #edf4f7 0%, #dfe9e3 100%);
}

.activity-photo-2 {
  background-image: linear-gradient(180deg, rgba(45, 52, 54, 0), rgba(45, 52, 54, 0.2)), url("./images/activities/activity-02.jpg"), linear-gradient(135deg, #f6eee8 0%, #e8edf3 100%);
}

.activity-photo-3 {
  background-image: linear-gradient(180deg, rgba(45, 52, 54, 0), rgba(45, 52, 54, 0.2)), url("./images/activities/activity-03.jpg"), linear-gradient(135deg, #eef3ea 0%, #f4ece6 100%);
}

.activity-card h3 {
  margin-bottom: 8px;
}

.activity-card p {
  color: var(--muted);
}

.community-grid.single-card {
  grid-template-columns: minmax(0, 1fr);
}

.event-preview-card {
  display: grid;
  gap: 16px;
}

.event-preview-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(45, 52, 54, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.event-preview-item:hover {
  border-color: rgba(225, 112, 85, 0.42);
  box-shadow: 0 22px 54px rgba(45, 52, 54, 0.1);
  transform: translateY(-5px);
}

.event-preview-item.featured {
  border-color: rgba(225, 112, 85, 0.62);
  box-shadow: 0 18px 44px rgba(225, 112, 85, 0.12);
}

.event-preview-item.featured:hover {
  box-shadow: 0 24px 58px rgba(225, 112, 85, 0.16);
}

.event-preview-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.event-preview-date {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #56666b;
  font-size: 15px;
  font-weight: 700;
  background: rgba(250, 247, 242, 0.96);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.event-preview-main h3 {
  margin: 14px 0 10px;
  font-size: 28px;
}

.event-preview-main p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.event-preview-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 8px;
}

.event-preview-actions .button {
  min-width: 112px;
  font-weight: 600;
}

.event-preview-actions .button.secondary {
  color: rgba(47, 63, 67, 0.76);
  background: rgba(250, 247, 242, 0.96);
  border-color: rgba(45, 52, 54, 0.24);
}

.event-preview-actions .button.secondary:hover {
  background: rgba(225, 112, 85, 0.08);
  border-color: rgba(225, 112, 85, 0.38);
}

.event-preview-actions .button.primary {
  font-weight: 700;
}

.activity-poster-modal[hidden] {
  display: none;
}

.activity-poster-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
}

.activity-poster-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 42, 43, 0.56);
  backdrop-filter: blur(8px);
}

.activity-poster-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(86vh, 920px);
  padding: 14px;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(45, 52, 54, 0.22);
  animation: modalIn 180ms ease both;
}

.activity-poster-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.activity-poster-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: auto;
  margin-bottom: -36px;
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
  background: rgba(250, 247, 242, 0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
}

.activity-poster-close:hover {
  color: var(--ink);
  border-color: rgba(225, 112, 85, 0.38);
}

.contact-section {
  align-items: stretch;
}

.contact-section .contact-copy {
  align-self: center;
}

.qr-card {
  width: min(260px, 100%);
  margin-top: 26px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(45, 52, 54, 0.05);
}

.qr-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-height: 200px;
  margin-bottom: 12px;
  border: 1px dashed rgba(45, 52, 54, 0.32);
  border-radius: 6px;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(45, 52, 54, 0.05) 50%, transparent 50%) 0 0 / 18px 18px,
    linear-gradient(rgba(45, 52, 54, 0.05) 50%, transparent 50%) 0 0 / 18px 18px,
    #fff;
}

.qr-card span {
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--brand-dark);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(225, 112, 85, 0.22);
  border-color: var(--brand-orange);
}

.form-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--green);
  background: rgba(47, 158, 68, 0.08);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  padding: 46px 7vw;
  color: #f8f4ed;
  background: var(--brand-dark);
}

.footer p {
  margin: 6px 0 0;
  color: rgba(248, 244, 237, 0.72);
}

.footer .footer-meta,
.footer .footer-icp {
  color: rgba(248, 244, 237, 0.52);
  font-size: 13px;
}

.footer .footer-icp a {
  margin: 0;
  color: inherit;
}

.footer a {
  display: inline-block;
  margin: 0 18px 8px 0;
  color: rgba(248, 244, 237, 0.82);
}

.footer-links {
  margin-top: 18px;
}

.footer-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 180px));
  justify-content: end;
  gap: 12px;
}

.footer-qr-card {
  min-height: 178px;
  padding: 12px;
  border: 1px solid rgba(248, 244, 237, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-qr {
  display: grid;
  place-items: center;
  width: min(142px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 10px;
  padding: 6px;
  border: 1px solid rgba(248, 244, 237, 0.24);
  border-radius: 8px;
  color: var(--muted);
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.footer-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.footer-qr-placeholder {
  color: rgba(248, 244, 237, 0.72);
  border-style: dashed;
  border-color: rgba(248, 244, 237, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.06);
}

.footer-qr-card strong {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
}

.footer-qr-card span {
  display: block;
  margin-top: 4px;
  text-align: center;
  color: rgba(248, 244, 237, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .site-header {
    padding: 0 5vw;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 5vw;
    right: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 12px;
  }

  .split-heading {
    display: block;
  }

  .split-heading .button {
    margin-top: 18px;
  }

  .hero,
  .featured-case,
  .story-section,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 48px;
  }

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

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

  .case-grid,
  .activity-grid,
  .project-list,
  .case-list-item,
  .event-card,
  .event-preview-item,
  .principle-grid,
  .social-grid,
  .detail-grid,
  .gallery-placeholder {
    grid-template-columns: 1fr;
  }

  .event-cold-start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .project-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .more-case-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .case-list-side {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-preview-actions {
    flex-direction: column;
  }

  .case-modal-panel {
    padding: 22px;
  }

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

  .case-modal-media,
  .case-modal-media img {
    min-height: 0;
  }

  .case-modal-media {
    max-height: none;
  }

  .case-modal-media img {
    width: 100%;
    max-height: none;
  }

  .growth-loop {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .growth-loop::before,
  .growth-loop::after {
    display: none;
  }

  .growth-loop-center,
  .growth-loop-item,
  .growth-loop-learning,
  .growth-loop-efficiency,
  .growth-loop-events,
  .growth-loop-network {
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    transform: none;
  }

  .growth-loop-center {
    border-radius: 8px;
  }

  .growth-loop-item:hover,
  .growth-loop-learning:hover,
  .growth-loop-events:hover {
    transform: translateY(-3px);
  }

  .section {
    width: min(680px, 90vw);
    padding: 64px 0;
  }

  .page-hero {
    padding-top: 58px;
    padding-bottom: 28px;
  }

  .portrait-placeholder {
    min-height: 340px;
  }

  .hero-proof,
  .proof-orbit {
    width: 100%;
    aspect-ratio: auto;
    min-height: 0;
  }

  .proof-orbit {
    display: grid;
    gap: 12px;
  }

  .proof-orbit::before,
  .proof-orbit::after {
    display: none;
  }

  .proof-summary,
  .proof-card,
  .proof-card-experience,
  .proof-card-product,
  .proof-card-business,
  .proof-card-ai {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    transform: none;
  }

  .proof-summary {
    display: grid;
    place-items: start;
    border-radius: 8px;
    text-align: left;
  }

  .footer-qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
  }

  .nav {
    top: 64px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .proof-summary {
    font-size: 20px;
  }

  .featured-case,
  .contact-form,
  .case-list-item {
    padding: 22px;
  }

  .case-list-main h3 {
    font-size: 24px;
  }

  .case-copy h3 {
    font-size: 26px;
  }

  .event-cold-start-grid {
    grid-template-columns: 1fr;
  }

  .footer-qr-grid {
    grid-template-columns: 1fr;
  }
}

