:root {
  --ink: #191716;
  --ink-soft: #322c29;
  --muted: rgba(43, 37, 33, 0.64);
  --paper: #efe6da;
  --sand: #d8c4ad;
  --sand-deep: #9a7a68;
  --rose-light: #f0c7bf;
  --sky: #a8b1bd;
  --line: rgba(255, 255, 255, 0.32);
  --glass: rgba(255, 255, 255, 0.18);
  --glass-strong: rgba(255, 255, 255, 0.3);
  --dark-glass: rgba(25, 23, 22, 0.78);
  --metal: #c8beb5;
  --accent: #f4d4dc;
  --radius: 34px;
  --radius-small: 22px;
  --shadow: 0 34px 90px rgba(61, 47, 42, 0.28);
  --soft-shadow: 0 18px 55px rgba(61, 47, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(156, 168, 184, 0.9) 0%, rgba(242, 197, 187, 0.84) 24%, rgba(226, 208, 184, 0.94) 58%, #efe6da 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
}

html:lang(zh-CN) body {
  font-family: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", "STSong", "PingFang SC", "Microsoft YaHei", serif;
}

html:lang(zh-CN) .site-nav,
html:lang(zh-CN) .lang-switch,
html:lang(zh-CN) .button,
html:lang(zh-CN) .eyebrow,
html:lang(zh-CN) h1,
html:lang(zh-CN) h2,
html:lang(zh-CN) h3,
html:lang(zh-CN) .hero-lines,
html:lang(zh-CN) .portrait-caption,
html:lang(zh-CN) .metric-card,
html:lang(zh-CN) .timeline,
html:lang(zh-CN) .skill-card,
html:lang(zh-CN) .detail-item,
html:lang(zh-CN) .highlight-item {
  font-family: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", "STSong", "PingFang SC", "Microsoft YaHei", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(ellipse at 68% 16%, rgba(255, 231, 213, 0.55), transparent 30%),
    linear-gradient(180deg, transparent 0 38%, rgba(166, 130, 106, 0.2) 39%, transparent 70%);
  pointer-events: none;
}

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

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

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.dune {
  position: absolute;
  right: -12vw;
  left: -12vw;
  height: 34vh;
  background: linear-gradient(180deg, rgba(238, 224, 206, 0.78), rgba(158, 124, 103, 0.34));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  filter: blur(0.2px);
  transform-origin: center bottom;
}

.dune-one {
  bottom: -6vh;
  transform: rotate(-1deg);
}

.dune-two {
  bottom: 8vh;
  opacity: 0.62;
  transform: translateX(-8vw) rotate(2deg) scaleY(0.72);
}

.dune-three {
  bottom: 23vh;
  opacity: 0.36;
  transform: translateX(7vw) rotate(-2deg) scaleY(0.55);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(1080px, calc(100% - 36px));
  min-height: 74px;
  margin: 14px auto 0;
  padding: 9px 13px 9px 15px;
  background: rgba(245, 238, 229, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(73, 54, 48, 0.12);
  backdrop-filter: blur(24px) saturate(1.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark,
.nav-cta,
.icon-disc,
.mini-photo {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.brand-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(61, 54, 50, 0.18));
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(25, 23, 22, 0.44);
}

.photo-mark {
  overflow: hidden;
  padding: 0;
  background: transparent;
  box-shadow: 0 8px 22px rgba(73, 54, 48, 0.14);
}

.photo-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  transform: scale(0.88);
  background: #fff;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.04;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: rgba(25, 23, 22, 0.82);
  font-family: "Avenir Next", "Optima", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav a {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 12px 28px rgba(73, 54, 48, 0.12);
  transform: translateY(-1px);
  backdrop-filter: blur(18px) saturate(1.2);
  outline: none;
}

.nav-cta {
  width: 56px;
  height: 56px;
  background: rgba(25, 23, 22, 0.86);
  color: white;
}

.nav-cta svg {
  width: 17px;
  height: 17px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: 94px;
  height: 56px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  color: rgba(25, 23, 22, 0.72);
  font: inherit;
  font-family: "Avenir Next", "Optima", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.lang-switch span {
  display: grid;
  min-width: 40px;
  height: 43px;
  place-items: center;
  border-radius: 999px;
}

.lang-switch span.active {
  background: rgba(25, 23, 22, 0.84);
  color: white;
  box-shadow: 0 8px 20px rgba(73, 54, 48, 0.16);
}

.art-section,
.section,
.detail-page {
  position: relative;
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
  min-height: min(800px, calc(100vh - 82px));
  padding: clamp(42px, 5.5vw, 72px) 0 clamp(60px, 7vw, 88px);
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(91, 61, 52, 0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3.4vw, 3.8rem);
  font-weight: 630;
  letter-spacing: -0.018em;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 0.94rem;
  line-height: 1.18;
}

.hero-lines {
  display: grid;
  gap: 6px;
  max-width: 480px;
  color: rgba(25, 23, 22, 0.66);
  font-size: clamp(0.9rem, 1.4vw, 1.08rem);
}

.action-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.action-row .button[hidden],
.contact-actions .button[hidden] {
  display: none !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(73, 54, 48, 0.1);
  backdrop-filter: blur(18px);
}

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

.button.primary {
  background: rgba(25, 23, 22, 0.88);
  border-color: rgba(25, 23, 22, 0.3);
  color: white;
}

.button.icon-only {
  width: 46px;
  padding: 0;
}

.button svg,
.skill-card svg,
.highlight-item svg,
.icon-disc svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.glass-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(1.22);
}

.dark-glass {
  background:
    linear-gradient(145deg, rgba(72, 63, 58, 0.66), rgba(98, 82, 74, 0.42)),
    rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.hero-stage {
  position: relative;
  min-height: 650px;
}

.portrait-device {
  position: absolute;
  right: 1%;
  top: 2%;
  width: min(410px, 70vw);
  height: 570px;
  overflow: hidden;
  padding: 14px;
  border-radius: 38px;
  z-index: 1;
}

.portrait-device::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 29px;
  pointer-events: none;
}

.portrait-device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 26px;
  background: #f7f6f2;
  filter: saturate(0.84) contrast(0.98);
}

.portrait-caption {
  position: absolute;
  top: calc(2% + 590px);
  right: 1%;
  bottom: auto;
  left: auto;
  width: min(410px, 70vw);
  z-index: 5;
  display: grid;
  gap: 5px;
  padding: 0 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  backdrop-filter: none;
}

.portrait-caption span {
  color: rgba(91, 61, 52, 0.72);
  font-weight: 700;
}

.portrait-caption strong {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: 210px;
  min-height: 124px;
  padding: 16px;
}

.floating-card p {
  margin: 0;
  color: rgba(25, 23, 22, 0.72);
  font-size: 0.82rem;
  line-height: 1.46;
}

.dark-glass p {
  color: rgba(255, 255, 255, 0.86);
}

.card-one {
  top: 4%;
  left: -4%;
}

.card-two {
  top: 73%;
  left: -10%;
}

.card-three {
  top: 38%;
  left: 5%;
}

.mini-photo {
  width: 54px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
}

.mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.icon-disc {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12));
  color: rgba(25, 23, 22, 0.78);
}

.dark-glass .icon-disc {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(56px, 8vw, 94px) 0;
}

.journey-panel {
  padding-top: clamp(34px, 6vw, 76px);
}

.snapshot-carousel {
  position: relative;
  min-height: 370px;
  margin-top: 6px;
}

.snapshot-viewport {
  position: relative;
  height: 305px;
  overflow: hidden;
  border-radius: 44px;
  perspective: 1100px;
}

.snapshot-track {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.quiet-copy {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.86rem;
}

.metric-grid,
.skill-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.snapshot-carousel .metric-grid {
  display: block;
}

.metric-card,
.skill-card,
.highlight-item,
.detail-item {
  border-radius: var(--radius);
}

.metric-card {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 26px;
}

.snapshot-carousel .metric-card {
  position: absolute;
  top: 24px;
  left: 50%;
  display: grid;
  align-content: end;
  width: min(520px, 72vw);
  min-height: 300px;
  padding: clamp(26px, 4vw, 38px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.72);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 420ms ease;
  will-change: transform, opacity;
}

.snapshot-carousel .metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 42%),
    radial-gradient(circle at 72% 18%, rgba(244, 212, 220, 0.35), transparent 28%);
  pointer-events: none;
}

.snapshot-carousel .metric-card[data-card-state="active"] {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  filter: saturate(1.08);
  transform: translateX(-50%) translateY(0) scale(1);
}

.snapshot-carousel .metric-card[data-card-state="prev"] {
  z-index: 2;
  opacity: 0.72;
  filter: blur(0.2px) saturate(0.9);
  transform: translateX(calc(-50% - min(330px, 31vw))) translateY(26px) rotateY(10deg) scale(0.82);
}

.snapshot-carousel .metric-card[data-card-state="next"] {
  z-index: 2;
  opacity: 0.72;
  filter: blur(0.2px) saturate(0.9);
  transform: translateX(calc(-50% + min(330px, 31vw))) translateY(26px) rotateY(-10deg) scale(0.82);
}

.snapshot-carousel .metric-card[data-card-state="far"] {
  z-index: 1;
  opacity: 0;
  transform: translateX(-50%) translateY(38px) scale(0.72);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.7vw, 3.3rem);
  font-weight: 620;
  line-height: 0.9;
}

.snapshot-carousel .metric-card strong,
.snapshot-carousel .metric-card span {
  position: relative;
  z-index: 1;
}

.carousel-button {
  position: absolute;
  top: 154px;
  z-index: 8;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(25, 23, 22, 0.78);
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(73, 54, 48, 0.12);
  backdrop-filter: blur(18px);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: rgba(255, 255, 255, 0.56);
  outline: none;
}

.carousel-button svg {
  width: 19px;
  height: 19px;
}

.carousel-prev {
  left: clamp(8px, 9vw, 118px);
}

.carousel-next {
  right: clamp(8px, 9vw, 118px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(25, 23, 22, 0.24);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.carousel-dot.active {
  width: 34px;
  background: rgba(25, 23, 22, 0.5);
}

.metric-card span,
.skill-card p,
.timeline-item p,
.detail-item p,
.highlight-item p {
  color: var(--muted);
}

.metric-card span,
.skill-card p {
  max-width: 260px;
  font-size: 0.82rem;
  line-height: 1.58;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 116px;
}

.timeline {
  display: grid;
  gap: 0;
  padding: 10px 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.timeline-item:first-child {
  border-top: 0;
}

.experience-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
  margin: 10px 0 15px;
  color: rgba(91, 61, 52, 0.74);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.35;
}

.experience-meta span {
  display: inline-flex;
  align-items: center;
}

.experience-meta span + span::before {
  content: "·";
  margin: 0 9px;
  color: rgba(91, 61, 52, 0.38);
}

.experience-project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 19px;
}

.experience-project-links :is(a, button) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(81, 56, 48, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.experience-project-links :is(a, button):hover {
  border-color: rgba(81, 56, 48, 0.36);
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(-2px);
}

.experience-project-links a::after {
  content: "↗";
  font-size: 1rem;
  line-height: 1;
}

.experience-project-links button::after {
  content: "＋";
  font-size: 0.92rem;
  line-height: 1;
}

.experience-story-dialog {
  width: min(820px, calc(100vw - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(36, 22, 18, 0.28);
}

.experience-story-dialog::backdrop {
  background: rgba(43, 27, 23, 0.48);
  backdrop-filter: blur(7px);
}

.experience-story-shell {
  position: relative;
  overflow: auto;
  max-height: inherit;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  background:
    radial-gradient(circle at 89% 9%, rgba(237, 179, 152, 0.36), transparent 27%),
    linear-gradient(135deg, rgba(255, 247, 242, 0.98), rgba(247, 226, 214, 0.98));
}

.experience-story-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(81, 56, 48, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  font: 1.55rem/1 Arial, sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.experience-story-close:hover {
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(90deg);
}

.experience-story-dialog h2 {
  max-width: 630px;
  margin: 10px 40px 14px 0;
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  line-height: 1.05;
}

.experience-story-intro {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.experience-story-gallery {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(81, 56, 48, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.23);
}

.experience-story-gallery-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.experience-story-gallery-heading p {
  margin: 0;
  color: rgba(81, 56, 48, 0.74);
  font-size: 0.79rem;
  font-weight: 800;
}

.experience-story-gallery-heading span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(233, 102, 68, 0.1);
  color: rgba(154, 62, 41, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
}

.experience-story-stage {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 7;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(81, 56, 48, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  transition: width 220ms ease, aspect-ratio 220ms ease;
}

.experience-story-stage.is-portrait {
  width: min(230px, 100%);
  aspect-ratio: 0.758 / 1;
  margin-right: auto;
  margin-left: auto;
}

.experience-story-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-story-caption {
  min-height: 2.8em;
  margin: 11px 1px 12px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.experience-story-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 1px 6px;
  scrollbar-width: thin;
}

.experience-story-thumbs button {
  flex: 0 0 64px;
  width: 64px;
  height: 78px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(81, 56, 48, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  opacity: 0.64;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.experience-story-thumbs button:hover,
.experience-story-thumbs button.is-active {
  border-color: rgba(201, 75, 49, 0.65);
  opacity: 1;
  transform: translateY(-2px);
}

.experience-story-thumb-divider {
  flex: 0 0 auto;
  align-self: center;
  max-width: 72px;
  margin: 0 2px;
  color: rgba(81, 56, 48, 0.6);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.experience-story-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-story-route {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.experience-story-route article {
  min-height: 172px;
  padding: 19px;
  border: 1px solid rgba(81, 56, 48, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  transition: transform 180ms ease, background-color 180ms ease;
}

.experience-story-route article:hover {
  background: rgba(255, 255, 255, 0.53);
  transform: translateY(-4px);
}

.experience-story-route span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(88, 61, 51, 0.1);
  color: rgba(81, 56, 48, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
}

.experience-story-route h3 {
  margin: 17px 0 7px;
  font-size: 1rem;
}

.experience-story-route p {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.62;
}

.timeline-date {
  color: rgba(91, 61, 52, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.clean-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: rgba(25, 23, 22, 0.66);
  font-size: 0.86rem;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 16px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(244, 212, 220, 0.8);
}

.skill-card,
.highlight-item {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
}

.skill-card h3,
.highlight-item h2 {
  font-size: 1.04rem;
}

.skill-card p {
  max-width: 220px;
  margin-bottom: 0;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  width: min(1080px, calc(100% - 44px));
  margin: 22px auto clamp(36px, 6vw, 68px);
  padding: clamp(24px, 4vw, 38px);
}

.contact-band h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(1.42rem, 2.4vw, 2.65rem);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.detail-page {
  padding: clamp(56px, 8vw, 94px) 0;
}

.page-hero {
  max-width: 720px;
  margin-bottom: 34px;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(1.42rem, 2.4vw, 2.65rem);
  font-weight: 630;
  line-height: 1.06;
}

.campus-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(225px, 0.42fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.campus-photo-scene {
  position: relative;
  min-height: 370px;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 12%, rgba(244, 212, 220, 0.62), transparent 26%),
    linear-gradient(145deg, rgba(215, 224, 220, 0.76), rgba(235, 215, 201, 0.68));
  box-shadow: 0 18px 38px rgba(73, 54, 48, 0.13);
  cursor: default;
  transform: perspective(900px) rotateX(var(--scene-rotate-x, 0deg)) rotateY(var(--scene-rotate-y, 0deg)) translate(var(--scene-shift-x, 0), var(--scene-shift-y, 0));
  transition: transform 280ms ease, box-shadow 280ms ease;
  will-change: transform;
}

.campus-photo-scene:hover {
  box-shadow: 0 28px 46px rgba(73, 54, 48, 0.18);
}

.campus-photo-scene img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: contain;
  border-radius: 14px;
}

.campus-photo-scene figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  max-width: 170px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 13px;
  background: rgba(25, 23, 22, 0.52);
  color: white;
  box-shadow: 0 12px 24px rgba(25, 23, 22, 0.14);
  backdrop-filter: blur(14px);
}

.campus-photo-scene figcaption span,
.campus-photo-scene figcaption strong,
.campus-photo-scene figcaption small {
  display: block;
}

.coursework-panel {
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
}

.coursework-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(190px, 0.32fr);
  gap: 24px;
  align-items: end;
}

.coursework-heading h2,
.coursework-heading p {
  margin: 0;
}

.coursework-heading p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.coursework-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.course-card {
  position: relative;
  display: grid;
  min-height: 188px;
  padding: 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 16px;
  background: var(--course-wash);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.course-card::after {
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.12);
  transition: transform 240ms ease;
}

.course-card:hover {
  z-index: 1;
  box-shadow: 0 19px 34px rgba(73, 54, 48, 0.12);
  transform: translateY(-5px) rotate(-0.4deg);
}

.course-card:hover::after {
  transform: scale(1.3) translate(-9px, -9px);
}

.course-card--one { --course-wash: rgba(214, 229, 203, 0.62); }
.course-card--two { --course-wash: rgba(208, 220, 238, 0.64); }
.course-card--three { --course-wash: rgba(244, 218, 203, 0.65); }
.course-card--four { --course-wash: rgba(226, 211, 235, 0.66); }

.course-card > span,
.course-card h3,
.course-card p,
.course-card b {
  position: relative;
  z-index: 1;
}

.course-card > span {
  color: rgba(25, 23, 22, 0.42);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.course-card h3 {
  align-self: end;
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.22;
}

.course-card p {
  min-height: 3.1em;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.5;
}

.course-card b {
  justify-self: start;
  margin-top: 13px;
  padding: 5px 8px;
  border: 1px solid rgba(25, 23, 22, 0.12);
  border-radius: 999px;
  color: rgba(25, 23, 22, 0.72);
  background: rgba(255, 255, 255, 0.3);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
}

.classroom-panel {
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
}

.classroom-heading {
  max-width: 680px;
}

.classroom-heading h2,
.classroom-heading p {
  margin: 0;
}

.classroom-heading h2 {
  margin-top: 8px;
}

.classroom-heading p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.classroom-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.38fr) minmax(150px, 0.32fr);
  gap: 12px;
  align-items: start;
  margin-top: 26px;
}

.classroom-streams {
  display: grid;
  grid-column: 2 / 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
}

.classroom-stream {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(25, 23, 22, 0.1);
}

.classroom-stream > span {
  color: rgba(25, 23, 22, 0.43);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.classroom-stream h3,
.classroom-stream p {
  margin: 0;
}

.classroom-stream h3 {
  font-size: 0.91rem;
}

.classroom-stream p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.classroom-photos {
  display: grid;
  grid-template-columns: minmax(100px, 0.63fr) minmax(130px, 1fr);
  gap: 10px;
  align-items: end;
}

.classroom-photo {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(73, 54, 48, 0.1);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.classroom-photo:hover {
  z-index: 1;
  box-shadow: 0 22px 38px rgba(73, 54, 48, 0.16);
  transform: translateY(-5px) rotate(-0.6deg);
}

.classroom-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.classroom-photo--presentation {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 390px;
  aspect-ratio: 3 / 4;
}

.classroom-photo--um {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 1 / 1;
}

.classroom-photo figcaption {
  padding: 9px 10px 10px;
  color: rgba(25, 23, 22, 0.71);
  font-size: 0.65rem;
  line-height: 1.4;
}

.volunteer-panel {
  padding: clamp(20px, 2.6vw, 28px);
  overflow: hidden;
  background: linear-gradient(125deg, rgba(239, 227, 211, 0.48), rgba(222, 234, 219, 0.43));
}

.volunteer-heading {
  max-width: 610px;
}

.volunteer-heading h2,
.volunteer-heading p {
  margin: 0;
}

.volunteer-heading h2 {
  margin-top: 8px;
  font-size: clamp(1.2rem, 2vw, 1.72rem);
}

.volunteer-heading p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.volunteer-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  margin-top: 18px;
}

.volunteer-notes {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
}

.volunteer-notes span {
  padding: 8px 10px;
  border: 1px solid rgba(25, 23, 22, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  color: rgba(25, 23, 22, 0.74);
  font-size: 0.7rem;
  font-weight: 720;
}

.volunteer-notes p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.volunteer-notes .volunteer-reflection {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(25, 23, 22, 0.1);
  color: rgba(25, 23, 22, 0.78);
}

.volunteer-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 410px);
  justify-self: end;
}

.volunteer-photo {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.19);
  box-shadow: 0 11px 24px rgba(73, 54, 48, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.volunteer-photo:hover {
  z-index: 1;
  box-shadow: 0 22px 36px rgba(73, 54, 48, 0.14);
  transform: translateY(-4px) rotate(0.4deg);
}

.volunteer-photo--main {
  grid-column: 1 / -1;
}

.volunteer-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.volunteer-photo figcaption {
  padding: 8px 10px 10px;
  color: rgba(25, 23, 22, 0.7);
  font-size: 0.65rem;
  line-height: 1.4;
}

.campus-photo-scene figcaption span {
  margin-bottom: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.74;
}

.campus-photo-scene figcaption strong {
  font-size: 0.78rem;
  line-height: 1.12;
}

.campus-photo-scene figcaption small {
  margin-top: 7px;
  font-size: 0.62rem;
  opacity: 0.74;
}

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

.detail-item {
  padding: 26px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(24px);
}

.detail-item h2 {
  font-size: 1.04rem;
  line-height: 1.18;
}

.detail-item p {
  max-width: 880px;
  font-size: 0.86rem;
  line-height: 1.68;
}

.detail-points {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 16px 0 0;
  padding: 0;
  color: rgba(25, 23, 22, 0.68);
  list-style: none;
}

.detail-points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.84rem;
  line-height: 1.68;
}

.detail-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 212, 220, 0.95);
  box-shadow: 0 0 18px rgba(244, 212, 220, 0.8);
}

.detail-points strong {
  color: rgba(25, 23, 22, 0.88);
  font-weight: 750;
}

.farm-showcase {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.farm-instagram-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 234px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(73, 54, 48, 0.1);
  transition: transform 200ms ease, background 200ms ease;
}

.farm-instagram-card:hover,
.farm-instagram-card:focus-visible {
  transform: translateY(-3px) rotate(-0.6deg);
  background: rgba(255, 255, 255, 0.44);
  outline: none;
}

.farm-instagram-preview {
  display: grid;
  height: 184px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(223, 232, 223, 0.56);
}

.farm-instagram-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.farm-instagram-link small,
.farm-instagram-link strong,
.farm-instagram-link em {
  display: block;
}

.farm-instagram-link {
  padding: 10px 4px 4px;
}

.farm-instagram-link small {
  margin-bottom: 4px;
  color: rgba(91, 61, 52, 0.7);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.045em;
}

.farm-instagram-link strong {
  color: rgba(25, 23, 22, 0.88);
  overflow: hidden;
  font-size: 0.68rem;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.farm-instagram-link em {
  margin-top: 8px;
  color: rgba(25, 23, 22, 0.58);
  font-size: 0.66rem;
  font-style: normal;
}

.farm-photo-reel {
  display: grid;
  grid-template-columns: minmax(110px, 0.46fr) minmax(0, 0.54fr);
  grid-template-rows: repeat(2, minmax(82px, 1fr));
  gap: 10px;
}

.farm-photo {
  display: grid;
  min-height: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  background: rgba(220, 232, 220, 0.42);
  box-shadow: 0 10px 24px rgba(73, 54, 48, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.farm-photo:hover {
  z-index: 1;
  box-shadow: 0 17px 30px rgba(73, 54, 48, 0.16);
  transform: translateY(-4px) rotate(0.7deg);
}

.farm-photo-tall {
  grid-row: 1 / -1;
}

.farm-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.farm-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(25, 23, 22, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  font-size: 0.76rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease;
}

.farm-more:hover,
.farm-more:focus-visible {
  background: rgba(255, 255, 255, 0.52);
  outline: none;
  transform: translateY(-2px);
}

.farm-more b {
  font-size: 0.82rem;
}

.farm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.farm-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.32fr);
  align-items: center;
  gap: clamp(22px, 4vw, 50px);
}

.farm-teaser {
  display: grid;
  width: min(100%, 205px);
  justify-self: end;
  aspect-ratio: 1179 / 1675;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  background: rgba(220, 232, 220, 0.5);
  box-shadow: 0 18px 32px rgba(73, 54, 48, 0.14);
  cursor: default;
  transform: perspective(850px) rotateX(var(--scene-rotate-x, 0deg)) rotateY(var(--scene-rotate-y, 0deg)) translate(var(--scene-shift-x, 0), var(--scene-shift-y, 0));
  transition: transform 280ms ease, box-shadow 280ms ease;
  will-change: transform;
}

.farm-teaser:hover {
  box-shadow: 0 28px 44px rgba(73, 54, 48, 0.2);
}

.farm-teaser img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-toolboard {
  position: relative;
  overflow: hidden;
  background: linear-gradient(128deg, rgba(211, 220, 242, 0.52), rgba(248, 231, 220, 0.44));
}

.skill-detail-stack {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.skill-detail-module {
  padding: clamp(22px, 3.3vw, 34px);
}

.ai-toolboard::before {
  position: absolute;
  top: -120px;
  right: -72px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.14), 0 0 0 73px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.ai-toolboard-heading,
.ai-toolboard-grid,
.ai-toolboard-footnote {
  position: relative;
  z-index: 1;
}

.ai-toolboard-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.45fr);
  gap: 24px;
  align-items: end;
}

.ai-toolboard-heading h2,
.ai-toolboard-heading p,
.ai-toolboard-footnote {
  margin: 0;
}

.ai-toolboard-heading p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.ai-toolboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 23px;
}

.ai-tool-chip {
  display: grid;
  min-height: 122px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 18px rgba(73, 54, 48, 0.05);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.ai-tool-chip:hover {
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 28px rgba(73, 54, 48, 0.12);
  transform: translateY(-5px) rotate(0.5deg);
}

.ai-tool-index {
  color: rgba(25, 23, 22, 0.42);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ai-tool-chip strong {
  align-self: end;
  margin-top: 12px;
  font-size: 1.05rem;
}

.ai-tool-chip p {
  min-height: 2.7em;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.ai-toolboard-footnote {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.skill-dashboard {
  overflow: hidden;
}

.skill-dashboard-heading {
  display: grid;
  gap: 8px;
  max-width: 610px;
}

.skill-dashboard-heading h2,
.skill-dashboard-heading p {
  margin: 0;
}

.skill-dashboard-heading p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.skill-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.skill-meter-card {
  position: relative;
  min-height: 222px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(73, 54, 48, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.skill-meter-card::after {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  top: -62px;
  right: -52px;
  content: "";
  background: var(--skill-wash);
  filter: blur(2px);
  opacity: 0.78;
  transition: transform 260ms ease;
}

.skill-meter-card:hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 22px 36px rgba(73, 54, 48, 0.13);
  transform: translateY(-5px) rotate(-0.3deg);
}

.skill-meter-card:hover::after {
  transform: scale(1.35) translate(-10px, 14px);
}

.skill-meter-card--office { --skill-wash: rgba(182, 210, 226, 0.72); }
.skill-meter-card--creative { --skill-wash: rgba(242, 197, 183, 0.78); }
.skill-meter-card--ops { --skill-wash: rgba(205, 219, 178, 0.78); }
.skill-meter-card--language { --skill-wash: rgba(217, 199, 232, 0.78); }

.skill-meter-card-top,
.skill-meter,
.skill-meter-list,
.skill-meter-card h3 {
  position: relative;
  z-index: 1;
}

.skill-meter-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.skill-meter-card-top p,
.skill-meter-card-top span {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skill-meter-card-top span {
  color: rgba(25, 23, 22, 0.36);
}

.skill-meter-card h3 {
  margin: 14px 0 19px;
  font-size: 1.08rem;
}

.skill-meter-list {
  display: grid;
  gap: 13px;
}

.skill-meter > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 0.76rem;
}

.skill-meter strong {
  font-weight: 720;
}

.skill-meter span {
  color: var(--muted);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.skill-meter i {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(25, 23, 22, 0.1);
}

.skill-meter i::after {
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, rgba(25, 23, 22, 0.76), rgba(25, 23, 22, 0.36));
  transform-origin: left;
  animation: skill-meter-fill 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.skill-meter-card:hover .skill-meter i::after {
  background: linear-gradient(90deg, var(--ink), rgba(25, 23, 22, 0.48));
}

.skill-meter-note,
.skill-dashboard-footnote {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.skill-meter-note {
  margin: 1px 0 0;
}

.skill-dashboard-footnote {
  margin: 16px 0 0;
}

@keyframes skill-meter-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.farm-project-cover {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 0.68fr);
  gap: 18px;
  margin-bottom: 24px;
}

.farm-project-profile {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 330px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.farm-project-profile:hover,
.farm-project-profile:focus-visible {
  outline: none;
  box-shadow: 0 24px 44px rgba(73, 54, 48, 0.18);
  transform: translateY(-4px) rotate(-0.8deg);
}

.farm-project-profile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: 17px;
  background: rgba(220, 232, 220, 0.4);
}

.farm-project-profile span {
  padding: 12px 4px 2px;
  color: rgba(25, 23, 22, 0.76);
  font-size: 0.76rem;
  font-weight: 750;
}

.farm-project-photos {
  display: grid;
  grid-template-columns: minmax(150px, 0.44fr) minmax(0, 0.56fr);
  grid-template-rows: repeat(2, minmax(155px, 1fr));
  gap: 14px;
}

.farm-project-photo {
  display: grid;
  min-height: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  background: rgba(220, 232, 220, 0.42);
  box-shadow: 0 13px 28px rgba(73, 54, 48, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.farm-project-photo:hover {
  z-index: 1;
  box-shadow: 0 22px 38px rgba(73, 54, 48, 0.16);
  transform: translateY(-5px) rotate(0.6deg);
}

.farm-project-tall {
  grid-row: 1 / -1;
}

.farm-project-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-points.compact {
  gap: 8px;
  margin-top: 8px;
}

.detail-item span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(91, 61, 52, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.highlight-case {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.highlight-media {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 24px;
  color: rgba(25, 23, 22, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.highlight-media span {
  padding: 10px 14px;
  border: 1px dashed rgba(25, 23, 22, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.media-workflow { grid-template-rows: auto 1fr auto; align-items: stretch; justify-items: stretch; gap: 12px; padding: 17px; overflow: hidden; color: #eef3fb; text-align: left; background: radial-gradient(circle at 82% 20%, rgba(137,176,234,.4), transparent 28%), linear-gradient(135deg, #24384f, #526d91); }
.workflow-ai-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.workflow-ai-top p { margin: 0; color: rgba(236,246,255,.8); font-size: .64rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.workflow-ai-top i { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid rgba(212,255,194,.55); border-radius: 50%; color: #dfffc8; background: rgba(177,234,152,.12); font-size: .58rem; font-style: normal; font-weight: 850; letter-spacing: .07em; }
.workflow-ai-layout { display: grid; grid-template-columns: minmax(0, .76fr) minmax(0, 1fr) minmax(0, .96fr); gap: 8px; align-items: center; }
.workflow-ai-input, .workflow-ai-core, .workflow-ai-outputs article { min-width: 0; border: 1px solid rgba(230,241,255,.2); background: rgba(8,22,43,.28); }
.workflow-ai-input { position: relative; display: grid; align-content: center; gap: 5px; min-height: 78px; padding: 9px; border-radius: 12px; }
.workflow-ai-input b, .workflow-ai-outputs b { color: #c4e5ff; font-size: .58rem; letter-spacing: .08em; }
.workflow-ai-input p, .workflow-ai-core p, .workflow-ai-outputs p { margin: 0; color: #fff; font-size: .63rem; font-weight: 700; line-height: 1.15; text-transform: none; }
.workflow-ai-input i { position: absolute; top: 50%; right: -13px; z-index: 2; color: rgba(233,244,255,.82); font-size: .82rem; font-style: normal; transform: translateY(-50%); }
.workflow-ai-core { display: grid; min-height: 94px; place-items: center; align-content: center; gap: 6px; overflow: hidden; border-color: rgba(199,244,181,.52); border-radius: 50% 50% 16px 16px; background: radial-gradient(circle at 50% 30%, rgba(183,244,168,.3), transparent 29%), linear-gradient(150deg, rgba(89,160,199,.34), rgba(20,51,94,.44)); box-shadow: 0 0 0 6px rgba(190,242,177,.06); transition: transform 260ms ease, box-shadow 260ms ease; }
.workflow-ai-core strong { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(218,255,205,.68); border-radius: 50%; color: #e3ffce; background: rgba(193,249,175,.12); font-size: .65rem; letter-spacing: .08em; }
.workflow-ai-core p { color: rgba(238,249,255,.92); font-size: .59rem; }
.workflow-ai-outputs { display: grid; gap: 7px; }
.workflow-ai-outputs article { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 4px; align-items: center; min-height: 42px; padding: 7px; border-radius: 10px; transition: transform 220ms ease, background 220ms ease; }
.workflow-ai-outputs p { font-size: .59rem; }
.workflow-ai-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 7px 9px; border-top: 1px solid rgba(222,240,255,.16); }
.workflow-ai-foot p { margin: 0; color: rgba(237,247,255,.82); font-size: .61rem; font-weight: 650; line-height: 1.2; text-transform: none; }
.workflow-ai-foot i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #c9f4a7; box-shadow: 0 0 0 5px rgba(201,244,167,.14); }
.highlight-case:hover .workflow-ai-core { box-shadow: 0 0 0 10px rgba(190,242,177,.1); transform: translateY(-4px) rotate(-1deg); }
.highlight-case:hover .workflow-ai-outputs article { background: rgba(224,243,255,.14); transform: translateX(-3px); }
.highlight-case:hover .workflow-ai-outputs article:nth-child(2) { transition-delay: 65ms; }
.media-campaign {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 0;
  padding: 10px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 30%, rgba(66, 177, 255, .36), transparent 30%), linear-gradient(135deg, #020825, #06367b);
}

.media-campaign img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  background: rgba(1, 9, 35, .32);
  object-fit: contain;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.media-campaign-mark { align-self: end; padding: 0 14px 14px; color: #eaf7ff; font-size: clamp(1rem, 1.65vw, 1.35rem); font-weight: 700; letter-spacing: .06em; line-height: 1.03; }
.media-campaign-mark small { color: rgba(151, 220, 255, .84); font-size: .64em; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.highlight-case:hover .media-campaign img { box-shadow: 0 12px 22px rgba(0, 10, 40, .36); transform: translateY(-3px) rotate(-0.8deg); }
.media-data { grid-template-rows: auto 1fr auto; align-items: stretch; justify-items: stretch; gap: 12px; padding: 18px; overflow: hidden; color: #eaf5ed; text-align: left; background: radial-gradient(circle at 82% 14%, rgba(184,228,204,.28), transparent 28%), linear-gradient(135deg, #203e39, #486f63); }
.report-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.report-card-top p { margin: 0; color: rgba(233,247,239,.82); font-size: .64rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.report-card-top i { width: 8px; height: 8px; border-radius: 50%; background: #bcf4ae; box-shadow: 0 0 0 5px rgba(188,244,174,.14); }
.report-card-flow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.report-card-flow article { display: grid; align-content: end; gap: 5px; min-width: 0; padding: 9px; border: 1px solid rgba(226,250,237,.18); border-radius: 11px; background: rgba(0,18,14,.2); }
.report-card-flow b { color: #bcf4ae; font-size: .66rem; letter-spacing: .08em; }
.report-card-flow p { margin: 0; color: #fff; font-size: .68rem; font-weight: 700; line-height: 1.15; text-transform: none; }
.report-card-bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; align-items: end; height: 32px; }
.report-card-bars i { display: block; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, #b8ebaa, #63b8a0); opacity: .9; transition: transform 260ms ease; }
.report-card-bars i:nth-child(1) { height: 42%; }.report-card-bars i:nth-child(2) { height: 78%; }.report-card-bars i:nth-child(3) { height: 58%; }.report-card-bars i:nth-child(4) { height: 100%; }
.highlight-case:hover .report-card-bars i:nth-child(2), .highlight-case:hover .report-card-bars i:nth-child(4) { transform: translateY(-5px); }
.media-community { background: linear-gradient(135deg, #e7d6c6, #bfafb0); }
.media-farm {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #d4e1c5, #ead7bf);
}

.media-farm img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: contain;
  transition: transform 320ms ease;
}

.highlight-case:hover .media-farm img {
  transform: scale(1.035);
}

.farm-card-instagram,
.farm-project-instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(25, 23, 22, 0.62);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.farm-card-instagram {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 9px 11px;
}

.farm-card-instagram:hover,
.farm-card-instagram:focus-visible,
.farm-project-instagram-cta:hover,
.farm-project-instagram-cta:focus-visible {
  background: rgba(25, 23, 22, 0.86);
  outline: none;
  transform: translateY(-2px);
}

.farm-card-instagram b,
.farm-project-instagram-cta b {
  font-size: 0.8rem;
}

.farm-project-instagram-cta {
  margin-top: 18px;
  padding: 11px 14px;
}

.media-vlog { grid-template-columns: minmax(112px, .74fr) minmax(0, 1.26fr); gap: 14px; align-items: center; justify-items: stretch; padding: 14px; overflow: hidden; color: #473941; text-align: left; background: radial-gradient(circle at 88% 18%, rgba(255,233,214,.72), transparent 29%), linear-gradient(135deg, #d5beca, #f0ddcb); }
.vlog-cover-frame { position: relative; align-self: center; height: 174px; overflow: hidden; border: 1px solid rgba(255,255,255,.62); border-radius: 14px; background: rgba(255,255,255,.25); box-shadow: 0 14px 25px rgba(84,54,66,.16); transition: transform 260ms ease, box-shadow 260ms ease; }
.vlog-cover-frame img { display: block; width: 100%; height: 100%; object-fit: contain; }
.vlog-cover-frame i { position: absolute; right: 9px; bottom: 9px; display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid rgba(255,255,255,.64); border-radius: 50%; color: #fff; background: rgba(55,42,52,.54); font-size: .57rem; font-style: normal; }
.vlog-cover-notes { display: grid; align-content: center; gap: 9px; min-width: 0; }
.vlog-cover-notes > p { margin: 0; color: rgba(92,55,74,.76); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.vlog-cover-notes strong { max-width: 180px; color: #3c2f37; font-size: clamp(.94rem, 1.8vw, 1.22rem); line-height: 1.1; }
.vlog-cover-notes > div { display: flex; align-items: end; gap: 5px; height: 26px; }
.vlog-cover-notes > div i { display: block; width: 7px; border-radius: 99px; background: linear-gradient(180deg, #ea7e96, #a74f74); }
.vlog-cover-notes > div i:nth-child(1) { height: 45%; }.vlog-cover-notes > div i:nth-child(2) { height: 100%; }.vlog-cover-notes > div i:nth-child(3) { height: 66%; }
.vlog-cover-notes small { max-width: 160px; color: rgba(74,50,62,.72); font-size: .64rem; font-weight: 650; line-height: 1.35; text-transform: none; }
.highlight-case:hover .vlog-cover-frame { box-shadow: 0 20px 31px rgba(84,54,66,.24); transform: translateY(-4px) rotate(-1deg); }

.highlight-card-copy { padding: 26px 26px 82px; }
.case-tag, .detail-label {
  margin: 0 0 9px;
  color: rgba(91, 61, 52, 0.72);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.highlight-card-copy h2 { margin: 0 0 10px; font-size: 1.22rem; line-height: 1.15; }
.highlight-card-copy > p:not(.case-tag) { margin: 0; color: var(--muted); font-size: 0.88rem; }

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.highlight-case > .learn-more {
  position: absolute;
  right: 34px;
  bottom: 30px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(25, 23, 22, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.learn-more::-webkit-details-marker { display: none; }
.learn-more svg { width: 16px; height: 16px; transition: transform 180ms ease; }
.learn-more:hover svg, .learn-more:focus-visible svg { transform: translate(2px, -2px); }

.highlight-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 26px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
}

.highlight-detail p:last-child { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.65; }

.case-study { width: min(920px, calc(100% - 44px)); margin: 0 auto; padding: clamp(56px, 8vw, 94px) 0; }
.case-study-header { max-width: 720px; margin-bottom: 42px; }
.case-study-header h1 { margin: 0 0 16px; font-size: clamp(2rem, 4.3vw, 4.4rem); line-height: 0.98; }
.case-study-header > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: 1rem; }
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; }
.case-meta span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; background: rgba(255,255,255,.2); color: rgba(25,23,22,.72); font-size: .76rem; font-weight: 700; }
.case-cover, .case-placeholder { display: grid; min-height: 330px; place-items: center; margin-bottom: 24px; padding: 28px; border: 1px dashed rgba(25,23,22,.28); border-radius: var(--radius); color: rgba(25,23,22,.58); font-size: .84rem; text-align: center; background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(244,212,220,.34)); }
.case-cover.case-cover-image { min-height: 0; padding: 0; overflow: hidden; border-style: solid; }
.case-cover.case-cover-image img { display: block; width: auto; max-width: 100%; height: min(560px, 64vh); margin: 0 auto; object-fit: contain; object-position: center; }
.workflow-automation-cover { display: block; min-height: 0; margin-bottom: 30px; padding: clamp(22px, 4vw, 38px); overflow: hidden; border: 1px solid rgba(137,181,237,.35); border-radius: var(--radius); color: #eff6ff; text-align: left; background: radial-gradient(circle at 85% 5%, rgba(111,193,255,.4), transparent 25%), radial-gradient(circle at 14% 100%, rgba(95,165,205,.28), transparent 30%), linear-gradient(135deg, #0f2745, #123d69 55%, #162a54); box-shadow: 0 20px 42px rgba(28,61,104,.2); }
.automation-cover-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: start; }
.automation-cover-heading .eyebrow { color: rgba(173,224,255,.92); }
.automation-cover-heading h2 { max-width: 570px; margin: 7px 0 10px; color: #fff; font-size: clamp(1.55rem, 3vw, 2.7rem); line-height: 1.02; }
.automation-cover-heading > div > p:last-child { max-width: 620px; margin: 0; color: rgba(226,241,255,.82); font-size: .88rem; line-height: 1.65; }
.automation-cover-heading > span { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(206,239,255,.42); border-radius: 14px; color: #d9f5bd; background: rgba(152,218,255,.12); box-shadow: 0 0 0 8px rgba(156,217,255,.07); font-size: .85rem; font-weight: 850; letter-spacing: .08em; }
.ai-workbench { display: grid; grid-template-columns: minmax(120px, .65fr) minmax(190px, 1fr) minmax(175px, 1.1fr); gap: clamp(12px, 2vw, 22px); align-items: stretch; margin: 30px 0 18px; }
.ai-workbench-input { position: relative; display: grid; align-content: center; min-height: 188px; padding: 18px; overflow: hidden; border: 1px solid rgba(212,237,255,.18); border-radius: 18px; background: linear-gradient(150deg, rgba(8,30,61,.72), rgba(25,75,118,.42)); transition: transform 250ms ease, border-color 250ms ease; }
.ai-workbench-input::before { content: ''; position: absolute; top: 20%; right: -15px; width: 30px; height: 1px; background: rgba(214,240,255,.58); }
.ai-workbench-input p, .ai-workbench-core p { margin: 0 0 8px; color: #bfe4ff; font-size: .66rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.ai-workbench-input strong { color: #fff; font-size: .88rem; line-height: 1.2; }
.ai-workbench-input i { margin-top: 20px; color: #d5f6b8; font-size: 1.15rem; font-style: normal; }
.ai-workbench-core { position: relative; display: grid; align-content: end; min-height: 188px; padding: 20px; overflow: hidden; border: 1px solid rgba(202,242,180,.46); border-radius: 50% 50% 24px 24px; background: radial-gradient(circle at 50% 25%, rgba(184,242,167,.34), transparent 25%), linear-gradient(155deg, rgba(65,141,180,.42), rgba(21,60,111,.6)); box-shadow: 0 0 0 8px rgba(176,232,205,.06), inset 0 -22px 38px rgba(4,22,56,.24); transition: transform 300ms ease, box-shadow 300ms ease; }
.ai-workbench-core::after { content: ''; position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid rgba(220,255,212,.38); border-radius: 50%; }
.ai-core-orbit { position: absolute; top: 19px; left: 20px; display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid rgba(220,255,212,.7); border-radius: 50%; color: #dfffc8; background: rgba(192,247,170,.12); box-shadow: 0 0 0 8px rgba(192,247,170,.06); font-size: .82rem; font-weight: 850; letter-spacing: .09em; }
.ai-workbench-core strong { position: relative; z-index: 1; max-width: 240px; color: #fff; font-size: .92rem; line-height: 1.2; }
.ai-workbench-outputs { display: grid; gap: 8px; }
.ai-workbench-outputs article { display: grid; grid-template-columns: 24px minmax(0, 1fr); column-gap: 7px; align-content: center; min-height: 57px; padding: 10px 12px; border: 1px solid rgba(212,237,255,.17); border-radius: 13px; background: rgba(7,27,57,.32); transition: transform 220ms ease, background 220ms ease, border-color 220ms ease; }
.ai-workbench-outputs b { grid-row: span 2; color: #d4f7b7; font-size: .58rem; letter-spacing: .08em; }
.ai-workbench-outputs strong { color: #fff; font-size: .71rem; line-height: 1.1; }
.ai-workbench-outputs p { margin: 4px 0 0; color: rgba(221,240,255,.72); font-size: .6rem; line-height: 1.25; }
.workflow-automation-cover:hover .ai-workbench-input { border-color: rgba(219,243,255,.48); transform: translateX(3px); }
.workflow-automation-cover:hover .ai-workbench-core { box-shadow: 0 0 0 12px rgba(176,232,205,.1), inset 0 -22px 38px rgba(4,22,56,.2); transform: translateY(-5px) rotate(-1deg); }
.workflow-automation-cover:hover .ai-workbench-outputs article { border-color: rgba(219,243,255,.43); transform: translateX(-3px); }
.workflow-automation-cover:hover .ai-workbench-outputs article:nth-child(2) { transition-delay: 60ms; }.workflow-automation-cover:hover .ai-workbench-outputs article:nth-child(3) { transition-delay: 120ms; }
.automation-cover-foot { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding-top: 14px; border-top: 1px solid rgba(205,234,255,.16); }
.automation-cover-foot p { margin: 0; color: rgba(213,234,255,.74); font-size: .7rem; }
.automation-cover-foot i { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #c8f5a5; box-shadow: 0 0 0 5px rgba(200,245,165,.12); }
.campaign-product-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; min-height: 0; padding: 14px; border-style: solid; background: linear-gradient(135deg, rgba(216,196,173,.44), rgba(242,201,192,.34)); }
.campaign-product-showcase figure { display: grid; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.54); border-radius: 15px; background: rgba(255,255,255,.22); box-shadow: 0 11px 22px rgba(73,54,48,.08); transition: transform 220ms ease, box-shadow 220ms ease; }
.campaign-product-showcase figure:hover { z-index: 1; box-shadow: 0 20px 34px rgba(73,54,48,.14); transform: translateY(-4px) rotate(-.5deg); }
.campaign-product-showcase img { width: 100%; height: auto; min-height: 0; aspect-ratio: 3 / 2; object-fit: contain; }
.campaign-product-showcase figcaption { padding: 9px 11px 11px; color: rgba(25,23,22,.72); font-size: .7rem; line-height: 1.4; }
.campaign-event-strip { display: grid; grid-template-columns: minmax(190px, .38fr) minmax(0, .62fr); gap: clamp(18px, 3vw, 34px); align-items: center; margin: 0 0 30px; padding: clamp(18px, 3vw, 30px); overflow: hidden; border: 1px solid rgba(35, 77, 151, .22); border-radius: var(--radius); background: linear-gradient(135deg, #07143b, #0d3f84 55%, #06366c); color: rgba(255,255,255,.9); box-shadow: 0 18px 38px rgba(20,52,101,.2); }
.campaign-event-copy .eyebrow { color: rgba(155,216,255,.9); }
.campaign-event-copy h2 { max-width: 370px; margin: 7px 0 10px; color: #fff; font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.08; }
.campaign-event-copy p:last-child { max-width: 410px; margin: 0; color: rgba(231,243,255,.82); font-size: .84rem; line-height: 1.7; }
.campaign-event-gallery { display: grid; grid-template-columns: minmax(72px, .7fr) minmax(140px, 1.5fr) minmax(72px, .7fr); gap: 9px; align-items: center; }
.campaign-event-gallery figure { display: grid; min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(205,233,255,.34); border-radius: 12px; background: rgba(1,9,34,.42); box-shadow: 0 12px 24px rgba(0,0,0,.22); transition: transform 220ms ease, border-color 220ms ease; }
.campaign-event-gallery figure:hover { z-index: 1; border-color: rgba(213,242,255,.72); transform: translateY(-5px); }
.campaign-event-gallery img { display: block; width: 100%; height: 150px; object-fit: contain; }
.campaign-event-gallery__wide { transform: translateY(-8px); }
.campaign-event-gallery__wide img { height: 175px; }
.campaign-event-gallery figcaption { padding: 6px 8px 8px; color: rgba(230,243,255,.78); font-size: .62rem; line-height: 1.35; }
.reporting-dashboard { position: relative; display: grid; grid-template-columns: minmax(210px, .42fr) minmax(0, .58fr); gap: clamp(18px, 3vw, 34px); align-items: start; margin: 0 0 30px; padding: clamp(22px, 4vw, 38px); overflow: hidden; border: 1px solid rgba(69,124,106,.28); border-radius: var(--radius); background: radial-gradient(circle at 90% 0%, rgba(173,235,196,.42), transparent 28%), linear-gradient(135deg, #e0eee1, #c7ded3); box-shadow: 0 18px 38px rgba(45,85,70,.14); }
.reporting-dashboard-heading { position: relative; z-index: 1; }
.reporting-dashboard-heading .eyebrow { color: #326757; }
.reporting-dashboard-heading h2 { max-width: 350px; margin: 7px 0 10px; font-size: clamp(1.45rem, 2.6vw, 2.2rem); line-height: 1.03; }
.reporting-dashboard-heading > p:last-child { max-width: 340px; margin: 0; color: rgba(25,72,59,.72); font-size: .82rem; line-height: 1.6; }
.reporting-stage-tabs { display: flex; flex-wrap: wrap; gap: 7px; grid-column: 2; position: relative; z-index: 1; }
.reporting-stage-tabs button { padding: 8px 10px; border: 1px solid rgba(39,91,73,.22); border-radius: 999px; background: rgba(255,255,255,.3); color: #275b49; font: inherit; font-size: .72rem; font-weight: 700; cursor: pointer; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.reporting-stage-tabs button:hover { transform: translateY(-2px); }
.reporting-stage-tabs button[aria-selected="true"] { border-color: #234f42; background: #234f42; color: #f5fff8; }
.reporting-stage-panels { grid-column: 2; position: relative; z-index: 1; min-height: 214px; }
.reporting-stage-panel { min-height: 214px; padding: clamp(18px, 2.5vw, 25px); border: 1px solid rgba(255,255,255,.54); border-radius: 18px; background: rgba(255,255,255,.43); box-shadow: 0 13px 27px rgba(39,83,68,.1); animation: reporting-panel-in 260ms ease both; }
.reporting-stage-panel[hidden] { display: none; }
.reporting-stage-number { margin: 0 0 8px; color: #357560; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.reporting-stage-panel h3 { max-width: 400px; margin: 0 0 10px; font-size: clamp(1.08rem, 2vw, 1.45rem); line-height: 1.12; }
.reporting-stage-panel > p:not(.reporting-stage-number) { max-width: 480px; margin: 0; color: rgba(25,70,58,.76); font-size: .85rem; line-height: 1.65; }
.reporting-metric-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.reporting-metric-tags b { padding: 6px 8px; border: 1px solid rgba(46,105,83,.18); border-radius: 999px; background: rgba(224,247,230,.64); color: #316b58; font-size: .68rem; }
.reporting-signal-lines { position: absolute; right: -30px; bottom: -25px; left: 28px; display: flex; gap: 7px; align-items: end; height: 82px; opacity: .28; pointer-events: none; }
.reporting-signal-lines i { display: block; flex: 1; border-radius: 10px 10px 0 0; background: linear-gradient(180deg, #5cad88, #275c4b); }
.reporting-signal-lines i:nth-child(1) { height: 34%; }.reporting-signal-lines i:nth-child(2) { height: 60%; }.reporting-signal-lines i:nth-child(3) { height: 49%; }.reporting-signal-lines i:nth-child(4) { height: 82%; }.reporting-signal-lines i:nth-child(5) { height: 100%; }
.target-allocation-board { display: grid; grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr); gap: clamp(18px, 3vw, 36px); align-items: center; margin: 0 0 30px; padding: clamp(22px, 4vw, 38px); overflow: hidden; border: 1px solid rgba(41,48,74,.2); border-radius: var(--radius); background: linear-gradient(135deg, rgba(225,222,242,.74), rgba(213,232,220,.72)); box-shadow: 0 18px 38px rgba(51,54,82,.12); }
.target-allocation-copy .eyebrow { color: #4b4c83; }
.target-allocation-copy h2 { max-width: 370px; margin: 7px 0 10px; font-size: clamp(1.42rem, 2.45vw, 2.12rem); line-height: 1.05; }
.target-allocation-copy > p:not(.eyebrow) { max-width: 390px; margin: 0; color: rgba(38,45,70,.74); font-size: .85rem; line-height: 1.7; }
.target-logic { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-top: 18px; color: #454779; font-size: .69rem; }
.target-logic b { padding: 7px 8px; border: 1px solid rgba(71,73,121,.16); border-radius: 8px; background: rgba(255,255,255,.38); }
.target-logic i { font-style: normal; opacity: .58; }
.target-allocation-visual { padding: 14px; border: 1px solid rgba(222,229,255,.28); border-radius: 18px; background: linear-gradient(135deg, #25294d, #34316a); box-shadow: 0 16px 30px rgba(40,43,83,.22); color: #eff2ff; }
.allocation-visual-head { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 12px; color: rgba(217,226,255,.72); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.allocation-visual-head p { margin: 0; }
.allocation-row { display: grid; grid-template-columns: minmax(74px, .65fr) minmax(115px, 1.25fr) minmax(86px, .8fr); gap: 10px; align-items: center; min-height: 43px; padding: 8px 7px; border-top: 1px solid rgba(220,228,255,.13); font-size: .7rem; }
.allocation-row--header { min-height: 28px; padding-top: 0; border-top: 0; color: rgba(211,222,255,.58); font-size: .58rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.allocation-row strong { color: #fff; font-size: .7rem; }
.allocation-row em { color: #c5f1b5; font-style: normal; font-size: .65rem; }
.allocation-share { height: 8px; overflow: hidden; border-radius: 999px; background: rgba(219,228,255,.16); }
.allocation-share i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8bcfa8, #d4f6a3); transition: width 400ms ease; }
.allocation-share--high { width: 82%; }.allocation-share--mid { width: 60%; }.allocation-share--low { width: 42%; }.allocation-share--small { width: 27%; }
.target-allocation-board:hover .allocation-share--high { width: 87%; }.target-allocation-board:hover .allocation-share--mid { width: 66%; }.target-allocation-board:hover .allocation-share--low { width: 48%; }.target-allocation-board:hover .allocation-share--small { width: 34%; }
.daily-tracker-board { display: grid; grid-template-columns: minmax(220px, .4fr) minmax(0, .6fr); gap: clamp(18px, 3vw, 36px); align-items: center; margin: 0 0 30px; padding: clamp(22px, 4vw, 38px); overflow: hidden; border: 1px solid rgba(130,84,37,.2); border-radius: var(--radius); background: linear-gradient(135deg, rgba(248,232,202,.72), rgba(231,221,198,.78)); box-shadow: 0 18px 38px rgba(92,67,42,.11); }
.daily-tracker-copy .eyebrow { color: #8a5b2a; }
.daily-tracker-copy h2 { max-width: 370px; margin: 7px 0 10px; font-size: clamp(1.42rem, 2.45vw, 2.12rem); line-height: 1.05; }
.daily-tracker-copy > p:not(.eyebrow) { max-width: 390px; margin: 0; color: rgba(80,56,32,.74); font-size: .85rem; line-height: 1.7; }
.daily-tracker-window { padding: 14px; border: 1px solid rgba(255,246,225,.62); border-radius: 18px; background: #fbf7ee; box-shadow: 0 16px 30px rgba(77,51,29,.14); }
.daily-tracker-top { display: flex; justify-content: space-between; gap: 12px; padding: 0 3px 12px; color: #715635; font-size: .62rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.daily-tracker-top p { margin: 0; }
.daily-tracker-table { overflow: hidden; border: 1px solid rgba(101,75,45,.13); border-radius: 11px; }
.daily-tracker-head, .daily-tracker-row { display: grid; grid-template-columns: minmax(105px, 1.1fr) minmax(100px, 1fr) minmax(92px, .9fr); gap: 8px; align-items: center; width: 100%; min-height: 43px; padding: 9px 10px; text-align: left; }
.daily-tracker-head { color: rgba(91,67,39,.58); background: rgba(234,218,185,.62); font-size: .58rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.daily-tracker-row { border: 0; border-top: 1px solid rgba(101,75,45,.1); background: rgba(255,255,255,.3); color: #33291e; font: inherit; cursor: pointer; transition: background 180ms ease, transform 180ms ease; }
.daily-tracker-row:hover, .daily-tracker-row.is-selected { background: rgba(236,218,170,.42); }
.daily-tracker-row:hover { transform: translateX(3px); }
.daily-tracker-row strong { font-size: .72rem; }
.daily-status, .daily-action { font-size: .65rem; }
.daily-status { width: fit-content; padding: 4px 6px; border-radius: 999px; font-weight: 700; }
.daily-status--steady { color: #45684b; background: #d9e8c9; }.daily-status--watch { color: #8c542c; background: #f5dca4; }.daily-status--ahead { color: #38616d; background: #cbe6e9; }.daily-status--live { color: #6a547d; background: #e1d3eb; }
.daily-action { color: rgba(70,51,30,.76); font-weight: 700; }
.daily-tracker-note { min-height: 42px; margin: 12px 1px 1px; padding: 10px 12px; border-left: 2px solid #bc8b4e; color: rgba(80,56,32,.78); font-size: .75rem; line-height: 1.55; background: rgba(241,228,199,.42); animation: reporting-panel-in 220ms ease both; }
@keyframes reporting-panel-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.creator-showcase { display: grid; grid-template-columns: minmax(190px, .62fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 52px); align-items: center; margin-bottom: 30px; padding: clamp(22px, 4vw, 42px); border: 1px solid rgba(255,255,255,.44); border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(244,212,220,.26)); box-shadow: var(--soft-shadow); }
.creator-phone { width: min(100%, 255px); margin: 0 auto; overflow: hidden; border-radius: 28px; box-shadow: 0 24px 52px rgba(61,47,42,.3); transform: rotate(-2.5deg); transition: transform 250ms ease, box-shadow 250ms ease; }
.creator-showcase:hover .creator-phone { box-shadow: 0 30px 60px rgba(61,47,42,.38); transform: rotate(0); }
.creator-phone img { display: block; width: 100%; height: auto; }
.creator-showcase-copy h2 { max-width: 440px; margin: 0 0 12px; font-size: clamp(1.55rem, 3vw, 2.7rem); line-height: 1.04; }
.creator-showcase-copy > p:not(.case-tag):not(.creator-detail) { max-width: 520px; margin: 0; color: var(--muted); font-size: .92rem; }
.creator-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 24px 0; }
.creator-metrics div { padding: 12px 10px; border-radius: 14px; background: rgba(255,255,255,.34); }
.creator-metrics strong, .creator-metrics span { display: block; }
.creator-metrics strong { font-size: 1.1rem; line-height: 1; }
.creator-metrics span, .creator-showcase-copy small { color: var(--muted); font-size: .69rem; }
.creator-tabs { display: flex; flex-wrap: wrap; gap: 7px; }
.creator-tabs button { padding: 8px 10px; border: 1px solid rgba(25,23,22,.16); border-radius: 999px; background: rgba(255,255,255,.2); color: var(--ink); font: inherit; font-size: .76rem; cursor: pointer; }
.creator-tabs button[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.creator-detail { min-height: 52px; margin: 15px 0 7px !important; padding: 12px 14px; border-left: 2px solid rgba(91,61,52,.45); color: var(--muted); font-size: .84rem; line-height: 1.6; }
.creator-gallery-section h2 { margin-bottom: 8px; }
.creator-gallery-intro { max-width: 570px; color: var(--muted); font-size: .88rem !important; }
.creator-gallery { display: grid; grid-template-columns: minmax(180px, .62fr) minmax(0, 1.38fr); gap: 16px; align-items: start; margin: 22px 0 16px; }
.creator-gallery-card { position: relative; min-height: 0; padding: 0; overflow: hidden; border: 1px solid transparent; border-radius: 18px; background: rgba(25,23,22,.12); color: white; cursor: pointer; text-align: left; }
.creator-gallery-card:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 2.52 / 1; }
.creator-gallery-card:nth-child(2) { width: min(100%, 238px); height: 420px; justify-self: center; }
.creator-gallery-card:nth-child(3) { height: 420px; }
.creator-gallery-card img { display: block; width: 100%; height: 100%; object-fit: contain; transition: transform 300ms ease, filter 300ms ease; }
.creator-gallery-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(25,23,22,.72)); }
.creator-gallery-card span { position: absolute; right: 16px; bottom: 14px; left: 16px; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 14px; }
.creator-gallery-card strong { font-size: .96rem; }
.creator-gallery-card small { color: rgba(255,255,255,.74); font-size: .7rem; font-weight: 750; letter-spacing: .08em; }
.creator-gallery-card:hover img, .creator-gallery-card:focus-visible img, .creator-gallery-card.is-active img { filter: saturate(1.12); transform: scale(1.04); }
.creator-gallery-card.is-active { border-color: rgba(255,255,255,.86); }
.creator-gallery-detail { min-height: 48px; margin: 0 0 8px !important; padding: 12px 14px; border-left: 2px solid rgba(91,61,52,.45); color: var(--muted); font-size: .84rem !important; line-height: 1.6; }
.case-content { display: grid; gap: 18px; }
.case-section { padding: 28px; border: 1px solid rgba(255,255,255,.38); border-radius: var(--radius-small); background: rgba(255,255,255,.18); box-shadow: var(--soft-shadow); }
.case-section h2 { margin: 0 0 10px; font-size: 1.12rem; }
.case-section p, .case-section li { color: var(--muted); font-size: .9rem; }
.case-section p { margin: 0; }
.case-section .case-spaced-copy { margin-top: 14px; }
.case-section ul { margin: 12px 0 0; padding-left: 18px; }
.process-grid, .case-outcome-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.process-grid article, .case-outcome-grid p { padding: 18px; border-radius: 18px; background: rgba(255,255,255,.24); }
.process-grid span { color: rgba(91, 61, 52, .68); font-size: .76rem; font-weight: 800; letter-spacing: .08em; }
.process-grid h3 { margin: 7px 0; font-size: 1rem; }
.process-grid p, .case-outcome-grid p { font-size: .84rem; line-height: 1.6; }
.case-outcome-grid p { margin: 0; }
.case-outcome-grid strong { display: block; margin-bottom: 6px; color: var(--ink); }
.workflow-section { overflow: hidden; }
.workflow-section-heading { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.workflow-section-heading h2 { margin-bottom: 8px; }
.workflow-section-heading p { color: var(--muted); font-size: .86rem; }
.workflow-status { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.35); color: rgba(91, 61, 52, .72); font-size: .74rem; font-weight: 750; }
.workflow-track { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin: 28px 0 22px; }
.workflow-track::before { content: ''; position: absolute; top: 25px; right: 9%; left: 9%; height: 1px; background: rgba(25,23,22,.2); }
.workflow-node { position: relative; z-index: 1; display: grid; justify-items: center; gap: 5px; min-height: 120px; padding: 0 8px; border: 0; border-radius: 18px; background: transparent; color: var(--ink); font: inherit; text-align: center; cursor: pointer; }
.workflow-node span { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(25,23,22,.22); border-radius: 50%; background: rgba(255,255,255,.45); font-size: .8rem; font-weight: 800; transition: transform 180ms ease, background 180ms ease, color 180ms ease; }
.workflow-node strong { font-size: .82rem; line-height: 1.2; }
.workflow-node small { color: var(--muted); font-size: .72rem; }
.workflow-node:hover span, .workflow-node:focus-visible span, .workflow-node.is-active span { background: var(--ink); color: var(--paper); transform: translateY(-4px); }
.workflow-detail { padding: 22px; border-radius: 20px; background: rgba(255,255,255,.28); }
.workflow-detail h3 { margin: 0 0 8px; font-size: 1.12rem; }
.workflow-detail > p:not(.detail-label) { max-width: 680px; }
.workflow-detail-footer { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.workflow-detail-footer span { padding: 7px 9px; border-radius: 9px; background: rgba(255,255,255,.34); color: rgba(25,23,22,.66); font-size: .76rem; }
.artefact-heading { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.artefact-heading h2 { margin-bottom: 8px; }
.artefact-heading > div > p { color: var(--muted); font-size: .86rem; }
.artefact-heading > span { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.35); color: rgba(91,61,52,.7); font-size: .74rem; font-weight: 750; }
.artefact-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.artefact-tabs button { padding: 9px 12px; border: 1px solid rgba(25,23,22,.16); border-radius: 999px; background: transparent; color: var(--ink); font: inherit; font-size: .8rem; cursor: pointer; }
.artefact-tabs button[aria-selected="true"] { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.artefact-caption { margin-bottom: 14px !important; color: var(--muted); font-size: .86rem !important; }
.mock-table-shell { overflow: hidden; border: 1px solid rgba(25,23,22,.14); border-radius: 16px; background: rgba(255,255,255,.35); }
.mock-table { display: grid; color: rgba(25,23,22,.72); font-size: .72rem; }
.mock-intake { grid-template-columns: 1fr 1.2fr 1.1fr .9fr 1.1fr 1fr; }
.mock-review { grid-template-columns: .8fr 1fr 1.1fr 1.1fr 1.15fr .75fr .95fr; }
.mock-table > div { min-width: 0; padding: 12px 10px; border-right: 1px solid rgba(25,23,22,.1); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-table > div:nth-child(n + 7) { border-top: 1px solid rgba(25,23,22,.1); }
.mock-table-head { background: rgba(240, 199, 191, .28); color: rgba(25,23,22,.76); font-weight: 750; }
.mock-tag { display: inline-block; padding: 3px 6px; border-radius: 6px; background: rgba(194, 185, 216, .48); font-size: .68rem; }
.mock-tag.warning { background: rgba(244, 212, 171, .6); }
.mock-tag.neutral { background: rgba(25,23,22,.08); }
.mock-approval { display: grid; grid-template-columns: 1.2fr .8fr 1fr 1.4fr; gap: 10px; padding: 12px; border-top: 1px solid rgba(25,23,22,.1); background: rgba(221,238,214,.42); color: rgba(25,23,22,.67); font-size: .74rem; }
.mock-approval strong { color: var(--ink); }
.quota-demo { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 10px; }
.quota-demo > div { display: grid; gap: 6px; padding: 16px; border-radius: 14px; background: rgba(255,255,255,.32); }
.quota-demo span, .quota-demo small, .quota-progress span, .quota-progress p { color: var(--muted); font-size: .74rem; }
.quota-demo strong { font-size: 1.35rem; line-height: 1; }
.quota-primary { background: rgba(220,232,224,.6) !important; }
.quota-progress { margin-top: 12px; padding: 16px; border-radius: 14px; background: rgba(255,255,255,.28); }
.quota-progress > div { display: flex; justify-content: space-between; gap: 12px; }
.quota-track { height: 10px; margin: 11px 0; overflow: hidden; border-radius: 999px; background: rgba(25,23,22,.1); }
.quota-track span { display: block; width: 79%; height: 100%; border-radius: inherit; background: #d9857d; }
.quota-progress p { margin: 0; }
.review-trigger { display: flex; gap: 12px; align-items: center; padding: 14px; border-top: 1px solid rgba(25,23,22,.1); background: rgba(236,225,204,.48); }
.review-trigger > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: .78rem; font-weight: 750; }
.review-trigger p { margin: 0; color: var(--muted); font-size: .76rem; }
.review-trigger strong { display: block; color: var(--ink); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto;
  padding: 22px 0 30px;
  color: rgba(25, 23, 22, 0.55);
  font-size: 0.78rem;
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
    border-radius: 30px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .nav-cta {
    justify-self: end;
  }

  .lang-switch {
    justify-self: end;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 660px;
  }

  .sticky-heading {
    position: static;
  }

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

  .snapshot-carousel .metric-grid {
    display: block;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

.travel-section {
  padding-top: 34px;
}

.travel-heading {
  max-width: 760px;
  margin-inline: auto;
}

.travel-heading .quiet-copy {
  max-width: 620px;
  margin-inline: auto;
}

.travel-atlas {
  display: grid;
  grid-template-columns: minmax(230px, 0.67fr) minmax(0, 1.33fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.travel-photo {
  position: relative;
  display: grid;
  min-height: 540px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 229, 190, 0.6), transparent 34%),
    linear-gradient(150deg, rgba(235, 207, 175, 0.92), rgba(177, 136, 102, 0.82));
}

.travel-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.travel-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 64%, rgba(49, 31, 22, 0.42));
  pointer-events: none;
}

.travel-photo figcaption {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 20px;
  color: #fffaf5;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel-route-panel {
  padding: clamp(26px, 4vw, 46px);
  background:
    radial-gradient(circle at 89% 8%, rgba(244, 196, 159, 0.45), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 245, 0.93), rgba(244, 225, 212, 0.78));
}

.travel-route-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.travel-route-heading p {
  margin: 0;
  color: rgba(81, 56, 48, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel-route-heading span,
.travel-map-note {
  color: rgba(81, 56, 48, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
}

.travel-map {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(81, 56, 48, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.36);
}

.travel-map-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.travel-map-path path:first-child {
  fill: none;
  stroke: rgba(205, 103, 72, 0.72);
  stroke-width: 3;
  stroke-dasharray: 8 10;
  stroke-linecap: round;
  animation: travel-route-dash 16s linear infinite;
}

.travel-map-path .travel-map-grid {
  fill: none;
  stroke: rgba(81, 56, 48, 0.08);
  stroke-width: 1;
}

@keyframes travel-route-dash {
  to { stroke-dashoffset: -180; }
}

.travel-stop {
  position: absolute;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  width: min(175px, 29%);
  padding: 8px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease;
}

.travel-stop span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(179, 76, 49, 0.46);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.9);
  color: rgba(151, 57, 35, 0.9);
  font-size: 0.63rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(91, 45, 31, 0.12);
}

.travel-stop strong {
  padding-top: 5px;
  color: rgba(67, 43, 35, 0.82);
  font-size: 0.69rem;
  line-height: 1.35;
}

.travel-stop:hover,
.travel-stop:focus-visible,
.travel-stop.is-active {
  transform: translateY(-3px);
}

.travel-stop.is-active span,
.travel-stop:hover span,
.travel-stop:focus-visible span {
  border-color: rgba(183, 70, 42, 0.8);
  background: rgba(197, 76, 48, 0.9);
  color: #fffaf5;
}

.travel-stop--egypt { top: 60%; left: 7%; }
.travel-stop--sea { top: 49%; left: 33%; }
.travel-stop--korea { top: 18%; left: 56%; }
.travel-stop--china { top: 53%; right: 4%; }

.travel-map-note {
  position: absolute;
  right: 16px;
  bottom: 15px;
}

.travel-current {
  min-height: 3.3em;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
  transition: opacity 180ms ease;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.travel-page {
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto;
  padding: 40px 0 48px;
}

.travel-page-intro {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 10px 26px;
  max-width: 960px;
  margin: 0 auto 26px;
}

.travel-page-intro .learn-more {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.travel-page-intro h1 {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.15rem);
  line-height: 1.12;
}

.travel-page-intro > p:not(.eyebrow) {
  grid-column: 2;
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.68;
}

.travel-page-intro .eyebrow {
  grid-column: 1;
  align-self: start;
  margin: 5px 0 0;
  font-size: 0.7rem;
}

.about-page-rail {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.about-page-rail a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(74, 56, 48, 0.11);
  border-radius: 999px;
  color: rgba(69, 54, 48, 0.72);
  background: rgba(255, 253, 250, 0.42);
  font-size: 0.7rem;
  font-weight: 760;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.about-page-rail a:hover,
.about-page-rail a:focus-visible {
  border-color: rgba(135, 85, 66, 0.25);
  background: rgba(255, 255, 255, 0.74);
  transform: translateY(-2px);
}

.about-page-rail b {
  color: rgba(154, 90, 69, 0.72);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.about-page-rail i {
  color: rgba(113, 79, 67, 0.54);
  font-size: 0.84rem;
  font-style: normal;
}

.travel-notes-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1fr);
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.about-outdoors {
  max-width: 960px;
  margin: 24px auto 0;
  padding: clamp(20px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 95% 8%, rgba(162, 220, 225, 0.26), transparent 27%),
    radial-gradient(circle at 5% 100%, rgba(98, 122, 174, 0.2), transparent 33%),
    linear-gradient(135deg, rgba(252, 248, 244, 0.94), rgba(233, 241, 241, 0.8));
}

.about-outdoors-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 20px;
  align-items: end;
  margin-bottom: 20px;
}

.about-outdoors-heading p,
.about-outdoors-heading h2 {
  margin: 0;
}

.about-outdoors-heading p {
  color: rgba(51, 66, 76, 0.64);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.about-outdoors-heading h2 {
  grid-column: 1;
  max-width: 610px;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.78rem);
  line-height: 1.1;
}

.about-outdoors-heading span {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: rgba(51, 66, 76, 0.55);
  font-size: 0.72rem;
  font-weight: 750;
}

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

.outdoors-card {
  position: relative;
  display: block;
  min-height: 222px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.outdoors-card:hover,
.outdoors-card:focus-visible,
.outdoors-card.is-active {
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 28px rgba(42, 57, 62, 0.17);
  transform: translateY(-4px);
}

.outdoors-card:focus-visible {
  outline: 3px solid rgba(75, 138, 152, 0.45);
  outline-offset: 3px;
}

.outdoors-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 25, 35, 0.08) 22%, rgba(13, 23, 29, 0.78) 100%);
}

.outdoors-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  margin: 0;
  place-items: center;
  background: #1f5e68;
}

.outdoors-card--mountain .outdoors-photo {
  background: #28313b;
}

.outdoors-card--mountain .outdoors-photo img {
  object-fit: contain;
}

.outdoors-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.outdoors-card:hover .outdoors-photo img,
.outdoors-card.is-active .outdoors-photo img {
  transform: scale(1.035);
}

.outdoors-photo figcaption {
  position: absolute;
  right: 15px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outdoors-card-kicker,
.outdoors-card strong {
  position: absolute;
  z-index: 1;
  left: 18px;
}

.outdoors-card-kicker {
  top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.outdoors-card strong {
  bottom: 17px;
  max-width: 72%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
  font-weight: 700;
  line-height: 1;
}

.outdoors-peek {
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 16px;
  width: 64px;
  height: 64px;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 7px 16px rgba(13, 25, 35, 0.2);
  transition: transform 220ms ease;
}

.outdoors-card:hover .outdoors-peek,
.outdoors-card.is-active .outdoors-peek {
  transform: rotate(5deg) scale(1.05);
}

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

.outdoors-current {
  min-height: 2.5em;
  max-width: 690px;
  margin: 13px 0 0;
  color: rgba(51, 66, 76, 0.73);
  font-size: 0.86rem;
  line-height: 1.7;
  transition: opacity 180ms ease;
}

.about-lego {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1fr);
  max-width: 960px;
  min-height: 218px;
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 94% 15%, rgba(250, 193, 213, 0.43), transparent 25%),
    linear-gradient(135deg, rgba(255, 251, 247, 0.96), rgba(247, 230, 235, 0.8));
}

.about-lego-photo {
  position: relative;
  display: grid;
  min-height: 218px;
  margin: 0;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 19%, rgba(255, 240, 195, 0.68), transparent 30%),
    linear-gradient(145deg, #e7d9df, #f8f1ec);
}

.about-lego-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 400ms ease;
}

.about-lego:hover .about-lego-photo img {
  transform: scale(1.035);
}

.about-lego-photo figcaption {
  position: absolute;
  top: 15px;
  left: 16px;
  padding: 7px 9px;
  border-radius: 999px;
  color: rgba(89, 58, 73, 0.76);
  background: rgba(255, 250, 250, 0.66);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.about-lego-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 2.5vw, 26px);
}

.about-lego-copy .eyebrow {
  margin-bottom: 12px;
}

.about-lego-copy h2 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.about-lego-copy > p:not(.eyebrow) {
  max-width: 475px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.about-lego-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.about-lego-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(116, 75, 94, 0.14);
  border-radius: 999px;
  color: rgba(89, 58, 73, 0.72);
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.69rem;
  font-weight: 750;
}

.travel-notes-photo {
  position: relative;
  display: grid;
  min-height: 306px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 229, 190, 0.62), transparent 34%),
    linear-gradient(150deg, rgba(235, 207, 175, 0.92), rgba(177, 136, 102, 0.82));
}

.travel-notes-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.travel-notes-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 63%, rgba(49, 31, 22, 0.38));
  pointer-events: none;
}

.travel-notes-photo figcaption {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 18px;
  color: #fffaf5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel-notes-map-panel {
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 88% 7%, rgba(244, 196, 159, 0.4), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 245, 0.94), rgba(244, 225, 212, 0.78));
}

.travel-notes-map-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
}

.travel-notes-map-heading p {
  margin: 0;
  color: rgba(81, 56, 48, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.travel-notes-map-heading span {
  color: rgba(81, 56, 48, 0.5);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: right;
}

.travel-pin-map {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(81, 56, 48, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.35);
}

.travel-continent-shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.travel-continent-shapes path:first-child {
  fill: rgba(196, 155, 132, 0.13);
  stroke: rgba(122, 83, 67, 0.16);
  stroke-width: 2;
}

.travel-continent-shapes path:last-child {
  fill: none;
  stroke: rgba(81, 56, 48, 0.07);
  stroke-width: 1;
}

.travel-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.travel-pin span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 4px;
  border: 2px solid rgba(255, 250, 246, 0.92);
  border-radius: 50%;
  background: #ca4d3c;
  box-shadow: 0 2px 8px rgba(119, 44, 31, 0.32);
  transition: transform 180ms ease, background-color 180ms ease;
}

.travel-pin::after {
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(62, 39, 32, 0.86);
  color: #fffaf5;
  content: attr(data-label);
  font-size: 0.65rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

.travel-pin:hover span,
.travel-pin:focus-visible span,
.travel-pin.is-active span {
  background: #a93328;
  transform: scale(1.42);
}

.travel-pin:hover::after,
.travel-pin:focus-visible::after,
.travel-pin.is-active::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.travel-pin--egypt { top: 48%; left: 21%; }
.travel-pin--thailand { top: 65%; left: 50%; }
.travel-pin--singapore { top: 73%; left: 52%; }
.travel-pin--malaysia { top: 70%; left: 51%; }
.travel-pin--indonesia { top: 80%; left: 58%; }
.travel-pin--korea { top: 28%; left: 72%; }
.travel-pin--beijing { top: 42%; left: 71%; }
.travel-pin--harbin { top: 31%; left: 77%; }
.travel-pin--shanghai { top: 53%; left: 73%; }
.travel-pin--guizhou { top: 61%; left: 65%; }
.travel-pin--hunan { top: 59%; left: 69%; }
.travel-pin--zhejiang { top: 57%; left: 75%; }
.travel-pin--chongqing { top: 58%; left: 62%; }
.travel-pin--tianjin { top: 45%; left: 75%; }

.travel-notes-current {
  min-height: 3.2em;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  transition: opacity 150ms ease;
}

@media (max-width: 680px) {
  .site-header {
    position: relative;
    top: 0;
    width: min(100% - 18px, 1080px);
    margin-top: 9px;
  }

  .site-nav {
    font-size: 0.8rem;
  }

  .site-nav a {
    padding: 9px 10px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero-stage {
    min-height: 650px;
  }

  .portrait-device {
    right: 0;
    left: auto;
    width: 68%;
    height: 500px;
    margin: 0 auto;
  }

  .portrait-caption {
    top: 520px;
    right: 0;
    width: 68%;
  }

  .floating-card {
    width: min(180px, 48vw);
    min-height: 108px;
    padding: 14px;
  }

  .card-one {
    top: 0;
    left: 0;
  }

  .card-two {
    top: 78%;
    left: 0;
  }

  .card-three {
    top: 39%;
    left: 0;
  }

  .metric-grid,
  .skill-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .campus-detail {
    grid-template-columns: 1fr;
  }

  .campus-photo-scene {
    min-height: 420px;
  }

  .campus-photo-scene img {
    min-height: 390px;
  }

  .coursework-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

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

  .classroom-streams,
  .classroom-photo--presentation,
  .classroom-photo--um {
    grid-column: auto;
    grid-row: auto;
  }

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

  .classroom-photos {
    max-width: 470px;
  }

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

  .travel-atlas {
    grid-template-columns: 1fr;
  }

  .travel-photo {
    min-height: 420px;
  }

  .travel-route-panel {
    padding: 22px 16px 25px;
  }

  .travel-map {
    min-height: 390px;
  }

  .travel-stop {
    width: min(150px, 43%);
  }

  .travel-stop--egypt { left: 3%; }
  .travel-stop--sea { left: 29%; }
  .travel-stop--korea { left: 53%; }
  .travel-stop--china { right: 1%; }

  .footer-links {
    justify-content: flex-start;
  }

  .travel-page {
    width: min(100% - 28px, 1080px);
    padding-top: 30px;
  }

  .travel-page-intro {
    display: block;
    margin-bottom: 23px;
  }

  .travel-page-intro .learn-more {
    margin-bottom: 24px;
  }

  .travel-page-intro .eyebrow {
    margin: 0 0 8px;
  }

  .travel-page-intro h1 {
    margin: 0 0 11px;
    font-size: clamp(1.7rem, 8.6vw, 2.35rem);
  }

  .about-page-rail {
    margin-top: 16px;
  }

  .travel-notes-card {
    grid-template-columns: 1fr;
  }

  .about-outdoors {
    padding: 20px 14px 22px;
  }

  .about-outdoors-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-outdoors-heading h2,
  .about-outdoors-heading span {
    grid-column: auto;
    grid-row: auto;
  }

  .about-outdoors-heading span {
    margin-top: 2px;
  }

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

  .outdoors-card {
    min-height: 218px;
  }

  .about-lego {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-lego-photo {
    min-height: 208px;
  }

  .about-lego-copy {
    padding: 20px 18px 22px;
  }

  .travel-notes-photo {
    min-height: 255px;
  }

  .travel-notes-map-panel {
    padding: 20px 14px 22px;
  }

  .travel-notes-map-heading {
    align-items: flex-start;
  }

  .travel-notes-map-heading span {
    max-width: 115px;
  }

  .travel-pin-map {
    min-height: 238px;
  }

  .farm-showcase {
    grid-template-columns: 1fr;
  }

  .farm-instagram-card {
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: none;
    min-height: 180px;
  }

  .farm-instagram-preview {
    height: 180px;
  }

  .farm-photo-reel {
    min-height: 290px;
  }

  .farm-detail {
    grid-template-columns: 1fr;
  }

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

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

  .classroom-streams {
    grid-template-columns: 1fr;
  }

  .volunteer-gallery {
    grid-template-columns: 1fr;
    justify-self: start;
  }

  .volunteer-photo--main {
    grid-column: auto;
  }

  .ai-toolboard-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .farm-teaser {
    width: min(100%, 220px);
    justify-self: start;
  }

  .farm-project-cover {
    grid-template-columns: 1fr;
  }

  .campaign-product-showcase {
    grid-template-columns: 1fr;
  }

  .campaign-event-strip {
    grid-template-columns: 1fr;
  }

  .campaign-event-gallery {
    grid-template-columns: minmax(64px, .68fr) minmax(130px, 1.5fr) minmax(64px, .68fr);
  }

  .automation-cover-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 22px 0 16px;
  }

  .automation-cover-flow::before {
    top: 10%;
    bottom: 10%;
    left: 20px;
    width: 1px;
    height: auto;
  }

  .automation-node {
    grid-template-columns: 44px 1fr;
    align-items: center;
    min-height: 54px;
  }

  .automation-node p {
    margin: 0;
  }

  .ai-workbench {
    grid-template-columns: 1fr;
    margin: 22px 0 16px;
  }

  .ai-workbench-input {
    min-height: 86px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .ai-workbench-input p,
  .ai-workbench-input strong {
    grid-column: 1;
  }

  .ai-workbench-input i {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .ai-workbench-input::before {
    display: none;
  }

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

  .reporting-stage-tabs,
  .reporting-stage-panels {
    grid-column: auto;
  }

  .target-allocation-board {
    grid-template-columns: 1fr;
  }

  .daily-tracker-board {
    grid-template-columns: 1fr;
  }

  .farm-project-profile {
    min-height: 360px;
  }

  .farm-project-photos {
    min-height: 330px;
  }

  .highlight-detail {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .case-outcome-grid {
    grid-template-columns: 1fr;
  }

  .workflow-section-heading { display: block; }
  .workflow-status { display: inline-block; margin-top: 14px; }
  .workflow-track { grid-template-columns: 1fr; gap: 0; margin: 22px 0; }
  .workflow-track::before { top: 28px; bottom: 28px; left: 25px; width: 1px; height: auto; }
  .workflow-node { grid-template-columns: 50px 1fr; justify-items: start; min-height: 74px; padding: 0 0 0 0; text-align: left; }
  .workflow-node span { grid-row: span 2; }
  .workflow-node strong { align-self: end; }
  .workflow-node small { align-self: start; }
  .artefact-heading { display: block; }
  .artefact-heading > span { display: inline-block; margin-top: 14px; }
  .mock-table-shell { overflow-x: auto; }
  .mock-table { min-width: 700px; }
  .quota-demo { grid-template-columns: repeat(2, 1fr); }
  .quota-primary { grid-column: 1 / -1; }
  .mock-approval { min-width: 520px; }
  .creator-showcase { grid-template-columns: 1fr; }
  .creator-phone { width: min(70%, 250px); }
  .creator-gallery { grid-template-columns: 1fr; }
  .creator-gallery-card:nth-child(1) { grid-column: auto; width: 100%; aspect-ratio: 2.52 / 1; }
  .creator-gallery-card:nth-child(2) { width: min(76%, 238px); height: auto; aspect-ratio: .46 / 1; }
  .creator-gallery-card:nth-child(3) { height: auto; aspect-ratio: .98 / 1; }

  .snapshot-carousel .metric-grid {
    display: block;
  }

  .metric-card,
  .skill-card {
    min-height: 190px;
  }

  .snapshot-carousel {
    min-height: 390px;
  }

  .snapshot-viewport {
    height: 326px;
  }

  .snapshot-carousel .metric-card {
    top: 18px;
    width: min(330px, 78vw);
    min-height: 286px;
  }

  .snapshot-carousel .metric-card[data-card-state="prev"] {
    opacity: 0.48;
    transform: translateX(calc(-50% - 210px)) translateY(28px) scale(0.78);
  }

  .snapshot-carousel .metric-card[data-card-state="next"] {
    opacity: 0.48;
    transform: translateX(calc(-50% + 210px)) translateY(28px) scale(0.78);
  }

  .carousel-button {
    top: 142px;
    width: 42px;
    height: 42px;
  }

  .timeline {
    padding: 4px 18px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .experience-story-dialog {
    width: min(100vw - 24px, 820px);
    max-height: calc(100dvh - 24px);
    border-radius: 24px;
  }

  .experience-story-shell {
    padding: 30px 22px 24px;
  }

  .experience-story-gallery {
    padding: 14px;
  }

  .experience-story-gallery-heading {
    align-items: flex-start;
  }

  .experience-story-stage.is-portrait {
    width: min(205px, 100%);
  }

  .experience-story-route {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .experience-story-route article {
    min-height: auto;
  }

  .button {
    min-width: 0;
  }

  .contact-actions .button {
    flex: 1 1 140px;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Case-study pages need their own compact reading rhythm on phones. */
@media (max-width: 680px) {
  .case-study {
    width: min(100% - 28px, 620px);
    padding: 28px 0 48px;
  }

  .case-study-header {
    margin-bottom: 24px;
  }

  .case-study-header h1 {
    margin-bottom: 12px;
    font-size: clamp(1.78rem, 8.2vw, 2.35rem);
    line-height: 1.04;
  }

  .case-study-header > p:last-child {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .case-meta {
    gap: 6px;
    margin-top: 14px;
  }

  .case-meta span {
    padding: 6px 8px;
    font-size: 0.65rem;
  }

  .case-cover,
  .case-placeholder {
    min-height: 210px;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 22px;
  }

  .case-cover.case-cover-image img {
    height: min(390px, 54vh);
  }

  .case-content {
    gap: 12px;
  }

  .case-section {
    padding: 18px;
    border-radius: 22px;
  }

  .case-section h2 {
    margin-bottom: 8px;
    font-size: 1.03rem;
  }

  .case-section p,
  .case-section li {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .process-grid,
  .case-outcome-grid {
    gap: 10px;
    margin-top: 14px;
  }

  .process-grid article,
  .case-outcome-grid p {
    padding: 14px;
    border-radius: 15px;
  }

  .workflow-automation-cover,
  .campaign-event-strip,
  .reporting-dashboard,
  .target-allocation-board,
  .daily-tracker-board,
  .creator-showcase {
    gap: 16px;
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 24px;
  }

  .automation-cover-heading {
    gap: 12px;
  }

  .automation-cover-heading h2,
  .campaign-event-copy h2,
  .reporting-dashboard-heading h2,
  .target-allocation-copy h2,
  .daily-tracker-copy h2,
  .creator-showcase-copy h2 {
    font-size: clamp(1.28rem, 6.8vw, 1.62rem);
    line-height: 1.08;
  }

  .automation-cover-heading > div > p:last-child,
  .campaign-event-copy p:last-child,
  .reporting-dashboard-heading > p:last-child,
  .target-allocation-copy > p:not(.eyebrow),
  .daily-tracker-copy > p:not(.eyebrow),
  .creator-showcase-copy > p:not(.case-tag):not(.creator-detail) {
    font-size: 0.82rem;
  }

  .ai-workbench {
    gap: 9px;
    margin: 18px 0 14px;
  }

  .ai-workbench-input,
  .ai-workbench-core {
    min-height: 104px;
    padding: 14px;
  }

  .ai-workbench-outputs article {
    min-height: 49px;
    padding: 9px 10px;
  }

  .reporting-stage-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .reporting-stage-tabs button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 11px;
  }

  .reporting-stage-panels,
  .reporting-stage-panel {
    min-height: 0;
  }

  .reporting-stage-panel {
    padding: 16px;
  }

  .reporting-stage-panel h3 {
    font-size: 1.08rem;
  }

  .target-allocation-visual,
  .daily-tracker-window {
    padding: 11px;
  }

  .allocation-row {
    grid-template-columns: minmax(66px, 0.75fr) minmax(92px, 1.1fr) minmax(74px, 0.72fr);
    gap: 7px;
    min-height: 39px;
    padding: 7px 4px;
  }

  .allocation-row strong,
  .allocation-row em {
    font-size: 0.61rem;
  }

  .allocation-row--header {
    font-size: 0.5rem;
  }

  .daily-tracker-head,
  .daily-tracker-row {
    grid-template-columns: minmax(78px, 1fr) minmax(74px, 0.9fr) minmax(66px, 0.75fr);
    gap: 5px;
    min-height: 40px;
    padding: 7px;
  }

  .daily-tracker-row strong,
  .daily-status,
  .daily-action {
    font-size: 0.58rem;
  }

  .daily-status {
    padding: 3px 5px;
  }

  .creator-phone {
    width: min(58%, 190px);
  }

  .creator-metrics {
    gap: 6px;
    margin: 16px 0;
  }

  .creator-metrics div {
    padding: 10px 7px;
  }

  .creator-metrics strong {
    font-size: 0.95rem;
  }

  .farm-project-profile {
    min-height: 240px;
  }

  .farm-project-photos {
    min-height: 230px;
  }
}

/* Equivalent feedback for touch devices, where hover is unavailable. */
.tap-ready {
  cursor: pointer;
  touch-action: manipulation;
}

.workflow-automation-cover.is-touched .ai-workbench-input {
  border-color: rgba(219, 243, 255, 0.48);
  transform: translateX(3px);
}

.workflow-automation-cover.is-touched .ai-workbench-core {
  box-shadow: 0 0 0 12px rgba(176, 232, 205, 0.1), inset 0 -22px 38px rgba(4, 22, 56, 0.2);
  transform: translateY(-5px) rotate(-1deg);
}

.workflow-automation-cover.is-touched .ai-workbench-outputs article {
  border-color: rgba(219, 243, 255, 0.42);
  transform: translateX(-3px);
}

.target-allocation-board.is-touched .allocation-share--high { width: 87%; }
.target-allocation-board.is-touched .allocation-share--mid { width: 66%; }
.target-allocation-board.is-touched .allocation-share--low { width: 48%; }
.target-allocation-board.is-touched .allocation-share--small { width: 34%; }

.campaign-product-showcase figure.is-touched,
.campaign-event-gallery figure.is-touched {
  z-index: 1;
  box-shadow: 0 18px 32px rgba(37, 23, 37, 0.2);
  transform: translateY(-6px) rotate(-1.2deg);
}

.creator-showcase.is-touched .creator-phone {
  box-shadow: 0 20px 36px rgba(30, 18, 25, 0.22);
  transform: translateY(-5px) rotate(-1deg);
}
