:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --surface: #fbfbfa;
  --surface-soft: rgba(255, 255, 255, 0.82);
  --line: #ddddda;
  --line-soft: rgba(0, 0, 0, 0.08);
  --text: #1f1f23;
  --muted: #6d6d75;
  --dot: rgba(34, 34, 41, 0.14);
  --button-shadow: 0 5px 8px rgba(0, 0, 0, 0.08), inset 0 2px 2px rgba(255, 255, 255, 0.95);
  --accent: #d7f24c;
  --accent-text: #14150d;
}

body[data-theme="dark"] {
  color-scheme: dark;
  --bg: #111217;
  --surface: #161820;
  --surface-soft: rgba(26, 29, 38, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f2f2f4;
  --muted: #b5b7c1;
  --dot: rgba(255, 255, 255, 0.12);
  --button-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a,
button {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 80px;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(247, 247, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

body[data-theme="dark"] .topbar {
  background: rgba(17, 18, 23, 0.94);
}

.brand,
.topbar__nav,
.topbar__actions,
.profile-actions,
.company-row,
.about-layout,
.contact-layout {
  display: flex;
}

.brand,
.topbar__nav,
.topbar__actions,
.profile-actions {
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #11111a;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand__mark:hover,
.brand__mark:focus-visible {
  opacity: 0.85;
}

.brand__mark:active {
  transform: scale(0.94);
}

.brand__mark--photo {
  position: relative;
  border-radius: 50%;
  overflow: visible;
  background: transparent;
}

.brand__mark--photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand__status-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3ecf6a;
  border: 2px solid var(--bg);
}

.home-closing__avatar-wrap {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  margin-top: 6px;
}

.home-closing__avatar-wrap .brand__status-dot {
  width: 13px;
  height: 13px;
}

.brand__text {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.brand__text:hover,
.brand__text:focus-visible {
  opacity: 0.75;
}

.topbar__menu {
display: flex;
    align-items: center;
    justify-content: right;
    flex: 1;
    gap: 24px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topbar__nav {
  gap: 36px;
  color: var(--muted);
}

.topbar__nav a,
.topbar__nav button {
  color: var(--muted);
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible,
.topbar__nav button:hover,
.topbar__nav button:focus-visible {
  color: var(--text);
}

.topbar__actions {
  gap: 14px;
}

.topbar--minimal {
  padding-left: max(40px, calc((100vw - 1180px) / 2 + 40px));
  padding-right: max(40px, calc((100vw - 1180px) / 2 + 40px));
}

.topbar--minimal .brand {
  gap: 14px;
  font-weight: 400;
}

.topbar--minimal .brand__mark--photo {
  width: 56px;
  height: 56px;
}

.topbar--minimal .brand__status-dot {
  width: 13px;
  height: 13px;
  top: -1px;
  right: -1px;
}

.topbar--minimal .brand__text {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
}

.topbar--minimal .topbar__nav {
  gap: 42px;
}

.topbar--minimal .topbar__nav a {
  font-weight: 400;
}

.theme-toggle-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  transition: transform 160ms ease, background 160ms ease;
}

.theme-toggle-icon:hover,
.theme-toggle-icon:focus-visible {
  transform: translateY(-2px);
  background: var(--bg);
}

.theme-toggle-icon svg {
  width: 18px;
  height: 18px;
}

.theme-toggle-icon__sun {
  display: none;
}

body[data-theme="dark"] .theme-toggle-icon__moon {
  display: none;
}

body[data-theme="dark"] .theme-toggle-icon__sun {
  display: block;
}

.submit-button,
.theme-button {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.submit-button {
  background: #121122;
  color: #fff;
  border-color: #121122;
}

.theme-button {
  background: var(--surface);
}

.layout {
  display: grid;
  grid-template-columns: 312px minmax(0, 1fr);
  min-height: calc(100vh - 80px);
}

.profile-rail {
  border-right: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

@media (min-width: 1101px) {
  .layout {
    transition: grid-template-columns 320ms ease;
  }

  .layout.sidebar-collapsed {
    grid-template-columns: 0px minmax(0, 1fr);
  }

  .layout.sidebar-collapsed .profile-rail {
    border-right: 0;
  }

  .profile-rail__inner {
    transition: opacity 200ms ease, transform 260ms ease;
  }

  .layout.sidebar-collapsed .profile-rail__inner {
    opacity: 0;
    transform: translateX(-24px);
    pointer-events: none;
  }
}

.profile-rail__inner {
  position: sticky;
  top: 80px;
  min-height: calc(100vh - 80px);
  padding: 24px 20px 32px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.profile-photo {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.profile-photo__placeholder {
  display: block;
  object-fit: cover;
  width: 152px;
  height: 152px;
  border-radius: 50%;
}

.about-image__placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.8), transparent 30%),
    linear-gradient(145deg, #b7b7c0, #6f7480);
  color: #fff;
  letter-spacing: -0.06em;
}

.profile-block {
  text-align: center;
}

.profile-block h1 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.profile-handle,
.profile-block--muted,
.company-pill,
.contact-stack a {
  color: var(--muted);
}

.profile-handle,
.profile-role,
.profile-block--muted p {
  margin: 0;
  line-height: 1.55;
}

.profile-role {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.profile-rail__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.profile-rail__chevron {
  transition: transform 200ms ease;
}

.profile-rail__toggle[aria-expanded="false"] .profile-rail__chevron {
  transform: rotate(180deg);
}

.profile-rail__details {
  display: grid;
  gap: 18px;
  overflow: hidden;
  max-height: 900px;
  opacity: 1;
  transition: max-height 280ms ease, opacity 220ms ease;
}

.profile-rail__details.is-collapsed {
  max-height: 0;
  opacity: 0;
  gap: 0;
}

.profile-block--muted {
  display: grid;
  gap: 4px;
}

.company-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.company-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 0.85rem;
}

.profile-actions {
  gap: 10px;
}

.message-button,
.bookmark-button {
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.message-button {
  flex: 1;
  background: #141414;
  color: #fff;
  font-weight: 600;
}

.bookmark-button {
  width: 52px;
  background: var(--surface-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.profile-tabs {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.profile-tab {
  padding: 10px 12px;
  border-radius: 12px;
  text-align: left;
  color: var(--muted);
}

.profile-tab--active {
  color: var(--text);
  font-weight: 700;
}

.stage {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.stage__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--dot) 2px, transparent 2.4px),
    linear-gradient(to right, transparent 0, transparent calc(100% - 1px), rgba(0, 0, 0, 0.02) calc(100% - 1px)),
    linear-gradient(to bottom, transparent 0, transparent calc(100% - 1px), rgba(0, 0, 0, 0.02) calc(100% - 1px));
  background-size: 72px 72px, 72px 72px, 72px 72px;
  opacity: 1;
  pointer-events: none;
}

.section-menu {
  position: absolute;
  top: 64px;
  right: 58px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.section-link {
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text);
}

.section-link.is-active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.panel {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 80px);
  padding: 84px 96px 72px;
  display: none;
}

.panel--active {
  display: block;
}

.alphabet-eyebrow {
  width: min(1040px, calc(100% - 180px));
  margin: 0 auto 14px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.76rem;
}

.statement-wrap {
  position: relative;
  width: min(1040px, calc(100% - 180px));
  margin: 18px auto 44px;
}

.statement-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 5px;
  background: rgba(72, 72, 78, 0.42);
}

.statement-pin {
  position: absolute;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(120, 120, 124, 0.9);
}

.statement-pin--left {
  left: -10px;
}

.statement-pin--right {
  right: -10px;
}

.statement-box {
  position: relative;
  margin: 0 34px;
  padding: 0 18px 0 48px;
  background: rgba(245, 245, 245, 0.86);
}

body[data-theme="dark"] .statement-box {
  background: rgba(24, 26, 32, 0.92);
}

.statement-letter {
  position: absolute;
  left: 0;
  top: 12px;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

.statement-text {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.identity-type {
  width: min(780px, calc(100% - 280px));
  margin: 8px auto 56px;
  padding: 32px 36px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  text-align: center;
}

body[data-theme="dark"] .identity-type {
  background: rgba(24, 26, 32, 0.92);
}

.identity-type__name {
  margin: 0 0 14px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.identity-type__role {
  margin: 0;
  min-height: 1.8em;
  font-family: "Special Elite", monospace;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  color: var(--text);
}

.identity-type__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  background: currentColor;
  vertical-align: -0.15em;
  animation: identityBlink 1s step-end infinite;
}

@keyframes identityBlink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

.alphabet-board {
  width: min(780px, calc(100% - 280px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 18px;
}

.alpha-key {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 244, 0.98));
  box-shadow: var(--button-shadow);
  color: rgba(31, 31, 35, 0.78);
  font-size: 1.9rem;
  font-weight: 400;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

body[data-theme="dark"] .alpha-key {
  border-color: rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(145deg, rgba(42, 46, 58, 0.96), rgba(24, 27, 35, 0.98));
  color: rgba(242, 242, 244, 0.88);
}

.alpha-key:hover,
.alpha-key:focus-visible,
.alpha-key.is-active {
  transform: translateY(-4px);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), inset 0 2px 3px rgba(255, 255, 255, 0.98);
  color: var(--text);
}

.alpha-key::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 11px;
  border-left: 3px solid rgba(255, 255, 255, 0.88);
  border-top: 3px solid rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.about-layout,
.contact-layout,
.work-layout {
  width: min(980px, calc(100% - 200px));
  margin: 80px auto 0;
  gap: 68px;
  align-items: center;
}

.about-image {
  flex: 0 0 460px;
}

.about-image__placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  font-size: 7.2rem;
  font-weight: 800;
}

.about-copy,
.contact-stack {
  max-width: 420px;
}

.about-copy h2,
.contact-layout h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.2;
}

.about-copy p,
.contact-stack a {
  margin: 0 0 26px;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-layout {
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.work-layout {
  display: grid;
  gap: 30px;
  align-items: start;
}

.work-intro {
  max-width: 720px;
}

.work-intro h2,
.work-card h3,
.profile-modal__card h2,
.profile-modal__section h3 {
  font-family: "Special Elite", monospace;
}

.work-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.work-intro p,
.work-card p,
.profile-modal__section p,
.profile-modal__meta {
  line-height: 1.65;
  color: var(--muted);
}

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

.work-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .work-card {
  background: rgba(24, 26, 32, 0.92);
}

.work-card--link {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.work-card--link:hover,
.work-card--link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.14);
}

.work-card__type {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.work-card__cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.work-card__status {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px dashed var(--line);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.profile-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(18, 18, 22, 0.72);
  z-index: 40;
}

.profile-modal.is-open {
  display: flex;
}

.ge-access-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(18, 18, 22, 0.72);
  z-index: 50;
}

.ge-access-modal.is-open {
  display: flex;
}

.ge-access-modal__card,
.ge-case-lock__card {
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
    linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.03) 49%, transparent 50%),
    linear-gradient(-45deg, transparent 48%, rgba(0,0,0,0.03) 49%, transparent 50%);
  background-size: auto, 84px 84px, 84px 84px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
  position: relative;
}

body[data-theme="dark"] .ge-access-modal__card,
body[data-theme="dark"] .ge-case-lock__card {
  background:
    linear-gradient(rgba(21,24,31,0.96), rgba(21,24,31,0.96)),
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.04) 49%, transparent 50%),
    linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.04) 49%, transparent 50%);
  background-size: auto, 84px 84px, 84px 84px;
}

.ge-access-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.ge-access-modal__eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.ge-access-modal__card h2,
.ge-case-lock__card h1 {
  margin: 0 0 16px;
  font-family: "Special Elite", monospace;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.ge-access-modal__copy {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.68;
}

.ge-access-modal__request {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.ge-access-modal__request:hover,
.ge-access-modal__request:focus-visible {
  border-color: rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.ge-access-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.ge-access-modal__tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 0.78rem;
  color: var(--muted);
}

.ge-access-modal__nda {
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.03);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

body[data-theme="dark"] .ge-access-modal__nda {
  background: rgba(255, 255, 255, 0.04);
}

.ge-access-modal__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.ge-access-modal__secondary {
  color: var(--muted);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ge-access-modal__secondary:hover,
.ge-access-modal__secondary:focus-visible {
  color: var(--text);
}

.ge-access-modal__ctas--centered {
  max-width: 820px;
  margin: 0 auto 44px;
  justify-content: center;
}

.ge-access-modal__ctas--centered .ge-access-modal__request {
  color: var(--text);
}

.ge-access-modal__form {
  display: grid;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.ge-access-modal__label {
  font-weight: 700;
  color: var(--text);
}

.ge-access-modal__input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

body[data-theme="dark"] .ge-access-modal__input {
  background: rgba(24, 26, 32, 0.96);
}

.ge-access-modal__input:focus {
  outline: 2px solid rgba(23, 22, 37, 0.18);
  outline-offset: 2px;
}

.ge-access-modal__error {
  margin: 0;
  color: #c0395d;
  font-size: 0.95rem;
}

.ge-access-modal__submit {
  justify-self: start;
}

.ge-case-page--locked {
  overflow: hidden;
}

.ge-case-lock {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(245, 245, 241, 0.88);
  backdrop-filter: blur(14px);
  z-index: 80;
}

.ge-case-lock.is-open {
  display: flex;
}

.ge-case-lock.is-hidden {
  display: none;
}

body[data-theme="dark"] .ge-case-lock {
  background: rgba(14, 16, 21, 0.88);
}

.profile-modal__card {
  width: min(960px, 100%);
  min-height: 620px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
    linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.035) 49%, transparent 50%),
    linear-gradient(-45deg, transparent 48%, rgba(0,0,0,0.035) 49%, transparent 50%),
    linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px, 80px 80px, 80px 80px;
  position: relative;
}

body[data-theme="dark"] .profile-modal__card {
  background:
    linear-gradient(rgba(21,24,31,0.96), rgba(21,24,31,0.96)),
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.04) 49%, transparent 50%),
    linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.04) 49%, transparent 50%),
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px, 80px 80px, 80px 80px;
}

.profile-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.profile-modal__avatar {
  width: 116px;
  height: 116px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.profile-modal__card h2 {
  margin: 0 0 10px;
  font-size: clamp(2.3rem, 3vw, 4rem);
}

.profile-modal__meta {
  margin: 0 0 48px;
  font-family: "Inter", sans-serif;
}

.profile-modal__section {
  max-width: 760px;
  margin-bottom: 34px;
}

.profile-modal__section h3 {
  margin: 0 0 14px;
  font-size: 1.65rem;
}

.company-row--left {
  justify-content: flex-start;
}

.case-study-body {
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.03), transparent 22%),
    var(--bg);
}

.case-study {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 80px;
}

.case-hero,
.case-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.case-hero h1,
.case-section h2,
.timeline-step h3,
.case-card h3 {
  font-family: "Special Elite", monospace;
}

.case-hero h1 {
  max-width: 14ch;
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.04;
}

.case-hero__summary,
.case-card p,
.timeline-step p,
.timeline-step span,
.case-meta span,
.impact-strip span,
.lifecycle-flow span,
.lifecycle-flow div {
  color: var(--muted);
  line-height: 1.7;
}

.case-hero__summary {
  max-width: 64ch;
  margin: 0;
  font-size: 1.08rem;
}

.case-meta,
.case-grid,
.impact-strip,
.lifecycle-flow,
.timeline {
  margin-top: 28px;
}

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

.case-meta article,
.case-card,
.timeline-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

body[data-theme="dark"] .case-meta article,
body[data-theme="dark"] .case-card,
body[data-theme="dark"] .timeline-step {
  background: rgba(24, 26, 32, 0.92);
}

.case-meta span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-meta strong,
.impact-strip strong {
  display: block;
  font-size: 1.1rem;
}

.case-section__intro {
  max-width: 70ch;
}

.case-section__intro h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.18;
}

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

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

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

.case-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
}

.case-card p,
.timeline-step p {
  margin: 0;
}

.case-card--wide {
  margin-top: 28px;
}

.lifecycle-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lifecycle-flow div {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

body[data-theme="dark"] .lifecycle-flow div {
  background: rgba(24, 26, 32, 0.92);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-step h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

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

.impact-strip article {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

body[data-theme="dark"] .impact-strip article {
  background: rgba(24, 26, 32, 0.92);
}

.impact-strip strong {
  margin-bottom: 8px;
}

.case-section--last {
  border-bottom: 0;
}

.contact-stack a {
  margin: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1300px) {
  .panel {
    padding: 84px 52px 60px;
  }

  .alphabet-board,
  .about-layout,
  .contact-layout,
  .statement-wrap,
  .alphabet-eyebrow,
  .identity-type,
  .case-study {
    width: calc(100% - 140px);
  }
}

@media (max-width: 1100px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .profile-rail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profile-rail__inner {
    position: static;
    min-height: auto;
  }

  .profile-rail__toggle {
    display: flex;
  }

  .section-menu {
    position: static;
    padding: 22px 28px 0;
  }

  .panel {
    min-height: auto;
    padding-top: 28px;
  }
}

@media (max-width: 860px) {
  .topbar {
    height: 72px;
    padding: 0 16px;
  }

  .hamburger {
    display: flex;
  }

  .topbar__menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 22px 20px 28px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
  }

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

  .topbar__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .topbar__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .submit-button,
  .theme-button {
    text-align: center;
  }

  .statement-wrap,
  .alphabet-board,
  .alphabet-eyebrow,
  .identity-type,
  .about-layout,
  .contact-layout {
    width: 100%;
  }

  .statement-box {
    margin: 0 18px;
    padding-left: 30px;
  }

  .identity-type {
    margin-left: 18px;
    margin-right: 18px;
    width: auto;
    padding: 24px 20px;
  }

  .statement-letter {
    top: 10px;
  }

  .alphabet-board {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .about-layout,
  .contact-layout,
  .work-layout {
    flex-direction: column;
    gap: 28px;
  }

  .case-meta,
  .case-grid--two,
  .case-grid--three,
  .impact-strip {
    grid-template-columns: 1fr;
  }

  .case-study {
    width: min(100% - 24px, 1120px);
    padding: 24px 0 48px;
  }

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

  .about-image {
    flex-basis: auto;
    width: 100%;
  }

  .panel {
    padding: 18px 20px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* GE Case Study Theme */
.ge-case-page {
  background: #fcfcfb;
  color: #2b2d33;
}

.ge-case-topbar {
  background: rgba(252, 252, 251, 0.96);
}

.ge-case-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: calc(100vh - 80px);
}

.ge-case-leftnav {
  padding-top: 72px;
}

.ge-case-leftnav__inner {
  position: sticky;
  top: 128px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.ge-case-leftnav__item {
  color: #6e7078;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.ge-case-leftnav__item.is-active {
  color: #171625;
  transform: translateX(4px);
}

.ge-case-leftnav__rule {
  width: 2px;
  height: 42px;
  background: rgba(0, 0, 0, 0.18);
}

.ge-case-main {
  position: relative;
  padding: 34px 0 80px;
}

.ge-case-rightnav {
  position: fixed;
  top: 154px;
  right: 58px;
  z-index: 10;
  display: grid;
  gap: 10px;
}

.ge-case-rightnav a {
  font-family: "Special Elite", monospace;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.ge-slide {
  min-height: 100vh;
  padding: 28px 0 72px;
}

.ge-slide--hero {
  min-height: auto;
  padding-top: 12px;
}

.ge-hero-copy {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.ge-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.ge-hero-split__text {
  text-align: left;
}

.ge-hero-split__text .home-hero__eyebrow {
  text-align: left;
  justify-content: flex-start;
}

.ge-hero-split__text h1 {
  margin: 0;
  text-align: left;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.ge-hero-split__text > p {
  max-width: none;
  margin: 20px 0 0;
  text-align: left;
  color: #74747a;
  font-size: 1rem;
  line-height: 1.6;
}

.ge-hero-split__text .home-hero__chips {
  justify-content: flex-start;
  max-width: none;
  margin: 24px 0 0;
}

.ge-hero-split__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ge-hero-split__media .browser-mockup {
  margin: 0;
}

@media (max-width: 1024px) {
  .ge-hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ge-hero-split__text {
    text-align: center;
  }

  .ge-hero-split__text .home-hero__eyebrow {
    justify-content: center;
  }

  .ge-hero-split__text h1 {
    text-align: center;
  }

  .ge-hero-split__text > p {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .ge-hero-split__text .home-hero__chips {
    justify-content: center;
  }
}

.ge-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.ge-hero-copy p {
  max-width: 860px;
  margin: 22px auto 0;
  color: #9c9ca1;
  font-size: 1rem;
  line-height: 1.55;
}

.ge-hero-copy p.ge-hero-copy__summary,
p.ge-hero-copy__summary {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 22px;
  border: 1px solid #ecece8;
  border-radius: 14px;
  background: #fff;
  color: #3a3a40;
  font-size: 0.94rem;
  font-weight: 600;
  text-align: center;
}

.pareexa-hero-stats {
  max-width: 1120px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pareexa-hero-stats article {
  padding: 22px 20px;
  border: 1px solid #ecece8;
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.pareexa-hero-stats span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f9097;
  font-weight: 700;
}

.pareexa-hero-stats strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.38rem;
  line-height: 1.22;
}

.pareexa-hero-stats p {
  margin: 0;
  color: #565760;
  line-height: 1.62;
  font-size: 0.96rem;
}

.ge-hero-spacer {
  height: 220px;
  margin: 72px 40px 0;
  border-bottom: 1px solid #e6e6e2;
}

.case-psi {
  max-width: 1080px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-psi article {
  padding: 22px 20px;
  border: 1px solid #ecece8;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.case-psi span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8f9097;
  font-weight: 700;
}

.case-psi p {
  margin: 0;
  color: #3a3a40;
  line-height: 1.62;
  font-size: 0.95rem;
}

.case-psi article:nth-child(1) { transition-delay: 0ms; }
.case-psi article:nth-child(2) { transition-delay: 80ms; }
.case-psi article:nth-child(3) { transition-delay: 160ms; }

.ge-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 46px;
  margin: 44px 40px 0;
}

.ge-meta-grid h2 {
  margin: 0 0 18px;
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #74747a;
}

.ge-meta-grid p {
  margin: 0;
  color: #4f5058;
  line-height: 1.55;
}

.ge-statement {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.ge-statement h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.ge-statement h2 span {
  color: #ff2f72;
}

.ge-statement--compact h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.8rem);
}

.ge-problem-layout {
  max-width: 1100px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
  align-items: center;
}

.ge-document-stack {
  position: relative;
  width: 420px;
  height: 520px;
  margin: 0 auto;
}

.ge-document {
  position: absolute;
  width: 320px;
  height: 430px;
  background: #fff;
  border: 1px solid #f0f0ec;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.ge-document--back {
  left: 10px;
  bottom: 8px;
  transform: rotate(-10deg);
}

.ge-document--mid {
  left: 86px;
  top: 28px;
  transform: rotate(8deg);
}

.ge-document--front {
  left: 56px;
  top: 50px;
  transform: rotate(-12deg);
}

.ge-document__lines {
  position: absolute;
  inset: 24px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.62) 0 2px,
    transparent 2px 18px
  );
  opacity: 0.24;
}

.ge-problem-copy {
  max-width: 420px;
}

.ge-problem-copy__lead {
  margin: 0 0 18px;
  font-size: 2.2rem;
  color: #202126;
}

.ge-problem-copy ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 18px;
  color: #303239;
}

.ge-stakeholder-row {
  max-width: 1120px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
}

.ge-stakeholder-row div {
  padding-left: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.18);
  line-height: 1.42;
}

.ge-split-text {
  max-width: 1120px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.ge-split-text > p:only-child,
.ge-split-text > ul:only-child {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.ge-split-text p {
  margin: 0;
  color: #4f5058;
  line-height: 1.75;
  font-size: 1.04rem;
}

.ge-split-text--large p {
  font-size: 1.1rem;
}

.ge-lifecycle-band {
  max-width: 1120px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.ge-lifecycle-band article,
.ge-evolution-grid article,
.ge-module-grid article,
.ge-impact-grid article,
.ge-reflection {
  border: 1px solid #ecece8;
  background: #fff;
}

.ge-lifecycle-band article {
  min-height: 210px;
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ge-lifecycle-band span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f9097;
  font-weight: 700;
}

.ge-lifecycle-band h3 {
  margin: 0 0 12px;
  font-family: "Special Elite", monospace;
  font-size: 1.3rem;
}

.ge-lifecycle-band strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #2f3037;
}

.ge-lifecycle-band p {
  margin: 0;
  color: #565760;
  line-height: 1.65;
}

.pareexa-module-intro,
.pareexa-module-metrics {
  max-width: 1120px;
  margin: 28px auto 0;
}

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

.pareexa-module-intro p {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid #ecece8;
  background: rgba(255, 255, 255, 0.92);
  color: #565760;
  line-height: 1.72;
}

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

.pareexa-module-metrics article {
  border: 1px solid #ecece8;
  background: rgba(255, 255, 255, 0.92);
  padding: 22px 24px;
}

.pareexa-module-metrics span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f9097;
  font-weight: 700;
}

.pareexa-module-metrics strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.42rem;
  line-height: 1.25;
}

.pareexa-module-metrics p {
  margin: 0;
  color: #565760;
  line-height: 1.68;
}

.ge-evolution-grid,
.ge-module-grid,
.ge-impact-grid {
  max-width: 1120px;
  margin: 54px auto 0;
  display: grid;
  gap: 18px;
}

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

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

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

.ge-impact-grid--quad {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ge-shot-placeholder {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  border: 1.5px dashed #d5d5d0;
  border-radius: 18px;
  background: #fafaf8;
  color: #9a9a9f;
}

body[data-theme="dark"] .ge-shot-placeholder {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.ge-shot-placeholder svg {
  width: 34px;
  height: 34px;
  opacity: 0.55;
}

.ge-shot-placeholder__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #6d6d75;
}

.ge-shot-placeholder__note {
  font-size: 0.8rem;
  max-width: 420px;
  line-height: 1.5;
}

.golfpac-approach-row .ge-shot-placeholder {
  margin: 0;
  height: 100%;
  justify-content: center;
}

.ge-evolution-grid article,
.ge-module-grid article,
.ge-impact-grid article {
  padding: 24px;
}

.ge-evolution-grid span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f9097;
  font-weight: 700;
}

.ge-evolution-grid h3,
.ge-module-grid h3 {
  margin: 0 0 14px;
  font-family: "Special Elite", monospace;
  font-size: 1.48rem;
}

.ge-evolution-grid p,
.ge-module-grid p,
.ge-impact-grid span,
.ge-reflection p,
.ge-dashboard-story__copy p {
  margin: 0;
  color: #565760;
  line-height: 1.74;
}

.ge-dashboard-story {
  max-width: 1120px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 82px;
  align-items: center;
}

.ge-dashboard-story__copy p + p {
  margin-top: 22px;
}

.pareexa-challenge-collage {
  position: relative;
  min-height: 520px;
}

.pareexa-challenge-collage__card {
  position: absolute;
  border: 1px solid #ecece8;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pareexa-challenge-collage__card--back {
  width: min(420px, 92%);
  left: 4%;
  top: 70px;
  transform: rotate(-8deg);
}

.pareexa-challenge-collage__card--mid {
  width: min(450px, 94%);
  left: 12%;
  top: 36px;
  transform: rotate(5deg);
}

.pareexa-challenge-collage__card--front {
  width: min(470px, 96%);
  left: 8%;
  top: 108px;
  transform: rotate(-2deg);
}

.pareexa-value-strip,
.pareexa-goals-grid,
.pareexa-analytics-story {
  max-width: 1120px;
  margin: 28px auto 0;
  display: grid;
  gap: 18px;
}

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

.pareexa-goals-grid,
.pareexa-analytics-story {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pareexa-value-strip article,
.pareexa-goals-grid article,
.pareexa-analytics-story article {
  border: 1px solid #ecece8;
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
}

.pareexa-value-strip span,
.pareexa-persona-grid span,
.pareexa-journey-block h3,
.pareexa-analytics-story span,
.pareexa-prototype-copy span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f9097;
  font-weight: 700;
}

.pareexa-value-strip strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.45;
}

.pareexa-persona-grid {
  max-width: 1120px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pareexa-persona-grid article,
.pareexa-journey-block,
.pareexa-ecosystem-section,
.pareexa-ia-card,
.pareexa-prototype-section {
  border: 1px solid #ecece8;
  background: rgba(255, 255, 255, 0.92);
}

.pareexa-persona-grid article {
  padding: 24px;
}

.pareexa-persona-grid h3,
.pareexa-prototype-copy h3,
.pareexa-goals-grid h3 {
  margin: 0 0 10px;
  font-family: "Special Elite", monospace;
  font-size: 1.45rem;
}

.pareexa-persona-grid__meta {
  margin: 0 0 18px;
  color: #6a6b73;
}

.pareexa-mini-list {
  margin: 0;
  padding-left: 18px;
  color: #565760;
  line-height: 1.7;
}

.pareexa-metrics-note {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: #8f9097;
  line-height: 1.55;
}

.pareexa-metrics-note--centered {
  max-width: 720px;
  margin: -12px auto 34px;
  text-align: center;
}

.pareexa-status-note {
  max-width: 820px;
  margin: -18px auto 44px;
  padding: 16px 22px;
  border: 1px solid #ecece8;
  border-radius: 14px;
  background: #fff;
  color: #4c4d54;
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}

.pareexa-journey-block {
  max-width: 1120px;
  margin: 32px auto 0;
  padding: 26px;
}

.pareexa-journey-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.pareexa-journey-flow span {
  position: relative;
  padding: 18px 14px;
  border: 1px solid #ecece8;
  text-align: center;
  font-weight: 600;
  background: #fff;
}

.pareexa-journey-flow span:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a9aa1;
  font-weight: 700;
}

.pareexa-ecosystem-section {
  max-width: 1120px;
  margin: 54px auto 0;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

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

.pareexa-ecosystem__center,
.pareexa-ecosystem__item {
  border: 1px solid #ecece8;
  background: #fff;
  min-height: 98px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
}

.pareexa-ecosystem__center {
  grid-column: 2;
  font-family: "Special Elite", monospace;
  font-size: 1.2rem;
  background: #171625;
  color: #fff;
}

.pareexa-ia-card {
  padding: 26px;
}

.pareexa-ia-card h3 {
  margin: 0 0 16px;
  font-family: "Special Elite", monospace;
  font-size: 1.38rem;
}

.pareexa-ia-card pre {
  margin: 0;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  line-height: 1.8;
  color: #30313a;
  white-space: pre-wrap;
}

.ge-ring-chart {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(#313238 0 58%, #7f7f84 58% 79%, #bcbcc1 79% 96%, #e6e6e8 96% 100%);
}

.ge-ring-chart::before {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: #fcfcfb;
}

.ge-ring-chart__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  z-index: 1;
}

.ge-impact-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.ge-reflection {
  max-width: 1120px;
  margin: 42px auto 0;
  padding: 28px;
}

.browser-mockup {
  width: 100%;
  max-width: 1120px;
  margin: 40px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ecece8;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.browser-mockup__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #f1f1ee;
  border-bottom: 1px solid #ecece8;
}

.browser-mockup__dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.browser-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7d7d2;
}

.browser-mockup__url {
  flex: 1;
  background: #fff;
  border: 1px solid #ecece8;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: #8a8a86;
}

.browser-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.mac-mockup {
  width: 100%;
  max-width: 1120px;
  margin: 40px auto 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d8d8d4;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  background: #fff;
}

.mac-mockup__bar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(180deg, #e9e9e7 0%, #dcdcd9 100%);
  border-bottom: 1px solid #cfcfcb;
}

.mac-mockup__dots {
  display: flex;
  gap: 8px;
}

.mac-mockup__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mac-mockup__dot--red {
  background: #ff5f57;
}

.mac-mockup__dot--yellow {
  background: #febc2e;
}

.mac-mockup__dot--green {
  background: #28c840;
}

.mac-mockup__embed {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
  background: #fff;
}

.golfpac-compare {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.golfpac-compare__panel {
  position: relative;
  border: 1px solid #ecece8;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.golfpac-compare__panel--text {
  padding: 44px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  min-height: 260px;
  background: #f8f8f6;
}

.golfpac-compare__panel--text p {
  margin: 0;
  color: #4c4d54;
  line-height: 1.65;
}

.golfpac-compare__note {
  font-size: 0.86rem;
  color: #8a8a86;
}

.golfpac-compare__panel--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.golfpac-compare__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(23, 22, 37, 0.86);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.golfpac-approach-row {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.golfpac-approach-row__media {
  margin: 0;
  border: 1px solid #ecece8;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.golfpac-approach-row__media img {
  display: block;
  width: 100%;
  height: auto;
}

.golfpac-approach-row__text h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.golfpac-approach-row__text p {
  margin: 0;
  color: #5b5c64;
  line-height: 1.72;
}

.pareexa-payment-showcase {
  max-width: 1120px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.pareexa-payment-showcase__copy p {
  margin: 0 0 18px;
  color: #565760;
  line-height: 1.74;
}

.pareexa-payment-showcase__image {
  width: 100%;
  border: 1px solid #ecece8;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.pareexa-guideline-gallery {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pareexa-guideline-card {
  margin: 0;
  border: 1px solid #ecece8;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.pareexa-guideline-card img {
  display: block;
  width: 100%;
  height: auto;
}

.pareexa-guideline-card figcaption {
  padding: 14px 16px 16px;
  color: #5b5c64;
  line-height: 1.6;
  font-size: 0.95rem;
}

.pareexa-board-pair,
.pareexa-focus-grid {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pareexa-board-card {
  max-width: 1120px;
  margin: 34px auto 0;
  border: 1px solid #ecece8;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.pareexa-board-card--wide {
  margin-top: 34px;
}

.pareexa-board-card img {
  display: block;
  width: 100%;
  height: auto;
}

.pareexa-board-card__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.pareexa-board-card__image--pyq {
  object-position: center 12%;
}

.pareexa-board-card__image--support {
  object-position: center;
}

.pareexa-board-card figcaption {
  padding: 16px 18px 18px;
  color: #5b5c64;
  line-height: 1.72;
  font-size: 0.96rem;
}

.pareexa-prototype-section {
  max-width: 1120px;
  margin: 34px auto 0;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.92fr 0.58fr;
  gap: 28px;
  align-items: center;
}

.pareexa-prototype-section--single {
  grid-template-columns: 1fr;
}

.pareexa-prototype-section--single .pareexa-prototype-copy p {
  max-width: 640px;
}

.pareexa-wireframe-board {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pareexa-wireframe-card {
  margin: 0;
  padding: 14px 14px 16px;
  border: 1px solid #ecece8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.pareexa-wireframe-screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  padding: 12px 10px;
  border-radius: 16px;
  background: #fafafa;
  border: 1px solid #ebebe8;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.pareexa-wireframe-card figcaption {
  margin-top: 12px;
  text-align: center;
}

.pareexa-wireframe-card figcaption strong {
  display: block;
  font-size: 0.86rem;
  color: #1f1f23;
}

.pareexa-wireframe-card figcaption span {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  color: #8f9097;
}

.wf-h {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  color: #26262b;
  line-height: 1.3;
}

.wf-sub {
  margin: 0;
  font-size: 0.48rem;
  color: #a8a9b0;
  line-height: 1.3;
}

.wf-stat {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1f1f23;
}

.wf-line {
  height: 5px;
  border-radius: 3px;
  background: #e3e3e0;
}

.wf-line--60 {
  width: 60%;
}

.wf-line--80 {
  width: 80%;
}

.wf-box {
  flex: 1;
  min-height: 0;
  border-radius: 8px;
  background: #d9d9d6;
}

.wf-row {
  display: flex;
  gap: 5px;
}

.wf-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wf-chip {
  flex: 1;
  padding: 4px 0;
  border-radius: 6px;
  border: 1px solid #e3e3e0;
  background: #fff;
  text-align: center;
  font-size: 0.46rem;
  color: #6d6d75;
}

.wf-chip--active {
  border-color: #1f1f23;
  background: #1f1f23;
  color: #fff;
  font-weight: 700;
}

.wf-input {
  padding: 4px 6px;
  border-radius: 5px;
  border: 1px solid #e3e3e0;
  background: #fff;
  font-size: 0.44rem;
  color: #b8b9c0;
}

.wf-input span {
  display: block;
  margin-bottom: 2px;
  font-size: 0.44rem;
  color: #6d6d75;
}

.wf-btn {
  padding: 5px 0;
  border-radius: 999px;
  background: #1f1f23;
  color: #fff;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 700;
}

.wf-btn--outline {
  background: #fff;
  border: 1px solid #d7d7d4;
  color: #6d6d75;
}

.wf-option {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 5px;
  border-radius: 5px;
  border: 1px solid #e3e3e0;
  font-size: 0.44rem;
  color: #6d6d75;
}

.wf-option--active {
  border-color: #1f1f23;
  background: #f3f3f2;
  color: #1f1f23;
  font-weight: 700;
}

.wf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #b8b9c0;
  flex-shrink: 0;
}

.wf-dot--filled {
  background: #1f1f23;
  border-color: #1f1f23;
}

.wf-check {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  border: 1px solid #c7c8ce;
  flex-shrink: 0;
}

.wf-bar-track {
  height: 4px;
  border-radius: 2px;
  background: #ebebe8;
  overflow: hidden;
}

.wf-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: #1f1f23;
}

.wf-card {
  padding: 5px 6px;
  border-radius: 6px;
  border: 1px solid #e3e3e0;
  background: #fff;
}

.wf-card--dark {
  background: #1f1f23;
  border-color: #1f1f23;
}

.wf-card--dark .wf-h {
  color: #fff;
}

.wf-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid #ebebe8;
}

.wf-nav span {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: #e3e3e0;
}

.wf-nav span:first-child {
  background: #1f1f23;
}

.wf-ring {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 4px auto;
  border-radius: 50%;
  background: conic-gradient(#1f1f23 270deg, #ebebe8 0deg);
  display: grid;
  place-items: center;
}

.wf-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fafafa;
}

.wf-ring span {
  position: relative;
  font-size: 0.6rem;
  font-weight: 800;
  color: #1f1f23;
}

.wf-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.wf-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #1f1f23;
}

.wf-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.wf-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7d7d4;
}

.wf-dots span.is-active {
  width: 14px;
  border-radius: 4px;
  background: #1f1f23;
}

.pareexa-wireframe-board--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wf-bubble {
  align-self: flex-start;
  max-width: 90%;
  padding: 6px 8px;
  border-radius: 9px;
  background: #eeeeec;
}

.wf-bubble p {
  margin: 0;
  font-size: 0.46rem;
  line-height: 1.35;
  color: #3a3a40;
}

.wf-bubble--user {
  align-self: flex-end;
  background: #1f1f23;
}

.wf-bubble--user p {
  color: #fff;
}

.wf-card strong {
  display: block;
  font-size: 0.5rem;
  color: #26262b;
}

.pareexa-prototype-copy p {
  margin: 0 0 18px;
  color: #565760;
  line-height: 1.72;
}

.pareexa-prototype-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #171625;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.pareexa-phone-mockup {
  position: relative;
  display: block;
  width: min(320px, 100%);
  margin: 0 auto;
  padding: 16px 16px 28px;
  border-radius: 38px;
  background: linear-gradient(180deg, #21202d 0%, #0f0f16 100%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
  text-decoration: none;
}

.pareexa-phone-mockup__top {
  display: block;
  width: 92px;
  height: 8px;
  margin: 4px auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.pareexa-phone-mockup__screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 520px;
  border-radius: 26px;
  background: #f4f4f5;
  border: 0;
}

.pareexa-phone-mockup__preview,
.pareexa-phone-mockup__embed {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  background: #fff;
}

.pareexa-phone-mockup__preview {
  object-fit: cover;
  object-position: center 8%;
}

.pareexa-prompt-strip__label {
  max-width: 1120px;
  margin: 30px auto 0;
  color: #6d6d75;
  line-height: 1.65;
}

.pareexa-prompt-strip {
  max-width: 1120px;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pareexa-prompt-strip article {
  border: 1px solid #ecece8;
  background: #fff;
  padding: 22px 18px;
  font-family: "Special Elite", monospace;
  font-size: 1.05rem;
}

@media (max-width: 1100px) {
  .ge-case-shell {
    padding: 0 28px;
  }

  .ge-case-main {
    padding: 20px 0 48px;
  }
}

@media (max-width: 860px) {
  .ge-slide {
    min-height: auto;
    padding: 20px 0 52px;
  }

  .ge-hero-spacer {
    height: 120px;
    margin: 42px 0 0;
  }

  .ge-meta-grid,
  .pareexa-hero-stats,
  .ge-problem-layout,
  .pareexa-value-strip,
  .pareexa-persona-grid,
  .pareexa-module-intro,
  .ge-stakeholder-row,
  .ge-split-text,
  .ge-lifecycle-band,
  .pareexa-journey-flow,
  .pareexa-ecosystem-section,
  .pareexa-goals-grid,
  .pareexa-module-metrics,
  .ge-evolution-grid,
  .ge-dashboard-story,
  .pareexa-analytics-story,
  .ge-module-grid,
  .ge-impact-grid,
  .ge-impact-grid--quad,
  .pareexa-board-pair,
  .pareexa-focus-grid,
  .pareexa-prototype-section,
  .pareexa-prompt-strip,
  .pareexa-guideline-gallery,
  .pareexa-payment-showcase,
  .golfpac-compare,
  .golfpac-approach-row,
  .golfpac-shot-board,
  .case-psi {
    grid-template-columns: 1fr;
  }

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

  .golfpac-approach-row__media {
    order: -1;
  }

  .ge-statement h2,
  .ge-hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .pareexa-challenge-collage {
    min-height: 340px;
    margin-bottom: 22px;
  }

  .pareexa-challenge-collage__card--back {
    width: 78%;
    left: 0;
    top: 60px;
  }

  .pareexa-challenge-collage__card--mid {
    width: 82%;
    left: 10%;
    top: 24px;
  }

  .pareexa-challenge-collage__card--front {
    width: 86%;
    left: 4%;
    top: 92px;
  }

  .pareexa-board-card__image {
    height: 250px;
  }

  .pareexa-journey-flow span:not(:last-child)::after {
    display: none;
  }

  .pareexa-phone-mockup__screen {
    height: 440px;
  }

  .pareexa-phone-mockup__preview,
  .pareexa-phone-mockup__embed {
    height: 440px;
  }

  .mac-mockup__embed {
    height: 480px;
  }

  .ge-access-modal__card,
  .ge-case-lock__card {
    padding: 26px;
  }

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

  .tastex-desktop-board {
    grid-template-columns: 1fr;
  }

  .tastex-system-grid {
    grid-template-columns: 1fr;
  }

  .tastex-rules {
    grid-template-columns: 1fr;
  }

  .tastex-portal-table {
    font-size: 0.82rem;
  }

  .tastex-portal-table th,
  .tastex-portal-table td {
    padding: 12px 14px;
  }

  .ge-document-stack {
    width: 240px;
    height: 300px;
  }

  .ge-document {
    width: 180px;
    height: 240px;
  }

  .ge-document--back {
    left: 6px;
    bottom: 4px;
  }

  .ge-document--mid {
    left: 48px;
    top: 16px;
  }

  .ge-document--front {
    left: 32px;
    top: 28px;
  }

  .ge-problem-copy {
    max-width: 100%;
  }
}

/* tasteX case study */
.tastex-table-wrap {
  max-width: 1120px;
  margin: 34px auto 0;
  overflow-x: auto;
}

.tastex-portal-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ecece8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.tastex-portal-table th,
.tastex-portal-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #ecece8;
  font-size: 0.92rem;
  line-height: 1.5;
}

.tastex-portal-table th {
  background: #fafaf8;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #74747a;
  font-weight: 600;
}

.tastex-portal-table tbody tr:last-child td {
  border-bottom: none;
}

.tastex-portal-table td:first-child {
  font-weight: 600;
  color: #1f1f23;
}

.tastex-flow-board {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tastex-flow-card {
  margin: 0;
  padding: 12px 12px 14px;
  border: 1px solid #ecece8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.tastex-flow-screen {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ecece8;
  background: #fafafa;
}

.tastex-flow-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.tastex-flow-card figcaption {
  margin-top: 12px;
  text-align: center;
}

.tastex-flow-card figcaption strong {
  display: block;
  font-size: 0.86rem;
  color: #1f1f23;
}

.tastex-flow-card figcaption span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: #86868c;
  line-height: 1.4;
}

.tastex-desktop-board {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.tastex-desktop-card {
  margin: 0;
  padding: 12px;
  border: 1px solid #ecece8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.tastex-desktop-screen {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ecece8;
}

.tastex-desktop-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.tastex-desktop-card figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.82rem;
  color: #74747a;
}

.tastex-system-grid {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tastex-system-grid article {
  padding: 20px 22px;
  border: 1px solid #ecece8;
  border-radius: 16px;
  background: #fff;
}

.tastex-system-grid h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #1f1f23;
}

.tastex-system-grid p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #5a5a62;
}

.tastex-swatch-row {
  max-width: 1120px;
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tastex-swatch {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.tastex-rules-heading {
  margin-top: 56px;
}

.tastex-rules {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.tastex-rules__col {
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid #ecece8;
}

.tastex-rules__col--do {
  background: #f4faf5;
}

.tastex-rules__col--dont {
  background: #fdf5f5;
}

.tastex-rules__col h3 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4f5058;
}

.tastex-rules__col ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #303239;
}

/* GolfPac high-fidelity screen recreations. Real text/pricing/structure as shown to me;
   photo areas are gradient placeholders since the source photography wasn't available as
   files, not attempts to pass as real photos. */
.golfpac-hifi-board {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.golfpac-hifi-board--single {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.golfpac-screen {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e5ea;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  font-size: 6px;
  line-height: 1.4;
}

.golfpac-screen__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6em 2.4em;
  background: #0f1c33;
  color: #cbd5e1;
  font-size: 1em;
}

.golfpac-screen__topbar-right {
  display: flex;
  align-items: center;
  gap: 1.6em;
}

.golfpac-screen__book {
  padding: 0.5em 1.1em;
  border-radius: 5px;
  background: #14b8d6;
  color: #06232b;
  font-weight: 700;
}

.golfpac-screen__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8em 2.4em;
  border-bottom: 1px solid #eef0f3;
  font-size: 1.1em;
}

.golfpac-screen__logo {
  font-weight: 800;
  font-size: 1.5em;
  color: #14b8d6;
  letter-spacing: 0.01em;
}

.golfpac-screen__logo span {
  display: block;
  font-size: 0.4em;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.15em;
}

.golfpac-screen__nav-links {
  display: flex;
  gap: 1.6em;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.02em;
}

.golfpac-screen__tabs {
  display: flex;
  border-bottom: 1px solid #eef0f3;
  font-size: 1.1em;
  font-weight: 700;
}

.golfpac-screen__tab {
  flex: 1;
  padding: 1em;
  text-align: center;
  color: #64748b;
}

.golfpac-screen__tab.is-active {
  background: #14b8d6;
  color: #fff;
}

.golfpac-screen__body {
  padding: 2em;
  background: #f6f8fa;
}

.golfpac-photo {
  border-radius: 8px;
  background: linear-gradient(135deg, #7fd6c2, #1c7a8c);
}

.golfpac-photo--sky {
  background: linear-gradient(135deg, #a7d8f0, #2f6fa8);
}

.golfpac-photo--course {
  background: linear-gradient(135deg, #9bd48a, #2f7a4f);
}

.golfpac-hero-photo {
  height: 9em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  gap: 0.4em;
  background: linear-gradient(135deg, #386b4a, #1c3d2c);
}

.golfpac-hero-photo h3 {
  margin: 0;
  font-size: 1.9em;
  font-weight: 800;
}

.golfpac-hero-photo p {
  margin: 0;
  font-size: 1.05em;
  opacity: 0.9;
}

.golfpac-trust-bar {
  display: flex;
  justify-content: space-around;
  padding: 1.4em 0;
  background: #fff;
  text-align: center;
}

.golfpac-trust-bar strong {
  display: block;
  color: #14b8d6;
  font-size: 1.3em;
}

.golfpac-trust-bar span {
  color: #64748b;
  font-size: 0.95em;
}

.golfpac-card {
  border-radius: 8px;
  border: 1px solid #e5e8ec;
  background: #fff;
  overflow: hidden;
}

.golfpac-card__photo {
  height: 4.4em;
  position: relative;
}

.golfpac-card__badge {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  padding: 0.25em 0.6em;
  border-radius: 999px;
  background: #14b8d6;
  color: #fff;
  font-size: 0.82em;
  font-weight: 700;
}

.golfpac-card__badge--sale {
  background: #dc2626;
}

.golfpac-card__body {
  padding: 0.8em;
}

.golfpac-card__body h4 {
  margin: 0 0 0.2em;
  font-size: 1.08em;
  color: #0f172a;
}

.golfpac-card__meta {
  margin: 0 0 0.4em;
  color: #64748b;
  font-size: 0.92em;
}

.golfpac-card__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.golfpac-card__price strong {
  font-size: 1.15em;
  color: #0f172a;
}

.golfpac-card__price span {
  color: #14b8d6;
  font-weight: 700;
  font-size: 0.9em;
}

.golfpac-row {
  display: grid;
  gap: 0.9em;
}

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

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

.golfpac-section-label {
  margin: 0 0 0.8em;
  font-weight: 800;
  color: #0f172a;
  font-size: 1.15em;
}

.golfpac-form-block {
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #e5e8ec;
  background: #fff;
  margin-bottom: 0.8em;
}

.golfpac-form-block__label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6em;
}

.golfpac-form-block__label::before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  border-radius: 3px;
  background: #14b8d6;
}

.golfpac-input {
  height: 1.9em;
  border-radius: 5px;
  border: 1px solid #dbe0e6;
  background: #fff;
}

.golfpac-tabbed-card {
  max-width: 22em;
  margin: 1.6em auto 0;
  border-radius: 10px;
  border: 1px solid #e5e8ec;
  background: #fff;
  overflow: hidden;
}

.golfpac-tabbed-card__tabs {
  display: flex;
  font-weight: 700;
  text-align: center;
}

.golfpac-tabbed-card__tabs span {
  flex: 1;
  padding: 0.9em;
  color: #94a3b8;
  border-bottom: 2px solid transparent;
}

.golfpac-tabbed-card__tabs span.is-active {
  color: #14b8d6;
  border-color: #14b8d6;
}

.golfpac-tabbed-card__body {
  padding: 1.2em;
}

.golfpac-legal {
  padding: 1.6em 2em;
  background: #0f1c33;
  color: #fff;
}

.golfpac-legal h3 {
  margin: 0.3em 0;
  font-size: 1.6em;
}

.golfpac-legal p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95em;
}

.golfpac-caption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.82rem;
  color: #74747a;
}

.golfpac-before-after {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.golfpac-before-after__panel {
  position: relative;
  margin: 0;
  padding: 0;
  height: 560px;
  border: 1px solid #ecece8;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.golfpac-before-after__label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(20, 20, 22, 0.78);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.golfpac-before-after__panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.golfpac-persona-quote {
  margin: 0 0 18px;
  padding: 14px 18px;
  border-left: 3px solid #5fd4e8;
  background: #f7fdfe;
  font-style: italic;
  color: #3a3a40;
  font-size: 0.92rem;
  line-height: 1.6;
}

.golfpac-messy-item {
  max-width: 1000px;
  margin: 0 auto 28px;
  padding: 28px 30px;
  border: 1px solid #ecece8;
  border-radius: 16px;
  background: #fff;
}

.golfpac-messy-item:last-child {
  margin-bottom: 0;
}

.golfpac-section-head + .golfpac-messy-item {
  margin-top: 40px;
}

.golfpac-messy-item h4 {
  margin: 0 0 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8f9097;
}

.golfpac-messy-item p {
  margin: 0;
  color: #3a3a40;
  line-height: 1.7;
}

.golfpac-messy-item__fix {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ecece8;
}

.golfpac-messy-item__fix strong {
  color: #1f1f23;
}

.golfpac-section-head {
  max-width: 1120px;
  margin: 64px auto 0;
  text-align: left;
}

.golfpac-section-head h2 {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #1f1f23;
}

.golfpac-section-head p {
  margin: 0;
  max-width: 720px;
  color: #5b5c64;
  font-size: 1.15rem;
  line-height: 1.5;
}

.golfpac-subhead {
  max-width: 1120px;
  margin: 40px auto 0;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #1f1f23;
}

.golfpac-section-head + .golfpac-subhead {
  margin-top: 40px;
}

.golfpac-hero-banner {
  display: block;
  width: 100%;
  max-width: 860px;
  height: auto;
  margin: 34px auto 0;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -30px rgba(15, 15, 15, 0.35);
}

.golfpac-snapshot {
  max-width: 900px;
  margin: 40px auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 40px;
  background: var(--surface);
}

.golfpac-snapshot__eyebrow {
  margin: 0 0 24px;
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8f9097;
  font-weight: 700;
}

.golfpac-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.golfpac-snapshot-item__label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8f9097;
}

.golfpac-snapshot-item__value {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #1f1f23;
}

.golfpac-business-context {
  max-width: 760px;
  margin: 40px auto 0;
}

.golfpac-business-context p {
  margin: 0 0 12px;
  color: #3a3a40;
  line-height: 1.7;
}

.golfpac-business-context p:last-child {
  margin-bottom: 0;
}

.golfpac-metrics {
  max-width: 900px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.golfpac-metrics__item {
  text-align: center;
  padding: 0 12px;
  border-left: 1px solid var(--line);
}

.golfpac-metrics__item:first-child {
  border-left: none;
}

.golfpac-metrics__number {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #1f1f23;
}

.golfpac-metrics__label {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #6d6d75;
}

.golfpac-metrics-note {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: #5b5c64;
  font-style: italic;
}

.golfpac-table-wrap {
  max-width: 1000px;
  margin: 32px auto 0;
  overflow-x: auto;
}

.golfpac-table {
  width: 100%;
  border-collapse: collapse;
}

.golfpac-table th,
.golfpac-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.98rem;
  color: #3a3a40;
  border-bottom: 1px solid var(--line);
}

.golfpac-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8f9097;
  font-weight: 700;
  border-bottom: 2px solid var(--line);
}

.golfpac-table tr:last-child td {
  border-bottom: none;
}

.golfpac-table td strong {
  color: #1f1f23;
}

.golfpac-flow {
  max-width: 1000px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.golfpac-flow__step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 600;
  font-size: 0.95rem;
  color: #1f1f23;
  white-space: nowrap;
}

.golfpac-flow__arrow {
  padding: 0 2px;
  color: #b5b6bd;
  font-size: 1.1rem;
}

.golfpac-dual-list {
  max-width: 900px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.golfpac-dual-list h4 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f1f23;
}

.golfpac-dual-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.golfpac-dual-list li {
  font-size: 0.98rem;
  line-height: 1.5;
  color: #3a3a40;
}

.golfpac-principles {
  max-width: 900px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  padding: 0;
  list-style: none;
}

.golfpac-principles li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #1f1f23;
}

.golfpac-principles li::before {
  content: "✓";
  color: #1f9d55;
  font-weight: 800;
}

.golfpac-would-measure {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 28px 32px;
  border-radius: 16px;
  background: #f2f2f0;
}

.golfpac-would-measure p {
  margin: 0 0 20px;
  font-weight: 700;
  color: #1f1f23;
}

.golfpac-reflection-cards {
  max-width: 1000px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.golfpac-reflection-card {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.golfpac-reflection-card h4 {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f1f23;
}

.golfpac-reflection-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.golfpac-reflection-card li {
  font-size: 0.94rem;
  line-height: 1.5;
  color: #3a3a40;
}

.golfpac-reflection-card--worked li {
  padding-left: 20px;
  position: relative;
}

.golfpac-reflection-card--worked li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1f9d55;
  font-weight: 800;
}

.tastex-decision {
  max-width: 900px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.tastex-decision:first-of-type {
  margin-top: 40px;
  padding-top: 0;
  border-top: none;
}

.tastex-decision__eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8f9097;
  font-weight: 700;
}

.tastex-decision__title {
  margin: 0 0 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f1f23;
}

.tastex-decision__label {
  margin: 24px 0 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8f9097;
  font-weight: 700;
}

.tastex-decision__label:first-of-type {
  margin-top: 0;
}

.tastex-decision p {
  margin: 0 0 12px;
  color: #3a3a40;
  line-height: 1.7;
}

.tastex-decision p:last-child {
  margin-bottom: 0;
}

.tastex-decision .golfpac-principles {
  margin: 4px 0 0;
}

@media (max-width: 860px) {
  .golfpac-snapshot-grid,
  .golfpac-dual-list,
  .golfpac-principles,
  .golfpac-reflection-cards {
    grid-template-columns: 1fr;
  }

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

  .golfpac-metrics__item:nth-child(2) {
    border-left: 1px solid var(--line);
  }

  .golfpac-metrics__item:nth-child(3),
  .golfpac-metrics__item:nth-child(4) {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-top: 24px;
  }

  .golfpac-metrics__item:nth-child(3) {
    border-left: none;
  }
}

.golfpac-disclaimer {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 18px 24px;
  border-radius: 12px;
  background: #fdf6e0;
  color: #6b5a20;
  font-size: 0.94rem;
  line-height: 1.6;
  text-align: center;
}

.golfpac-meta-chips .home-chip {
  padding: 13px 22px;
  font-size: 0.95rem;
  border-color: #e2e2de;
}

.golfpac-shot-board {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.golfpac-shot-card {
  border: 1px solid #ecece8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.golfpac-shot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.golfpac-shot-card figcaption {
  padding: 16px 18px 18px;
  color: #5b5c64;
  line-height: 1.62;
  font-size: 0.92rem;
}

.golfpac-shot-card figcaption strong {
  display: block;
  margin-bottom: 6px;
  color: #1f1f23;
  font-size: 0.98rem;
}

.golfpac-wireframe-shot img {
  border-bottom: 1px solid #ecece8;
}

/* GolfPac low-fidelity wireframe recreations, desktop aspect */
.golfpac-wireframe-board {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.golfpac-wireframe-card {
  padding: 0;
  border: 1px solid #ecece8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.golfpac-wireframe-screen {
  aspect-ratio: 16 / 10;
  padding: 14px 16px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 7px;
}

.golfpac-wireframe-card figcaption {
  padding: 12px 16px 16px;
  text-align: center;
}

.golfpac-wireframe-card figcaption strong {
  display: block;
  font-size: 0.86rem;
  color: #1f1f23;
}

.golfpac-wireframe-card figcaption span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: #86868c;
  line-height: 1.4;
}

.golfpac-field {
  margin-bottom: 0.8em;
}

.golfpac-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9em;
  color: #334155;
  margin-bottom: 0.35em;
}

.golfpac-cta {
  margin-top: 1em;
  padding: 0.8em;
  border-radius: 6px;
  background: #14b8d6;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.golfpac-cta--dark {
  background: #0f1c33;
}

.golfpac-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.92em;
  color: #334155;
  margin: 0.8em 0;
}

.golfpac-checkbox {
  width: 0.9em;
  height: 0.9em;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  flex-shrink: 0;
}

.golfpac-muted {
  color: #64748b;
}

.golfpac-center {
  text-align: center;
}

@media (max-width: 860px) {
  .golfpac-hifi-board,
  .golfpac-wireframe-board {
    grid-template-columns: 1fr;
  }
}

/* GE Healthcare LEAP case study components */
.ge-team-grid {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ge-team-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #ecece8;
  background: #fff;
  text-align: center;
}

.ge-team-card strong {
  display: block;
  font-size: 1.6rem;
  color: #1f1f23;
}

.ge-team-card span {
  display: block;
  font-size: 0.8rem;
  color: #74747a;
  margin-top: 4px;
}

.ge-persona-image {
  max-width: 1007px;
  margin: 34px auto 0;
}

.ge-persona-image--wide {
  max-width: 1100px;
}

.ge-persona-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.ge-persona-card {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #ecece8;
  background: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}

.ge-persona-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7d2fe, #818cf8);
  object-fit: cover;
  flex-shrink: 0;
}

.ge-persona-card h3 {
  margin: 0 0 2px;
  font-size: 1.2rem;
}

.ge-persona-card__meta {
  margin: 0;
  font-size: 0.85rem;
  color: #74747a;
}

.ge-persona-tags {
  display: flex;
  gap: 8px;
  margin: 12px 0 16px;
  flex-wrap: wrap;
}

.ge-persona-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f3f2;
  font-size: 0.76rem;
  color: #4f5058;
}

.ge-persona-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.ge-persona-lists h4 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8f9097;
}

.ge-persona-lists ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.88rem;
  color: #4f5058;
  line-height: 1.62;
}

.ge-insights-grid {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.ge-insight-card {
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid #ecece8;
  background: #fff;
}

.ge-insight-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #1f1f23;
}

.ge-insight-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #5b5c64;
  line-height: 1.6;
}

.ge-testimonial-grid {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ge-testimonial-card {
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #ecece8;
  background: #fff;
}

.ge-testimonial-card .ge-stars {
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.ge-testimonial-card p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: #3a3a40;
  line-height: 1.62;
  font-style: italic;
}

.ge-testimonial-card strong {
  display: block;
  font-size: 0.86rem;
  color: #1f1f23;
}

.ge-testimonial-card span {
  font-size: 0.78rem;
  color: #8f9097;
}

.ge-callout-legend {
  max-width: 900px;
  margin: 20px auto 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ge-callout-legend li {
  font-size: 0.86rem;
  color: #4f5058;
  line-height: 1.5;
}

.ge-callout-legend strong {
  color: #1f1f23;
}

.ge-learnings-list {
  max-width: 900px;
  margin: 34px auto 0;
  display: grid;
  gap: 14px;
}

.ge-learnings-list li {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #ecece8;
  background: #fff;
  font-size: 0.92rem;
  color: #3a3a40;
  line-height: 1.55;
}

.ge-learnings-list strong {
  color: #1f1f23;
}

.ge-dashboard-mock {
  max-width: 1000px;
  margin: 24px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e5ea;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: 12em 1fr;
  font-size: 6px;
}

.ge-dashboard-mock--wireframe {
  box-shadow: none;
  border-color: #ecece8;
}

.ge-dashboard-mock__sidebar {
  background: #111827;
  color: #cbd5e1;
  padding: 1.6em 1.2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.ge-dashboard-mock--wireframe .ge-dashboard-mock__sidebar {
  background: #e3e3e0;
  color: transparent;
}

.ge-dashboard-mock__sidebar div {
  padding: 0.6em 0.8em;
  border-radius: 5px;
  font-size: 1.1em;
}

.ge-dashboard-mock__sidebar div.is-active {
  background: #2563eb;
  color: #fff;
}

.ge-dashboard-mock--wireframe .ge-dashboard-mock__sidebar div.is-active {
  background: #b8b9c0;
}

.ge-dashboard-mock__main {
  padding: 1.6em;
  background: #f8fafc;
}

.ge-dashboard-mock--wireframe .ge-dashboard-mock__main {
  background: #fafafa;
}

.ge-dashboard-mock__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8em;
  margin-bottom: 1.2em;
}

.ge-dashboard-mock__stat {
  padding: 0.8em;
  border-radius: 8px;
  border: 1px solid #e5e8ec;
  background: #fff;
}

.ge-dashboard-mock__stat strong {
  display: block;
  font-size: 1.3em;
  color: #111827;
}

.ge-dashboard-mock--wireframe .ge-dashboard-mock__stat strong {
  color: transparent;
  background: #d9d9d6;
  border-radius: 3px;
}

.ge-dashboard-mock__stat span {
  font-size: 0.9em;
  color: #6b7280;
}

.ge-dashboard-mock--wireframe .ge-dashboard-mock__stat span {
  color: transparent;
  background: #ebebe8;
  border-radius: 3px;
}

.ge-dashboard-mock__table {
  border: 1px solid #e5e8ec;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.ge-dashboard-mock__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 0.7em 1em;
  border-bottom: 1px solid #f1f3f5;
  align-items: center;
  font-size: 1.05em;
  gap: 0.5em;
}

.ge-dashboard-mock__row:last-child {
  border-bottom: none;
}

.ge-dashboard-mock__row.is-head {
  background: #f8fafc;
  font-weight: 700;
  color: #6b7280;
  font-size: 0.95em;
}

.ge-status-pill {
  padding: 0.2em 0.7em;
  border-radius: 999px;
  font-size: 0.85em;
  font-weight: 700;
  display: inline-block;
}

.ge-status-pill--green {
  background: #dcfce7;
  color: #15803d;
}

.ge-status-pill--yellow {
  background: #fef9c3;
  color: #a16207;
}

.ge-status-pill--red {
  background: #fee2e2;
  color: #b91c1c;
}

.ge-mobile-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 24px auto 0;
  max-width: 900px;
  flex-wrap: wrap;
}

.ge-mobile-frame {
  width: 160px;
  border-radius: 18px;
  border: 6px solid #1f2937;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  font-size: 4.6px;
}

.ge-mobile-frame .ge-dashboard-mock__main {
  padding: 1.2em;
}

.ge-mobile-frame .ge-dashboard-mock__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .ge-team-grid,
  .ge-insights-grid,
  .ge-testimonial-grid,
  .ge-callout-legend,
  .ge-persona-card,
  .ge-persona-lists,
  .golfpac-before-after {
    grid-template-columns: 1fr;
  }

  .golfpac-before-after__panel {
    height: 360px;
  }

  .ge-dashboard-mock {
    grid-template-columns: 1fr;
    font-size: 5px;
  }

  .ge-dashboard-mock__sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ---------------------------------------------------- */
/* Homepage — enterprise positioning rebuild             */
/* ---------------------------------------------------- */

.home-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.home-section {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.home-section:last-of-type {
  border-bottom: none;
}

.home-section__head {
  max-width: 720px;
  margin: 0 0 38px;
}

.home-section__title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.home-num {
  flex-shrink: 0;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.home-section__head h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.home-section__head p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Buttons */

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 600;
  border: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn-accent:hover,
.btn-accent:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(215, 242, 76, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  background: var(--surface);
}

/* Social icon row */

.home-social-row {
  display: flex;
  gap: 10px;
}

.home-social-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  transition: transform 160ms ease, background 160ms ease;
}

.home-social-icon:hover,
.home-social-icon:focus-visible {
  transform: translateY(-2px);
  background: var(--bg);
}

.home-social-icon svg {
  width: 18px;
  height: 18px;
}

/* Hero */

.home-hero {
  padding: 88px 0 0;
}

.home-hero__eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.home-hero h1 {
  margin: 0;
  max-width: 960px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2.3rem, 4.6vw, 3.75rem);
  line-height: 1.14;
}

.home-hero__note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-hero__sub {
  max-width: 1080px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.68;
}

.home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
}

.home-chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.84rem;
  color: var(--text);
}

.home-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin: 44px 0 0;
}

/* Phone showcase band */

.home-showcase {
  margin-top: 64px;
  height: 480px;
  border-radius: 32px;
  background: #0b0b0d;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  padding: 0 32px;
}

.home-phone {
  flex: 0 0 auto;
  width: 200px;
  border-radius: 30px 30px 0 0;
  border: 7px solid #232326;
  border-bottom: none;
  background: #232326;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(56px);
}

.home-phone--tilt-left {
  transform: translateY(70px) rotate(-6deg);
}

.home-phone--tilt-right {
  transform: translateY(70px) rotate(6deg);
}

.home-phone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 20px;
  background: #232326;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.home-phone img {
  display: block;
  width: 100%;
  height: auto;
}

/* Client / experience strip */

.home-client-strip {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.logo-carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-carousel__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 72px;
  animation: logo-scroll 26s linear infinite;
}

.logo-carousel:hover .logo-carousel__track {
  animation-play-state: paused;
}

.logo-carousel__track img {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.5;
  transition: opacity 200ms ease, filter 200ms ease;
}

.logo-carousel__track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Project cards (featured + secondary share this language) */

.home-project-media {
  position: relative;
  border-radius: 22px;
  background: #0b0b0d;
  overflow: hidden;
  padding: 26px 26px 0;
}

.home-project-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0d0d0d;
}

.home-project-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
}

.home-project-eyebrow {
  margin: 22px 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.home-project-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

.home-project-title svg {
  flex-shrink: 0;
  margin-top: 5px;
}

.home-featured {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #14141a;
  border-radius: 24px;
  padding: 28px;
}

.home-featured .home-project-media {
  flex: 0 0 44%;
  margin: 0;
  background: transparent;
}

.home-featured__content {
  position: relative;
  flex: 1 1 0;
  padding-right: 36px;
}

.home-featured__badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.home-featured__heading {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.28;
}

.home-featured__desc {
  margin: 0 0 28px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.65;
}

.home-featured__stats {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 36px;
}

.home-featured__stat-number {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.home-featured__stat-label {
  margin: 4px 0 0;
  max-width: 160px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.4;
}

.home-featured__arrow {
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.7);
}

.home-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.home-work-card {
  display: block;
}

.home-work-card .home-project-title {
  font-size: 1.1rem;
}

.home-work-card--dark {
  background: #14141a;
  border-radius: 24px;
  padding: 18px;
}

.home-work-card--dark .home-project-media {
  margin: 0 0 20px;
  background: transparent;
}

.home-work-card__content {
  position: relative;
  padding-right: 28px;
}

.home-work-card__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.home-work-card__title {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
}

.home-work-card__title svg {
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-work-card--dark:hover .home-work-card__title svg {
  transform: translate(3px, -3px);
}

.home-work-card__stats {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-work-card__stat-number {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.home-work-card__stat-label {
  margin-top: 2px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Design process */

.home-process {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  margin-top: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.home-process__step {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 14px;
  white-space: nowrap;
}

.home-process__num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 0.86rem;
  font-weight: 700;
}

.home-process__step span {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

.home-process__arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 1.1rem;
  padding-top: 30px;
}

/* Process timeline (steps tied to real project examples) */

.home-process-list {
  max-width: 780px;
  margin-top: 8px;
}

.home-process-item {
  position: relative;
  display: flex;
  gap: 22px;
  padding-bottom: 36px;
}

.home-process-item:last-child {
  padding-bottom: 0;
}

.home-process-item::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.home-process-item:last-child::before {
  display: none;
}

.home-process-item__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.home-process-item__body h4 {
  margin: 6px 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.home-process-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-process-item__body p a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* About */

.home-about-lead {
  margin: 0 0 16px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.55;
}

.home-about-lead:last-of-type {
  margin-bottom: 0;
}

.home-about-lead .is-dim {
  color: var(--muted);
  font-weight: 400;
}

.home-about-lead--support {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--muted);
  font-weight: 400;
  transition: color 700ms ease;
}

.home-about-lead--support.is-visible {
  color: var(--text);
}

.home-about-current {
  margin: 20px 0 0;
  color: var(--text);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.6;
}

.home-journey-row {
  display: flex;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}

.home-timeline {
  flex: 1 1 0;
  max-width: 640px;
}

.home-timeline__heading {
  margin: 0 0 32px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
}

.home-timeline-list {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--line);
}

.home-timeline-row {
  position: relative;
  padding-bottom: 32px;
}

.home-timeline-row:last-child {
  padding-bottom: 0;
}

.home-timeline-row::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}

.home-timeline-row__date {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--text);
  font-size: 0.98rem;
}

.home-timeline-row__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-why {
  flex: 1 1 0;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  max-width: 460px;
}

.home-why h3 {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
}

.home-why p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Experience — borderless, divider-separated */

.home-experience {
  margin-top: 8px;
}

.home-exp-card {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.home-exp-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.home-exp-card__head h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.home-exp-card__dates {
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.home-exp-card__meta {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-exp-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.home-exp-card ul li + li {
  margin-top: 6px;
}

.home-exp-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-exp-card__tags span {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text);
}

.home-experience--freelance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.home-experience--freelance .home-exp-card {
  padding: 28px 26px 30px;
  border-radius: 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--exp-accent, var(--accent));
  background: var(--surface);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
}

.home-experience--freelance .home-exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
}

.home-experience--freelance .home-exp-card__head h3 {
  font-size: 1.15rem;
}

.home-experience--freelance .home-exp-card__tags span {
  background: var(--bg);
}

/* Skills */

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

.home-skill-group {
  padding: 26px 26px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.home-skill-group__num {
  width: 34px;
  height: 34px;
  margin-bottom: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 0.8rem;
  font-weight: 700;
}

.home-skill-group h3 {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.home-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-skill-tags span {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--text);
}

/* Closing CTA (mirrors hero) + footer */

.home-closing {
  padding: 96px 0 64px;
}

.home-closing__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-closing__avatar {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.home-closing h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.2;
}

.home-closing__ctas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.home-closing__resume {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-closing__resume a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.home-contact-details .home-contact-label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-contact-details .home-contact-value {
  display: block;
  margin-top: 4px;
  font-size: 0.98rem;
  color: var(--text);
}

.home-contact-details a.home-contact-value {
  text-decoration: none;
}

.home-contact-details a:hover .home-contact-value,
.home-contact-details a:focus-visible .home-contact-value {
  text-decoration: underline;
}

.home-footer {
  padding: 28px 0 48px;
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Subtle hover lift for existing case-study card components */

.ge-insight-card,
.ge-team-card,
.ge-impact-grid article,
.ge-testimonial-card,
.golfpac-shot-card,
.tastex-flow-card,
.tastex-desktop-card,
.pareexa-board-card,
.home-skill-group {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
}

.ge-insight-card:hover,
.ge-team-card:hover,
.ge-impact-grid article:hover,
.ge-testimonial-card:hover,
.golfpac-shot-card:hover,
.tastex-flow-card:hover,
.tastex-desktop-card:hover,
.pareexa-board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

/* Entrance choreography: hero sequence + staggered grids */

.home-hero__eyebrow.reveal {
  transition-delay: 0ms;
}

.home-hero h1.reveal {
  transition-delay: 70ms;
}

.home-hero__note.reveal {
  transition-delay: 150ms;
}

.home-hero__sub.reveal {
  transition-delay: 190ms;
}

.home-hero__chips.reveal {
  transition-delay: 220ms;
}

.home-hero__row.reveal {
  transition-delay: 330ms;
}

.home-showcase.reveal {
  transition-delay: 400ms;
}

.home-client-strip.reveal {
  transition-delay: 480ms;
}

.home-work-grid .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.home-work-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.home-work-grid .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.home-skills .home-skill-group:nth-child(1) {
  transition-delay: 0ms;
}

.home-skills .home-skill-group:nth-child(2) {
  transition-delay: 80ms;
}

.home-skills .home-skill-group:nth-child(3) {
  transition-delay: 160ms;
}

.home-skills .home-skill-group:nth-child(4) {
  transition-delay: 240ms;
}

.home-skills .home-skill-group:nth-child(5) {
  transition-delay: 320ms;
}

.home-process-list .home-process-item:nth-child(1) { transition-delay: 0ms; }
.home-process-list .home-process-item:nth-child(2) { transition-delay: 60ms; }
.home-process-list .home-process-item:nth-child(3) { transition-delay: 120ms; }
.home-process-list .home-process-item:nth-child(4) { transition-delay: 180ms; }
.home-process-list .home-process-item:nth-child(5) { transition-delay: 240ms; }
.home-process-list .home-process-item:nth-child(6) { transition-delay: 300ms; }
.home-process-list .home-process-item:nth-child(7) { transition-delay: 360ms; }
.home-process-list .home-process-item:nth-child(8) { transition-delay: 420ms; }
.home-process-list .home-process-item:nth-child(9) { transition-delay: 480ms; }
.home-process-list .home-process-item:nth-child(10) { transition-delay: 540ms; }
.home-process-list .home-process-item:nth-child(11) { transition-delay: 600ms; }
.home-process-list .home-process-item:nth-child(12) { transition-delay: 660ms; }

.home-experience--freelance .home-exp-card:nth-child(1) {
  transition-delay: 0ms;
}

.home-experience--freelance .home-exp-card:nth-child(2) {
  transition-delay: 90ms;
}

.home-experience--freelance .home-exp-card:nth-child(3) {
  transition-delay: 180ms;
}

.home-contact-details a:nth-child(1),
.home-contact-details div:nth-child(1) {
  transition-delay: 0ms;
}

.home-contact-details a:nth-child(2),
.home-contact-details div:nth-child(2) {
  transition-delay: 60ms;
}

.home-contact-details a:nth-child(3),
.home-contact-details div:nth-child(3) {
  transition-delay: 120ms;
}

.ge-insights-grid .reveal:nth-child(1),
.ge-impact-grid .reveal:nth-child(1),
.ge-testimonial-grid .reveal:nth-child(1),
.ge-team-grid .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.ge-insights-grid .reveal:nth-child(2),
.ge-impact-grid .reveal:nth-child(2),
.ge-testimonial-grid .reveal:nth-child(2),
.ge-team-grid .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.ge-insights-grid .reveal:nth-child(3),
.ge-impact-grid .reveal:nth-child(3),
.ge-testimonial-grid .reveal:nth-child(3),
.ge-team-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.ge-insights-grid .reveal:nth-child(4),
.ge-impact-grid .reveal:nth-child(4),
.ge-team-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

.ge-team-grid .reveal:nth-child(5) {
  transition-delay: 280ms;
}

.ge-team-grid .reveal:nth-child(6) {
  transition-delay: 350ms;
}

.ge-team-grid .reveal:nth-child(7) {
  transition-delay: 420ms;
}

.ge-team-grid .reveal:nth-child(8) {
  transition-delay: 490ms;
}

/* Hover micro-interactions */

.home-featured,
.home-work-card {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-featured:hover,
.home-featured:focus-visible,
.home-work-card:hover,
.home-work-card:focus-visible {
  transform: translateY(-6px);
}

.home-featured:hover .home-project-media img,
.home-work-card:hover .home-project-media img {
  transform: scale(1.035);
}

.home-project-media img {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-featured__arrow,
.home-work-card .home-project-title svg {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-featured:hover .home-featured__arrow,
.home-work-card:hover .home-project-title svg {
  transform: translate(3px, -3px);
}

.home-skill-group {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
}

.home-skill-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.home-phone {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-phone:hover {
  transform: translateY(36px);
}

.home-phone--tilt-left:hover {
  transform: translateY(50px) rotate(-3deg);
}

.home-phone--tilt-right:hover {
  transform: translateY(50px) rotate(3deg);
}

.home-chip,
.home-skill-tags span,
.home-exp-card__tags span {
  transition: transform 180ms ease, background 180ms ease;
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero__chips.is-visible .home-chip {
    animation: chip-pop 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .home-hero__chips.is-visible .home-chip:nth-child(1) { animation-delay: 320ms; }
  .home-hero__chips.is-visible .home-chip:nth-child(2) { animation-delay: 370ms; }
  .home-hero__chips.is-visible .home-chip:nth-child(3) { animation-delay: 420ms; }
  .home-hero__chips.is-visible .home-chip:nth-child(4) { animation-delay: 470ms; }
  .home-hero__chips.is-visible .home-chip:nth-child(5) { animation-delay: 520ms; }
  .home-hero__chips.is-visible .home-chip:nth-child(6) { animation-delay: 570ms; }
}

@keyframes chip-pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .home-shell {
    padding: 0 28px;
  }

  .topbar--minimal {
    padding-left: 28px;
    padding-right: 28px;
  }

  .home-work-grid,
  .home-experience--freelance,
  .home-skills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .home-section {
    padding: 52px 0;
  }

  .home-hero {
    padding: 48px 0 0;
  }

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

  .home-showcase {
    height: 340px;
    margin-top: 44px;
    gap: 12px;
    padding: 0 16px;
  }

  .home-phone {
    width: 140px;
  }

  .home-client-strip {
    gap: 22px;
  }

  .home-client-strip span {
    font-size: 0.9rem;
  }

  .home-work-grid,
  .home-experience--freelance,
  .home-skills,
  .home-contact-details {
    grid-template-columns: 1fr;
  }

  .home-featured {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .home-featured .home-project-media {
    flex: none;
  }

  .home-featured__content {
    padding-right: 0;
    margin-top: 24px;
  }

  .home-featured__desc {
    max-width: none;
  }

  .home-journey-row {
    flex-direction: column;
    gap: 40px;
  }

  .home-why {
    max-width: none;
  }

  .tastex-system-grid {
    grid-template-columns: 1fr;
  }

  .golfpac-shot-board,
  .tastex-desktop-board,
  .tastex-rules {
    grid-template-columns: 1fr;
  }

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

  .home-process {
    flex-direction: column;
    align-items: stretch;
  }

  .home-process__step {
    flex-direction: row;
    text-align: left;
    padding: 10px 4px;
  }

  .home-process__arrow {
    display: none;
  }

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

.cursor-hint {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
  will-change: transform;
}

.cursor-hint.is-active {
  opacity: 1;
}

.cursor-hint__scroll {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  display: none;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
}

.cursor-hint.is-scroll .cursor-hint__scroll {
  display: flex;
}

.cursor-hint__scroll-ring {
  width: 100%;
  height: 100%;
  animation: cursor-hint-spin 9s linear infinite;
}

.cursor-hint__scroll-ring text {
  font-size: 9px;
  letter-spacing: 2px;
  fill: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes cursor-hint-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cursor-hint__label {
  display: none;
  position: absolute;
  top: 12px;
  left: 12px;
  white-space: nowrap;
  background: var(--text);
  color: var(--bg);
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.cursor-hint.is-project .cursor-hint__label {
  display: inline-block;
}

@media (hover: none), (pointer: coarse) {
  .cursor-hint {
    display: none !important;
  }
}
