:root {
  --paper: #F7F8FC;
  --cream: #FFFFFF;
  --ink: #141414;
  --soft-ink: #3A3A3A;
  --muted: #7E8190;
  --line: #E1E3EC;
  --dark: #141416;
  --dark2: #1C1D1F;
  --on-dark: #C7C7C8;
  --on-dark-muted: #7C7D7F;
  --accent: #CFF45F;
  --violet: #6F5CF6;
  --lavender: #DDE1EF;
  --blue: #4E6CF6;
  --warm-tint: #E9E4FF;
  --sage: #E8EEE9;
  --clay: #ECEAE5;
  --latin: "DM Sans";
  --tc: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei";
  --display: var(--latin), var(--tc), sans-serif;
  --sans: var(--latin), var(--tc), "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--lavender);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 252, .78);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 60px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 142px;
  height: 23px;
  color: var(--ink);
  line-height: 1;
  transition: color .2s ease, opacity .2s ease;
}

.logo:hover {
  color: var(--violet);
}

.logo-mark {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: url('/images/logo.svg') center / contain no-repeat;
  mask: url('/images/logo.svg') center / contain no-repeat;
}

.links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 500;
}

.nav-cta {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--violet);
  font-weight: 600;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.lang-switch a {
  min-width: auto;
  padding: 0;
  border-radius: 0;
  text-align: center;
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin: -6px -8px -6px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .22s ease, opacity .22s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.eyebrow {
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nowrap {
  white-space: nowrap;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: clamp(52px, 6.4vw, 82px);
  font-weight: 400;
  line-height: 1.02;
}

h1 span {
  display: block;
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.12;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.04;
}

.hero-copy h1 span {
  max-width: 580px;
  margin-top: 14px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.16;
}

h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  font-size: 24px;
  line-height: 1.28;
}

p {
  color: var(--soft-ink);
  font-size: 15.5px;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 106px 0 64px;
  background:
    linear-gradient(180deg, var(--lavender) 0%, #F7F8FC 62%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-lede {
  max-width: 570px;
  margin-top: 28px;
  color: var(--soft-ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.hero-lede-muted {
  color: #908f8f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-light {
  border: 1px solid #DEDEDE;
  background: transparent;
}

.btn-accent {
  background: var(--accent);
  color: var(--ink);
}

.hero-portrait {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Soft organic color blob behind the cutout (original, no mirror sheen) */
.hero-portrait:before {
  content: "";
  position: absolute;
  inset: 30px 4px 6px;
  z-index: 0;
  border-radius: 46% 54% 47% 53% / 44% 42% 58% 56%;
  background:
    radial-gradient(115% 80% at 82% 10%, rgba(111, 92, 246, .30), transparent 58%),
    radial-gradient(95% 72% at 14% 98%, rgba(201, 242, 93, .30), transparent 60%),
    linear-gradient(158deg, #ece6fd 0%, #e4ecf7 48%, #eef3e6 100%);
}

/* Gloss layer: an exact clone of the circle's shape/position, so the
   highlight is clipped to the blob and can never spill past its edge */
.hero-portrait:after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 30px 4px 6px;
  border-radius: 46% 54% 47% 53% / 44% 42% 58% 56%;
  /* Glass sheen swept across the whole disc, clipped to the exact blob
     shape so it reads as gloss ON the circle — never a floating patch */
  background: linear-gradient(138deg, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, .16) 26%, rgba(255, 255, 255, 0) 52%);
  pointer-events: none;
}

.hero-portrait img {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  height: 640px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 40px rgba(20, 20, 20, .18));
  /* Dissolve the flat bottom edge (legs are cut off square in the source PNG)
     so she appears to emerge from the gradient instead of ending on a hard line */
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
}

/* Data cards behind the person — transparent images, no frame (z:0 so the cutout sits in front) */
.hero-back {
  position: absolute;
  z-index: 0;
}

.hero-back img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(20, 20, 20, .16));
  -webkit-mask-image: none;
  mask-image: none;
}

/* Big operational dashboard panel behind the person */
.hero-screen {
  top: 34px;
  left: 50%;
  width: 580px;
  max-width: 108%;
  overflow: visible;
  border-radius: 0;
  transform: translateX(-50%) rotate(-3deg);
}

.hero-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: ellipse(48% 49% at 50% 53%);
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .12) 45%, rgba(255, 255, 255, .72) 50%, rgba(207, 244, 95, .20) 54%, transparent 62%);
  transform: translateX(-58%) rotate(7deg);
  animation: dashboard-sheen 5.8s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-screen img {
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 980px) {
  /* Keep just the dashboard behind the person on mobile, scaled to fit */
  .hero-screen { width: min(88%, 340px); top: 14px; }
}

/* Wrapper generates no box on desktop; pills are absolutely placed around the portrait */
.hero-tags {
  display: contents;
}

.hpin {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 14px;
  /* Glassmorphism: translucent gradient + blur lets the photo/gradient show through */
  background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .05));
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .6);
  color: var(--ink);
  white-space: nowrap;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
}

/* Gloss sweep removed — sheen now lives only on the circle + dashboard layer */
.hpin::before {
  display: none;
}

.hpin b {
  display: block;
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.05;
}

.hpin small {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 3px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--soft-ink);
}

.hpin.tag-main {
  background: linear-gradient(135deg, rgba(207, 244, 95, .42), rgba(207, 244, 95, .16));
  border-color: rgba(255, 255, 255, .5);
}

.hpin.tag-main small {
  color: rgba(20, 20, 20, .74);
}

.hpin.tag-map {
  background: linear-gradient(135deg, rgba(111, 92, 246, .92), rgba(111, 92, 246, .62));
  border-color: rgba(255, 255, 255, .44);
  color: #FFFFFF;
}

.hpin.tag-map small {
  color: rgba(255, 255, 255, .78);
}

.hpin.tag-flow {
  background: linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(231, 235, 246, .70));
  border-color: rgba(111, 92, 246, .16);
}

.hpin.tag-flow small {
  color: rgba(20, 20, 20, .58);
}

.hpin.tag-ops {
  background: linear-gradient(135deg, rgba(20, 20, 20, .94), rgba(49, 50, 58, .80));
  border-color: rgba(255, 255, 255, .24);
  color: #FFFFFF;
}

.hpin.tag-ops small {
  color: rgba(255, 255, 255, .72);
}

/* Main positioning card sits larger over the legs to cover the cutout edge */
.hpin-1 {
  padding: 15px 22px;
}

.hpin-1 b {
  font-size: 26px;
}

.hpin-1 small {
  margin-top: 5px;
  font-size: 13px;
}

/* Scattered positions around the portrait */
.hpin-1 { top: auto; bottom: 70px; left: 32%; }
.hpin-2 { top: 150px; left: 4px; }
.hpin-3 { top: auto; bottom: 168px; left: 48px; }
.hpin-4 { top: 214px; right: -8px; }

/* Gentle floating so the pills feel like they hover over the photo */
.hpin {
  animation: hpin-float 4.6s ease-in-out infinite;
}

.hpin-1 { animation-duration: 4.6s; animation-delay: 0s; }
.hpin-2 { animation-duration: 5.4s; animation-delay: .5s; }
.hpin-3 { animation-duration: 5s; animation-delay: 1s; }
.hpin-4 { animation-duration: 5.8s; animation-delay: .25s; }

@media (max-width: 1180px) {
  .hpin-2,
  .hpin-3,
  .hpin-4 {
    display: none;
  }
}

@keyframes hpin-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes dashboard-sheen {
  0%, 42% { transform: translateX(-62%) rotate(7deg); opacity: 0; }
  58% { opacity: .82; }
  78%, 100% { transform: translateX(64%) rotate(7deg); opacity: 0; }
}

@keyframes hpin-gloss {
  0%, 50% { transform: translateX(-70%) rotate(8deg); opacity: 0; }
  62% { opacity: .76; }
  86%, 100% { transform: translateX(70%) rotate(8deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hpin { animation: none; }
  .hero-screen::before,
  .hpin::before { animation: none; }
}

.portrait-note {
  position: absolute;
  z-index: 2;
  padding: 14px 18px;
  border: 1px solid rgba(20, 20, 20, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 42px rgba(20, 20, 20, .14);
}

.portrait-note span {
  display: block;
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.portrait-note b {
  display: block;
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

/* Bottom card leads with a big stat number */
.portrait-note strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.note-bottom span {
  margin-top: 6px;
  color: var(--soft-ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.note-top {
  top: 74px;
  left: -6px;
  max-width: 200px;
}

.note-bottom {
  right: -6px;
  bottom: 66px;
}

.section-intro {
  max-width: 850px;
}

.section-intro h2,
.section-head h2 {
  margin-top: 12px;
}

.section-intro p:not(.eyebrow),
.section-head > p,
.background-copy p {
  margin-top: 20px;
  max-width: 700px;
  font-family: var(--sans);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.75;
}

.narrow {
  max-width: 760px;
}

.gap-section {
  background: var(--cream);
}

.gap-section .section-intro {
  margin: 0 auto;
  text-align: center;
}

.gap-section .section-intro p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
  font-family: var(--sans);
  font-size: clamp(14.5px, 1.15vw, 16px);
  color: #4A4D57;
}

.gap-headline {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(36px, 4.7vw, 58px);
  font-weight: 400;
  line-height: 1.14;
}

.gap-headline span {
  display: block;
}

.gap-muted {
  color: #B8B8B8;
}

.gap-turn {
  display: inline-flex;
  width: .92em;
  height: .72em;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-size: .42em;
  font-weight: 900;
  line-height: 1;
  vertical-align: .16em;
}

.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.gap-card,
.service-card,
.insight-grid .insight-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.gap-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

/* Fixed top spacer pushes the number down; because the number is one line,
   all three headings land at the same height regardless of description length */
.gap-card span {
  margin-top: 92px;
  font-family: var(--display);
  font-size: 72px;
  line-height: 72px;
  white-space: nowrap;
}

.gap-card.accent span {
  font-size: 58px;
}

.gap-card h3 {
  margin-top: 16px;
}

.gap-card p {
  margin-top: 12px;
  font-family: var(--sans);
}

.gap-card.dark {
  background: var(--dark);
  border-color: var(--dark);
}

.gap-card.dark span,
.gap-card.dark h3,
.gap-card.dark p {
  color: var(--cream);
}

.gap-card.accent {
  background: var(--accent);
  border-color: var(--accent);
}

@media (min-width: 981px) {
  .gap-headline {
    max-width: 760px;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.16;
  }

  .gap-card {
    min-height: 286px;
    padding: 24px;
  }

  .gap-card span,
  .gap-card.accent span {
    margin-top: 74px;
    font-size: 56px;
    line-height: 58px;
  }

  .gap-card h3 {
    font-size: 22px;
    line-height: 1.28;
  }

  .gap-card p {
    font-size: 14.5px;
    line-height: 1.65;
  }
}

.background-section {
  background: var(--paper);
}

.background-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.background-copy .eyebrow {
  font-size: 15px;
}

.background-copy h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}

.background-copy p {
  font-family: var(--sans);
  font-size: clamp(14.5px, 1.2vw, 16px);
  line-height: 1.78;
  color: #4A4D57;
}

.inline-cta {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.inline-cta:hover {
  color: var(--violet);
}

.background-proof {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: start;
}

/* Floating widgets around the desk photo — three visual types: window / dark / bubble */
.proof-float {
  position: absolute;
  z-index: 3;
  white-space: nowrap;
  /* Desktop/tablet size; phone shrinks to .7 in the ≤640 block */
  transform: scale(1.05);
  transform-origin: center;
  animation: pf-float-lg 5s ease-in-out infinite;
}

@keyframes pf-float-lg {
  0%, 100% { transform: translateY(0) scale(1.05); }
  50% { transform: translateY(-7px) scale(1.05); }
}

@keyframes pf-float-sm {
  0%, 100% { transform: translateY(0) scale(.7); }
  50% { transform: translateY(-7px) scale(.7); }
}

/* Phone keeps the smaller size */
@media (max-width: 640px) {
  .proof-float {
    transform: scale(.7);
    animation-name: pf-float-sm;
  }
}

/* --- Type 1: app window (light panel with header + content) --- */
.pf-win {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 210px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 14px;
  /* frosted glass — transparent, lets the photo show through */
  background: linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .14));
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 18px 44px rgba(20, 20, 20, .14), inset 0 1px 0 rgba(255, 255, 255, .55);
}

.pf-win-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  color: var(--soft-ink);
}

.pf-win-head .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}

.pf-win-val {
  margin-left: auto;
  color: var(--violet);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}

/* Standalone generated image (transparent, floats freely) */
.pf-shot {
  width: 140px;
}

.pf-shot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(20, 20, 20, .16));
}

/* Generated chart image centered inside the frosted window */
.pf-win-shot {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pf-win-shot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.pf-win-body {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pf-spark {
  width: 58px;
  height: 22px;
}

.pf-val {
  color: var(--violet);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.pf-leads {
  justify-content: space-between;
}

.pf-avs {
  display: inline-flex;
}

.pf-avs i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -7px;
}

.pf-avs i:nth-child(1) { margin-left: 0; background: var(--violet); }
.pf-avs i:nth-child(2) { background: var(--accent); }
.pf-avs i:nth-child(3) { background: var(--blue); }

.pf-leadnum {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

/* --- Type 2: dark card + dark pill --- */
.pf-dark,
.pf-pill-dark {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  background: var(--dark);
  color: #fff;
  box-shadow: 0 18px 44px rgba(20, 20, 20, .3);
}

.pf-pill-dark {
  border-radius: 999px;
  padding: 10px 16px;
}

.pf-pill-dark b {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
}

.pf-pill-dark span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .74);
}

.pf-ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.pf-ai-text {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
}

/* --- Type 3: thought bubble (glass, two-dot trailing tail) --- */
.pf-think {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .58));
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  box-shadow: 0 12px 30px rgba(20, 20, 20, .12), inset 0 1px 0 rgba(255, 255, 255, .7);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.pf-ico {
  flex: none;
  width: 17px;
  height: 17px;
}

.pf-think::before,
.pf-think::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .6);
}

.pf-think::before { left: 16px; bottom: -9px; width: 11px; height: 11px; }
.pf-think::after  { left: 8px; bottom: -19px; width: 6px; height: 6px; }

/* Scattered positions + independent float timing */
.pf-win-chart  { top: -24px; right: -16px; width: 210px; animation-duration: 5.2s; }
.pf-win-chart img { display: block; width: 100%; height: auto; filter: drop-shadow(0 16px 38px rgba(20, 20, 20, .16)); }
.pf-win-leads  { top: 40%; right: 2px; animation-duration: 6s; animation-delay: .5s; }
.pf-dark       { bottom: 78px; left: -16px; animation-duration: 5.8s; animation-delay: 1s; }
.pf-pill-dark  { bottom: -14px; right: 40px; animation-duration: 5.5s; animation-delay: .2s; }
.pf-think-1    { top: 2px; left: 20%; animation-duration: 5.4s; animation-delay: .3s; }
.pf-think-2    { top: 168px; left: 12%; animation-duration: 6.2s; animation-delay: .9s; }

@media (prefers-reduced-motion: reduce) {
  .proof-float { animation: none; }
}

/* Mobile: hide most floats, keep just the two thought bubbles for a light touch */
@media (max-width: 980px) {
  .proof-float { display: none; }
  /* Keep a light, well-spread set on tablet/phone */
  .pf-dark { display: inline-flex; bottom: 26%; left: 4%; }
  .pf-think-1 { display: inline-flex; top: 6%; left: 26%; }
  .pf-think-2 { display: inline-flex; top: 41%; bottom: auto; left: 12%; }
  .pf-pill-dark { display: inline-flex; top: auto; bottom: 8px; right: 4px; left: auto; }
}

.background-photo {
  position: relative;
  width: 100%;
  max-width: 720px;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: #FFFFFF;
  isolation: isolate;
}

.background-scene {
  position: absolute;
  inset: -36px;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .9) 0 18%, rgba(221, 225, 239, .38) 18% 19%, rgba(255, 255, 255, .72) 19% 36%, rgba(221, 225, 239, .34) 36% 37%, rgba(255, 255, 255, .82) 37% 100%),
    radial-gradient(circle at 17% 72%, rgba(113, 136, 74, .38), transparent 17%),
    radial-gradient(circle at 82% 22%, rgba(211, 220, 229, .48), transparent 28%),
    linear-gradient(135deg, #FFFFFF 0%, #F7F8FC 48%, #FFFFFF 100%);
  filter: blur(18px);
  opacity: .9;
  transform: scale(1.04);
}

.background-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: left center;
  filter: drop-shadow(0 22px 28px rgba(20, 20, 20, .10));
}

/* Blurred chart sitting behind the person cutout for depth */
.background-photo .bp-behind {
  position: absolute;
  z-index: 0;
  top: 7%;
  left: 33%;
  width: 64%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  opacity: .9;
  filter: blur(3px);
}

.credential-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.credential-board-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.credential-board div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  border: 1px solid rgba(20, 20, 20, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
}

.credential-board strong {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.01em;
  white-space: nowrap;
}

/* Unit / symbol as a small superscript beside the thin numeral */
.credential-board strong small {
  margin-top: .42em;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 600;
  letter-spacing: .01em;
}

.credential-board span {
  display: block;
  margin-top: 16px;
  color: var(--soft-ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.credential-board p {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
}

.method-section {
  background: var(--dark);
}

.method-section .eyebrow {
  color: var(--accent);
}

.method-section h1,
.method-section h2,
.method-section .section-intro p,
.method-map h3,
.method-map p,
.method-map span,
.method-subhead h3,
.pain-solution-grid h3,
.pain-solution-grid p,
.pain-solution-grid strong,
.pain-solution-grid span,
.pov-grid h3,
.pov-grid p,
.pov-grid span {
  color: var(--cream);
}

.method-section h1 {
  margin-top: 12px;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
}

.solution-detail {
  padding-top: 118px;
  border-bottom: 0;
}

.solution-detail .breadcrumb {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .44);
}

.solution-detail .breadcrumb a {
  color: rgba(255, 255, 255, .68);
}

.solution-detail .breadcrumb a:hover {
  color: var(--accent);
}

.solution-detail .method-head {
  grid-template-columns: minmax(0, 920px);
}

.solution-detail .method-map {
  margin-top: 46px;
}

.method-subhead {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.method-subhead .eyebrow {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.04;
}

.method-subhead h3 {
  max-width: 760px;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
  color: rgba(255, 255, 255, .56);
}

.pain-category {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.pain-category--first {
  margin-top: 54px;
  padding-top: 0;
  border-top: 0;
}

/* Method intro: text left, small visual right (desktop) */
.method-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 56px;
  align-items: center;
}

.method-visual {
  margin: 0;
}

.method-visual svg,
.method-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Desktop shows the card variant; the wide banner is hidden */
.method-visual .mv-banner {
  display: none;
}

@media (max-width: 900px) {
  .method-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Tablet/mobile: full-width horizontal banner instead of the card */
  .method-visual {
    max-width: none;
  }

  .method-visual .mv-card {
    display: none;
  }

  .method-visual .mv-banner {
    display: block;
  }

  .pain-category--first {
    margin-top: 40px;
  }
}

.pain-cat-en {
  color: var(--accent);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.pain-cat-zh {
  margin-top: 2px;
  color: rgba(255, 255, 255, .56);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
}

.pain-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.pain-solution-grid article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.pain-solution-grid span,
.pov-grid span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pain-solution-grid h3 {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 21px;
}

.pain-solution-grid p {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 15px;
}

/* Small label above the solution ("Growth Tips" / "Ops Tips") */
.sol-tip {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pain-solution-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}

.pov-heading {
  margin-top: 38px;
}

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

.pov-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(201, 242, 93, .08);
}

.pov-grid h3 {
  margin-top: 38px;
  font-family: var(--sans);
  font-size: 22px;
}

.pov-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .78);
  font-family: var(--sans);
  font-size: 14.5px;
}

.framework-heading {
  margin-top: 38px;
}

.method-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.method-map article {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.method-map span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.method-map h3 {
  margin-top: auto;
  font-size: 28px;
}

.method-map p {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 15px;
}

.work-section,
.insights-section {
  background: var(--cream);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 48px;
  align-items: end;
}

.section-head > p {
  justify-self: end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.service-card {
  min-height: 500px;
  padding: 28px;
}

.service-card.featured {
  background: var(--violet);
  border-color: var(--violet);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li,
.service-card.featured .service-kicker {
  color: #fff;
}

.service-kicker {
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-meta {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(20, 20, 20, .12);
  border-radius: 999px;
  background: rgba(201, 242, 93, .2);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card.featured .service-meta {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.service-card h3 {
  margin-top: 16px;
  font-size: 28px;
  overflow-wrap: anywhere;
}

.service-card p:not(.service-kicker) {
  margin-top: 16px;
  font-family: var(--sans);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--soft-ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.service-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* Insights header row with a "View all" link */
.insights-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.insights-more {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 700;
}

.insights-more:hover {
  text-decoration: underline;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.insight-grid .insight-card {
  display: block;
  padding: 14px;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}

.insight-grid .insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(20, 20, 20, .10);
}

.insight-thumb {
  height: 156px;
  border-radius: 6px;
  margin: 0 0 16px;
}

.thumb-1 { background: linear-gradient(135deg, var(--violet), #b9a9fb); }
.thumb-2 { background: linear-gradient(135deg, var(--blue), #a7c0ff); }
.thumb-3 { background: linear-gradient(140deg, #8fb84e, var(--accent)); }
.thumb-4 { background: linear-gradient(135deg, #f0a27a, #f4d35e); }
.thumb-5 { background: linear-gradient(135deg, #5ec5c9, #8fb84e); }
.thumb-6 { background: linear-gradient(135deg, #2e2a7b, var(--violet)); }

/* Feature card — full-bleed background image with overlaid text, breaks the grid rhythm */
.insight-feature {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding: 36px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #2e2a7b 0%, var(--violet) 60%, #8fb84e 140%);
  transition: transform .2s ease, box-shadow .2s ease;
}

.insight-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 8, 30, .55) 0%, rgba(10, 8, 30, .18) 55%, transparent 100%);
}

.insight-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(20, 20, 20, .2);
}

.insight-feature .fx {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.insight-feature .eyebrow {
  color: rgba(255, 255, 255, .82);
}

.insight-feature h3 {
  margin-top: 10px;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.16;
}

.insight-feature p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .88);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

/* --- Bento listing (mixed-size cards, white page) --- */
.page-white { background: #ffffff; }

.insight-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
  margin-top: 38px;
}

.b-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.b-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(20, 20, 20, .12);
}

.b-hero { grid-column: span 2; grid-row: span 2; }
.b-wide { grid-column: span 2; }

.b-dark { background: var(--dark); border-color: var(--dark); color: #fff; }
.b-lime { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.b-violet { background: var(--violet); border-color: var(--violet); color: #fff; }

.b-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.b-no {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .72;
}

.b-date {
  font-size: 12px;
  font-weight: 700;
  opacity: .55;
}

.b-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.b-tags span {
  padding: 5px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  opacity: .78;
}

.b-card h3 {
  color: inherit;
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1.28;
}

.b-hero h3 { font-size: clamp(28px, 2.8vw, 40px); line-height: 1.16; }

.b-card p {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
  opacity: .82;
}

.worksheet-section {
  margin-top: 64px;
}

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

.worksheet-card {
  min-height: 230px;
}

@media (max-width: 900px) {
  .insight-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .b-hero { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 560px) {
  .insight-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .worksheet-grid { grid-template-columns: 1fr; }
  .b-hero, .b-wide { grid-column: auto; }
  .b-card { min-height: 168px; }
}

/* --- Sub-pages (insights list, article detail, solution) --- */
.subpage {
  padding-top: 118px;
  padding-bottom: 80px;
}

.breadcrumb {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--soft-ink); }
.breadcrumb a:hover { color: var(--violet); }

.page-hero { max-width: 760px; }

.page-hero h1 {
  margin-top: 12px;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.06;
}

.page-hero .lede {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--soft-ink);
}

.article-body {
  max-width: 900px;
  margin: 0;
}

/* Reader message that opens the article — testimonial-card feel */
.reader-msg {
  margin: 28px 0 6px;
  padding: 26px 28px;
  border-radius: 18px;
  background: #F4F4F6;
  border: 1px solid var(--line);
}

.rm-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rm-avatar {
  width: 44px;
  height: 44px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
}

.rm-who b { display: block; font-size: 15px; font-weight: 700; }
.rm-who span { display: block; font-size: 13px; color: var(--muted); }

.rm-quote {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}

/* Editorial article — reader wants slightly smaller body text */
.article-body p { font-size: 16px; line-height: 1.85; }
.article-lead { font-size: clamp(17px, 1.8vw, 19px); }
.article-key p { font-size: 15px; }
.article-section h2 { font-size: clamp(22px, 2.4vw, 28px); }

/* AI instant-diagnosis block at the end of an article */
.ai-diagnose {
  margin-top: 46px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}

.ai-diagnose .ad-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--violet);
}

.ai-diagnose h3 { margin-top: 8px; font-size: 24px; }
.ai-diagnose > p { margin-top: 10px; color: var(--soft-ink); font-family: var(--sans); font-size: 15px; }

.ad-input {
  width: 100%;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  resize: vertical;
}

.ad-input:focus { outline: none; border-color: var(--violet); }
.ai-diagnose .ad-run { margin-top: 14px; }

.ad-result {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
}

.ad-result b { color: var(--accent); font-size: 14px; }
.ad-result ol { margin: 12px 0 0; padding-left: 20px; }
.ad-result li { margin-top: 8px; font-family: var(--sans); font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.9); }
.ad-cta-line { margin-top: 16px; font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,.8); }
.ad-result .btn { margin-top: 14px; }
.ad-note { margin-top: 12px; font-size: 12px; color: var(--muted); }

/* Category filter row on the insights listing */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cat-filter a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--soft-ink);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.cat-filter a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.cat-filter a:hover {
  border-color: var(--violet);
  color: var(--violet);
}

/* Insights hero — floating real-question chips (officely feel) */
.insights-hero {
  position: relative;
  min-height: 460px;
  max-width: none;
}

.ih-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.ih-float {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ih-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px 9px 9px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(20, 20, 20, .14);
  white-space: nowrap;
  animation: hpin-float 5.2s ease-in-out infinite;
}

.ih-chip .ic-av {
  width: 30px;
  height: 30px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}

.ih-chip .ic-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.ih-chip .ic-txt b {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  opacity: .72;
}

.ic-violet { background: #E7E2FD; color: #3B2E8C; }
.ic-blue   { background: #DEE6FF; color: #26377F; }
.ic-lime   { background: #EAF6C7; color: #4A5A16; }
.ic-orange { background: #FCE6D2; color: #8A4A1E; }
.ic-dark   { background: var(--dark); color: #fff; }
.ic-dark .ic-av { background: rgba(255, 255, 255, .18); }

/* scattered positions + independent float timing (desktop) */
.ih-c1 { top: 6px;   right: 3%;  animation-duration: 5.2s; }
.ih-c2 { top: 96px;  right: 22%; animation-duration: 6s;   animation-delay: .5s; }
.ih-c3 { top: 214px; right: 1%;  animation-duration: 5.6s; animation-delay: 1s; }
.ih-c4 { top: 316px; right: 20%; animation-duration: 6.2s; animation-delay: .3s; }
.ih-c5 { top: 400px; right: 6%;  animation-duration: 5.4s; animation-delay: .8s; }

@media (prefers-reduced-motion: reduce) {
  .ih-chip { animation: none; }
}

@media (max-width: 900px) {
  .insights-hero { min-height: auto; }
  .ih-float {
    display: none;
  }
  .ih-chip { animation: none; }
}

.article-hero-thumb {
  height: clamp(200px, 34vw, 320px);
  border-radius: 12px;
  margin: 26px 0 6px;
}

.article-body h2 {
  margin-top: 40px;
  font-size: 26px;
  font-weight: 600;
}

.article-body p {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--soft-ink);
}

.article-cta {
  margin-top: 44px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
}

.article-cta h3 { font-size: 22px; }
.article-cta p { margin-top: 8px; color: var(--soft-ink); font-family: var(--sans); }
.article-cta .btn { margin-top: 18px; }

/* --- Editorial article layout --- */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.article-meta .cat { color: var(--violet); }
.article-meta .dot { opacity: .5; }

.article-body h1 {
  margin-top: 14px;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.06;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.article-tags span {
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--soft-ink);
}

.article-body .article-lead {
  margin-top: 26px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--ink);
}

.article-key {
  margin: 34px 0;
  padding: 28px 30px;
  border-radius: 16px;
  background: var(--dark);
  color: #fff;
}

.article-key .k-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}

.article-key p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .92);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

.article-section { margin-top: 42px; }

.article-section .s-no {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: .04em;
}

.article-section h2 {
  margin-top: 6px;
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 600;
}

.pullquote {
  margin: 38px 0;
  padding-left: 22px;
  border-left: 4px solid var(--accent);
  font-family: var(--sans);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}

/* --- Brand naming mandala tool --- */
.mandala-page .breadcrumb {
  margin-bottom: 24px;
}

.mandala-hero {
  max-width: 840px;
}

.mandala-tool {
  margin-top: 46px;
  padding: 0;
  border-bottom: 0;
}

.mandala-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 18px;
  align-items: start;
}

.mandala-board-panel,
.mandala-result,
.mandala-field,
.mandala-upgrade {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.mandala-board-panel,
.mandala-result {
  padding: 24px;
}

.mandala-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
}

.mandala-panel-head h2,
.mandala-result h2,
.mandala-upgrade h2 {
  margin-top: 8px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
}

.mandala-progress {
  width: 170px;
  flex: none;
}

.mandala-progress span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
  text-align: right;
}

.mandala-progress i {
  display: block;
  height: 7px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.mandala-progress b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .2s ease;
}

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

.mandala-card {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.mandala-card:hover,
.mandala-card:focus-visible {
  border-color: var(--violet);
  background: #F1F0FA;
  transform: translateY(-1px);
  outline: none;
}

.mandala-card span {
  color: var(--violet);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mandala-card b {
  margin-top: auto;
  color: inherit;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.28;
}

.mandala-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
}

.mandala-card.is-center {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.mandala-card.is-center span,
.mandala-card.is-center small {
  color: var(--accent);
}

.mandala-result {
  position: sticky;
  top: 84px;
  background: var(--dark);
}

.mandala-result .eyebrow,
.mandala-result h2 {
  color: var(--accent);
}

.mandala-result-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.mandala-result-block span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mandala-result-block p,
.mandala-result-block li {
  margin-top: 8px;
  color: rgba(255, 255, 255, .9);
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
}

.mandala-result-block ol {
  padding-left: 20px;
}

.mandala-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mandala-keywords b {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(207, 244, 95, .15);
  color: var(--accent);
  font-size: 12px;
}

.mandala-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mandala-result .btn-light {
  border-color: rgba(255, 255, 255, .26);
  color: #fff;
}

.mandala-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mandala-field {
  padding: 22px;
  scroll-margin-top: 86px;
}

.mandala-field span {
  color: var(--violet);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mandala-field h3 {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 22px;
}

.mandala-field p {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--soft-ink);
}

.mandala-field textarea,
.mandala-field input {
  width: 100%;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14.5px;
}

.mandala-field textarea {
  min-height: 118px;
  resize: vertical;
}

.mandala-field textarea:focus,
.mandala-field input:focus {
  border-color: var(--violet);
  outline: none;
}

.mandala-field small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
}

.mandala-upgrade {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  background: var(--paper);
}

.mandala-upgrade p:not(.eyebrow) {
  margin-top: 12px;
  max-width: 760px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--soft-ink);
}

/* Article embed: compact mandala preview that can live inside an Insight */
.mandala-embed {
  margin-top: 46px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.mandala-embed-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}

.mandala-embed-head h3 {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.24;
}

.mandala-embed-head p {
  margin-top: 10px;
  max-width: 680px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--soft-ink);
}

.mandala-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.mandala-embed-field {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mandala-embed-field span {
  color: var(--violet);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mandala-embed-field h4 {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.32;
}

.mandala-embed-field textarea,
.mandala-embed-field input {
  width: 100%;
  margin-top: 12px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
}

.mandala-embed-field textarea {
  min-height: 96px;
  resize: vertical;
}

.mandala-embed-field textarea:focus,
.mandala-embed-field input:focus {
  border-color: var(--violet);
  outline: none;
}

.mandala-embed-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mandala-embed-result .mandala-result-block {
  margin-top: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: var(--dark);
}

.mandala-embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.insight-grid span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
}

.insight-grid h3 {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 21px;
}

.insight-grid p {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 15px;
}

.closing {
  background: var(--lavender);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.closing h2 {
  margin-top: 10px;
}

.closing p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 19px;
}

footer {
  padding: 28px 0;
  background: var(--dark);
  color: rgba(255, 255, 255, .74);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .lang-switch {
    margin-left: auto;
  }

  /* When a lang-switch is present it already pushes right; don't double up */
  .lang-switch + .nav-toggle {
    margin-left: 0;
  }

  .links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
    background: rgba(247, 248, 252, .98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .26s ease, opacity .2s ease, padding .26s ease;
  }

  .nav.is-open .links {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    padding: 8px 20px 16px;
  }

  .links a {
    padding: 14px 2px;
    font-size: 16px;
    border-bottom: 1px solid rgba(20, 20, 20, .06);
  }

  .links a:last-child { border-bottom: 0; }

  .hero-grid,
  .background-grid,
  .section-head,
  .closing-grid,
  .mandala-workspace,
  .mandala-upgrade {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-portrait {
    width: min(100%, 720px);
    height: clamp(500px, 70vw, 620px);
    min-height: 0;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .hero-portrait:before,
  .hero-portrait:after {
    inset: 32px 0 18px;
  }

  /* Bigger person on tablet */
  .hero-portrait img {
    width: min(74vw, 460px);
    height: 100%;
    max-height: 600px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center bottom;
  }

  /* Dashboard centred on the circle's midpoint, enlarged */
  .hero-screen {
    width: min(240vw, 1800px);
    top: 50%;
    left: 50%;
    right: auto;
    max-width: none;
    opacity: .76;
    transform: translate(-50%, -50%) rotate(-4deg);
  }

  .hero-tags {
    display: contents;
  }

  /* Show the small tags too, just smaller */
  .hpin {
    position: absolute;
    inset: auto;
    animation: none;
  }

  /* Three small tags +20% */
  .hpin b { font-size: 18px; }
  .hpin small { font-size: 12px; }
  .hpin { padding: 12px 18px; }

  /* AI Growth Partner box + text +50% */
  .hpin-1 { padding: 22px 32px; }
  .hpin-1 b { font-size: 30px; }
  .hpin-1 small { font-size: 16px; }

  .hpin-1 {
    top: auto;
    bottom: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hpin-2 {
    display: block;
    top: 74px;
    left: 138px;
    bottom: auto;
    right: auto;
  }

  .hpin-3 {
    display: block;
    top: auto;
    bottom: 158px;
    left: 120px;
    right: auto;
  }

  .hpin-4 {
    display: block;
    top: 128px;
    right: 138px;
    left: auto;
    bottom: auto;
  }

  h1 span {
    margin-top: 14px;
  }

  .note-top {
    left: 16px;
  }

  .note-bottom {
    right: 16px;
  }

  .gap-grid,
  .service-grid,
  .insight-grid,
  .pain-solution-grid,
  .pov-grid {
    grid-template-columns: 1fr;
  }

  .method-map {
    grid-template-columns: 1fr 1fr;
  }

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

  .method-subhead {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-head > p {
    justify-self: start;
  }

  .mandala-result {
    position: static;
  }

  .mandala-upgrade .btn {
    width: max-content;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .wrap {
    width: min(100% - 28px, 1180px);
  }

  section {
    padding: 56px 0;
  }

  .nav-inner {
    min-height: 56px;
  }

  .logo {
    width: 112px;
    height: 18px;
  }

  .hero {
    padding-top: 74px;
    padding-bottom: 16px;
  }

  .hero-grid,
  .background-grid {
    gap: 14px;
  }

  /* Phone: stack the hero overlay instead of floating over the face */
  .hero-portrait {
    width: min(100%, 380px);
    height: 360px;
    margin-top: -2px;
  }

  .hero-screen {
    width: min(100vw, 390px);
    top: -104px;
    left: 50%;
    right: auto;
    z-index: 0;
    opacity: .8;
    transform: translateX(-50%) rotate(-4deg);
  }

  .hero-portrait:before,
  .hero-portrait:after {
    inset: 36px 10px 16px;
  }

  .hero-portrait img {
    width: min(78vw, 286px);
    height: 360px;
    max-height: 360px;
  }

  /* Small tags stay visible on phone, just tighter and smaller */
  .hpin b { font-size: 11px; }
  .hpin small { font-size: 8px; }
  .hpin { padding: 6px 9px; border-radius: 12px; }

  .hpin-1 {
    bottom: 0;
    left: 16px;
    right: 16px;
    top: auto;
    width: auto;
    padding: 12px 16px;
    transform: none;
  }

  .hpin-1 b { font-size: 19px; }
  .hpin-1 small { font-size: 10px; }

  .hpin-2 {
    display: block;
    top: 116px;
    left: 4px;
    bottom: auto;
    right: auto;
  }

  .hpin-3 {
    display: block;
    top: auto;
    bottom: 116px;
    left: 4px;
    right: auto;
  }

  .hpin-4 {
    display: block;
    top: 102px;
    right: 4px;
    left: auto;
    bottom: auto;
  }

  /* Scoped to the homepage hero only — a global nowrap broke long
     titles on other pages (About, Naming Lab, articles) */
  .hero-copy h1 {
    font-size: 35px;
    line-height: 1.02;
    max-width: 8.8em;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-copy h1 span {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 12px;
    white-space: normal;
  }

  h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .background-copy h2 {
    font-size: 20px;
    line-height: 1.35;
  }

  .gap-headline {
    font-size: 21px;
    line-height: 1.24;
    margin-inline: -14px;
  }

  .gap-turn {
    border-radius: 7px;
    width: 1.2em;
    height: .9em;
    font-size: .56em;
  }

  h3 {
    font-size: 22px;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.62;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  /* Phone: keep the two stat cards as floating badges in opposite corners */
  .portrait-note {
    position: absolute;
    width: auto;
    margin-top: 0;
    padding: 11px 14px;
  }

  .portrait-note strong {
    font-size: 28px;
  }

  .note-top {
    top: 30px;
    left: 10px;
    right: auto;
    bottom: auto;
    max-width: 170px;
  }

  .note-bottom {
    right: 10px;
    bottom: 22px;
    left: auto;
    top: auto;
  }

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

  .background-scene {
    inset: -28px;
    filter: blur(16px);
  }

  .background-photo img {
    min-height: 300px;
    transform: none;
  }

  .method-map {
    grid-template-columns: 1fr;
  }

  /* Phone: stat cards as a 2-up grid, stretched full width to match the
     photo above (parent .background-proof uses justify-items:start, which
     otherwise shrinks the board to its content width). */
  .background-proof {
    justify-items: stretch;
  }

  .credential-board {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .credential-board div {
    min-height: 128px;
    padding: 18px;
  }

  .credential-board strong {
    font-size: clamp(30px, 9vw, 40px);
    gap: 4px;
  }

  .credential-board strong small {
    font-size: 12px;
  }

  .credential-board span {
    font-size: 13px;
  }

  .credential-board p {
    font-size: 11.5px;
    line-height: 1.45;
  }

  .gap-card {
    min-height: 220px;
    padding: 22px;
  }

  .gap-card span {
    margin-top: 40px;
    font-size: 56px;
    line-height: 56px;
  }

  .subpage {
    padding-top: 96px;
  }

  .mandala-tool {
    margin-top: 32px;
  }

  .mandala-board-panel,
  .mandala-result,
  .mandala-field,
  .mandala-upgrade {
    padding: 18px;
  }

  .mandala-panel-head {
    display: grid;
  }

  .mandala-progress {
    width: 100%;
  }

  .mandala-progress span {
    text-align: left;
  }

  .mandala-grid {
    gap: 7px;
  }

  .mandala-card {
    min-height: 116px;
    padding: 10px;
  }

  .mandala-card b {
    font-size: 13.5px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .mandala-card small {
    display: none;
  }

  .mandala-fields {
    grid-template-columns: 1fr;
  }

  .mandala-embed-head,
  .mandala-embed-grid,
  .mandala-embed-result {
    grid-template-columns: 1fr;
  }

  .mandala-embed {
    padding: 18px;
  }

  .mandala-upgrade .btn {
    width: 100%;
  }

  .gap-card.accent span {
    font-size: 46px;
  }

  .method-subhead {
    margin-top: 34px;
  }

  /* Phone: keep only the English labels, shrink the big heading */
  .method-subhead h3,
  .pain-cat-zh {
    display: none;
  }

  .method-subhead .eyebrow {
    font-size: 32px;
  }

  .pain-cat-en {
    font-size: 20px;
  }

  .method-map article,
  .pain-solution-grid article,
  .pov-grid article {
    padding: 22px;
  }

  .service-card {
    padding: 22px;
  }

  .closing-grid {
    gap: 22px;
  }

  .method-map article,
  .pain-solution-grid article,
  .pov-grid article,
  .service-card {
    min-height: auto;
  }
}

/* ============================================================
   About page
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 56px;
  align-items: center;
  max-width: none;
}

.about-hero-copy h1 {
  max-width: 620px;
}

.about-hero .lede {
  max-width: 620px;
  margin-top: 22px;
  color: var(--soft-ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.85;
}

.about-hero .lede b {
  color: var(--ink);
  font-weight: 700;
}

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

.about-portrait {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(158deg, #ece6fd 0%, #e4ecf7 48%, #eef3e6 100%);
  box-shadow: 0 26px 60px rgba(20, 20, 20, .12);
}

.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  margin-top: 56px;
}

.about-section {
  margin-top: 72px;
}

.about-sec-head {
  margin-bottom: 28px;
}

.about-sec-head .eyebrow {
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(16px, 1.54vw, 20px);
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.about-sec-head h2 {
  margin-top: 6px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
}

/* Experience timeline */
.exp-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  border-left: 1px solid rgba(20, 20, 20, .16);
}

.exp-item {
  position: relative;
  padding: 2px 0 38px 34px;
}

.exp-item::before {
  content: "";
  position: absolute;
  left: -4.5px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  border: 0;
  box-shadow: none;
}

.exp-item:last-child {
  padding-bottom: 0;
}

.exp-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}

.exp-head h3 {
  font-size: 19px;
  font-weight: 760;
  letter-spacing: 0;
}

.exp-org {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--violet);
}

.exp-meta {
  margin-top: 6px;
  color: rgba(20, 20, 20, .62);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
}

.exp-desc {
  max-width: 680px;
  margin-top: 10px;
  color: rgba(20, 20, 20, .66);
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
}

.exp-item-note {
  padding-top: 10px;
}

.exp-item-note .exp-desc {
  color: rgba(20, 20, 20, .82);
  font-weight: 600;
}

.about-crossing {
  position: relative;
  padding: 50px 0 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.crossing-head {
  position: relative;
  display: block;
  padding-bottom: 18px;
  border-bottom: 0;
}

.crossing-head h2 {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 8px;
  max-width: 420px;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(34px, 3.2vw, 42px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
  mix-blend-mode: difference;
}

.crossing-kicker {
  color: inherit;
  font-size: .48em;
  font-weight: 500;
  line-height: 1;
}

.crossing-brand {
  display: inline-block;
  width: fit-content;
  padding: 0;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.crossing-head blockquote {
  position: relative;
  width: min(780px, 100%);
  min-height: 0;
  margin: 0;
  padding: 0 0 5px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(16px, 1.28vw, 18px);
  font-weight: 700;
  line-height: 1.28;
  text-align: left;
  display: block;
}

.crossing-quote-text {
  position: relative;
  z-index: 4;
  display: none;
  max-width: 680px;
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .76);
  color: white;
  font-weight: 500;
  line-height: 1.28;
  mix-blend-mode: difference;
}

.crossing-quote-text span {
  display: inline;
  color: inherit;
}

.crossing-point-text {
  margin-left: .28em;
  font-weight: inherit;
  letter-spacing: 0;
}

.idea-orb {
  position: absolute;
  z-index: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  filter: blur(.2px);
  pointer-events: none;
  will-change: transform;
  color: rgba(255, 255, 255, .82);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.idea-orb-dark {
  z-index: 1;
  width: 420px;
  height: 420px;
  left: 5%;
  top: -28%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(145deg, #111111 0%, #27252d 58%, #1d2721 100%);
  box-shadow: 0 28px 72px rgba(20, 20, 20, .14);
  animation: idea-drift-a 42s ease-in-out infinite alternate;
}

.idea-orb-lens {
  z-index: 0;
  width: 132px;
  height: 132px;
  right: 18%;
  top: 17%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .58), rgba(255, 255, 255, .16) 26%, rgba(255, 255, 255, .04) 58%, rgba(255, 255, 255, .12) 100%),
    radial-gradient(circle at 74% 78%, rgba(20, 20, 20, .12), transparent 36%);
  box-shadow:
    inset 14px 14px 24px rgba(255, 255, 255, .34),
    inset -18px -16px 26px rgba(20, 20, 20, .12),
    0 18px 42px rgba(20, 20, 20, .09);
  backdrop-filter: blur(8px) saturate(1.12) contrast(1.08);
  -webkit-backdrop-filter: blur(8px) saturate(1.12) contrast(1.08);
  filter: none;
  animation: idea-drift-d 23s ease-in-out infinite alternate;
}

.idea-orb-lens::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: inherit;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, .62),
    inset -1px -1px 0 rgba(20, 20, 20, .08);
}

.idea-orb-lens::after {
  content: "";
  position: absolute;
  width: 32%;
  height: 16%;
  right: 10%;
  bottom: 17%;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  transform: rotate(-24deg);
  filter: blur(8px);
}

.idea-orb-lilac {
  width: 138px;
  height: 138px;
  left: 58%;
  top: 7%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, .68), transparent 31%),
    linear-gradient(145deg, rgba(224, 219, 242, .86), rgba(184, 188, 207, .76));
  box-shadow: 0 22px 50px rgba(112, 112, 130, .14);
  animation: idea-drift-b 19s ease-in-out infinite alternate;
}

.idea-orb-sage {
  width: 68px;
  height: 68px;
  right: 34%;
  bottom: 16%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .62), transparent 30%),
    linear-gradient(145deg, rgba(217, 232, 205, .88), rgba(179, 195, 181, .72));
  box-shadow: 0 20px 46px rgba(92, 116, 94, .13);
  animation: idea-drift-c 27s ease-in-out infinite alternate;
}

.idea-orb-ink {
  width: 44px;
  height: 44px;
  left: 72%;
  bottom: 20%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .18), transparent 30%),
    linear-gradient(145deg, #1a1a1a, #38383d);
  box-shadow: 0 18px 44px rgba(20, 20, 20, .14);
  animation: idea-drift-e 16s ease-in-out infinite alternate;
}

@keyframes idea-drift-a {
  0% { border-radius: 38% 62% 57% 43% / 42% 35% 65% 58%; transform: translate3d(0, 12px, 0) scale(.95); }
  42% { border-radius: 64% 36% 39% 61% / 58% 68% 32% 42%; transform: translate3d(46px, -34px, 0) scale(1.04); }
  100% { border-radius: 41% 59% 66% 34% / 64% 42% 58% 36%; transform: translate3d(92px, 42px, 0) scale(.98); }
}

@keyframes idea-drift-b {
  0% { border-radius: 61% 39% 43% 57% / 39% 63% 37% 61%; transform: translate3d(0, 0, 0) scale(1); }
  48% { border-radius: 38% 62% 66% 34% / 62% 36% 64% 38%; transform: translate3d(26px, 58px, 0) scale(.9); }
  100% { border-radius: 55% 45% 34% 66% / 34% 59% 41% 66%; transform: translate3d(-48px, 98px, 0) scale(1.12); }
}

@keyframes idea-drift-c {
  0% { border-radius: 50% 50% 40% 60% / 60% 38% 62% 40%; transform: translate3d(0, 0, 0) scale(1); }
  50% { border-radius: 66% 34% 58% 42% / 36% 68% 32% 64%; transform: translate3d(-50px, -30px, 0) scale(.86); }
  100% { border-radius: 36% 64% 49% 51% / 68% 40% 60% 32%; transform: translate3d(-10px, -76px, 0) scale(1.14); }
}

@keyframes idea-drift-d {
  0% { border-radius: 42% 58% 56% 44% / 52% 38% 62% 48%; transform: translate3d(0, 0, 0) scale(.94); }
  44% { border-radius: 60% 40% 35% 65% / 62% 64% 36% 38%; transform: translate3d(-72px, 58px, 0) scale(1.12); }
  100% { border-radius: 47% 53% 67% 33% / 35% 58% 42% 65%; transform: translate3d(-118px, 20px, 0) scale(.98); }
}

@keyframes idea-drift-e {
  0% { border-radius: 58% 42% 38% 62% / 40% 60% 42% 58%; transform: translate3d(0, 0, 0) scale(1); }
  52% { border-radius: 36% 64% 61% 39% / 64% 36% 66% 34%; transform: translate3d(-48px, -52px, 0) scale(.86); }
  100% { border-radius: 66% 34% 48% 52% / 36% 62% 38% 64%; transform: translate3d(26px, -18px, 0) scale(1.16); }
}

@media (prefers-reduced-motion: reduce) {
  .idea-orb {
    animation: none;
  }
}

.crossing-copy {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-top: 5px;
}

.crossing-copy p,
.crossing-card p {
  color: white;
  font-family: var(--sans);
  line-height: 1.75;
  mix-blend-mode: difference;
}

.crossing-copy p {
  position: relative;
  z-index: 4;
  font-size: 16px;
}

.crossing-copy-quote {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .76);
  font-weight: 500;
}

.crossing-copy b {
  color: white;
  font-weight: 800;
}

.crossing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

/* Solution page: full-width hero (no portrait) + 3-up card rows */
.solution-hero {
  grid-template-columns: 1fr;
}

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

.crossing-card {
  position: relative;
  min-height: 188px;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.crossing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: difference;
}

.crossing-card span {
  position: relative;
  z-index: 4;
  font-family: var(--sans);
  font-size: clamp(15px, 1.16vw, 17px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: #8b8b8f;
  mix-blend-mode: difference;
}

.crossing-card h3 {
  position: relative;
  z-index: 4;
  margin-top: 22px;
  color: white;
  font-size: 22px;
  line-height: 1.35;
  mix-blend-mode: difference;
}

.crossing-card p {
  position: relative;
  z-index: 4;
  margin-top: 10px;
  font-size: 14.5px;
}

.about-right-people {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 34px 0 38px;
  border-top: 1px solid rgba(20, 20, 20, .14);
  border-bottom: 1px solid rgba(20, 20, 20, .14);
}

.about-right-people .eyebrow {
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(16px, 1.54vw, 20px);
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.about-right-people h2 {
  margin-top: 10px;
  max-width: 560px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

.right-people-copy {
  max-width: 680px;
}

.right-people-copy h3 {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 760;
  line-height: 1.2;
}

.right-people-copy p {
  margin-top: 18px;
  color: rgba(20, 20, 20, .68);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

.exp-points {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.exp-points li {
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.7;
}

.exp-points li::marker {
  color: var(--violet);
}

/* Skills chips */
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-skills span {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.about-edu .edu-line {
  font-size: 16px;
  line-height: 1.7;
  color: var(--soft-ink);
}

.about-edu .edu-line b {
  color: var(--ink);
}

/* CTA */
.about-cta {
  margin: 84px 0 24px;
  padding: 40px 44px;
  border-radius: 24px;
  background: var(--dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-cta h2 {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
}

.about-cta p {
  margin-top: 8px;
  max-width: 520px;
  color: rgba(255, 255, 255, .66);
  font-size: 15px;
  line-height: 1.7;
}

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

  .about-portrait {
    max-width: 420px;
    order: -1;
  }

  .about-section {
    margin-top: 52px;
  }

  .about-crossing {
    padding: 34px 0;
  }

  .crossing-head {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 14px;
  }

  .crossing-head h2 {
    max-width: 320px;
    font-size: 32px;
    gap: 6px;
  }

  .crossing-brand {
    border-radius: 7px;
  }

  .crossing-head blockquote {
    width: 100%;
    min-height: 168px;
    margin: 14px auto 0;
    padding: 34px 26px 28px;
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
  }

  .crossing-quote-text {
    display: inline-block;
    justify-self: center;
    max-width: 320px;
    padding-left: 0;
    text-align: center;
    line-height: 1.35;
  }

  .crossing-copy-quote {
    display: none;
  }

  .idea-orb-dark {
    width: 172px;
    height: 172px;
    left: 9%;
    top: 11%;
    animation-name: idea-drift-mobile-a;
  }

  .idea-orb-lens {
    width: 92px;
    height: 92px;
    right: 12%;
    top: 22%;
    animation-name: idea-drift-mobile-d;
  }

  .idea-orb-lilac {
    width: 70px;
    height: 70px;
    left: 62%;
    top: 50%;
    animation-name: idea-drift-mobile-b;
  }

  .idea-orb-sage {
    width: 54px;
    height: 54px;
    right: 32%;
    bottom: 14%;
    animation-name: idea-drift-mobile-c;
  }

  .idea-orb-ink {
    width: 38px;
    height: 38px;
    left: 10%;
    bottom: 13%;
    animation-name: idea-drift-mobile-e;
  }

  @keyframes idea-drift-mobile-a {
    0% { border-radius: 47% 53% 52% 48% / 44% 46% 54% 56%; transform: translate3d(0, 4px, 0) scale(.96); }
    50% { border-radius: 56% 44% 49% 51% / 52% 42% 58% 48%; transform: translate3d(54px, -8px, 0) scale(1.04); }
    100% { border-radius: 43% 57% 55% 45% / 50% 58% 42% 50%; transform: translate3d(86px, 18px, 0) scale(.98); }
  }

  @keyframes idea-drift-mobile-b {
    0% { border-radius: 55% 45% 47% 53% / 46% 56% 44% 54%; transform: translate3d(0, 0, 0) scale(1); }
    50% { border-radius: 45% 55% 58% 42% / 54% 44% 56% 46%; transform: translate3d(-44px, -18px, 0) scale(.94); }
    100% { border-radius: 51% 49% 44% 56% / 43% 55% 45% 57%; transform: translate3d(-78px, 20px, 0) scale(1.05); }
  }

  @keyframes idea-drift-mobile-c {
    0% { border-radius: 50% 50% 45% 55% / 52% 44% 56% 48%; transform: translate3d(0, 0, 0) scale(1); }
    50% { border-radius: 57% 43% 54% 46% / 44% 58% 42% 56%; transform: translate3d(-36px, -46px, 0) scale(.92); }
    100% { border-radius: 44% 56% 50% 50% / 58% 46% 54% 42%; transform: translate3d(22px, -72px, 0) scale(1.08); }
  }

  @keyframes idea-drift-mobile-d {
    0% { border-radius: 46% 54% 52% 48% / 48% 44% 56% 52%; transform: translate3d(0, 0, 0) scale(.96); }
    50% { border-radius: 54% 46% 43% 57% / 54% 58% 42% 46%; transform: translate3d(-62px, 46px, 0) scale(1.08); }
    100% { border-radius: 49% 51% 58% 42% / 44% 52% 48% 56%; transform: translate3d(-104px, 12px, 0) scale(.98); }
  }

  @keyframes idea-drift-mobile-e {
    0% { border-radius: 52% 48% 44% 56% / 46% 54% 46% 54%; transform: translate3d(0, 0, 0) scale(1); }
    50% { border-radius: 44% 56% 55% 45% / 56% 44% 58% 42%; transform: translate3d(64px, -34px, 0) scale(.9); }
    100% { border-radius: 58% 42% 50% 50% / 42% 56% 44% 58%; transform: translate3d(108px, -8px, 0) scale(1.12); }
  }

  .crossing-copy {
    margin-top: 44px;
  }

  .crossing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .crossing-card {
    min-height: 0;
    padding: 20px;
  }

  .crossing-card h3 {
    margin-top: 16px;
    font-size: 20px;
  }

  .about-right-people {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0 30px;
  }

  .about-right-people h2 {
    font-size: 32px;
  }

  .about-cta {
    padding: 30px 26px;
  }
}

/* ============================================================
   Growth breakpoint mandala
   ============================================================ */
.growth-breakpoint-page {
  background:
    linear-gradient(180deg, rgba(247, 248, 252, .86), #fff 34%),
    #fff;
}

.gb-hero h1 {
  max-width: 760px;
}

.gb-hero .lede {
  max-width: 720px;
}

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

.gb-intro div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px 24px;
}

.gb-intro span,
.gb-offer-card span,
.gb-bonus-result span {
  display: block;
  margin-bottom: 8px;
  color: var(--violet);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gb-intro p,
.gb-offer p,
.gb-offer-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.75;
}

.gb-tool {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 22px 70px rgba(20, 20, 20, .06);
}

.gb-tool-head,
.gb-layout,
.gb-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: start;
}

.gb-tool-head {
  align-items: end;
  margin-bottom: 26px;
}

.gb-tool-head h2,
.gb-offer h2 {
  margin: 6px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
}

.gb-progress {
  justify-self: end;
  width: min(100%, 280px);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  color: var(--soft-ink);
}

.gb-progress i {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--paper);
}

.gb-progress b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .22s ease;
}

.gb-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  aspect-ratio: 1 / 1;
}

.gb-board a,
.gb-center {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.gb-board a:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 92, 246, .42);
  background: #fff;
}

.gb-board span,
.gb-question legend span {
  color: var(--violet);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.gb-board b,
.gb-center b {
  margin-top: 8px;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 900;
  line-height: 1.15;
}

.gb-board small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.gb-center {
  background: var(--dark);
  color: #fff;
}

.gb-center span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.gb-result {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.gb-empty,
.gb-result-card,
.gb-bonus-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px 22px;
}

.gb-empty {
  background: var(--paper);
}

.gb-empty span {
  font-size: 18px;
  font-weight: 900;
}

.gb-empty p,
.gb-result-card p,
.gb-result-card li,
.gb-bonus-result p {
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.75;
}

.gb-result-card h3 {
  margin: 4px 0 8px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
}

.gb-result-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 16px;
}

.gb-result-card p,
.gb-result-card ol,
.gb-result-card ul {
  margin: 10px 0 0;
}

.gb-result-card ol,
.gb-result-card ul {
  padding-left: 20px;
}

.gb-result-card.is-soft,
.gb-bonus-result {
  background: #F1F4FF;
  border-color: #DCE3FF;
}

.gb-bonus-result {
  background: #F1FFE2;
  border-color: #DDF3B9;
}

.gb-bonus-result h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.gb-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gb-identity {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 30px 0 22px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 700;
}

.gb-identity > span {
  flex: 1 1 280px;
  color: var(--ink);
}

.gb-identity label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.gb-question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.gb-question {
  min-width: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.gb-question legend {
  display: grid;
  gap: 4px;
  padding: 0 4px;
}

.gb-question legend b {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.gb-question legend small {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.55;
}

.gb-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.gb-options label {
  display: grid;
  grid-template-columns: auto 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.gb-options label:has(input:checked) {
  border-color: rgba(111, 92, 246, .58);
  background: #F1F0FF;
}

.gb-options span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
}

.gb-options b {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.55;
}

.gb-note {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.gb-note span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.gb-note b {
  font-size: 18px;
}

.gb-note textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
}

.gb-note textarea::placeholder {
  color: rgba(255, 255, 255, .46);
}

.gb-offer {
  align-items: center;
  margin-top: 34px;
  padding: 30px;
  border-radius: 8px;
  background: var(--paper);
}

.gb-offer-card {
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  border: 1px solid var(--line);
}

.gb-offer-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .gb-intro,
  .gb-tool-head,
  .gb-layout,
  .gb-offer,
  .gb-question-list {
    grid-template-columns: 1fr;
  }

  .gb-progress {
    justify-self: stretch;
  }

  .gb-result {
    position: static;
  }
}

@media (max-width: 640px) {
  .gb-tool {
    padding: 18px;
  }

  .gb-board {
    gap: 6px;
  }

  .gb-board a,
  .gb-center {
    padding: 10px;
  }

  .gb-board b,
  .gb-center b {
    font-size: 15px;
  }

  .gb-board small {
    display: none;
  }

  .gb-question,
  .gb-note,
  .gb-offer {
    padding: 18px;
  }

  .gb-options label {
    grid-template-columns: auto 24px minmax(0, 1fr);
    padding: 10px;
  }

  .gb-options span {
    width: 24px;
    height: 24px;
  }
}

/* ------------------------------------------------------------------
   Clayo-style lighter main headings — display headings use weight 400
   (buttons, labels, numbers, card sub-titles keep their own weight)
   ------------------------------------------------------------------ */
h1, h2,
h1 span,
.gap-headline,
.method-subhead .eyebrow,
.page-hero h1, .article-body h1,
.about-hero-copy h1, .about-sec-head h2, .about-cta h2,
.crossing-brand {
  font-weight: 400;
}

/* About page: softer, paler card frames */
.about-crossing .crossing-card::before {
  border-color: rgba(255, 255, 255, .3);
}

/* Quote attribution — "— Nicole Su" under the CROSSING POINT motto */
.crossing-quote-by {
  position: relative;
  z-index: 4;
  display: block;
  margin-top: 12px;
  color: white;
  font-family: var(--sans), var(--tc);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .02em;
  mix-blend-mode: difference;
}

.crossing-quote-by--big {
  display: none;
}

@media (max-width: 900px) {
  .crossing-quote-by {
    display: none;
  }

  .crossing-quote-by--big {
    display: block;
    margin-top: 14px;
    text-align: center;
  }
}
