/* Standalone CSS version of the published site. */

:root {
  --ivory: #f8f4ed;
  --warm-white: #fffdf9;
  --ink: #25242a;
  --muted: #6d6968;
  --coral: #5f82c8;
  --coral-dark: #345b9f;
  --blush: #dce7fa;
  --sky: #b8d8ea;
  --sky-deep: #568ab8;
  --fi-blue: #315fa8;
  --fi-blue-soft: #eaf1fc;
  --fi-blue-glow: rgba(49, 95, 168, 0.2);
  --connect-red: #e35d4f;
  --connect-orange: #ee8a3d;
  --connect-soft: #fff1e7;
  --connect-glow: rgba(238, 138, 61, 0.22);
  --gold: #d8b56c;
  --line: rgba(69, 59, 55, 0.13);
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --sans: "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

/* Final interaction overrides */
@media (hover: hover) and (pointer: fine) {
  .organization-card:hover,
  .project-card:hover {
    transform: perspective(1100px) translateY(-12px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  }

  .expertise-grid article:hover {
    background: rgba(255, 255, 255, 0.76);
    transform: perspective(900px) translateY(-9px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  }
}

.expertise-grid article {
  overflow: hidden;
  position: relative;
}

.project-card::after {
  background: transparent;
  opacity: 1;
}

/* Immersive motion layer */
.cursor-ring {
  border: 1px solid rgba(95, 130, 200, 0.58);
  border-radius: 50%;
  height: 42px;
  left: var(--pointer-x, 50vw);
  pointer-events: none;
  position: fixed;
  top: var(--pointer-y, 50vh);
  transform: translate(-50%, -50%);
  transition: height 240ms ease, width 240ms ease, border-color 240ms ease;
  width: 42px;
  z-index: 99;
}

.side-rail {
  color: rgba(37, 36, 42, 0.34);
  font-size: 8px;
  letter-spacing: 0.32em;
  pointer-events: none;
  position: fixed;
  text-transform: uppercase;
  top: 50%;
  z-index: 40;
}

.side-rail-left {
  left: 13px;
  transform: translateY(-50%) rotate(-90deg) translateX(calc(var(--scroll-y, 0px) * -0.018));
}

.side-rail-right {
  right: 8px;
  transform: translateY(-50%) rotate(90deg) translateX(calc(var(--scroll-y, 0px) * 0.012));
}

.button,
.nav-contact {
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), background 200ms ease;
}

.button:hover,
.button:focus-visible,
.nav-contact:hover,
.nav-contact:focus-visible {
  transform: translate3d(var(--magnetic-x, 0), calc(var(--magnetic-y, 0px) - 3px), 0);
}

.connection-strip {
  overflow: hidden;
  position: relative;
}

.motion-marquee {
  color: rgba(37, 36, 42, 0.055);
  font-size: clamp(58px, 9vw, 138px);
  font-weight: 600;
  left: 0;
  letter-spacing: -0.04em;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -18px;
  white-space: nowrap;
}

.motion-marquee div {
  animation: marquee-flow 26s linear infinite;
  display: flex;
  gap: 0.24em;
  width: max-content;
}

.motion-marquee i {
  color: rgba(95, 130, 200, 0.16);
  font-style: normal;
  font-weight: 300;
}

.strip-heading,
.connection-items {
  position: relative;
  z-index: 2;
}

.organization-card:hover,
.project-card:hover {
  transform: perspective(1100px) translateY(-12px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.expertise-grid article:hover {
  transform: perspective(900px) translateY(-9px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.organization-card::after,
.project-card::after,
.expertise-grid article::after {
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,0.36), transparent 38%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 350ms ease;
}

.organization-card:hover::after,
.project-card:hover::after,
.expertise-grid article:hover::after {
  opacity: 1;
}

.hero h1 span {
  animation: headline-shimmer 8s ease-in-out infinite;
  background: linear-gradient(100deg, var(--ink) 20%, var(--coral-dark) 50%, var(--ink) 80%);
  background-clip: text;
  background-size: 240% auto;
  color: transparent;
  -webkit-background-clip: text;
}

.hero h1 span:nth-child(2) { animation-delay: 600ms; }
.hero h1 span:nth-child(3) { animation-delay: 1200ms; }

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

@keyframes headline-shimmer {
  0%, 22%, 100% { background-position: 100% center; }
  55%, 72% { background-position: 0 center; }
}

@media (max-width: 900px) {
  .cursor-ring,
  .side-rail { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-ring,
  .side-rail { display: none; }
  .motion-marquee div,
  .hero h1 span { animation: none; }
}

* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

.fill-image {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

::selection {
  background: var(--blush);
  color: var(--ink);
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid rgba(69, 59, 55, 0.08);
  display: flex;
  height: 88px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 5vw, 78px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: baseline;
  display: flex;
  gap: 18px;
}

.brand-en {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.21em;
}

.brand-ja {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.25em;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3.1vw, 50px);
}

.desktop-nav > a:not(.nav-contact) {
  font-size: 14px;
  position: relative;
}

.desktop-nav > a:not(.nav-contact)::after {
  background: var(--coral);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  background: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 999px;
  color: white;
  font-size: 14px;
  padding: 12px 25px;
  transition: background 200ms ease, transform 200ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.mobile-nav {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 8% 91%, rgba(244, 201, 207, 0.55), transparent 25%),
    radial-gradient(circle at 46% 100%, rgba(169, 213, 223, 0.38), transparent 27%),
    var(--warm-white);
  display: grid;
  grid-template-columns: minmax(0, 49fr) minmax(0, 51fr);
  min-height: min(850px, 100svh);
  overflow: hidden;
  padding-top: 88px;
  position: relative;
}

.hero-aura {
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.hero-aura-coral {
  background: var(--blush);
  height: 230px;
  left: -80px;
  top: 34%;
  width: 230px;
}

.hero-aura-sky {
  background: var(--sky);
  bottom: -120px;
  height: 280px;
  left: 34%;
  width: 280px;
}

.hero-copy {
  align-self: center;
  padding: clamp(52px, 7vw, 108px) clamp(30px, 5.6vw, 88px) 52px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  margin: 0 0 38px;
  padding-bottom: 14px;
  position: relative;
}

.eyebrow::after {
  background: var(--coral);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 52px;
}

.hero-role {
  font-family: var(--serif);
  font-size: clamp(13px, 1.3vw, 18px);
  letter-spacing: 0.08em;
  margin: 0 0 22px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(37px, 4.25vw, 65px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.55;
  margin: 0;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-name {
  align-items: baseline;
  display: flex;
  gap: 20px;
  margin-top: 22px;
}

.hero-name p {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 36px);
  letter-spacing: 0.12em;
  margin: 0;
}

.hero-name span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.3em;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 34px;
  margin-top: 31px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  gap: 26px;
  justify-content: center;
  transition: transform 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  border-radius: 999px;
  color: white;
  min-height: 55px;
  padding: 0 27px;
}

.button-link {
  border-bottom: 1px solid var(--coral);
  padding: 14px 2px 10px;
}

.button-link span {
  color: var(--coral-dark);
}

.hero-affiliations {
  align-items: center;
  display: flex;
  gap: 25px;
  margin-top: 38px;
}

.affiliation {
  display: grid;
  gap: 6px;
  opacity: 0.77;
  transition: opacity 200ms ease, transform 200ms ease;
}

.affiliation:hover,
.affiliation:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.affiliation img {
  height: 41px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.affiliation-fi img {
  height: 47px;
  width: 137px;
}

.affiliation-tsunagari img {
  height: 40px;
  width: 175px;
}

.affiliation span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero-visual {
  min-height: 600px;
  padding: clamp(24px, 3vw, 45px) 0 0 14px;
  position: relative;
}

.hero-image-frame {
  border-radius: 150px 0 0 290px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 42px;
}

.hero-image-frame::after {
  background: linear-gradient(180deg, transparent 72%, rgba(37, 36, 42, 0.15));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-image-frame img {
  object-fit: cover;
  object-position: center 44%;
}

.hero-caption {
  bottom: 32px;
  color: white;
  display: flex;
  font-size: 10px;
  gap: 18px;
  left: 70px;
  letter-spacing: 0.22em;
  margin: 0;
  position: absolute;
  z-index: 2;
}

.hero-caption span:not(:last-child)::after {
  content: "·";
  margin-left: 18px;
  opacity: 0.65;
}

.connection-strip {
  background: var(--ivory);
  padding: 49px clamp(24px, 5vw, 78px) 65px;
}

.strip-heading {
  align-items: center;
  display: flex;
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 37px);
  gap: 30px;
  justify-content: center;
  letter-spacing: 0.14em;
  margin: 0 auto 38px;
  text-align: center;
}

.strip-heading::before,
.strip-heading::after {
  background: var(--coral);
  content: "";
  height: 1px;
  max-width: 138px;
  width: 10vw;
}

.connection-items {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1280px;
}

.connection-items article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(69, 59, 55, 0.1);
  border-radius: 20px;
  min-height: 102px;
  padding: 22px 28px;
}

.connection-items span {
  color: var(--coral-dark);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.connection-items p {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.08em;
  margin: 10px 0 0;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 54fr 46fr;
  }

  .hero h1 {
    font-size: clamp(36px, 4.2vw, 52px);
  }

  .hero-affiliations {
    gap: 14px;
  }

  .affiliation-fi img {
    width: 115px;
  }

  .affiliation-tsunagari img {
    width: 145px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 72px;
  }

  .brand-ja,
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .mobile-nav summary {
    cursor: pointer;
    display: grid;
    gap: 7px;
    list-style: none;
    padding: 12px 4px;
    width: 34px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    background: var(--ink);
    height: 1px;
    transition: transform 200ms ease;
    width: 26px;
  }

  .mobile-nav[open] summary span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .mobile-nav[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav nav {
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(54, 43, 38, 0.13);
    display: grid;
    min-width: 210px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: 48px;
  }

  .mobile-nav nav a {
    border-radius: 10px;
    font-size: 14px;
    padding: 13px 15px;
  }

  .mobile-nav nav a:hover,
  .mobile-nav nav a:focus-visible {
    background: var(--ivory);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-copy {
    padding: 64px 24px 32px;
  }

  .hero h1 {
    font-size: clamp(34px, 8.9vw, 53px);
  }

  .hero-affiliations {
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 620px;
    padding: 0;
  }

  .hero-image-frame {
    border-radius: 86px 0 0 180px;
    top: 10px;
  }

  .connection-strip {
    padding-top: 44px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 19px;
  }

  .brand-en {
    font-size: 15px;
  }

  .hero-copy {
    padding-top: 52px;
  }

  .eyebrow {
    margin-bottom: 28px;
  }

  .hero-role {
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 39px);
    line-height: 1.58;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-name {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .button-link {
    align-self: flex-start;
  }

  .hero-affiliations {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-image-frame {
    border-radius: 60px 0 0 125px;
  }

  .hero-caption {
    bottom: 24px;
    left: 28px;
  }

  .connection-strip {
    padding-inline: 18px;
  }

  .strip-heading {
    font-size: 23px;
    gap: 13px;
    letter-spacing: 0.08em;
  }

  .connection-items {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: rise-in 700ms both;
  }

  .hero-copy > :nth-child(2) { animation-delay: 80ms; }
  .hero-copy > :nth-child(3) { animation-delay: 140ms; }
  .hero-copy > :nth-child(4) { animation-delay: 210ms; }
  .hero-copy > :nth-child(5) { animation-delay: 280ms; }
  .hero-copy > :nth-child(6) { animation-delay: 350ms; }

  .hero-image-frame {
    animation: reveal-image 900ms 120ms both cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-image {
  from { clip-path: inset(0 0 100% 0 round 150px 0 0 290px); }
  to { clip-path: inset(0 0 0 0 round 150px 0 0 290px); }
}

:focus-visible {
  outline: 2px solid var(--coral-dark);
  outline-offset: 4px;
}

/* Cinematic motion system */
.scroll-progress {
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--sky-deep));
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  width: 100%;
  z-index: 100;
}

.ambient-pointer {
  background: radial-gradient(circle, rgba(95, 130, 200, 0.15), rgba(184, 216, 234, 0.08) 36%, transparent 70%);
  border-radius: 50%;
  height: 560px;
  left: var(--pointer-x, 50vw);
  mix-blend-mode: multiply;
  opacity: 0.8;
  pointer-events: none;
  position: fixed;
  top: var(--pointer-y, 50vh);
  transform: translate(-50%, -50%);
  transition: left 180ms ease-out, top 180ms ease-out;
  width: 560px;
  z-index: 1;
}

.site-header {
  backdrop-filter: blur(18px) saturate(1.25);
  background: rgba(255, 253, 249, 0.83);
}

.hero::after {
  background-image: linear-gradient(rgba(37, 36, 42, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 36, 42, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 68%);
  pointer-events: none;
  position: absolute;
}

.hero-aura-coral {
  animation: aura-drift-one 9s ease-in-out infinite alternate;
}

.hero-aura-sky {
  animation: aura-drift-two 11s ease-in-out infinite alternate;
}

.hero-image-frame {
  transform: translate3d(0, calc(var(--scroll-y, 0px) * 0.045), 0) scale(1.025);
  transform-origin: center;
}

.hero-image-frame img {
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1), filter 1.3s ease;
}

.hero-visual:hover .hero-image-frame img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.035);
}

.hero-caption {
  animation: caption-float 4s ease-in-out infinite;
}

.connection-items article,
.organization-card,
.expertise-grid article,
.project-card {
  transform-style: preserve-3d;
  transition: border-color 450ms ease, box-shadow 450ms ease, transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.connection-items article:hover,
.expertise-grid article:hover {
  border-color: rgba(95, 130, 200, 0.44);
  box-shadow: 0 24px 70px rgba(64, 46, 41, 0.1);
  transform: translateY(-9px) rotateX(1deg);
}

.organization-card:hover,
.project-card:hover {
  box-shadow: 0 34px 100px rgba(55, 43, 39, 0.13);
  transform: translateY(-12px);
}

.organization-card::before {
  animation: orb-breathe 7s ease-in-out infinite alternate;
}

.vision-orbit {
  animation: orbit-rotate 28s linear infinite;
}

.orbit-two {
  animation-direction: reverse;
  animation-duration: 36s;
}

.values div {
  overflow: hidden;
  position: relative;
  transition: background 350ms ease, transform 350ms ease;
}

.values div::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.values div:hover {
  background: rgba(255,255,255,0.045);
  transform: translateY(-4px);
}

.values div:hover::after {
  transform: translateX(120%);
}

.story-visual img {
  transform: translate3d(0, calc((var(--scroll-y, 0px) - 3200px) * 0.025), 0) scale(1.06);
}

.motion-ready .motion-reveal {
  filter: blur(8px);
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 850ms ease;
  transition-delay: calc(var(--reveal-order, 0) * 65ms);
}

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

@keyframes aura-drift-one {
  from { transform: translate3d(-8px, -12px, 0) scale(0.95); }
  to { transform: translate3d(48px, 34px, 0) scale(1.15); }
}

@keyframes aura-drift-two {
  from { transform: translate3d(-25px, 15px, 0) scale(1); }
  to { transform: translate3d(55px, -34px, 0) scale(1.2); }
}

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

@keyframes orb-breathe {
  from { transform: scale(0.86); opacity: 0.65; }
  to { transform: scale(1.18); opacity: 1; }
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1); }
}

@media (max-width: 900px) {
  .ambient-pointer { display: none; }
  .hero-image-frame,
  .story-visual img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .ambient-pointer { display: none; }
  .motion-ready .motion-reveal {
    filter: none;
    opacity: 1;
    transform: none;
  }
}

.section-shell {
  margin: 0 auto;
  max-width: 1440px;
  padding: 138px clamp(24px, 5.5vw, 84px);
}

.section-kicker {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.section-kicker span {
  color: var(--coral-dark);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.section-kicker p {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.2em;
  margin: 0;
}

.section-kicker p::after {
  background: var(--coral);
  content: "";
  height: 1px;
  width: 50px;
}

.section-heading-row {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  margin-bottom: 64px;
}

.section-heading-row h2,
.profile-copy h2,
.story-content > h2 {
  font-family: var(--serif);
  font-size: clamp(37px, 4.2vw, 61px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin: 0;
}

.section-heading-row > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin: 0;
}

.profile {
  align-items: center;
  background: var(--warm-white);
  display: grid;
  gap: clamp(60px, 8vw, 120px);
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
}

.profile-visual {
  min-height: 620px;
  position: relative;
}

.profile-image {
  border-radius: 170px 28px 170px 28px;
  inset: 0 48px 58px 0;
  overflow: hidden;
  position: absolute;
}

.profile-image img {
  object-fit: cover;
  object-position: center;
}

.profile-image::after {
  background: linear-gradient(180deg, transparent 60%, rgba(37, 36, 42, 0.15));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.profile-badge {
  background: var(--coral);
  border-radius: 18px;
  bottom: 0;
  color: white;
  display: grid;
  padding: 22px 26px;
  position: absolute;
  right: 0;
  width: 210px;
}

.profile-badge span,
.profile-badge small {
  font-size: 8px;
  letter-spacing: 0.18em;
}

.profile-badge strong {
  font-size: 20px;
  letter-spacing: 0.12em;
  margin: 5px 0 15px;
}

.profile-badge small {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  padding-top: 11px;
}

.profile-copy {
  max-width: 690px;
}

.profile-lead {
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 2;
  margin: 38px 0 22px;
}

.profile-body {
  color: var(--muted);
  font-size: 14px;
  line-height: 2.15;
  margin: 0;
}

.role-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 43px 0 0;
}

.role-list div {
  border-bottom: 1px solid var(--line);
  padding: 19px 14px 19px 0;
}

.role-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.role-list div:nth-child(even) {
  padding-left: 24px;
}

.role-list dt {
  font-size: 11px;
  line-height: 1.6;
}

.role-list dd {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 15px;
  margin: 7px 0 0;
}

.vision {
  background: var(--ink);
  color: white;
  overflow: hidden;
  position: relative;
}

.vision-orbit {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.orbit-one {
  height: 650px;
  right: -250px;
  top: -280px;
  width: 650px;
}

.orbit-two {
  bottom: -360px;
  height: 680px;
  left: -250px;
  width: 680px;
}

.vision::after {
  background: radial-gradient(circle, rgba(169, 213, 223, 0.2), transparent 63%);
  content: "";
  height: 520px;
  pointer-events: none;
  position: absolute;
  right: -120px;
  top: -120px;
  width: 520px;
}

.vision-inner {
  position: relative;
  z-index: 1;
}

.section-kicker-light span {
  color: var(--blush);
}

.section-kicker-light p::after {
  background: var(--blush);
}

.vision-grid {
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: 1fr 1fr;
}

.vision-label {
  color: var(--blush);
  font-size: 11px;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
}

.vision h2 {
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin: 0;
}

.vision-origin-quote {
  color: var(--sky);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 29px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 28px 0 0;
}

.vision-message {
  align-self: end;
  border-left: 1px solid rgba(255, 255, 255, 0.19);
  padding-left: clamp(28px, 4vw, 64px);
}

.vision-message p {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 2.15;
  margin: 0;
}

.vision-message p + p {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--sans);
  font-size: 13px;
  margin-top: 25px;
}

.values {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 90px;
}

.values div {
  padding: 25px 20px;
  text-align: center;
}

.values div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.values span {
  color: var(--sky);
  font-size: 8px;
  letter-spacing: 0.24em;
}

.values p {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.15em;
  margin: 8px 0 0;
}

.activities {
  background: var(--warm-white);
}

.activities .section-heading-row h2 {
  font-size: clamp(35px, 3.8vw, 55px);
}

.organization-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
}

.organization-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 55px);
  position: relative;
}

.organization-card::before {
  border-radius: 50%;
  content: "";
  height: 330px;
  pointer-events: none;
  position: absolute;
  right: -150px;
  top: -160px;
  width: 330px;
}

.organization-fi {
  background: linear-gradient(145deg, #f7f8fc, #fffdf9 55%);
}

.organization-fi::before {
  background: rgba(111, 137, 203, 0.15);
}

.organization-connect {
  background: linear-gradient(145deg, #fff9f7, #fffdf9 55%);
}

.organization-connect::before {
  background: rgba(95, 130, 200, 0.15);
}

.organization-number {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
  position: relative;
}

.organization-logo {
  align-items: center;
  display: flex;
  margin: 44px 0 12px;
  min-height: 80px;
}

.organization-logo img {
  height: auto;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.logo-fi-large {
  max-width: 330px;
}

.logo-connect-large {
  max-width: 390px;
}

.organization-role {
  color: var(--coral-dark);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin: 5px 0 32px;
}

.organization-card h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.45vw, 36px);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

.organization-body {
  color: var(--muted);
  font-size: 13px;
  line-height: 2.05;
  margin: 22px 0 26px;
  max-width: 560px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.tag-list li,
.contact-topics span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 8px 12px;
}

.text-link {
  align-items: center;
  align-self: flex-start;
  border-bottom: 1px solid var(--coral);
  display: inline-flex;
  font-size: 12px;
  gap: 26px;
  margin-top: auto;
  padding-bottom: 9px;
}

.text-link span {
  color: var(--coral-dark);
  transition: transform 200ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.ai-initiatives {
  background: var(--ink);
  border-radius: 26px;
  color: white;
  display: grid;
  gap: 0;
  grid-template-columns: 1.05fr 1fr 1fr;
  margin-top: 28px;
  overflow: hidden;
}

.ai-heading,
.ai-initiatives article {
  min-height: 300px;
  padding: clamp(30px, 3.4vw, 50px);
}

.ai-heading {
  background:
    radial-gradient(circle at 15% 100%, rgba(169, 213, 223, 0.28), transparent 48%),
    var(--ink);
}

.ai-heading > span {
  color: var(--sky);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.ai-heading h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.65;
  margin: 38px 0 0;
}

.ai-initiatives article {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
}

.ai-index {
  color: var(--blush);
  font-size: 9px;
}

.ai-name {
  color: var(--sky);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0;
}

.ai-initiatives h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  margin: 20px 0 16px;
}

.ai-initiatives article p:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 2;
  margin: 0;
}

.expertise {
  background: var(--ivory);
}

.expertise-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.expertise-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 270px;
  padding: clamp(27px, 3vw, 44px);
  transition: background 250ms ease, transform 250ms ease;
}

.expertise-grid article:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
}

.expertise-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.expertise-meta span {
  color: var(--coral-dark);
  font-size: 10px;
}

.expertise-meta p {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.14em;
  margin: 0;
}

.expertise-grid h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 50px 0 18px;
}

.expertise-grid article > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
  margin: 0;
}

.projects {
  background: var(--warm-white);
}

.project-list {
  display: grid;
  gap: 24px;
}

.project-card {
  border: 1px solid var(--line);
  border-radius: 25px;
  overflow: hidden;
  padding: clamp(32px, 4.5vw, 64px);
  position: relative;
}

.project-card::after {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  content: "";
  height: 330px;
  position: absolute;
  right: -180px;
  top: -190px;
  width: 330px;
}

.project-card-connect {
  background: linear-gradient(135deg, #fff8f5, #f5fbfc);
}

.project-card-crowd {
  background: linear-gradient(135deg, #f5f7fc, #fffdf9);
}

.project-card-ai {
  background: var(--ink);
  color: white;
}

.project-topline {
  align-items: center;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.16em;
  position: relative;
  z-index: 1;
}

.project-topline span:last-child {
  color: var(--coral-dark);
  letter-spacing: 0.08em;
}

.project-card-ai .project-topline span:last-child {
  color: var(--sky);
}

.project-content {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.3fr 0.7fr;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.project-label {
  color: var(--coral-dark);
  font-size: 10px;
  letter-spacing: 0.12em;
  margin: 0 0 17px;
}

.project-card-ai .project-label {
  color: var(--sky);
}

.project-content h3 {
  font-family: var(--serif);
  font-size: clamp(29px, 3.4vw, 49px);
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

.project-content > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
  margin: 0;
}

.project-card-ai .project-content > p {
  color: rgba(255, 255, 255, 0.57);
}

.region-line {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 17px;
  margin-top: 48px;
  padding-top: 28px;
  position: relative;
  z-index: 1;
}

.region-line span {
  font-size: 9px;
  letter-spacing: 0.15em;
}

.region-line i {
  background: linear-gradient(90deg, var(--blush), var(--sky));
  height: 1px;
  max-width: 70px;
  width: 5vw;
}

.project-stats {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 52px 0 31px;
  position: relative;
  z-index: 1;
}

.project-stats div {
  padding: 26px 28px 28px 0;
}

.project-stats div:not(:last-child) {
  border-right: 1px solid var(--line);
  margin-right: 28px;
}

.project-stats dt {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.project-stats dd {
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 42px);
  margin: 10px 0 0;
}

.project-stats small {
  font-family: var(--sans);
  font-size: 11px;
  margin-left: 5px;
}

.ai-flow {
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin-top: 48px;
  padding-top: 28px;
  position: relative;
  z-index: 1;
}

.ai-flow div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.ai-flow span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.ai-flow strong {
  color: var(--sky);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.ai-flow i {
  align-self: center;
  color: var(--blush);
  font-style: normal;
}

.story {
  background: var(--ivory);
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
  min-height: 900px;
}

.story-visual {
  min-height: 900px;
  overflow: hidden;
  position: relative;
}

.story-visual img {
  object-fit: cover;
  object-position: center top;
}

.story-visual::after {
  background: linear-gradient(180deg, transparent 55%, rgba(37, 36, 42, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.story-statement {
  bottom: 52px;
  color: white;
  left: clamp(26px, 4vw, 60px);
  position: absolute;
  right: 40px;
  z-index: 1;
}

.story-statement span {
  color: var(--blush);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.story-statement p {
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 35px);
  line-height: 1.7;
  margin: 15px 0 0;
}

.story-content {
  padding: 120px clamp(30px, 6vw, 95px);
}

.story-intro {
  color: var(--muted);
  font-size: 13px;
  line-height: 2.1;
  margin: 30px 0 54px;
}

.timeline {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 25px;
  grid-template-columns: 80px 1fr;
  padding: 25px 0;
}

.timeline-year {
  color: var(--coral-dark);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.timeline h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin: 0 0 10px;
}

.timeline p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
  margin: 0;
}

.contact {
  background: linear-gradient(135deg, #fff5f2, #f4fafb 76%);
  overflow: hidden;
  position: relative;
}

.contact-glow {
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
  position: absolute;
}

.contact-glow-one {
  background: rgba(244, 201, 207, 0.55);
  height: 540px;
  left: -260px;
  top: -190px;
  width: 540px;
}

.contact-glow-two {
  background: rgba(169, 213, 223, 0.48);
  bottom: -290px;
  height: 600px;
  right: -280px;
  width: 600px;
}

.contact-inner {
  margin: 0 auto;
  max-width: 900px;
  padding: 145px 24px 140px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.contact-label {
  color: var(--coral-dark);
  font-size: 10px;
  letter-spacing: 0.22em;
  margin: 0 0 30px;
}

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin: 0;
}

.contact-body {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin: 31px auto 30px;
  max-width: 580px;
}

.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.contact-topics span {
  background: rgba(255, 255, 255, 0.52);
}

.contact-actions {
  display: flex;
  gap: 13px;
  justify-content: center;
  margin-top: 39px;
}

.contact-actions .button {
  border-radius: 999px;
  min-height: 58px;
  padding: 0 29px;
}

.contact-button-primary {
  background: var(--coral);
  color: white;
}

.contact-button-secondary {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(69, 59, 55, 0.16);
}

.contact-note {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.05em;
  margin: 20px 0 0;
}

.footer {
  background: var(--ink);
  color: white;
  padding: 70px clamp(24px, 5.5vw, 84px) 28px;
}

.footer-main {
  align-items: end;
  display: flex;
  justify-content: space-between;
}

.footer-brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin: 0;
}

.footer-copyline {
  color: rgba(255, 255, 255, 0.53);
  font-family: var(--serif);
  font-size: 14px;
  margin: 15px 0 0;
}

.footer-main nav {
  display: flex;
  gap: 26px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
  color: white;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 25px;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

@media (max-width: 1100px) {
  .section-heading-row {
    gap: 40px;
    grid-template-columns: 1.35fr 0.65fr;
  }

  .profile {
    gap: 55px;
  }

  .profile-visual {
    min-height: 540px;
  }

  .organization-card {
    min-height: 680px;
  }

  .ai-initiatives {
    grid-template-columns: 0.85fr 1fr 1fr;
  }

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

  .story {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

@media (max-width: 900px) {
  .section-shell {
    padding-block: 100px;
  }

  .section-heading-row,
  .profile,
  .vision-grid,
  .organization-grid,
  .project-content,
  .story {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
    gap: 24px;
  }

  .section-heading-row > p {
    max-width: 600px;
  }

  .profile-visual {
    min-height: 680px;
  }

  .profile-image {
    inset: 0 45px 55px 0;
  }

  .profile-copy {
    max-width: none;
  }

  .vision-message {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.19);
    padding-left: 0;
    padding-top: 40px;
  }

  .values {
    grid-template-columns: repeat(6, minmax(105px, 1fr));
    overflow-x: auto;
  }

  .organization-card {
    min-height: 620px;
  }

  .ai-initiatives {
    grid-template-columns: 1fr;
  }

  .ai-heading,
  .ai-initiatives article {
    min-height: auto;
  }

  .ai-initiatives article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .project-content {
    align-items: start;
    gap: 24px;
  }

  .story-visual {
    min-height: 820px;
  }

  .story-content {
    padding: 95px clamp(24px, 6vw, 58px);
  }

  .footer-main {
    align-items: flex-start;
    gap: 40px;
  }

  .footer-main nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section-shell {
    padding: 82px 19px;
  }

  .section-heading-row {
    margin-bottom: 42px;
  }

  .section-heading-row h2,
  .profile-copy h2,
  .story-content > h2 {
    font-size: 34px;
  }

  .profile-visual {
    min-height: 475px;
  }

  .profile-image {
    border-radius: 86px 18px 86px 18px;
    inset: 0 18px 45px 0;
  }

  .profile-badge {
    padding: 18px 20px;
    width: 178px;
  }

  .profile-lead {
    font-size: 17px;
  }

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

  .role-list div:nth-child(odd) {
    border-right: 0;
  }

  .role-list div:nth-child(even) {
    padding-left: 0;
  }

  .vision h2 {
    font-size: 40px;
  }

  .vision-grid {
    gap: 45px;
  }

  .values {
    margin-top: 62px;
  }

  .organization-card {
    border-radius: 20px;
    min-height: 600px;
    padding: 29px 24px;
  }

  .organization-logo {
    margin-top: 36px;
  }

  .logo-fi-large {
    max-width: 270px;
  }

  .organization-card h3 {
    font-size: 25px;
  }

  .ai-initiatives {
    border-radius: 20px;
  }

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

  .expertise-grid article {
    min-height: 240px;
  }

  .project-card {
    border-radius: 20px;
    padding: 30px 23px;
  }

  .project-content {
    margin-top: 38px;
  }

  .project-content h3 {
    font-size: 29px;
  }

  .region-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .region-line i {
    display: none;
  }

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

  .project-stats div {
    padding: 20px 0;
  }

  .project-stats div:not(:last-child) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    margin-right: 0;
  }

  .ai-flow {
    grid-template-columns: 1fr;
  }

  .ai-flow i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .story-visual {
    min-height: 660px;
  }

  .story-content {
    padding: 82px 19px;
  }

  .timeline li {
    gap: 14px;
    grid-template-columns: 64px 1fr;
  }

  .contact-inner {
    padding: 100px 19px;
  }

  .contact h2 {
    font-size: 42px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer {
    padding: 58px 19px 25px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main nav {
    width: 100%;
  }

  .footer-bottom {
    gap: 16px;
  }

  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* Final interaction overrides */
@media (hover: hover) and (pointer: fine) {
  .organization-card:hover,
  .project-card:hover {
    transform: perspective(1100px) translateY(-12px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  }

  .expertise-grid article:hover {
    background: rgba(255, 255, 255, 0.76);
    transform: perspective(900px) translateY(-9px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  }
}

.expertise-grid article {
  overflow: hidden;
  position: relative;
}

.project-card::after {
  background: transparent;
  opacity: 1;
}

/* Readability and collision fixes */
.side-rail {
  display: none;
}

.section-heading-row h2,
.profile-copy h2,
.vision h2,
.organization-card h3,
.project-content h3,
.story-content > h2,
.contact h2 {
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.section-heading-row,
.profile,
.vision-grid,
.organization-grid,
.project-content,
.story {
  min-width: 0;
}

.section-heading-row > *,
.profile > *,
.vision-grid > *,
.organization-grid > *,
.project-content > *,
.story > * {
  min-width: 0;
}

.organization-logo,
.affiliation {
  isolation: isolate;
  position: relative;
  z-index: 3;
}

.organization-logo img,
.affiliation img {
  background: transparent;
}

.organization-card > *,
.project-card > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 1120px) {
  .section-heading-row {
    gap: 48px;
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.75fr);
  }

  .organization-card h3,
  .project-content h3 {
    font-size: clamp(23px, 2.7vw, 33px);
  }
}

@media (max-width: 900px) {
  .section-heading-row,
  .profile,
  .vision-grid,
  .organization-grid,
  .project-content,
  .story {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
    gap: 26px;
  }

  .motion-marquee {
    opacity: 0.65;
  }
}

@media (max-width: 640px) {
  .section-heading-row h2,
  .profile-copy h2,
  .vision h2,
  .story-content > h2,
  .contact h2 {
    font-size: clamp(32px, 9vw, 43px);
    line-height: 1.48;
  }

  .organization-card h3,
  .project-content h3 {
    font-size: 25px;
    line-height: 1.55;
  }

  .hero h1 span {
    word-break: keep-all;
  }
}

/* Brand-specific color language */
.affiliation-fi span,
.organization-fi .organization-role,
.organization-fi .organization-number {
  color: var(--fi-blue);
}

.affiliation-tsunagari span,
.organization-connect .organization-role,
.organization-connect .organization-number {
  color: var(--connect-red);
}

.organization-fi {
  background:
    radial-gradient(circle at 88% 10%, var(--fi-blue-glow), transparent 34%),
    linear-gradient(145deg, var(--fi-blue-soft), #fffdf9 58%);
  border-color: rgba(49, 95, 168, 0.18);
}

.organization-fi::before {
  background: var(--fi-blue-glow);
}

.organization-connect {
  background:
    radial-gradient(circle at 88% 10%, var(--connect-glow), transparent 34%),
    linear-gradient(145deg, var(--connect-soft), #fffdf9 58%);
  border-color: rgba(227, 93, 79, 0.2);
}

.organization-connect::before {
  background: linear-gradient(145deg, rgba(227, 93, 79, 0.18), rgba(238, 138, 61, 0.2));
}

.organization-fi .tag-list li {
  background: rgba(49, 95, 168, 0.055);
  border-color: rgba(49, 95, 168, 0.2);
  color: var(--fi-blue);
}

.organization-connect .tag-list li {
  background: rgba(238, 138, 61, 0.065);
  border-color: rgba(227, 93, 79, 0.21);
  color: #b95043;
}

.organization-fi .text-link {
  border-color: var(--fi-blue);
  color: var(--fi-blue);
}

.organization-connect .text-link {
  border-color: var(--connect-orange);
  color: #b95043;
}

.project-card-connect {
  background:
    radial-gradient(circle at 92% 8%, rgba(238, 138, 61, 0.2), transparent 29%),
    linear-gradient(135deg, #fff2e8, #fff9f4 48%, #fffdf9);
  border-color: rgba(227, 93, 79, 0.2);
}

.project-card-connect .project-label,
.project-card-connect .project-topline span:first-child {
  color: var(--connect-red);
}

.project-card-connect .region-line i {
  background: linear-gradient(90deg, var(--connect-red), var(--connect-orange));
}

.organization-logo img {
  filter: drop-shadow(0 12px 28px rgba(33, 45, 73, 0.08));
}

/* Use the native system pointer without a decorative follower. */
.cursor-ring,
.ambient-pointer {
  display: none !important;
}

/* Instagram — a live, editorial activity stream */
.instagram {
  background:
    linear-gradient(180deg, rgba(234, 241, 252, 0.72), rgba(255, 253, 249, 0.96)),
    var(--warm-white);
  max-width: none;
  overflow: hidden;
  position: relative;
}

.instagram > *:not(.instagram-aura) {
  margin-inline: auto;
  max-width: 1272px;
  position: relative;
  z-index: 2;
}

.instagram-aura {
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.62;
  pointer-events: none;
  position: absolute;
}

.instagram-aura-one {
  background: rgba(49, 95, 168, 0.15);
  height: 520px;
  right: -240px;
  top: -180px;
  width: 520px;
}

.instagram-aura-two {
  background: rgba(184, 216, 234, 0.34);
  bottom: -260px;
  height: 500px;
  left: -220px;
  width: 500px;
}

.instagram-heading {
  align-items: end;
}

.instagram-heading-copy {
  display: grid;
  gap: 24px;
}

.instagram-heading-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin: 0;
}

.instagram-heading-copy > a {
  align-items: center;
  color: var(--fi-blue);
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 20px;
  letter-spacing: 0.12em;
  width: fit-content;
}

.instagram-heading-copy > a span {
  border: 1px solid rgba(49, 95, 168, 0.24);
  border-radius: 50%;
  display: grid;
  height: 32px;
  place-items: center;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
  width: 32px;
}

.instagram-heading-copy > a:hover span,
.instagram-heading-copy > a:focus-visible span {
  background: var(--fi-blue);
  color: white;
  transform: translate(3px, -3px);
}

.instagram-status {
  align-items: center;
  color: var(--fi-blue);
  display: flex;
  font-size: 9px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 25px;
}

.instagram-status i {
  animation: instagram-live-pulse 2.8s ease-in-out infinite;
  background: #4d8bc5;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(49, 95, 168, 0.1);
  height: 7px;
  width: 7px;
}

.instagram-grid,
.instagram-loading {
  display: grid;
  gap: clamp(14px, 2vw, 25px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.instagram-loading span {
  animation: instagram-loading 1.7s ease-in-out infinite alternate;
  aspect-ratio: 1;
  background: linear-gradient(120deg, rgba(49, 95, 168, 0.08), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(49, 95, 168, 0.09);
  border-radius: 22px;
}

.instagram-loading span:nth-child(2n) {
  animation-delay: 180ms;
}

.instagram-card {
  display: block;
  min-width: 0;
}

.instagram-card figure {
  aspect-ratio: 1;
  background: var(--fi-blue-soft);
  border: 1px solid rgba(49, 95, 168, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(38, 70, 122, 0.09);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.instagram-card img {
  height: 100%;
  object-fit: cover;
  transition: filter 650ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.instagram-card figcaption {
  align-items: flex-end;
  background: linear-gradient(180deg, transparent 50%, rgba(18, 39, 75, 0.72));
  color: white;
  display: flex;
  inset: 0;
  justify-content: space-between;
  padding: 20px;
  position: absolute;
}

.instagram-card figcaption span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.instagram-card figcaption i {
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  display: flex;
  font-style: normal;
  height: 36px;
  justify-content: center;
  transition: background 240ms ease, transform 240ms ease;
  width: 36px;
}

.instagram-card-meta {
  align-items: start;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  margin: 15px 4px 0;
}

.instagram-card-meta p {
  color: var(--muted);
  display: -webkit-box;
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.85;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.instagram-card-meta time {
  color: rgba(37, 36, 42, 0.38);
  font-size: 8px;
  letter-spacing: 0.08em;
  padding-top: 5px;
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.instagram-card:hover figcaption i,
.instagram-card:focus-visible figcaption i {
  background: var(--fi-blue);
  transform: translate(2px, -2px);
}

.instagram-fallback-layout {
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 216, 234, 0.38), transparent 31%),
    rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(49, 95, 168, 0.14);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(35, 67, 118, 0.09);
  display: grid;
  gap: clamp(30px, 5vw, 76px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 64px);
}

.instagram-profile-panel {
  align-self: center;
}

.instagram-profile-index {
  color: var(--fi-blue);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 0;
}

.instagram-handle {
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 43px);
  letter-spacing: 0.02em;
  margin: 28px 0 18px;
}

.instagram-profile-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
  margin: 0;
}

.instagram-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 27px;
}

.instagram-keywords span {
  border: 1px solid rgba(49, 95, 168, 0.18);
  border-radius: 999px;
  color: var(--fi-blue);
  font-size: 8px;
  letter-spacing: 0.14em;
  padding: 8px 11px;
}

.instagram-profile-panel > a {
  align-items: center;
  border-bottom: 1px solid var(--fi-blue);
  color: var(--fi-blue);
  display: inline-flex;
  font-size: 11px;
  gap: 30px;
  margin-top: 36px;
  padding-bottom: 9px;
}

.instagram-profile-panel > a span {
  transition: transform 220ms ease;
}

.instagram-profile-panel > a:hover span,
.instagram-profile-panel > a:focus-visible span {
  transform: translate(3px, -3px);
}

.instagram-editorial-preview {
  height: 520px;
  min-width: 0;
  position: relative;
}

.instagram-preview-image {
  background: var(--fi-blue-soft);
  border: 1px solid rgba(49, 95, 168, 0.13);
  box-shadow: 0 22px 60px rgba(31, 54, 92, 0.12);
  overflow: hidden;
  position: absolute;
}

.instagram-preview-image::after {
  background: linear-gradient(180deg, transparent 62%, rgba(22, 46, 84, 0.28));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.instagram-preview-image img {
  height: 100%;
  object-fit: cover;
  transition: filter 700ms ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.instagram-preview-image:hover img,
.instagram-preview-image:focus-visible img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.04);
}

.instagram-preview-primary {
  border-radius: 24px 24px 24px 7px;
  bottom: 0;
  left: 0;
  top: 0;
  width: calc(64% - 7px);
}

.instagram-preview-primary img {
  object-position: center 42%;
}

.instagram-preview-secondary {
  border-radius: 18px 18px 6px 18px;
  height: calc(48% - 7px);
  right: 0;
  top: 0;
  width: calc(36% - 7px);
}

.instagram-preview-secondary img {
  object-position: center 32%;
}

.instagram-preview-tertiary {
  border-radius: 6px 18px 18px 18px;
  bottom: 0;
  height: calc(52% - 7px);
  right: 0;
  width: calc(36% - 7px);
}

.instagram-preview-tertiary img {
  object-position: center 18%;
}

.instagram-preview-note {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(49, 95, 168, 0.14);
  border-radius: 13px;
  bottom: 20px;
  display: grid;
  gap: 5px;
  left: 20px;
  padding: 14px 17px;
  position: absolute;
  z-index: 2;
}

.instagram-preview-note span {
  color: var(--fi-blue);
  font-family: var(--serif);
  font-size: 14px;
}

.instagram-preview-note small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.17em;
}

@keyframes instagram-live-pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes instagram-loading {
  from { opacity: 0.5; transform: translateY(0); }
  to { opacity: 1; transform: translateY(-4px); }
}

@media (max-width: 900px) {
  .instagram-grid,
  .instagram-loading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .instagram-profile-panel {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .instagram {
    padding-inline: 19px;
  }

  .instagram-heading-copy {
    gap: 17px;
  }

  .instagram-grid,
  .instagram-loading {
    display: flex;
    margin-right: -19px;
    overflow-x: auto;
    padding: 0 19px 18px 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
  }

  .instagram-card,
  .instagram-loading span {
    flex: 0 0 min(80vw, 330px);
    scroll-snap-align: start;
  }

  .instagram-card figure,
  .instagram-loading span {
    border-radius: 18px;
  }

  .instagram-card-meta {
    grid-template-columns: 1fr;
  }

  .instagram-fallback-layout {
    border-radius: 20px;
    padding: 28px 18px;
  }

  .instagram-editorial-preview {
    height: 410px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .instagram-status i,
  .instagram-loading span {
    animation: none;
  }
}
