
:root {
  --brand-deep-blue: #2f50f2;
  --brand-bright-blue: #3a77fc;
  --brand-sky-blue: #389bf4;
  --brand-cyan-blue: #31bdf4;
  --brand-light-aqua: #69d3f4;
  --ink: #172033;
  --ink-soft: #344054;
  --muted: #5b6677;
  --surface: #ffffff;
  --surface-soft: #f4f8ff;
  --border: #dde6f3;
  --deep: #101b4e;
  --shadow-sm: 0 12px 32px rgba(29, 58, 128, .08);
  --shadow-lg: 0 28px 70px rgba(29, 58, 128, .15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-h: 82px;
  --font-sans: "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: var(--font-sans); line-height: 1.8; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
p { margin: 0 0 1.15rem; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.25; letter-spacing: -.025em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.35rem; }
svg { width: 1.2em; height: 1.2em; fill: currentColor; flex: 0 0 auto; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-soft { background: var(--surface-soft); }
.section-deep { color: #fff; background: radial-gradient(circle at 80% 0%, rgba(56,155,244,.3), transparent 35%), linear-gradient(135deg, #101b4e, #1b2d78); }
.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; z-index: 9999; top: 12px; left: 12px; transform: translateY(-150%); background: var(--ink); color: #fff; padding: .65rem 1rem; border-radius: 8px; transition: transform .2s; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--brand-cyan-blue); outline-offset: 4px; }
.eyebrow { margin: 0 0 .8rem; color: var(--brand-deep-blue); font-size: .84rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #aeeeff; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 52px; padding: .78rem 1.35rem; border: 1px solid var(--brand-deep-blue); border-radius: 999px; color: #fff; background: var(--brand-deep-blue); font-weight: 700; line-height: 1.2; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(47,80,242,.25); background: #2442d8; }
.button-small { min-height: 42px; padding: .6rem 1rem; font-size: .9rem; }
.button-outline { color: var(--brand-deep-blue); background: transparent; }
.button-outline:hover { color: #fff; background: var(--brand-deep-blue); }
.button-light { color: var(--brand-deep-blue); background: #fff; border-color: #fff; }
.button-light:hover { color: var(--brand-deep-blue); background: #eff8ff; }
.text-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--brand-deep-blue); font-weight: 700; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.site-header { position: sticky; z-index: 1000; top: 0; height: var(--header-h); border-bottom: 1px solid rgba(221,230,243,.72); background: rgba(255,255,255,.88); backdrop-filter: blur(16px); transition: box-shadow .2s, background .2s; }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(23,32,51,.08); background: rgba(255,255,255,.96); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; min-width: max-content; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand-copy { display: grid; gap: .02rem; line-height: 1.3; }
.brand-copy strong { font-size: 1.08rem; letter-spacing: .08em; }
.brand-copy small { color: var(--muted); font-size: .72rem; letter-spacing: .05em; }
.primary-nav { display: flex; align-items: center; gap: 1.35rem; }
.primary-nav ul { display: flex; align-items: center; gap: .2rem; list-style: none; padding: 0; margin: 0; }
.primary-nav ul a { position: relative; display: block; padding: .75rem .8rem; color: var(--ink-soft); font-size: .94rem; font-weight: 600; }
.primary-nav ul a::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .35rem; height: 2px; border-radius: 2px; background: var(--brand-deep-blue); transform: scaleX(0); transition: transform .2s; }
.primary-nav ul a:hover, .primary-nav ul a[aria-current="page"] { color: var(--brand-deep-blue); }
.primary-nav ul a:hover::after, .primary-nav ul a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 50%; background: var(--surface-soft); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: calc(100vh - var(--header-h)); display: grid; align-items: center; overflow: hidden; background-image: linear-gradient(90deg, rgba(247,250,255,.97) 0%, rgba(247,250,255,.86) 48%, rgba(247,250,255,.44) 100%), url('../images/hero-background.webp'); background-size: cover; background-position: center; }
.hero::after { content: ""; position: absolute; right: -16vw; bottom: -28vw; width: 58vw; height: 58vw; border: 1px solid rgba(47,80,242,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(58,119,252,.035), 0 0 0 160px rgba(49,189,244,.025); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr); align-items: center; gap: 5vw; padding-top: 70px; padding-bottom: 70px; }
.hero-copy h1 { max-width: 780px; font-weight: 800; }
.hero-copy h1 span { color: var(--brand-deep-blue); white-space: nowrap; }
.hero-lead { max-width: 680px; color: var(--ink-soft); font-size: 1.08rem; }
.hero-actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.hero-points { display: flex; gap: 0; max-width: 750px; list-style: none; padding: 0; margin: 3.1rem 0 0; border-top: 1px solid var(--border); }
.hero-points li { flex: 1; display: grid; gap: .2rem; padding: 1.35rem 1.6rem 0 0; }
.hero-points li + li { padding-left: 1.6rem; border-left: 1px solid var(--border); }
.hero-points strong { color: var(--brand-deep-blue); font-size: 1.45rem; }
.hero-points span { color: var(--muted); font-size: .84rem; }
.hero-visual { position: relative; width: min(100%, 520px); aspect-ratio: 1; margin-inline: auto; border-radius: 50%; background: radial-gradient(circle, #fff 0 32%, rgba(255,255,255,.82) 33% 45%, rgba(255,255,255,.38) 46% 60%, rgba(47,80,242,.06) 61%); box-shadow: inset 0 0 0 1px rgba(47,80,242,.08), var(--shadow-lg); }
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(47,80,242,.2); inset: 10%; }
.hero-visual::after { inset: 25%; border-style: solid; border-color: rgba(49,189,244,.2); }
.visual-logo { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 165px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 34px; background: #fff; box-shadow: 0 18px 46px rgba(47,80,242,.18); }
.visual-logo img { width: 122px; }
.orbit-card { position: absolute; display: flex; align-items: center; gap: .55rem; min-width: 112px; padding: .78rem 1rem; border: 1px solid rgba(221,230,243,.85); border-radius: 999px; color: var(--deep); background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); font-weight: 700; }
.orbit-card svg { color: var(--brand-deep-blue); }
.orbit-one { top: 12%; left: 8%; }
.orbit-two { top: 18%; right: 1%; }
.orbit-three { bottom: 16%; right: 3%; }
.visual-caption { position: absolute; bottom: 10%; left: 10%; color: var(--muted); font-size: .86rem; font-weight: 600; letter-spacing: .06em; }

.section-heading { max-width: 760px; margin-bottom: 3.3rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); }
.section-heading.light h2 { color: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.feature-card { display: flex; flex-direction: column; min-height: 420px; padding: 2.15rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(47,80,242,.25); box-shadow: var(--shadow-lg); }
.feature-card p { color: var(--muted); }
.feature-card > a { display: inline-flex; align-items: center; gap: .45rem; margin-top: auto; color: var(--brand-deep-blue); font-weight: 700; }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 1.5rem; border-radius: 16px; color: var(--brand-deep-blue); background: linear-gradient(135deg, rgba(47,80,242,.1), rgba(49,189,244,.14)); }
.icon-box svg { width: 27px; height: 27px; }

.mission-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 8vw; }
.mission-art { position: relative; min-height: 440px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(47,80,242,.12); border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #eaf4ff); }
.mission-art img { position: relative; z-index: 2; width: 220px; }
.water-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(47,80,242,.13); }
.ring-one { width: 390px; height: 390px; box-shadow: 0 0 0 45px rgba(58,119,252,.04), 0 0 0 90px rgba(49,189,244,.025); }
.ring-two { width: 210px; height: 210px; border-color: rgba(49,189,244,.25); }
.mission-copy p:not(.eyebrow) { color: var(--ink-soft); }

.founder-preview, .founder-full { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 7vw; }
.founder-photo, .founder-full figure { margin: 0; position: relative; }
.founder-photo::before, .founder-full figure::before { content: ""; position: absolute; z-index: -1; inset: 28px -28px -28px 28px; border-radius: var(--radius-md); background: linear-gradient(145deg, var(--brand-deep-blue), var(--brand-cyan-blue)); opacity: .12; }
.founder-photo img, .founder-full img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.founder-copy p:not(.eyebrow), .founder-full article p:not(.eyebrow) { color: var(--ink-soft); }

.testimonial-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.testimonial-card { margin: 0; padding: 2rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.testimonial-card blockquote { margin: 0 0 2rem; font-size: 1.25rem; line-height: 1.7; }
.testimonial-card figcaption { display: grid; gap: .1rem; }
.testimonial-card figcaption span { color: rgba(255,255,255,.66); font-size: .88rem; }
.testimonial-light .testimonial-card { color: var(--ink); background: #fff; border-color: var(--border); box-shadow: var(--shadow-sm); }
.testimonial-light .testimonial-card figcaption span { color: var(--muted); }

.cta-section { padding-top: 0; }
.cta-panel { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3.2rem 3.6rem; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(135deg, var(--brand-deep-blue), var(--brand-sky-blue)); box-shadow: var(--shadow-lg); }
.cta-panel::after { content: ""; position: absolute; right: -60px; top: -120px; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 44px rgba(255,255,255,.06), 0 0 0 88px rgba(255,255,255,.035); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { margin: 0; }

.page-hero { position: relative; overflow: hidden; padding: 110px 0 90px; background: linear-gradient(90deg, rgba(247,250,255,.96), rgba(247,250,255,.68)), url('../images/hero-background.webp') center/cover; }
.page-hero::after { content: ""; position: absolute; right: -150px; top: -240px; width: 620px; height: 620px; border: 1px solid rgba(47,80,242,.1); border-radius: 50%; box-shadow: 0 0 0 65px rgba(58,119,252,.035), 0 0 0 130px rgba(49,189,244,.025); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.65rem, 6vw, 4.9rem); }
.page-lead { max-width: 760px; color: var(--muted); font-size: 1.08rem; }

.prose-layout { display: grid; grid-template-columns: 220px 1fr; gap: 6vw; }
.prose-aside { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; padding-top: .5rem; }
.prose-aside span { display: block; color: var(--brand-deep-blue); font-size: 3.6rem; font-weight: 800; line-height: 1; opacity: .2; }
.prose-aside p { color: var(--muted); font-weight: 700; }
.prose-content { max-width: 840px; }
.prose-content p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.04rem; }
.founder-full article p:not(.eyebrow) { white-space: normal; }

.subject-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.subject-card { position: relative; overflow: hidden; min-height: 390px; padding: 2.1rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.subject-card::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 180px; height: 180px; border-radius: 50%; background: rgba(47,80,242,.04); }
.subject-number { position: absolute; top: 1.8rem; right: 1.8rem; color: var(--brand-deep-blue); font-size: .8rem; font-weight: 800; letter-spacing: .14em; }
.subject-card p { color: var(--muted); }
.method-stack { display: grid; gap: 1.25rem; }
.method-row { display: grid; grid-template-columns: 110px 1fr; gap: 2rem; align-items: start; padding: 2.5rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; }
.method-mark { width: 92px; height: 92px; display: grid; place-items: center; border-radius: 24px; color: var(--brand-deep-blue); background: linear-gradient(135deg, rgba(47,80,242,.1), rgba(49,189,244,.18)); }
.method-mark svg { width: 42px; height: 42px; }
.method-row p:not(.eyebrow) { color: var(--muted); }

.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 7vw; }
.container.faq-only { width: min(900px, calc(100% - 48px)); }
.faq-intro { position: sticky; top: calc(var(--header-h) + 40px); }
.faq-intro p:not(.eyebrow) { color: var(--muted); }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.55rem 0; cursor: pointer; font-size: 1.08rem; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { position: relative; width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: var(--surface-soft); }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--brand-deep-blue); transform: translate(-50%,-50%); transition: transform .2s; }
.faq-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { padding: 0 3.4rem 1.45rem 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 7vw; }
.contact-copy p:not(.eyebrow) { color: var(--muted); }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 1rem; padding: 1.35rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s; }
.contact-card:hover { transform: translateY(-3px); border-color: rgba(47,80,242,.28); }
.contact-card > svg { color: var(--brand-deep-blue); }
.contact-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; color: var(--brand-deep-blue); background: var(--surface-soft); }
.contact-icon svg { width: 25px; height: 25px; }
.contact-card span:nth-child(2) { display: grid; }
.contact-card small { color: var(--muted); }
.contact-card strong { font-size: 1.12rem; }
.location-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; padding: 3rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.location-visual { position: relative; min-height: 360px; overflow: hidden; border-radius: var(--radius-md); background: linear-gradient(135deg, #eaf5ff, #f9fcff); }
.map-line { position: absolute; height: 12px; border-radius: 999px; background: #fff; box-shadow: 0 0 0 1px rgba(221,230,243,.75); transform-origin: left center; }
.line-a { width: 120%; left: -10%; top: 28%; transform: rotate(14deg); }
.line-b { width: 110%; left: -8%; top: 65%; transform: rotate(-12deg); }
.line-c { width: 85%; left: 36%; top: -2%; transform: rotate(76deg); }
.map-dot { position: absolute; left: 18%; top: 20%; width: 14px; height: 14px; border-radius: 50%; background: var(--brand-cyan-blue); box-shadow: 210px 160px 0 var(--brand-light-aqua), 280px 30px 0 var(--brand-bright-blue); }
.map-pin { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-65%); width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--brand-deep-blue); box-shadow: 0 16px 36px rgba(47,80,242,.3); }
.map-pin svg { width: 35px; height: 35px; }

.site-footer { padding: 76px 0 22px; color: rgba(255,255,255,.78); background: #0e173d; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 5vw; padding-bottom: 55px; }
.brand-footer { color: #fff; }
.brand-footer .brand-copy small { color: rgba(255,255,255,.62); }
.footer-brand > p { max-width: 460px; margin-top: 1.4rem; color: rgba(255,255,255,.58); }
.footer-heading { margin: 0 0 1.2rem; color: #fff; font-size: 1rem; letter-spacing: .05em; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .72rem; }
.footer-links a:hover, .footer-contact a:hover, .footer-bottom a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: .7rem; }
.footer-contact svg { margin-top: .35rem; color: var(--brand-light-aqua); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: .84rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  :root { --header-h: 74px; }
  .container { width: min(var(--container), calc(100% - 36px)); }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-nav { position: fixed; inset: var(--header-h) 0 auto 0; max-height: calc(100vh - var(--header-h)); overflow-y: auto; display: grid; gap: 1rem; padding: 1.2rem 18px 1.5rem; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.98); box-shadow: 0 20px 40px rgba(23,32,51,.12); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: transform .25s, opacity .2s, visibility .2s; }
  .primary-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .primary-nav ul { display: grid; }
  .primary-nav ul a { padding: .85rem 0; border-bottom: 1px solid var(--border); }
  .primary-nav ul a::after { display: none; }
  .nav-cta { width: 100%; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 90px; padding-bottom: 90px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { width: min(100%, 500px); margin-top: 1.5rem; }
  .feature-grid, .subject-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .mission-grid, .founder-preview, .founder-full, .faq-layout, .contact-grid, .location-panel { grid-template-columns: 1fr; }
  .mission-art { min-height: 390px; }
  .prose-layout { grid-template-columns: 1fr; }
  .prose-aside { position: static; display: flex; align-items: center; gap: 1rem; }
  .prose-aside span { font-size: 2.3rem; }
  .prose-aside p { margin: 0; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1.3fr .7fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy small { display: none; }
  .hero-grid { padding-top: 68px; padding-bottom: 68px; gap: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .text-link { justify-content: center; }
  .hero-points { flex-direction: column; border-top: 0; margin-top: 2rem; }
  .hero-points li, .hero-points li + li { grid-template-columns: 64px 1fr; align-items: center; padding: .8rem 0; border-left: 0; border-top: 1px solid var(--border); text-align: left; }
  .hero-visual { width: 100%; max-width: 380px; }
  .visual-logo { width: 122px; border-radius: 28px; }
  .visual-logo img { width: 90px; }
  .orbit-card { min-width: auto; padding: .58rem .75rem; font-size: .82rem; }
  .visual-caption { display: none; }
  .section-heading { margin-bottom: 2.2rem; }
  .feature-card, .subject-card, .method-row { padding: 1.55rem; }
  .mission-art { min-height: 310px; }
  .mission-art img { width: 160px; }
  .ring-one { width: 260px; height: 260px; }
  .ring-two { width: 150px; height: 150px; }
  .founder-photo::before, .founder-full figure::before { inset: 16px -10px -16px 10px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 1.5rem; }
  .testimonial-card blockquote { font-size: 1.08rem; }
  .cta-panel { align-items: flex-start; flex-direction: column; padding: 2.2rem 1.5rem; border-radius: var(--radius-md); }
  .cta-panel .button { width: 100%; }
  .page-hero { padding: 78px 0 64px; }
  .method-row { grid-template-columns: 1fr; }
  .method-mark { width: 72px; height: 72px; border-radius: 20px; }
  .method-mark svg { width: 34px; height: 34px; }
  .faq-answer { padding-right: 0; }
  .location-panel { padding: 1.5rem; }
  .location-visual { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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