:root {
  --canvas: #f1f5f9;
  --surface: #ffffff;
  --surface-subtle: #f8fafc;
  --sidebar: #0f172a;
  --sidebar-light: #172033;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --foreground: #0f172a;
  --muted: #64748b;
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-subtle: #eef2ff;
  --success: #059669;
  --warning: #d97706;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 18px 45px -28px rgba(15, 23, 42, .34);
  --shadow-float: 0 30px 80px -30px rgba(15, 23, 42, .55);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--foreground);
  background: var(--canvas);
  font-family: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid rgba(99, 102, 241, .45); outline-offset: 3px; }
::selection { background: #c7d2fe; color: var(--foreground); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-light { background: var(--surface); }
.section-soft { background: var(--surface-subtle); }
.section-dark { position: relative; overflow: hidden; color: white; background: var(--sidebar); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; border-radius: 8px; background: white; color: var(--foreground); box-shadow: var(--shadow-card); transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background .2s, border-color .2s, box-shadow .2s; }
.site-header.is-scrolled { border-color: rgba(226, 232, 240, .9); background: rgba(255,255,255,.93); box-shadow: 0 8px 30px -24px rgba(15,23,42,.55); backdrop-filter: blur(18px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 38px; display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 10px; color: white; background: var(--primary); font-weight: 900; box-shadow: 0 10px 25px -14px rgba(79,70,229,.9); }
.brand-mark.large { width: 52px; height: 52px; border-radius: 14px; font-size: 19px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 15px; letter-spacing: .02em; }
.brand-copy small { margin-top: 4px; color: #818cf8; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-header:not(.is-scrolled) .brand-copy strong { color: white; }
.global-navigation { display: flex; align-items: center; gap: 28px; }
.global-navigation > a:not(.button) { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; transition: color .2s; }
.site-header.is-scrolled .global-navigation > a:not(.button) { color: var(--muted); }
.global-navigation > a:not(.button):hover { color: #a5b4fc; }
.site-header.is-scrolled .global-navigation > a:not(.button):hover { color: var(--primary); }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; color: white; background: transparent; cursor: pointer; }
.site-header.is-scrolled .menu-button { border-color: var(--border); color: var(--foreground); }
.menu-button span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 10px; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; border: 1px solid transparent; border-radius: 10px; font-size: 13px; font-weight: 800; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 17px; font-size: 12px; }
.button-large { min-height: 54px; padding-inline: 25px; font-size: 14px; }
.button-primary { color: white; background: var(--primary); box-shadow: 0 16px 34px -18px rgba(79,70,229,.95); }
.button-primary:hover { background: var(--primary-hover); }
.button-ghost { color: white; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.05); }
.button-ghost:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.09); }
.button-white { color: var(--primary); background: white; box-shadow: 0 18px 40px -22px rgba(15,23,42,.6); }
.button-white:hover { background: #f8fafc; }

.hero { min-height: 860px; padding: 160px 0 48px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 72px; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(10px); pointer-events: none; }
.hero-glow-one { width: 650px; height: 650px; right: -220px; top: 40px; background: radial-gradient(circle, rgba(79,70,229,.3), transparent 68%); }
.hero-glow-two { width: 430px; height: 430px; left: -230px; bottom: -200px; background: radial-gradient(circle, rgba(14,165,233,.14), transparent 70%); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: #a5b4fc; font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 25px; height: 2px; border-radius: 999px; background: currentColor; }
.eyebrow-dark { color: var(--primary); }
.hero h1 { max-width: 660px; margin: 0; font-size: clamp(42px, 5vw, 67px); line-height: 1.16; letter-spacing: -.045em; }
.hero h1 em { color: #a5b4fc; font-style: normal; }
.hero-description { max-width: 610px; margin: 27px 0 0; color: #cbd5e1; font-size: 16px; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 24px; margin: 30px 0 0; padding: 0; list-style: none; color: #94a3b8; font-size: 12px; font-weight: 700; }
.hero-points span { margin-right: 5px; color: #34d399; }
.hero-visual { position: relative; }
.browser-mockup {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 22px;
  background-color: #101a2e;
  box-shadow: var(--shadow-float);
  transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.browser-mockup:hover {
  transform: perspective(1300px) rotateY(-1deg) rotateX(0.5deg);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}
.browser-toolbar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.76);
  flex-shrink: 0;
}
.browser-toolbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #475569;
}
.browser-toolbar small {
  margin-left: auto;
  color: #64748b;
  font-size: 9px;
  letter-spacing: .06em;
}
.browser-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; min-width: 150px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: white; background: rgba(30,41,59,.92); box-shadow: 0 20px 40px -20px rgba(0,0,0,.65); backdrop-filter: blur(12px); }
.floating-card-top { right: -22px; top: 72px; }
.floating-card-bottom { left: -30px; bottom: 55px; }
.floating-card small { display: block; margin-bottom: 3px; color: #94a3b8; font-size: 9px; }
.floating-card strong { font-size: 13px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 5px rgba(52,211,153,.1); }
.mini-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: #c7d2fe; background: rgba(79,70,229,.25); }
.hero-summary { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 17px; margin-top: 90px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.09); color: #64748b; font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.hero-summary i { width: 3px; height: 3px; border-radius: 50%; background: #475569; }

.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .statement-copy h2, .people-copy h2, .security-copy h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.35; letter-spacing: -.035em; }
.section-heading > p:last-child, .statement-copy > p, .people-copy > p, .security-copy > p { margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 2; }
.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.challenge-card { position: relative; min-height: 300px; padding: 34px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-card); }
.card-number { position: absolute; right: 22px; top: 16px; color: #eef2f7; font-size: 58px; font-weight: 900; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 46px; border-radius: 12px; color: var(--primary); background: var(--primary-subtle); font-size: 20px; font-weight: 900; }
.challenge-card h3 { position: relative; margin: 0; font-size: 19px; }
.challenge-card p { position: relative; margin: 15px 0 0; color: var(--muted); font-size: 13px; line-height: 1.9; }

.statement-section { background: linear-gradient(180deg, #f8fafc, #eef2ff); }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.check-list { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; color: #334155; font-size: 13px; font-weight: 700; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; }
.check-list span { width: 23px; height: 23px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--success); background: #d1fae5; font-size: 11px; }
.workflow-orbit { position: relative; aspect-ratio: 1; max-width: 520px; margin-inline: auto; border: 1px solid #dbeafe; border-radius: 50%; background: radial-gradient(circle, white 0 24%, transparent 24.5%), radial-gradient(circle, rgba(79,70,229,.04), transparent 67%); }
.workflow-orbit::before, .workflow-orbit::after { content: ""; position: absolute; border: 1px dashed #c7d2fe; border-radius: 50%; }
.workflow-orbit::before { inset: 14%; }
.workflow-orbit::after { inset: 29%; }
.orbit-center { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; font-size: 12px; }
.orbit-item { position: absolute; z-index: 3; min-width: 92px; padding: 12px 15px; border: 1px solid var(--border); border-radius: 12px; background: white; box-shadow: var(--shadow-card); font-size: 12px; font-weight: 800; }
.orbit-item span { display: block; margin-bottom: 3px; color: var(--primary); font-size: 8px; letter-spacing: .12em; }
.orbit-one { left: 14%; top: 5%; }
.orbit-two { right: 5%; top: 24%; }
.orbit-three { right: 9%; bottom: 16%; }
.orbit-four { left: 23%; bottom: 4%; }
.orbit-five { left: -2%; bottom: 27%; }
.orbit-six { left: -1%; top: 26%; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature-card { position: relative; min-height: 320px; padding: 35px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-card); }
.feature-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 70px; min-height: 410px; padding: 48px; }
.feature-tag { display: inline-block; margin-bottom: 18px; padding: 7px 10px; border-radius: 999px; color: var(--primary); background: var(--primary-subtle); font-size: 9px; font-weight: 900; letter-spacing: .09em; }
.feature-card h3 { max-width: 570px; margin: 0; font-size: 23px; line-height: 1.55; letter-spacing: -.02em; }
.feature-card p { margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.feature-card ul { display: flex; flex-wrap: wrap; gap: 9px; margin: 23px 0 0; padding: 0; list-style: none; }
.feature-card li { padding: 8px 11px; border-radius: 8px; color: #475569; background: #f1f5f9; font-size: 10px; font-weight: 800; }
.feature-index { position: absolute; right: 24px; top: 21px; color: #e2e8f0; font-size: 38px; font-weight: 900; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 40px; border-radius: 13px; color: white; background: var(--sidebar); font-size: 16px; font-weight: 900; }
.mini-ui { padding: 20px; border: 1px solid #dbeafe; border-radius: 16px; background: #f8fafc; box-shadow: 0 30px 70px -38px rgba(15,23,42,.55); }
.mini-ui-header { display: flex; align-items: center; gap: 9px; margin-bottom: 17px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.mini-ui-header span { width: 24px; height: 24px; border-radius: 7px; background: var(--primary); }
.mini-ui-header b { font-size: 11px; }
.mini-ui-header small { margin-left: auto; color: var(--muted); font-size: 9px; }
.calendar-row { display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 10px; margin-top: 8px; padding: 12px; border-radius: 9px; background: white; box-shadow: 0 1px 0 var(--border); }
.calendar-row i { color: var(--muted); font-size: 9px; font-style: normal; }
.calendar-row strong { font-size: 10px; }
.calendar-row em { padding: 5px 7px; border-radius: 999px; color: #4338ca; background: #eef2ff; font-size: 7px; font-style: normal; font-weight: 900; }
.calendar-row em.green { color: #047857; background: #ecfdf5; }
.calendar-row em.amber { color: #b45309; background: #fffbeb; }
.feature-card-dark { border-color: #1e293b; color: white; background: var(--sidebar); }
.feature-card-dark p { color: #94a3b8; }
.feature-card-dark li { color: #cbd5e1; background: #1e293b; }
.feature-tag-dark { color: #c7d2fe; background: rgba(79,70,229,.24); }
.metric-panel { display: grid; gap: 11px; }
.metric-panel > div { padding: 19px 21px; border: 1px solid #273449; border-radius: 12px; background: #111c2f; }
.metric-panel small { display: block; margin-bottom: 7px; color: #64748b; font-size: 9px; }
.metric-panel strong { font-size: 24px; }
.metric-panel span { float: right; margin-top: 7px; color: #34d399; font-size: 8px; font-weight: 800; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 9%; right: 9%; top: 27px; height: 1px; background: #cbd5e1; }
.timeline > li { position: relative; padding: 0 12px; text-align: center; }
.timeline > li > span { position: relative; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 28px; border: 7px solid white; border-radius: 50%; color: white; background: var(--primary); box-shadow: 0 0 0 1px #c7d2fe; font-size: 10px; font-weight: 900; }
.timeline small { color: var(--primary); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.timeline h3 { margin: 8px 0 0; font-size: 17px; }
.timeline p { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }

.people-section { background: linear-gradient(135deg, #eef2ff, #f8fafc 52%, #ecfeff); }
.people-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.people-visual {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  box-shadow: var(--shadow-card);
  background-color: white;
  aspect-ratio: 4 / 3;
}
.people-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.people-visual:hover .people-image {
  transform: scale(1.04);
}
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.role-grid div { padding: 17px; border: 1px solid rgba(203,213,225,.8); border-radius: 11px; background: rgba(255,255,255,.75); }
.role-grid strong { display: block; font-size: 12px; }
.role-grid span { display: block; margin-top: 6px; color: var(--muted); font-size: 10px; }

.security-section { padding-top: 125px; padding-bottom: 125px; }
.security-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; }
.security-copy > p { color: #94a3b8; }
.security-copy .security-note { margin-top: 23px; color: #64748b; font-size: 10px; line-height: 1.8; }
.security-list { display: grid; gap: 12px; }
.security-list article { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 22px; border: 1px solid #263246; border-radius: 13px; background: rgba(30,41,59,.46); }
.security-list article > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 9px; color: #a5b4fc; background: rgba(79,70,229,.2); font-size: 9px; font-weight: 900; }
.security-list h3 { margin: 1px 0 0; font-size: 14px; }
.security-list p { margin: 8px 0 0; color: #94a3b8; font-size: 11px; line-height: 1.7; }

.cta-section { background: white; }
.cta-panel { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 60px; overflow: hidden; padding: 64px; border-radius: 24px; color: white; background: linear-gradient(125deg, #312e81, #4f46e5 62%, #6366f1); box-shadow: 0 35px 80px -42px rgba(49,46,129,.75); }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.4; letter-spacing: -.035em; }
.cta-panel p:not(.eyebrow) { max-width: 680px; margin: 20px 0 0; color: #e0e7ff; font-size: 14px; line-height: 1.9; }
.cta-glow { position: absolute; z-index: 1; width: 480px; height: 480px; right: -200px; top: -220px; border-radius: 50%; background: rgba(255,255,255,.12); }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 13px; }
.cta-actions span { color: #c7d2fe; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.site-footer { padding: 46px 0; color: #94a3b8; background: var(--sidebar); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.footer-brand .brand-copy strong { color: white; }
.footer-inner > p { margin: 0; font-size: 10px; text-align: center; }
.footer-meta { display: flex; justify-content: flex-end; align-items: center; gap: 18px; font-size: 9px; }
.footer-meta a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .hero { min-height: auto; padding-top: 138px; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 760px; }
  .hero-summary { margin-top: 75px; }
  .statement-grid, .people-grid, .security-grid { gap: 55px; }
  .feature-card-wide { gap: 38px; }
  .global-navigation { gap: 19px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .menu-button { display: block; }
  .global-navigation { position: fixed; inset: 76px 16px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--border); border-radius: 14px; background: white; box-shadow: var(--shadow-float); }
  .global-navigation.is-open { display: flex; }
  .global-navigation > a:not(.button), .site-header:not(.is-scrolled) .global-navigation > a:not(.button) { padding: 13px 12px; color: var(--foreground); }
  .global-navigation .button { margin-top: 7px; }
  .statement-grid, .people-grid, .security-grid { grid-template-columns: 1fr; }
  .workflow-orbit { width: min(100%, 520px); }
  .feature-card-wide { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 42px 18px; }
  .timeline::before { display: none; }
  .cta-panel { grid-template-columns: 1fr; padding: 48px; }
  .cta-actions { align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-meta { justify-content: center; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .header-inner { min-height: 68px; }
  .global-navigation { top: 68px; }
  .hero { padding-top: 118px; padding-bottom: 38px; }
  .hero h1 { font-size: 40px; }
  .hero-description { font-size: 14px; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 11px; }
  .browser-mockup { transform: none; }
  .browser-mockup:hover { transform: none; }
  .floating-card-top { right: -8px; top: 56px; }
  .floating-card-bottom { left: -6px; bottom: 26px; }
  .hero-summary { justify-content: flex-start; margin-top: 60px; }
  .challenge-grid, .feature-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: auto; padding: 32px; }
  .challenge-card, .feature-card { min-height: auto; padding: 28px; }
  .statement-grid, .people-grid, .security-grid { gap: 42px; }
  .workflow-orbit { transform: scale(.92); margin-block: -20px; }
  .orbit-item { min-width: 78px; padding: 9px 11px; font-size: 10px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline > li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; text-align: left; }
  .timeline > li > span { margin: 0; }
  .people-visual { aspect-ratio: auto; min-height: 350px; }
  .role-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 38px 28px; }
  .cta-actions, .cta-actions .button { width: 100%; }
}

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