/* ============================================================
   TCOMM — about.css
   Profil / About page. Sections namespaced (.ab-*) so each maps
   to a WordPress template-part. Tokens + atoms come from base.css;
   contact (.s9) + footer (.ft) are reused from sections.css.
   ============================================================ */

/* page shell sits above nothing fancy — straightforward flow */
.ab-page { background: var(--bg); }

/* nav over the dark hero: white logo while not collapsed ------ */
.ab-page .site-nav:not(.scrolled) .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 1px 5px rgba(0,0,0,0.45));
}
/* nav collapsed (scrolled) sits over LIGHT sections here → keep the
   logo + burger DARK so they read on light grey (overrides base, which
   inverts to white for the home page's dark scenes). */
.ab-page .site-nav.scrolled .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(20,40,30,0.16));
}
.ab-page .site-nav.scrolled .nav-burger .bars i {
  background: var(--ink-dark);
  filter: none;
}
/* active nav item */
.nav-links a.is-active { color: #fff; }
.site-nav.scrolled .nav-links a.is-active { color: var(--green-deep); }
.drawer-links a.is-active { color: var(--green-deep); }

/* ============================================================
   HERO — dark scene, node-network motif (Profil)
   ============================================================ */
.ab-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(132% 120% at 74% 38%, var(--scene-2) 0%, var(--scene-1) 56%, var(--scene-0) 100%);
}
.ab-hero-bg { position: absolute; inset: 0; z-index: 0; }

/* simple telecom "broadcast signal" animation: rings propagate outward
   from a transmitter node — replaces the busy particle net. */
.ab-signal {
  position: absolute; right: 17%; top: 46%; transform: translateY(-50%);
  width: 0; height: 0; pointer-events: none;
}
.ab-signal .core {
  position: absolute; left: -7px; top: -7px; width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle, var(--green-bright) 0%, var(--green) 58%, transparent 76%);
  box-shadow: 0 0 22px 6px rgba(86,224,138,0.55);
}
.ab-signal .core::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: #eafff1;
}
.ab-signal .wave {
  position: absolute; left: 50%; top: 50%; width: 660px; height: 660px; margin: -330px 0 0 -330px;
  border-radius: 50%; border: 1px solid rgba(86,224,138,0.5);
  opacity: 0; transform: scale(0.08); transform-origin: center;
}
@keyframes ab-broadcast {
  0%   { transform: scale(0.08); opacity: 0; }
  9%   { opacity: 0.5; }
  70%  { opacity: 0.07; }
  100% { transform: scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: no-preference) {
  .ab-signal .wave { animation: ab-broadcast 7s cubic-bezier(.25,.6,.35,1) infinite; }
  .ab-signal .wave:nth-child(3) { animation-delay: 1.75s; }
  .ab-signal .wave:nth-child(4) { animation-delay: 3.5s; }
  .ab-signal .wave:nth-child(5) { animation-delay: 5.25s; }
}
@media (prefers-reduced-motion: reduce) {
  .ab-signal .wave:nth-child(2) { opacity: 0.30; transform: scale(0.5); }
  .ab-signal .wave:nth-child(3) { opacity: 0.18; transform: scale(0.76); }
  .ab-signal .wave:nth-child(4) { opacity: 0.08; transform: scale(1); }
  .ab-signal .wave:nth-child(5) { display: none; }
}
/* faint concentric "signal propagation" rings, right side */
.ab-rings {
  position: absolute; right: -12%; top: 46%; transform: translateY(-50%);
  width: min(76vw, 880px); aspect-ratio: 1; border-radius: 50%; pointer-events: none;
  background: repeating-radial-gradient(circle at center, rgba(120,220,165,0.10) 0 1px, transparent 1px 70px);
  -webkit-mask: radial-gradient(circle, #000 0%, rgba(0,0,0,0.35) 46%, transparent 72%);
  mask: radial-gradient(circle, #000 0%, rgba(0,0,0,0.35) 46%, transparent 72%);
  opacity: 0.6;
}
/* readability vignette over the net, biased to the text (left) */
.ab-hero-grade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(20,26,24,0.82) 0%, rgba(20,26,24,0.46) 34%, rgba(22,28,25,0.06) 62%, transparent 78%),
    linear-gradient(to top, rgba(20,26,24,0.6) 0%, transparent 38%);
}
.ab-hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding-top: clamp(132px, 20vh, 200px); padding-bottom: clamp(96px, 14vh, 140px);
}
.ab-breadcrumb {
  display: flex; align-items: center; gap: 9px; margin-bottom: 22px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--grey-dim);
}
.ab-breadcrumb a { color: var(--grey); text-decoration: none; transition: color .2s; }
.ab-breadcrumb a:hover { color: var(--green); }
.ab-breadcrumb .sep { opacity: 0.6; }
.ab-breadcrumb .here { color: var(--green); }
.ab-hero .eyebrow { margin-bottom: 22px; }
.ab-hero h1 {
  font-size: clamp(38px, 6vw, 84px); line-height: 1.02; color: var(--ink); max-width: 17ch;
}
.ab-hero h1 .accent { color: var(--green); }
.ab-motto {
  margin-top: 26px; font-family: var(--font-mono); font-style: italic;
  font-size: clamp(13px, 1.4vw, 16px); letter-spacing: 0.03em; color: var(--green-bright);
}
.ab-hero .subhead {
  margin-top: 22px; max-width: 56ch; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.62; color: var(--grey);
}
.ab-hero-meta { margin-top: clamp(30px, 5vh, 44px); display: flex; align-items: center; gap: 12px; }
.ab-hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: blink 1.6s steps(1) infinite; }

/* ============================================================
   LATAR BELAKANG — light intro
   ============================================================ */
.ab-bg { position: relative; background: var(--bg-light); padding: var(--section-y) 0; }
.ab-bg .grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(34px, 6vw, 100px); align-items: start; }
.ab-bg .lede { position: sticky; top: clamp(96px, 16vh, 150px); align-self: start; }
.ab-bg .lede h2 { font-size: clamp(30px, 3.8vw, 54px); line-height: 1.04; color: var(--ink-dark); margin-top: 18px; max-width: 13ch; }
.ab-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.ab-chip {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-deep); border: 1px solid var(--hair-dark); border-radius: 100px;
  padding: 9px 15px; background: var(--surface-3);
}
.ab-bg .body { max-width: 62ch; }
.ab-bg .body p { font-size: clamp(15px, 1.15vw, 17.5px); line-height: 1.78; color: var(--grey-dark); }
.ab-bg .body p + p { margin-top: 24px; }
.ab-bg .body strong { color: var(--ink-dark); font-weight: 600; }
.ab-pull {
  margin-top: 34px; padding-left: 22px; border-left: 2px solid var(--green-deep);
  font-family: var(--font-display); font-weight: 500; font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4; color: var(--ink-dark); letter-spacing: -0.01em;
}
.ab-pull .accent { color: var(--green-deep); }

/* ============================================================
   TERAS PEMBANGUNAN — what we build (light, image strip)
   ============================================================ */
.ab-build { background: var(--surface-3); padding: var(--section-y) 0; border-top: 1px solid var(--hair-dark); }
.ab-build .head { max-width: 42ch; }
.ab-build .head h2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.05; color: var(--ink-dark); margin-top: 14px; }
.ab-build .head .sub { margin-top: 18px; font-size: clamp(15px, 1.15vw, 17px); line-height: 1.7; color: var(--grey-dark); max-width: 52ch; }
.build-grid { margin-top: clamp(40px, 6vh, 60px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.build-card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--hair-dark); border-radius: 18px; background: var(--surface-3);
  box-shadow: 0 30px 72px -48px rgba(30,60,45,0.3);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.build-card:hover { transform: translateY(-4px); border-color: rgba(31,138,82,0.28); box-shadow: 0 42px 88px -44px rgba(30,60,45,0.36); }
.build-card .thumb { position: relative; aspect-ratio: 4/3; background: var(--bg-light-2); }
.build-card .thumb image-slot { width: 100%; height: 100%; }
.build-card .cap { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 9px; }
.build-card .n { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-deep); display: inline-flex; align-items: center; gap: 9px; }
.build-card .n::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green-deep); }
.build-card h3 { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.18; color: var(--ink-dark); letter-spacing: -0.01em; }
.build-card p { font-size: 14px; line-height: 1.6; color: var(--grey-dark); }

/* ============================================================
   VISI — dedicated editorial band (dark, image-led)
   Left: heading + accent block + motto + CTA.
   Right: admin-swappable image in an organic shape.
   Big outline wordmark + node motif as decorative ground.
   ============================================================ */
.ab-visi {
  position: relative; background: var(--scene-0); overflow: hidden;
  padding: clamp(104px, 15vh, 200px) 0 clamp(132px, 20vh, 250px);
}
.ab-visi::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(70% 56% at 14% 6%, rgba(86,224,138,0.12), transparent 58%),
    repeating-linear-gradient(115deg, transparent 0 46px, rgba(86,224,138,0.02) 46px 47px);
  -webkit-mask: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
          mask: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
/* big ghost wordmark behind everything */
.visi-word {
  position: absolute; left: var(--pad-x); bottom: clamp(22px, 4vh, 54px); z-index: 1; margin: 0;
  font-family: var(--font-display); font-weight: 700; line-height: 0.78; letter-spacing: -0.02em;
  font-size: clamp(96px, 19vw, 300px);
  color: transparent; -webkit-text-stroke: 1px rgba(235,255,240,0.10);
  pointer-events: none; user-select: none;
}
/* faint node-dot motif, bottom-right */
.visi-motif {
  position: absolute; right: clamp(18px, 5vw, 84px); bottom: clamp(40px, 9vh, 100px); z-index: 1;
  width: 188px; height: 150px; pointer-events: none; opacity: 0.55;
  background-image: radial-gradient(circle, rgba(86,224,138,0.55) 1.5px, transparent 1.8px);
  background-size: 26px 26px;
  -webkit-mask: radial-gradient(120% 120% at 100% 100%, #000 30%, transparent 78%);
          mask: radial-gradient(120% 120% at 100% 100%, #000 30%, transparent 78%);
}
.ab-visi .container { position: relative; z-index: 2; }
.visi-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.visi-copy { max-width: 34ch; }
.visi-copy h2 { font-size: clamp(36px, 4.6vw, 64px); line-height: 1.0; color: var(--ink); margin-top: 18px; letter-spacing: -0.02em; }
.visi-block { margin-top: clamp(30px, 4.5vh, 46px); }
.visi-block h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(19px, 1.7vw, 25px); line-height: 1.2; color: var(--green); }
.visi-block p { margin-top: 13px; font-size: clamp(15px, 1.15vw, 17.5px); line-height: 1.68; color: var(--grey); max-width: 44ch; }
.visi-motto {
  margin-top: clamp(24px, 3.5vh, 36px); font-family: var(--font-mono); font-style: italic;
  font-size: clamp(13px, 1.3vw, 15px); letter-spacing: 0.03em; color: var(--green-bright);
}
.visi-cta {
  margin-top: clamp(28px, 4vh, 40px); display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px; border-radius: 999px; border: 1px solid rgba(235,255,240,0.5);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  transition: background .25s var(--ease), color .25s, border-color .25s, transform .2s var(--ease);
}
.visi-cta .arr { transition: transform .22s var(--ease); }
.visi-cta:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; transform: translateY(-2px); }
.visi-cta:hover .arr { transform: translate(3px, -3px); }
/* shaped, admin-swappable image */
.visi-media { position: relative; justify-self: center; width: min(100%, 470px); }
.visi-media::after {
  content: ""; position: absolute; inset: 8% 6%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(86,224,138,0.28), transparent 66%);
  filter: blur(34px);
}
.visi-img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 5/6; overflow: hidden;
  border-radius: 46% 54% 47% 53% / 60% 58% 42% 40%;
  box-shadow: 0 54px 110px -42px rgba(0,0,0,0.72);
}
.visi-img::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(150,235,185,0.22), inset 0 18px 50px -20px rgba(86,224,138,0.18);
}
.visi-img image-slot { width: 100%; height: 100%; }

/* ============================================================
   MISI — central antenna + wordmark, 4 radiating points (dark)
   ============================================================ */
.ab-misi { position: relative; background: var(--scene-0); overflow: hidden;
  padding: clamp(92px,13vh,170px) 0 clamp(104px,15vh,200px); }
.misi-aura { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(56% 46% at 50% 60%, rgba(86,224,138,0.16), transparent 62%),
    radial-gradient(120% 70% at 50% 116%, rgba(86,224,138,0.12), transparent 60%); }
.ab-misi .container { position: relative; z-index: 2; }
.misi-intro { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.misi-intro .eyebrow { justify-content: center; }
.misi-lead { font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 2.3vw, 31px);
  line-height: 1.34; letter-spacing: -0.01em; color: var(--ink); max-width: 24ch; text-wrap: balance; }
.misi-lead .q { color: var(--green); font-weight: 700; }
.misi-stage { position: relative; margin-top: clamp(34px, 6vh, 80px);
  display: grid; grid-template-columns: 1fr minmax(240px, 0.82fr) 1fr;
  grid-template-rows: auto auto; align-items: center;
  gap: clamp(26px,3vh,52px) clamp(22px,4vw,72px); }
.misi-center { grid-column: 2; grid-row: 1 / span 2; position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: clamp(330px, 48vh, 520px); }
.misi-word { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); margin: 0; z-index: 1;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(74px, 12.5vw, 188px);
  line-height: 0.8; letter-spacing: 0.14em; white-space: nowrap; text-indent: 0.14em;
  background: linear-gradient(180deg, #eafff1 0%, #a3f0c0 58%, rgba(86,224,138,0.6) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 60px rgba(86,224,138,0.18); pointer-events: none; user-select: none; opacity: 0.92; }
.misi-antenna { position: relative; z-index: 2; width: clamp(220px, 30vw, 380px); }
.misi-antenna-canvas { width: 100%; aspect-ratio: 3/4.2; display: block;
  filter: drop-shadow(0 0 34px rgba(86,224,138,0.22)); }
.misi-antenna.no-webgl { width: clamp(168px, 22vw, 300px); height: clamp(330px, 48vh, 520px); }
.misi-glow { position: absolute; z-index: 0; bottom: 9%; left: 50%; transform: translateX(-50%);
  width: 66%; height: 46px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(86,224,138,0.42), transparent 70%); filter: blur(15px); }
.misi-pt { display: flex; flex-direction: column; gap: 12px; max-width: 38ch; }
.misi-pt--1 { grid-column: 1; grid-row: 1; align-items: flex-end; text-align: right; }
.misi-pt--2 { grid-column: 3; grid-row: 1; align-items: flex-start; text-align: left; }
.misi-pt--3 { grid-column: 1; grid-row: 2; align-items: flex-end; text-align: right; }
.misi-pt--4 { grid-column: 3; grid-row: 2; align-items: flex-start; text-align: left; }
.misi-n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em; color: var(--green);
  display: inline-flex; align-items: center; gap: 12px; }
.misi-n::after { content: ""; height: 1px; width: clamp(22px, 3vw, 56px);
  background: linear-gradient(90deg, var(--green), transparent); }
.misi-pt--2 .misi-n, .misi-pt--4 .misi-n { flex-direction: row-reverse; }
.misi-pt--2 .misi-n::after, .misi-pt--4 .misi-n::after { background: linear-gradient(270deg, var(--green), transparent); }
.misi-pt p { font-size: clamp(14.5px, 1.1vw, 16.5px); line-height: 1.56; color: var(--grey); }

/* ============================================================
   NILAI KORPORAT — values grid (light)
   ============================================================ */
.ab-val { background: var(--surface-3); padding: var(--section-y) 0; border-top: 1px solid var(--hair-dark); }
.ab-val .head { max-width: 40ch; }
.ab-val .head h2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.05; color: var(--ink-dark); margin-top: 16px; }
.val-list { margin-top: clamp(40px, 6vh, 64px);
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(40px, 6vw, 100px);
  border-top: 1px solid var(--hair-dark); }
.val-item { display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 2vw, 32px); align-items: center;
  padding: clamp(22px, 3vh, 34px) 0; border-bottom: 1px solid var(--hair-dark);
  transition: padding-left .3s var(--ease); }
.val-item:hover { padding-left: 8px; }
.val-item .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3vw, 46px);
  line-height: 0.9; letter-spacing: -0.02em; min-width: 1.8ch; color: transparent;
  -webkit-text-stroke: 1.2px rgba(31,138,82,0.5); transition: color .3s var(--ease), -webkit-text-stroke-color .3s; }
.val-item:hover .n { color: var(--green-deep); -webkit-text-stroke-color: var(--green-deep); }
.val-item h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.2; letter-spacing: -0.01em; color: var(--ink-dark); }

/* ============================================================
   KEAHLIAN — memberships (light grey-green)
   ============================================================ */
.ab-mem { background: var(--bg-light-2); padding: var(--section-y) 0; }
.ab-mem .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ab-mem .head h2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.05; color: var(--ink-dark); margin-top: 14px; }
.mem-list { margin-top: clamp(36px, 5vh, 56px); border-top: 1px solid var(--hair-dark); }
.mem-row { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px,3vw,44px); align-items: center;
  padding: clamp(24px, 3.4vh, 38px) 0; border-bottom: 1px solid var(--hair-dark);
  transition: padding-left .3s var(--ease); }
.mem-row:hover { padding-left: 8px; }
.mem-badge { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.02em;
  color: var(--green-deep); background: rgba(31,138,82,0.08); border: 1px solid rgba(31,138,82,0.22); }
.mem-body { display: flex; flex-direction: column; gap: 6px; }
.mem-row .nm { font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 1.6vw, 23px); line-height: 1.2; color: var(--ink-dark); }
.mem-row .full { font-size: 13.5px; line-height: 1.55; color: var(--grey-dark); max-width: 56ch; }
.mem-row .role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey-dark); white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.mem-row .role::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green-deep); }

/* ============================================================
   MAKLUMAT SYARIKAT — company facts (dark cards)
   ============================================================ */
.ab-info { position: relative; background: var(--scene-0); padding: var(--section-y) 0; overflow: hidden; }
.ab-info::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 84% 8%, rgba(86,224,138,0.09), transparent 60%);
}
.ab-info .container { position: relative; z-index: 1; }
.ab-info .head { max-width: 44ch; }
.ab-info .head h2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.05; color: var(--ink); margin-top: 14px; }
.info-grid { margin-top: clamp(40px, 6vh, 62px); display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(30px, 5vw, 84px); }
.info-card { padding: 0; }
.info-card > h3 {
  font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--green); margin-bottom: 4px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline);
}
.info-row { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--hairline); }
.info-row:first-of-type { border-top: 0; }
.info-row .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); padding-top: 2px; }
.info-row .v { font-size: 15px; line-height: 1.5; color: var(--ink); }
.info-row .v a { color: var(--ink); text-decoration: none; transition: color .2s; }
.info-row .v a:hover { color: var(--green-bright); }
.info-row .v .reg { font-variant-numeric: tabular-nums; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .ab-bg .grid { grid-template-columns: 1fr; gap: clamp(28px, 5vh, 44px); }
  .ab-bg .lede { position: relative; top: 0; }
  .ab-bg .lede h2 { max-width: 18ch; }
  .visi-grid { grid-template-columns: 1fr; gap: clamp(36px, 6vh, 56px); }
  .visi-media { width: min(86%, 420px); }
  .misi-stage { grid-template-columns: 1fr; row-gap: clamp(26px,4vh,44px); }
  .misi-center { grid-column: 1; grid-row: auto; order: -1; min-height: clamp(300px, 44vh, 460px); }
  .misi-pt { grid-column: 1 !important; grid-row: auto !important; max-width: none; align-items: flex-start !important; text-align: left !important; }
  .misi-pt .misi-n { flex-direction: row !important; }
  .misi-pt .misi-n::after { display: none !important; }
  .info-grid { grid-template-columns: 1fr; gap: clamp(36px,6vh,52px); }
}
@media (max-width: 760px) {
  .ab-hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .build-grid { grid-template-columns: 1fr; }
  .ab-signal { right: 50%; transform: translate(50%, -50%); opacity: 0.7; }
  .visi-word { font-size: clamp(64px, 22vw, 120px); }
  .visi-motif { display: none; }
  .misi-word { font-size: clamp(56px, 17vw, 104px); }
  .val-list { grid-template-columns: 1fr; }
  .mem-row { grid-template-columns: auto 1fr; row-gap: 4px; }
  .mem-row .role { grid-column: 1 / -1; padding-left: calc(46px + clamp(20px,3vw,44px)); }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .ab-hero-meta .dot { animation: none; }
}
