:root {
  --yellow: #f6c400;
  --yellow-bright: #ffdc45;
  --yellow-soft: #fff4bc;
  --ink: #17181f;
  --ink-2: #22242d;
  --charcoal: #2d3039;
  --muted: #6d717a;
  --line: #dedfe2;
  --paper: #f4f3ef;
  --paper-2: #ecebe6;
  --white: #fff;
  --container: 1220px;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 30px 90px rgba(20, 21, 28, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
body { margin: 0; overflow-x: hidden; background: #fff; color: var(--charcoal); font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
::selection { background: var(--yellow); color: var(--ink); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: -80px; left: 18px; padding: 12px 18px; border-radius: 8px; background: var(--yellow); color: var(--ink); font-weight: 850; }
.skip-link:focus { top: 16px; }
.page-progress { position: fixed; z-index: 1000; inset: 0 0 auto; height: 3px; pointer-events: none; }
.page-progress i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,var(--yellow),var(--yellow-bright)); box-shadow: 0 0 12px rgba(246,196,0,.55); transform: scaleX(0); transform-origin: left center; will-change: transform; }

.utility-bar { height: 34px; overflow: hidden; background: #101116; color: rgba(255,255,255,.57); font-size: .72rem; letter-spacing: .02em; transition: height .35s ease, opacity .25s ease, transform .35s ease; }
.utility-bar__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-bar p, .utility-bar div { margin: 0; display: flex; align-items: center; gap: 11px; }
.utility-bar a { transition: color .2s ease; }
.utility-bar a:hover { color: var(--yellow); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(246,196,0,.12); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; }
.nav-container { position: relative; }
.nav-shell { height: 82px; margin-top: 12px; padding: 0 18px 0 25px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(27,28,36,.97); box-shadow: 0 18px 48px rgba(17,18,24,.17); backdrop-filter: blur(16px); transition: height .35s ease, margin .35s ease, background .35s ease, box-shadow .35s ease; }
.site-header.is-scrolled .utility-bar { height: 0; opacity: 0; transform: translateY(-100%); }
.site-header.is-scrolled .nav-shell { height: 68px; margin-top: 8px; background: rgba(23,24,31,.93); box-shadow: 0 16px 45px rgba(14,15,20,.22); }
.brand { flex: 0 0 auto; }
.brand img { width: 172px; }
.primary-nav { display: flex; align-items: center; gap: 21px; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 3px; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link { position: relative; min-height: 49px; padding: 0 13px; display: inline-flex; align-items: center; gap: 7px; border: 0; background: none; color: rgba(255,255,255,.76); font-size: .86rem; font-weight: 760; cursor: pointer; transition: color .2s ease; }
.nav-link::after { position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px; border-radius: 2px; background: var(--yellow); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-trigger[aria-expanded="true"]::after { transform: scaleX(1); transform-origin: left; }
.nav-link:hover, .nav-link:focus-visible, .nav-trigger[aria-expanded="true"] { color: var(--yellow); outline: 0; }
.nav-trigger > span { font-size: 1rem; transform: translateY(-2px); transition: transform .2s ease; }
.nav-trigger[aria-expanded="true"] > span { transform: rotate(180deg) translateY(2px); }
.portal-cta { min-height: 47px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; border-radius: 11px; background: var(--yellow); color: var(--ink); font-size: .84rem; font-weight: 850; transition: background .2s ease, transform .2s ease; }
.portal-cta:hover { background: var(--yellow-bright); transform: translateY(-2px); }
.menu-toggle { display: none; align-items: center; gap: 12px; border: 0; background: none; color: #fff; font-size: .77rem; font-weight: 800; cursor: pointer; }
.menu-toggle i, .menu-toggle i::before, .menu-toggle i::after { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--yellow); content: ""; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle i { position: relative; }
.menu-toggle i::before { position: absolute; top: -7px; }
.menu-toggle i::after { position: absolute; top: 7px; }
.menu-toggle[aria-expanded="true"] i { background: transparent; }
.menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

.mega-panel { position: absolute; top: calc(100% + 15px); visibility: hidden; opacity: 0; pointer-events: none; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: #1c1e26; color: #fff; box-shadow: 0 30px 80px rgba(10,11,16,.32); transform: translateY(9px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.mega-panel::before { position: absolute; inset: -16px 0 auto; height: 17px; content: ""; }
.nav-trigger[aria-expanded="true"] + .mega-panel { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.mega-panel--services { right: -300px; width: min(790px, calc(100vw - 60px)); padding: 29px; display: grid; grid-template-columns: .9fr 1.4fr; gap: 27px; }
.mega-intro { padding: 6px 24px 5px 2px; border-right: 1px solid rgba(255,255,255,.1); }
.micro-label { display: block; margin-bottom: 14px; color: #947000; font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.mega-intro .micro-label { color: var(--yellow); }
.mega-intro h2 { margin-bottom: 12px; color: #fff; font-size: 1.75rem; line-height: 1.05; letter-spacing: -.04em; }
.mega-intro p { color: rgba(255,255,255,.53); font-size: .8rem; line-height: 1.55; }
.mega-links { display: grid; gap: 5px; }
.mega-links a { padding: 10px 11px; display: flex; align-items: center; gap: 14px; border-radius: 12px; transition: background .2s ease; }
.mega-links a:hover { background: rgba(255,255,255,.07); }
.mega-links b { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; color: var(--yellow); font-size: .64rem; }
.mega-links strong, .mega-links small { display: block; }
.mega-links strong { font-size: .83rem; }
.mega-links small { color: rgba(255,255,255,.45); font-size: .69rem; }
.mega-panel--compact { right: -105px; width: 340px; padding: 14px; }
.mega-panel--company { left: -18px; right: auto; }
.mega-panel--compact a { padding: 12px 14px; display: block; border-radius: 10px; transition: background .2s ease; }
.mega-panel--compact a:hover { background: rgba(255,255,255,.07); }
.mega-panel--compact strong, .mega-panel--compact small { display: block; }
.mega-panel--compact strong { font-size: .83rem; }
.mega-panel--compact small { color: rgba(255,255,255,.45); font-size: .68rem; }

.hero { position: relative; min-height: 960px; padding: 176px 0 56px; overflow: hidden; background: var(--paper); }
.hero::after { position: absolute; inset: auto 0 0; height: 190px; background: linear-gradient(transparent,rgba(255,255,255,.25)); content: ""; pointer-events: none; }
.hero-orbit { position: absolute; border: 1px solid rgba(31,33,41,.07); border-radius: 50%; }
.hero-orbit--one { width: 690px; height: 690px; left: -450px; top: 190px; box-shadow: 0 0 0 100px rgba(246,196,0,.025),0 0 0 230px rgba(246,196,0,.018); }
.hero-orbit--two { width: 520px; height: 520px; right: -290px; bottom: 20px; box-shadow: 0 0 0 100px rgba(31,33,41,.018); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; }
.hero-copy { padding: 34px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 19px; color: #8b6900; font-size: .72rem; font-weight: 850; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { width: 26px; height: 2px; background: var(--yellow); content: ""; }
.eyebrow--light { color: rgba(255,255,255,.65); }
.eyebrow--dark { color: rgba(23,24,31,.62); }
.hero h1 { max-width: 650px; margin-bottom: 24px; color: var(--ink); font-size: clamp(3.55rem,5.7vw,6.1rem); font-weight: 840; letter-spacing: -.068em; line-height: .91; }
h1 em, h2 em { color: #85878e; font-style: normal; font-weight: 600; }
.hero-copy > p { max-width: 600px; margin-bottom: 29px; color: #63666f; font-size: 1.02rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.button { position: relative; min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; overflow: hidden; border-radius: 12px; font-size: .85rem; font-weight: 820; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button::before { position: absolute; width: 38px; height: 140%; left: -75px; top: -20%; background: rgba(255,255,255,.2); content: ""; transform: rotate(20deg); transition: left .5s ease; }
.button:hover::before { left: calc(100% + 35px); }
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--ink); color: #fff; box-shadow: 0 12px 25px rgba(23,24,31,.12); }
.button--dark:hover { background: #2b2d36; }
.button--yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 12px 25px rgba(0,0,0,.16); }
.button--yellow:hover { background: var(--yellow-bright); }
.button--ghost { border: 1px solid #cbccd0; background: rgba(255,255,255,.4); color: var(--ink); }
.button--ghost:hover { border-color: #999ca3; background: #fff; }
.hero-proof { margin-top: 45px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #d6d6d3; }
.hero-proof div { padding: 19px 16px 0 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: var(--ink); font-size: 1.35rem; letter-spacing: -.04em; }
.hero-proof span { color: var(--muted); font-size: .66rem; }

.product-stage { position: relative; height: 660px; overflow: hidden; border: 8px solid rgba(255,255,255,.7); border-radius: 36px; background: #292b34; box-shadow: var(--shadow); isolation: isolate; }
.product-stage__backdrop { position: absolute; z-index: -3; inset: -35px; width: calc(100% + 70px); height: calc(100% + 70px); object-fit: cover; filter: blur(38px) saturate(.78); opacity: .48; transform: scale(1.08); transition: opacity .35s ease; }
.product-stage__wash { position: absolute; z-index: -2; inset: 0; background: linear-gradient(145deg,rgba(18,19,25,.8),rgba(24,25,32,.52) 52%,rgba(16,17,22,.91)); }
.product-stage::after { position: absolute; z-index: -1; width: 380px; height: 380px; right: -180px; bottom: -190px; border-radius: 50%; background: var(--yellow); content: ""; opacity: .9; }
.product-stage__head { position: absolute; z-index: 5; left: 30px; right: 30px; top: 25px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.62); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-stage__head > span { display: flex; align-items: center; gap: 9px; }
.product-stage__head i { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(246,196,0,.14); }
.product-stage__head strong { letter-spacing: .04em; }
.product-stage__head b { color: var(--yellow); font-size: .8rem; }
.product-cover { position: absolute; z-index: 3; left: 50%; top: 85px; width: 270px; height: 385px; padding: 0; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; transform: translateX(-50%); }
.product-cover__glow { position: absolute; width: 290px; height: 290px; border-radius: 50%; background: radial-gradient(circle,rgba(246,196,0,.25),transparent 68%); filter: blur(8px); }
.product-cover img { position: relative; z-index: 2; max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 3px; filter: drop-shadow(0 30px 30px rgba(0,0,0,.42)); transition: opacity .25s ease, transform .4s cubic-bezier(.2,.8,.2,1); }
.product-cover:hover img { transform: translateY(-6px) rotate(-.8deg); }
.product-cover__badge { position: absolute; z-index: 3; right: -21px; top: 33px; padding: 8px 11px; border-radius: 8px; background: var(--yellow); color: var(--ink); font-size: .62rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.product-peek { position: absolute; z-index: 1; top: 178px; width: 112px; height: 170px; opacity: .36; filter: saturate(.6); }
.product-peek img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 15px 18px rgba(0,0,0,.35)); }
.product-peek--left { left: -28px; transform: rotate(-6deg); }
.product-peek--right { right: -26px; transform: rotate(6deg); }
.carousel-button { position: absolute; z-index: 7; top: 50%; width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(23,24,31,.55); color: #fff; cursor: pointer; backdrop-filter: blur(10px); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.carousel-button:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); transform: scale(1.05); }
.carousel-button--prev { left: 26px; }.carousel-button--next { right: 26px; }
.product-stage__info { position: absolute; z-index: 5; left: 32px; right: 32px; bottom: 65px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; color: #fff; transition: opacity .25s ease, transform .25s ease; }
.product-stage__info small { display: block; margin-bottom: 6px; color: var(--yellow); font-size: .62rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.product-stage__info h2 { max-width: 440px; margin: 0; color: #fff; font-size: 1.55rem; line-height: 1.1; letter-spacing: -.04em; }
.product-stage__info > button { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #fff; color: var(--ink); font-weight: 900; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.product-stage__info > button:hover { background: var(--yellow); transform: rotate(8deg); }
.carousel-progress { position: absolute; z-index: 5; left: 210px; right: 32px; bottom: 27px; height: 2px; overflow: hidden; background: rgba(255,255,255,.15); }
.carousel-progress i { display: block; width: 0; height: 100%; background: var(--yellow); }
.carousel-progress i.is-running { animation: carousel-progress 6s linear both; }
.carousel-dots { position: absolute; z-index: 7; left: 32px; bottom: 20px; display: flex; align-items: center; gap: 6px; }
.carousel-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 8px; background: rgba(255,255,255,.3); cursor: pointer; transition: width .25s ease, background .25s ease, transform .25s ease; }
.carousel-dots button:hover { background: rgba(255,255,255,.75); transform: scale(1.2); }
.carousel-dots button[aria-current="true"] { width: 22px; background: var(--yellow); }
@keyframes carousel-progress { from { width: 0; } to { width: 100%; } }
.product-stage.is-changing .product-cover img, .product-stage.is-changing .product-stage__info { opacity: 0; transform: translateY(8px); }
.hero-footnote { position: relative; z-index: 2; margin-top: 35px; display: flex; align-items: center; gap: 15px; color: #8b8e95; font-size: .65rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.hero-footnote i { width: 80px; height: 1px; background: #c2c3c6; }

.brand-band { position: relative; z-index: 3; overflow: hidden; padding: 20px 0; background: linear-gradient(105deg,#f2bc00,var(--yellow) 42%,#ffd52f); color: var(--ink); box-shadow: inset 0 1px rgba(255,255,255,.38),inset 0 -1px rgba(23,24,31,.1); }
.brand-band::before { position: absolute; inset: 0; background: radial-gradient(circle at 16% 0,rgba(255,255,255,.3),transparent 29%),repeating-linear-gradient(115deg,transparent 0,transparent 42px,rgba(255,255,255,.055) 42px,rgba(255,255,255,.055) 43px); content: ""; pointer-events: none; }
.brand-band__inner { position: relative; display: grid; grid-template-columns: 210px 1fr; gap: 18px; align-items: stretch; }
.brand-band__lead { min-height: 74px; padding: 14px 19px; display: flex; flex-direction: column; justify-content: center; border-radius: 15px; background: var(--ink); color: #fff; box-shadow: 0 13px 30px rgba(23,24,31,.17); }
.brand-band__lead span { color: var(--yellow); font-size: .54rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.brand-band__lead strong { margin-top: 2px; font-size: .98rem; letter-spacing: -.025em; }
.brand-band__values { display: grid; grid-template-columns: repeat(5,1fr); align-items: stretch; }
.brand-band__values > span { position: relative; min-width: 0; padding: 12px 17px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(23,24,31,.13); border-radius: 11px; transition: background .25s ease, transform .25s ease; }
.brand-band__values > span::after { position: absolute; right: 13px; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: rgba(23,24,31,.22); content: ""; transform: translateY(-50%); transition: background .25s ease, box-shadow .25s ease; }
.brand-band__values > span:hover { z-index: 2; background: rgba(255,255,255,.22); transform: translateY(-2px); }
.brand-band__values > span:hover::after { background: var(--ink); box-shadow: 0 0 0 5px rgba(23,24,31,.08); }
.brand-band__values i { color: rgba(23,24,31,.48); font-size: .5rem; font-style: normal; font-weight: 850; letter-spacing: .08em; }
.brand-band__values b { margin-top: 3px; overflow: hidden; color: var(--ink); font-size: .74rem; font-weight: 900; letter-spacing: .015em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }

.section { padding: 120px 0; }
.profile-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 92px; align-items: center; }
.profile-statement h2, .section-heading h2, .flow-copy h2, .info-copy h2 { color: var(--ink); font-size: clamp(2.5rem,4.7vw,4.65rem); line-height: 1; letter-spacing: -.06em; }
.profile-statement p, .info-copy p { max-width: 570px; color: var(--muted); font-size: .94rem; }
.arrow-link { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-size: .8rem; font-weight: 850; }
.arrow-link span { color: #9a7400; transition: transform .2s ease; }
.arrow-link:hover span { transform: translateX(4px); }
.arrow-link--light { color: #fff; }
.arrow-link--light span { color: var(--yellow); }
.profile-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.profile-card { position: relative; min-height: 230px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border-radius: var(--radius); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease; }
.profile-card:hover { z-index: 2; transform: translateY(-7px) rotate(-.4deg); box-shadow: 0 22px 50px rgba(23,24,31,.12); }
.profile-card:nth-child(2):hover { transform: translateY(-7px) rotate(.4deg); }
.profile-card > span { color: rgba(23,24,31,.48); font-size: .65rem; font-weight: 850; }
.profile-card h3 { margin-bottom: 5px; color: var(--ink); font-size: 1.45rem; letter-spacing: -.04em; }
.profile-card p { margin: 0; color: rgba(23,24,31,.62); font-size: .76rem; line-height: 1.55; }
.profile-card--yellow { background: var(--yellow); }
.profile-card--light { border: 1px solid var(--line); background: #fff; }
.profile-card--dark { min-height: 180px; grid-column: 1 / -1; flex-direction: row; align-items: flex-end; background: var(--ink); color: #fff; }
.profile-card--dark > span { position: absolute; top: 26px; color: rgba(255,255,255,.35); }
.profile-card--dark h3 { color: #fff; }
.profile-card--dark p { max-width: 440px; color: rgba(255,255,255,.5); }
.profile-card--dark b { position: absolute; right: -8px; bottom: -55px; color: rgba(255,255,255,.05); font-size: 10rem; line-height: 1; letter-spacing: -.1em; }

.services { background: var(--paper); }
.section-heading { margin-bottom: 48px; display: grid; grid-template-columns: 1fr .52fr; gap: 70px; align-items: end; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin: 0 0 7px; color: var(--muted); font-size: .88rem; }
.service-explorer { overflow: hidden; border: 1px solid #d8d8d5; border-radius: var(--radius-lg); background: #fff; box-shadow: 0 28px 85px rgba(26,27,34,.09); }
.tab-list { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid #e2e2df; background: #f8f8f6; }
.tab-list button { position: relative; min-height: 94px; padding: 20px 22px; display: flex; align-items: flex-start; flex-direction: column; gap: 6px; border: 0; border-right: 1px solid #e2e2df; background: transparent; text-align: left; cursor: pointer; transition: background .25s ease, padding .25s ease; }
.tab-list button:last-child { border-right: 0; }
.tab-list button::after { position: absolute; left: 0; right: 0; bottom: -1px; height: 4px; background: var(--yellow); transform: scaleX(0); content: ""; transition: transform .25s ease; }
.tab-list button:hover, .tab-list button[aria-selected="true"] { padding-left: 27px; background: #fff; }
.tab-list button[aria-selected="true"]::after { transform: scaleX(1); }
.tab-list button span { color: #9b9da3; font-size: .62rem; font-weight: 850; }
.tab-list button strong { color: var(--ink); font-size: .82rem; }
.service-panel { min-height: 455px; padding: 58px 62px; grid-template-columns: 1fr .82fr; gap: 65px; align-items: center; }
.service-panel.is-active { display: grid; animation: panel-in .35s ease both; }
.service-panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.service-copy h3 { max-width: 570px; margin-bottom: 16px; color: var(--ink); font-size: clamp(2rem,3.4vw,3.35rem); line-height: 1.03; letter-spacing: -.055em; }
.service-copy > p { max-width: 590px; color: var(--muted); font-size: .88rem; }
.service-copy ul { list-style: none; display: grid; gap: 10px; margin: 24px 0 0; padding: 0; }
.service-copy li { display: flex; align-items: flex-start; gap: 10px; color: #484b54; font-size: .78rem; }
.service-copy li::before { width: 19px; height: 19px; flex: 0 0 19px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow-soft); color: #896700; content: "✓"; font-size: .61rem; font-weight: 900; }
.service-graphic { position: relative; min-height: 300px; padding: 30px; overflow: hidden; border-radius: 25px; background: var(--ink); color: #fff; }
.service-graphic::after { position: absolute; width: 210px; height: 210px; right: -95px; bottom: -105px; border-radius: 50%; background: var(--yellow); content: ""; }
.route-labels { display: flex; justify-content: space-between; color: rgba(255,255,255,.43); font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.route-line { position: relative; display: flex; justify-content: space-between; margin-top: 58px; }
.route-line::before { position: absolute; top: 7px; left: 6px; right: 6px; height: 2px; background: linear-gradient(90deg,var(--yellow),rgba(255,255,255,.22)); content: ""; }
.route-line i { position: relative; z-index: 1; width: 16px; height: 16px; border: 4px solid var(--ink); border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 1px rgba(255,255,255,.15); }
.service-graphic--route strong { position: absolute; left: 30px; bottom: 28px; font-size: 2rem; line-height: 1; letter-spacing: -.05em; }
.service-graphic--route > b { position: absolute; z-index: 2; right: 24px; bottom: 17px; color: var(--ink); font-size: 2rem; }
.service-graphic--network { display: grid; place-items: center; }
.service-graphic--network::after { opacity: .14; }
.network-core { position: relative; z-index: 3; width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 1.35rem; font-weight: 900; box-shadow: 0 0 0 12px rgba(246,196,0,.12); }
.service-graphic--network > i { position: absolute; width: 190px; height: 1px; background: rgba(255,255,255,.25); transform-origin: center; }
.service-graphic--network > i:nth-of-type(2) { transform: rotate(60deg); }.service-graphic--network > i:nth-of-type(3) { transform: rotate(135deg); }
.network-node { position: absolute; z-index: 2; padding: 7px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; background: #292b34; font-size: .62rem; }
.n1 { left: 22px; top: 45px; }.n2 { right: 22px; top: 65px; }.n3 { right: 40px; bottom: 35px; }
.service-graphic--package { display: grid; place-items: center; background: #e5e5e4; }
.service-graphic--package::after { opacity: .28; }
.package { position: relative; z-index: 2; width: 145px; height: 122px; display: grid; place-items: center; background: #d3a300; color: var(--ink); clip-path: polygon(0 20%,50% 0,100% 20%,100% 82%,50% 100%,0 82%); }
.package::after { position: absolute; left: 50%; top: 0; width: 2px; height: 100%; background: rgba(23,24,31,.16); content: ""; }
.package span { font-size: 1.35rem; font-weight: 900; }
.service-graphic--package small { position: absolute; z-index: 3; right: 18px; bottom: 19px; padding: 8px 12px; border-radius: 8px; background: #fff; color: var(--ink); font-size: .62rem; font-weight: 850; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.service-graphic--data { display: flex; flex-direction: column; }
.service-graphic--data::after { opacity: .1; }
.data-dashboard__head { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.78); font-size: .67rem; font-weight: 800; }
.data-dashboard__head b { display: flex; align-items: center; gap: 7px; color: var(--yellow); font-size: .57rem; letter-spacing: .08em; text-transform: uppercase; }
.data-dashboard__head b i { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(246,196,0,.12); animation: live-pulse 1.8s ease-out infinite; }
@keyframes live-pulse { 50% { box-shadow: 0 0 0 8px rgba(246,196,0,0); } }
.data-kpis { position: relative; z-index: 2; margin-top: 17px; display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.data-kpis > div { min-width: 0; padding: 9px 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; background: rgba(255,255,255,.045); }
.data-kpis small, .data-kpis strong, .data-kpis em { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.data-kpis small { color: rgba(255,255,255,.4); font-size: .47rem; font-weight: 700; text-transform: uppercase; }
.data-kpis strong { margin: 2px 0 1px; color: #fff; font-size: .95rem; line-height: 1.1; letter-spacing: -.04em; }
.data-kpis em { color: #76d59f; font-size: .47rem; font-style: normal; font-weight: 750; }
.data-chart { position: relative; z-index: 2; flex: 1; min-height: 115px; margin-top: 15px; }
.data-chart__head { display: flex; justify-content: space-between; color: rgba(255,255,255,.48); font-size: .53rem; font-weight: 700; }
.data-chart__head small { color: rgba(255,255,255,.28); font-size: inherit; }
.data-chart__plot { position: absolute; inset: 24px 0 0; display: flex; align-items: stretch; gap: 9px; background: repeating-linear-gradient(to bottom,rgba(255,255,255,.08) 0,rgba(255,255,255,.08) 1px,transparent 1px,transparent 31px); }
.data-bar { flex: 1; min-width: 0; display: grid; grid-template-rows: 1fr 17px; align-items: end; }
.data-bar > span { height: 100%; display: flex; align-items: flex-end; }
.data-bar i { width: 100%; height: var(--bar); display: block; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg,var(--yellow-bright),#c59700); box-shadow: 0 8px 18px rgba(246,196,0,.12); transform: scaleY(0); transform-origin: bottom; }
.service-panel.is-active .data-bar i { animation: data-rise .7s cubic-bezier(.2,.8,.2,1) var(--delay) forwards; }
@keyframes data-rise { to { transform: scaleY(1); } }
.data-bar b { align-self: end; color: rgba(255,255,255,.35); font-size: .46rem; font-weight: 700; text-align: center; }

.service-az { background: linear-gradient(180deg,#fff,var(--paper)); }
.az-hero { margin-bottom: 18px; padding: 36px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 34px; align-items: end; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 26px 70px rgba(23,24,31,.08); position: relative; }
.az-hero::after { position: absolute; width: 260px; height: 260px; right: -145px; top: -145px; border-radius: 50%; background: var(--yellow); content: ""; opacity: .75; }
.az-hero > * { position: relative; z-index: 1; }
.az-hero h3 { max-width: 780px; margin: 0 0 12px; color: var(--ink); font-size: clamp(2rem,3.7vw,3.8rem); line-height: .98; letter-spacing: -.06em; }
.az-hero p { max-width: 770px; margin: 0; color: var(--muted); font-size: .9rem; }
.az-hero aside { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.az-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.az-card { position: relative; min-height: 212px; padding: 22px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.az-card::before { position: absolute; inset: 0; background: radial-gradient(220px circle at 85% 12%,rgba(246,196,0,.18),transparent 60%); content: ""; opacity: 0; transition: opacity .25s ease; }
.az-card:hover { z-index: 2; border-color: rgba(198,161,15,.65); box-shadow: 0 20px 45px rgba(23,24,31,.1); transform: translateY(-5px); }
.az-card:hover::before { opacity: 1; }
.az-card > span { position: relative; z-index: 1; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--yellow-soft); color: #805f00; font-size: .68rem; font-weight: 900; }
.az-card h3 { position: relative; z-index: 1; margin: 32px 0 8px; color: var(--ink); font-size: 1rem; line-height: 1.15; letter-spacing: -.035em; }
.az-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.az-card a { position: relative; z-index: 1; width: fit-content; margin-top: auto; padding-top: 16px; color: var(--ink); font-size: .68rem; font-weight: 900; }
.az-card a i { color: #9a7400; font-style: normal; }
.az-card--dark { border-color: #242631; background: var(--ink); color: #fff; }
.az-card--dark::before { background: radial-gradient(260px circle at 90% 5%,rgba(246,196,0,.27),transparent 62%); opacity: 1; }
.az-card--dark > span { background: var(--yellow); color: var(--ink); }
.az-card--dark h3 { color: #fff; }
.az-card--dark p { color: rgba(255,255,255,.58); }
.az-card--dark a { color: var(--yellow); }
.az-card--document { background: #fffdf2; border-color: rgba(246,196,0,.55); }

.flow-section { overflow: hidden; background: var(--ink); color: #fff; }
.flow-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: center; }
.flow-copy h2 { color: #fff; }
.flow-copy h2 em { color: rgba(255,255,255,.36); }
.flow-copy p { max-width: 480px; color: rgba(255,255,255,.5); font-size: .86rem; }
.flow-map { position: relative; min-height: 440px; border: 1px solid rgba(255,255,255,.11); border-radius: 30px; background: #1d1f27; }
.flow-map svg { position: absolute; inset: 50px 40px; width: calc(100% - 80px); height: calc(100% - 100px); }
.flow-map path { fill: none; stroke: rgba(246,196,0,.38); stroke-width: 1.5; stroke-dasharray: 5 7; vector-effect: non-scaling-stroke; animation: route-flow 14s linear infinite; }
.flow-map path:nth-child(even) { animation-direction: reverse; animation-duration: 18s; }
@keyframes route-flow { to { stroke-dashoffset: -180; } }
.flow-source, .flow-target { position: absolute; z-index: 2; top: 50%; display: grid; gap: 21px; transform: translateY(-50%); }
.flow-source { left: 25px; }.flow-target { right: 25px; }
.flow-source span, .flow-target span { min-width: 100px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: #242630; color: rgba(255,255,255,.65); font-size: .65rem; font-weight: 750; text-align: center; }
.flow-hub { position: absolute; z-index: 3; left: 50%; top: 50%; width: 150px; height: 150px; display: grid; place-items: center; padding: 28px; border: 1px solid rgba(246,196,0,.42); border-radius: 50%; background: #18191f; transform: translate(-50%,-50%); box-shadow: 0 0 0 18px rgba(246,196,0,.05); }
.flow-hub img { width: 100%; }
.flow-hub small { color: rgba(255,255,255,.38); font-size: .58rem; text-transform: uppercase; }

.portals { background: #111218; }
.section-heading--light h2 { color: #fff; }
.section-heading--light h2 em { color: rgba(255,255,255,.38); }
.section-heading--light > p { color: rgba(255,255,255,.5); }
.portal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.portal-card { position: relative; min-height: 330px; padding: 28px; display: flex; align-items: flex-end; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: #1c1e26; color: #fff; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.portal-card::before { position: absolute; width: 210px; height: 210px; right: -150px; top: -150px; border-radius: 50%; background: var(--yellow); content: ""; transition: transform .45s ease; }
.portal-card:hover { transform: translateY(-5px); border-color: rgba(246,196,0,.5); background: #22242d; }
.portal-card:hover::before { transform: scale(1.5); }
.portal-glow { position: absolute; inset: 0; background: radial-gradient(260px circle at var(--glow-x,50%) var(--glow-y,50%),rgba(246,196,0,.12),transparent 62%); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.portal-card:hover .portal-glow { opacity: 1; }
.portal-index { position: absolute; top: 27px; left: 28px; color: rgba(255,255,255,.3); font-size: .66rem; font-weight: 850; }
.portal-arrow { position: absolute; z-index: 2; top: 22px; right: 22px; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); font-weight: 900; transition: transform .25s ease; }
.portal-card:hover .portal-arrow { transform: rotate(8deg) scale(1.06); }
.portal-card small { color: var(--yellow); font-size: .62rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.portal-card h3 { margin: 7px 0 11px; color: #fff; font-size: 1.62rem; letter-spacing: -.04em; }
.portal-card p { max-width: 290px; margin: 0; color: rgba(255,255,255,.48); font-size: .76rem; line-height: 1.6; }

.info-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 92px; align-items: start; }
.info-copy p { max-width: 440px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; color: var(--ink); cursor: pointer; font-size: .98rem; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: flex; align-items: center; gap: 20px; }
.accordion summary i { color: #999ca3; font-size: .62rem; font-style: normal; }
.accordion summary b { position: relative; width: 31px; height: 31px; flex: 0 0 31px; border: 1px solid #d2d3d6; border-radius: 50%; }
.accordion summary b::before, .accordion summary b::after { position: absolute; left: 8px; right: 8px; top: 14px; height: 2px; background: var(--ink); content: ""; transition: transform .2s ease; }
.accordion summary b::after { transform: rotate(90deg); }
.accordion summary { transition: color .2s ease, padding .25s ease; }
.accordion summary:hover { padding-left: 8px; color: #806100; }
.accordion details[open] summary b { border-color: var(--yellow); background: var(--yellow); }
.accordion details[open] summary b::after { transform: rotate(0); }
.accordion details > div { padding: 0 58px 28px 36px; animation: panel-in .25s ease both; }
.accordion details > div p { max-width: 560px; margin-bottom: 12px; color: var(--muted); font-size: .81rem; }

.contact-section { padding: 0 0 90px; }
.contact-card { position: relative; min-height: 350px; padding: 66px; display: grid; grid-template-columns: 1.2fr .7fr; gap: 70px; align-items: center; overflow: hidden; border-radius: var(--radius-lg); background: var(--yellow); color: var(--ink); }
.contact-card h2 { max-width: 650px; margin-bottom: 14px; color: var(--ink); font-size: clamp(2.5rem,4.7vw,4.7rem); line-height: .98; letter-spacing: -.065em; }
.contact-card p { max-width: 620px; margin: 0; color: rgba(23,24,31,.65); font-size: .86rem; }
.contact-card aside { position: relative; z-index: 2; display: grid; gap: 18px; justify-items: start; }
.phone-link small, .phone-link strong { display: block; }
.phone-link small { color: rgba(23,24,31,.55); font-size: .64rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.phone-link strong { font-size: 1.1rem; }
.contact-mark { position: absolute; right: -45px; bottom: -105px; color: rgba(255,255,255,.22); font-size: 17rem; line-height: 1; letter-spacing: -.12em; }

.audience-guide { overflow: hidden; background: var(--paper); }
.audience-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 14px; }
.audience-options { display: grid; gap: 9px; }
.audience-options button { position: relative; min-height: 104px; padding: 19px 56px 19px 22px; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 13px; border: 1px solid #d8d8d4; border-radius: 17px; background: rgba(255,255,255,.54); color: var(--ink); cursor: pointer; text-align: left; transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; }
.audience-options button:hover { border-color: #b5b5b0; background: #fff; transform: translateX(5px); }
.audience-options button.is-active { border-color: var(--yellow); background: #fff; box-shadow: 0 18px 45px rgba(23,24,31,.09); }
.audience-options button > span { grid-row: 1 / 3; align-self: center; color: #9a9ca2; font-size: .58rem; font-weight: 900; letter-spacing: .08em; }
.audience-options button b { font-size: .94rem; letter-spacing: -.02em; }
.audience-options button small { color: var(--muted); font-size: .65rem; }
.audience-options button i { position: absolute; right: 20px; top: 50%; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: #ecece8; font-style: normal; transform: translateY(-50%); transition: background .2s ease, transform .2s ease; }
.audience-options button.is-active i { background: var(--yellow); transform: translateY(-50%) rotate(-8deg); }
.audience-result { position: relative; min-height: 330px; padding: 43px 48px; overflow: hidden; border-radius: 25px; background: var(--ink); color: #fff; box-shadow: 0 25px 70px rgba(23,24,31,.16); }
.audience-result::before { position: absolute; width: 300px; height: 300px; right: -145px; bottom: -180px; border-radius: 50%; background: var(--yellow); content: ""; opacity: .95; }
.audience-result__top { display: flex; align-items: center; gap: 13px; }
.audience-result__top span { color: var(--yellow); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.audience-result__top b { color: rgba(255,255,255,.34); font-size: .57rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.audience-result h3 { max-width: 650px; margin: 14px 0 10px; color: #fff; font-size: clamp(2rem,3.7vw,3.25rem); line-height: 1; letter-spacing: -.055em; }
.audience-result > p { max-width: 650px; margin-bottom: 18px; color: rgba(255,255,255,.53); font-size: .79rem; }
.audience-result ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 25px; padding: 0; list-style: none; }
.audience-result li { padding: 6px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 99px; color: rgba(255,255,255,.66); font-size: .62rem; }
.audience-result__actions { position: relative; z-index: 2; display: flex; align-items: center; gap: 25px; }
.audience-result__mark { position: absolute; right: 22px; bottom: -45px; color: rgba(23,24,31,.18); font-size: 9rem; font-weight: 900; line-height: 1; }

.company { background: #fff; }
.company-explorer { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: 0 30px 90px rgba(23,24,31,.08); }
.company-tabs { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); background: #fafaf8; }
.company-tabs button { position: relative; min-height: 95px; padding: 21px 23px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; text-align: left; transition: background .2s ease; }
.company-tabs button:last-child { border-right: 0; }
.company-tabs button::after { position: absolute; left: 0; right: 0; bottom: -1px; height: 4px; background: var(--yellow); content: ""; transform: scaleX(0); transition: transform .25s ease; }
.company-tabs button:hover { background: #fff; }
.company-tabs button[aria-selected="true"] { background: #fff; }
.company-tabs button[aria-selected="true"]::after { transform: scaleX(1); }
.company-tabs span { color: #9b9da3; font-size: .56rem; font-weight: 900; letter-spacing: .08em; }
.company-tabs b { margin-top: 3px; font-size: .9rem; }
.company-panel { min-height: 610px; padding: 56px; animation: panel-in .35s ease both; }
.company-panel[hidden] { display: none; }
.company-profile { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.company-profile__statement h3, .company-panel__intro h3, .mission-intro h3 { margin: 13px 0 20px; color: var(--ink); font-size: clamp(2.25rem,4vw,4rem); line-height: .98; letter-spacing: -.06em; }
.company-profile__statement h3 em { color: #8a8c92; font-style: normal; font-weight: 600; }
.company-profile__statement p { max-width: 560px; color: var(--muted); font-size: .86rem; }
.company-panel .profile-card { min-height: 195px; }
.company-panel .profile-card h4 { margin: 0 0 4px; color: var(--ink); font-size: 1.35rem; letter-spacing: -.04em; }
.company-panel .profile-card--dark h4 { color: #fff; }
.company-panel__intro { display: grid; grid-template-columns: 1fr .7fr; gap: 50px; align-items: end; margin-bottom: 28px; }
.company-panel__intro h3 { margin-bottom: 0; }
.company-panel__intro > p { margin: 0 0 7px; color: var(--muted); font-size: .79rem; }
.team-filters, .partner-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.team-filters { margin-bottom: 22px; }
.team-filters button, .partner-filters button { min-height: 36px; padding: 0 14px; border: 1px solid #d9dadc; border-radius: 99px; background: #fff; color: var(--muted); font-size: .64rem; font-weight: 800; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.team-filters button:hover, .partner-filters button:hover { border-color: #999ca3; color: var(--ink); transform: translateY(-1px); }
.team-filters button.is-active, .partner-filters button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.team-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fafaf8; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; animation: card-in .32s ease both; }
.team-card[hidden] { display: none; }
.team-card:hover { z-index: 2; border-color: #c9aa23; transform: translateY(-6px); box-shadow: 0 20px 45px rgba(23,24,31,.12); }
.team-card__image { position: relative; height: 175px; overflow: hidden; background: #d9d9d4; }
.team-card__image::after { position: absolute; inset: auto 0 0; height: 50%; background: linear-gradient(transparent,rgba(15,16,21,.38)); content: ""; }
.team-card__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .35s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.team-card:hover img { filter: grayscale(.15); transform: scale(1.04); }
.team-card__image span { position: absolute; z-index: 2; left: 13px; bottom: 11px; color: #fff; font-size: .52rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.team-card > div:last-child { padding: 18px; }
.team-card h4 { margin: 0 0 2px; color: var(--ink); font-size: 1.05rem; letter-spacing: -.035em; }
.team-card p { min-height: 36px; margin-bottom: 12px; color: var(--muted); font-size: .63rem; line-height: 1.45; }
.team-card a { display: block; overflow: hidden; color: #666971; font-size: .58rem; line-height: 1.65; text-overflow: ellipsis; white-space: nowrap; transition: color .2s ease; }
.team-card a:hover { color: #806100; }
@keyframes card-in { from { opacity: 0; transform: translateY(10px); } }

.history-years { position: relative; margin: 18px 0 32px; display: grid; grid-template-columns: repeat(6,1fr); }
.history-years::before { position: absolute; left: 5%; right: 5%; top: 46px; height: 2px; background: #e2e2df; content: ""; }
.history-years button { position: relative; z-index: 2; min-height: 78px; display: flex; flex-direction: column; align-items: center; gap: 11px; border: 0; background: transparent; color: #96989e; font-size: .68rem; font-weight: 850; cursor: pointer; transition: color .2s ease; }
.history-years button i { width: 13px; height: 13px; border: 3px solid #fff; border-radius: 50%; background: #c9cacc; box-shadow: 0 0 0 1px #c9cacc; transition: background .2s ease, box-shadow .2s ease, transform .2s ease; }
.history-years button:hover, .history-years button.is-active { color: var(--ink); }
.history-years button.is-active i { background: var(--yellow); box-shadow: 0 0 0 1px var(--yellow),0 0 0 7px rgba(246,196,0,.14); transform: scale(1.08); }
.history-stage { position: relative; min-height: 260px; padding: 43px 270px 43px 43px; display: flex; align-items: center; overflow: hidden; border-radius: 23px; background: var(--ink); color: #fff; }
.history-stage::before { position: absolute; width: 340px; height: 340px; right: -150px; top: -130px; border-radius: 50%; background: var(--yellow); content: ""; }
.history-stage > div { position: relative; z-index: 2; }
.history-stage span { color: var(--yellow); font-size: .6rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.history-stage h4 { margin: 10px 0; color: #fff; font-size: 2.4rem; line-height: 1; letter-spacing: -.05em; }
.history-stage p { max-width: 700px; margin: 0; color: rgba(255,255,255,.56); font-size: .77rem; }
.history-stage > strong { position: absolute; z-index: 2; right: 28px; bottom: -24px; color: rgba(23,24,31,.22); font-size: 6.7rem; letter-spacing: -.08em; line-height: 1; }
.history-detail-list { margin-top: 14px; display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.history-detail-list article { min-height: 150px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: #fafaf8; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.history-detail-list article:hover { border-color: rgba(246,196,0,.7); background: #fffdf3; transform: translateY(-3px); }
.history-detail-list span { color: #9a7400; font-size: .52rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.history-detail-list h4 { margin: 18px 0 6px; color: var(--ink); font-size: .82rem; line-height: 1.18; letter-spacing: -.025em; }
.history-detail-list p { margin: 0; color: var(--muted); font-size: .58rem; line-height: 1.5; }

.mission-intro { max-width: 840px; margin-bottom: 28px; }
.mission-intro h3 { margin-bottom: 14px; }
.mission-intro p { color: var(--muted); font-size: .82rem; }
.mission-origin { margin-bottom: 12px; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.mission-origin article { padding: 18px 20px; border: 1px solid rgba(246,196,0,.45); border-radius: 15px; background: #fffdf3; }
.mission-origin span { display: block; margin-bottom: 7px; color: #8b6900; font-size: .55rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.mission-origin p { margin: 0; color: #5f636c; font-size: .68rem; line-height: 1.55; }
.mission-values { display: grid; grid-template-columns: repeat(5,1fr); gap: 9px; }
.mission-values article { min-height: 145px; padding: 19px; border: 1px solid var(--line); border-radius: 15px; background: #fafaf8; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.mission-values article:hover { border-color: var(--yellow); background: #fffdf3; transform: translateY(-4px); }
.mission-values span { color: #a2a4aa; font-size: .52rem; font-weight: 900; }
.mission-values h4 { margin: 28px 0 5px; color: var(--ink); font-size: .82rem; }
.mission-values p { margin: 0; color: var(--muted); font-size: .59rem; line-height: 1.45; }
.mission-principles { margin-top: 12px; display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.mission-principles article { padding: 17px 19px; border-radius: 14px; background: var(--ink); color: #fff; }
.mission-principles b { color: var(--yellow); font-size: .7rem; }
.mission-principles p { margin: 5px 0 0; color: rgba(255,255,255,.5); font-size: .59rem; line-height: 1.45; }
.company-mission blockquote { margin: 13px 0 0; padding: 16px 20px; border-left: 4px solid var(--yellow); background: var(--yellow-soft); color: var(--ink); font-size: .8rem; font-weight: 800; }

.cases { background: var(--paper); }
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.case-card { --spot-x:50%; --spot-y:50%; position: relative; min-height: 540px; padding: 27px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .3s ease, box-shadow .3s ease; }
.case-card::before { position: absolute; inset: 0; background: radial-gradient(260px circle at var(--spot-x) var(--spot-y),rgba(246,196,0,.14),transparent 65%); content: ""; opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.case-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(23,24,31,.12); }
.case-card:hover::before { opacity: 1; }
.case-card--dark { border-color: var(--ink); background: var(--ink); color: #fff; }
.case-card--yellow { border-color: var(--yellow); background: var(--yellow); }
.case-card__head { display: flex; align-items: center; justify-content: space-between; }
.case-card__head span { font-size: .62rem; font-weight: 900; }
.case-card__head small { padding: 6px 10px; border: 1px solid currentColor; border-radius: 99px; font-size: .52rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; opacity: .52; }
.case-card__symbol { position: relative; height: 155px; margin: 30px 0 21px; display: grid; place-items: center; }
.case-card__symbol i { position: absolute; width: 130px; height: 130px; border: 1px solid currentColor; border-radius: 50%; opacity: .18; box-shadow: 0 0 0 23px rgba(128,128,128,.06); }
.case-card__symbol b { position: relative; font-size: 4.6rem; letter-spacing: -.08em; }
.case-card h3 { margin-bottom: 22px; color: var(--ink); font-size: 1.8rem; line-height: 1; letter-spacing: -.05em; }
.case-card--dark h3 { color: #fff; }
.case-card dl { margin: auto 0 0; }
.case-card dl div { padding: 10px 0; display: grid; grid-template-columns: 95px 1fr; gap: 10px; border-top: 1px solid rgba(128,128,128,.25); }
.case-card dt { font-size: .55rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; opacity: .55; }
.case-card dd { margin: 0; font-size: .64rem; line-height: 1.5; opacity: .7; }

.journey-section { overflow: hidden; background: var(--ink); color: #fff; }
.journey-shell { position: relative; padding: 42px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 29px; background: #1d1f27; }
.journey-shell::after { position: absolute; width: 320px; height: 320px; right: -180px; bottom: -210px; border-radius: 50%; background: var(--yellow); content: ""; opacity: .9; }
.journey-track { position: absolute; z-index: 1; left: 10%; right: 10%; top: 85px; height: 2px; background: rgba(255,255,255,.13); }
.journey-track > i { position: absolute; inset: 0; background: linear-gradient(90deg,var(--yellow) 0,var(--yellow) calc((var(--journey-index) / 4) * 100%),transparent 0); transition: background .5s ease; }
.journey-packet { position: absolute; left: calc((var(--journey-index) / 4) * 100%); top: 50%; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--yellow); color: var(--ink); box-shadow: 0 8px 25px rgba(246,196,0,.32); transform: translate(-50%,-50%) rotate(45deg); transition: left .55s cubic-bezier(.2,.8,.2,1); }
.journey-packet b { font-size: .55rem; transform: rotate(-45deg); }
.journey-steps { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5,1fr); gap: 9px; }
.journey-steps button { min-width: 0; min-height: 130px; padding: 61px 11px 15px; border: 0; border-radius: 14px; background: transparent; color: rgba(255,255,255,.48); cursor: pointer; text-align: center; transition: background .25s ease, color .25s ease, transform .25s ease; }
.journey-steps button:hover { background: rgba(255,255,255,.045); color: #fff; transform: translateY(-2px); }
.journey-steps button.is-active { background: rgba(246,196,0,.08); color: #fff; }
.journey-steps span, .journey-steps b, .journey-steps small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.journey-steps span { color: var(--yellow); font-size: .52rem; font-weight: 900; }
.journey-steps b { margin: 3px 0 2px; font-size: .73rem; }
.journey-steps small { font-size: .53rem; opacity: .6; }
.journey-detail { position: relative; z-index: 2; min-height: 220px; margin-top: 22px; padding: 36px 38px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; border-radius: 20px; background: #14151b; }
.journey-detail > div:first-child { max-width: 720px; }
.journey-detail span { color: var(--yellow); font-size: .57rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.journey-detail h3 { margin: 10px 0; color: #fff; font-size: 2.2rem; line-height: 1; letter-spacing: -.05em; }
.journey-detail p { margin: 0; color: rgba(255,255,255,.5); font-size: .73rem; }
.journey-detail__status { min-width: 150px; display: grid; justify-items: end; }
.journey-detail__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 8px rgba(246,196,0,.1); animation: live-pulse 2s ease infinite; }
.journey-detail__status span { margin: 18px 0 4px; color: rgba(255,255,255,.36); font-size: .52rem; }
.journey-detail__status strong { color: #fff; font-size: 1rem; }

.partners { background: #fff; }
.partner-toolbar { margin-bottom: 24px; display: grid; grid-template-columns: minmax(220px,1fr) auto auto; gap: 18px; align-items: center; }
.partner-search { height: 47px; padding: 0 15px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fafaf8; transition: border-color .2s ease, box-shadow .2s ease; }
.partner-search:focus-within { border-color: #c29a00; box-shadow: 0 0 0 4px rgba(246,196,0,.11); }
.partner-search span { color: #8f9197; font-size: 1.1rem; }
.partner-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: .74rem; }
.partner-count { color: #96989e; font-size: .62rem; font-weight: 800; white-space: nowrap; }
.partner-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.partner-card { --spot-x:50%; --spot-y:50%; position: relative; min-height: 130px; padding: 19px; display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fafaf8; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; animation: card-in .28s ease both; }
.partner-card::before { position: absolute; inset: 0; background: radial-gradient(180px circle at var(--spot-x) var(--spot-y),rgba(246,196,0,.18),transparent 68%); content: ""; opacity: 0; transition: opacity .2s ease; }
.partner-card[hidden] { display: none; }
.partner-card:hover { z-index: 2; border-color: #c6a10f; transform: translateY(-4px); box-shadow: 0 18px 38px rgba(23,24,31,.09); }
.partner-card:hover::before { opacity: 1; }
.partner-monogram { position: relative; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 13px; background: var(--ink); color: var(--yellow); font-size: .75rem; font-weight: 900; letter-spacing: -.03em; }
.partner-card div { position: relative; z-index: 2; min-width: 0; }
.partner-card h3 { margin: 0; overflow: hidden; color: var(--ink); font-size: .78rem; letter-spacing: -.025em; text-overflow: ellipsis; white-space: nowrap; }
.partner-card p { margin: 3px 0 0; color: var(--muted); font-size: .57rem; }
.partner-card > i { position: relative; z-index: 2; width: 7px; height: 7px; overflow: hidden; border-radius: 50%; background: #c6c7ca; color: transparent; font-size: 0; font-style: normal; transition: background .2s ease, transform .2s ease; }
.partner-card:hover > i { background: var(--yellow); transform: scale(1.45); }
.partner-empty { padding: 40px; border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); text-align: center; }

.product-modal { width: min(940px,calc(100% - 32px)); max-height: min(720px,calc(100vh - 32px)); padding: 0; overflow: hidden; border: 0; border-radius: 28px; background: #fff; color: var(--ink); box-shadow: 0 45px 130px rgba(0,0,0,.38); }
.product-modal { scrollbar-width: thin; scrollbar-color: var(--yellow) transparent; }
.product-modal::-webkit-scrollbar { width: 7px; }
.product-modal::-webkit-scrollbar-track { background: transparent; }
.product-modal::-webkit-scrollbar-thumb { border-radius: 999px; background: var(--yellow); }
.product-modal[open] { display: grid; grid-template-columns: .9fr 1.1fr; animation: modal-in .32s cubic-bezier(.2,.8,.2,1) both; }
.product-modal::backdrop { background: rgba(12,13,18,.76); backdrop-filter: blur(12px); }
@keyframes modal-in { from { opacity: 0; transform: translateY(24px) scale(.97); } }
.product-modal__close { position: absolute; z-index: 5; right: 17px; top: 17px; width: 41px; height: 41px; display: grid; place-items: center; border: 1px solid rgba(23,24,31,.08); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--ink); font-size: 1.3rem; box-shadow: 0 8px 24px rgba(0,0,0,.16); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.product-modal__close:hover { background: var(--yellow); transform: rotate(6deg); }
.product-modal__media { position: relative; min-height: 540px; display: grid; place-items: center; overflow: hidden; background: #20222a; }
.product-modal__media::after { position: absolute; width: 290px; height: 290px; left: -160px; bottom: -150px; border-radius: 50%; background: var(--yellow); content: ""; opacity: .85; }
.product-modal__media img { position: relative; z-index: 2; max-width: 67%; max-height: 390px; object-fit: contain; filter: drop-shadow(0 28px 30px rgba(0,0,0,.45)); }
.product-modal__glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle,rgba(246,196,0,.23),transparent 68%); }
.product-modal__badge { position: absolute; z-index: 3; left: 24px; top: 24px; padding: 7px 10px; border-radius: 7px; background: var(--yellow); color: var(--ink); font-size: .55rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.product-modal__copy { position: relative; z-index: 2; padding: 65px 58px; display: flex; flex-direction: column; justify-content: center; }
.product-modal__copy h2 { margin: 12px 0 8px; color: var(--ink); font-size: clamp(2.2rem,4vw,3.7rem); line-height: .95; letter-spacing: -.06em; }
.product-modal__author { color: #8d6c00 !important; font-weight: 800; }
.product-modal__copy > p { color: var(--muted); font-size: .76rem; }
.product-modal__facts { margin: 17px 0 29px; display: grid; grid-template-columns: 1fr 1fr; border-block: 1px solid var(--line); }
.product-modal__facts span { padding: 16px 10px 16px 0; }
.product-modal__facts small, .product-modal__facts strong { display: block; }
.product-modal__facts small { color: #999ba1; font-size: .53rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-modal__facts strong { margin-top: 2px; font-size: .9rem; }
.product-modal__copy .button { align-self: flex-start; }
.product-modal__mark { position: absolute; z-index: 1; right: -20px; bottom: -65px; color: rgba(23,24,31,.04); font-size: 10rem; letter-spacing: -.1em; line-height: 1; }

.cursor-orb { position: fixed; z-index: 999; left: 0; top: 0; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); opacity: 0; pointer-events: none; transform: translate(-50%,-50%) scale(.65); transition: opacity .18s ease, transform .18s ease; }
.cursor-orb span { font-size: .55rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.cursor-orb.is-visible { opacity: 1; transform: translate(-50%,-50%) scale(1); }

.site-footer { padding: 72px 0 24px; background: #101116; color: rgba(255,255,255,.5); }
.footer-main { display: grid; grid-template-columns: 1.55fr repeat(3,1fr); gap: 55px; padding-bottom: 58px; }
.footer-brand img { width: 182px; margin-bottom: 18px; }
.footer-brand p { max-width: 280px; font-size: .76rem; }
.footer-column h2 { margin-bottom: 15px; color: #fff; font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-column a, .footer-column p, .footer-column address { display: block; margin: 0 0 6px; color: rgba(255,255,255,.5); font-size: .73rem; font-style: normal; line-height: 1.75; transition: color .2s ease; }
.footer-column a:hover { color: var(--yellow); }
.footer-bottom { min-height: 58px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .67rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--yellow); }

.resource-page { background: var(--paper); }
.resource-page .legal-hero { padding-bottom: 78px; }
.resource-section { padding: 72px 0 112px; background: #fff; }
.resource-shell { display: grid; gap: 28px; }
.resource-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; }
.notice-card, .quick-card { position: relative; overflow: hidden; padding: 26px; border: 1px solid var(--line); border-radius: 23px; background: #fff; box-shadow: 0 22px 55px rgba(23,24,31,.06); }
.notice-card::after, .quick-card::after { position: absolute; width: 170px; height: 170px; right: -90px; top: -90px; border-radius: 50%; background: var(--yellow); content: ""; opacity: .45; }
.notice-card > *, .quick-card > * { position: relative; z-index: 1; }
.notice-card h2, .quick-card h2 { margin-bottom: 10px; color: var(--ink); font-size: clamp(1.8rem,3.2vw,3rem); line-height: 1; letter-spacing: -.055em; }
.notice-card p, .quick-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.quick-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.quick-card { min-height: 170px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.quick-card:hover { border-color: rgba(246,196,0,.72); box-shadow: 0 24px 54px rgba(23,24,31,.09); transform: translateY(-5px); }
.quick-card span { color: #9a7400; font-size: .58rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.quick-card strong { color: var(--ink); font-size: 1.1rem; line-height: 1.1; letter-spacing: -.035em; }
.quick-card i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--yellow); font-style: normal; font-weight: 900; }
.resource-library { padding: 30px; border: 1px solid var(--line); border-radius: 30px; background: var(--paper); box-shadow: inset 0 1px rgba(255,255,255,.65); }
.resource-toolbar { margin-bottom: 22px; display: grid; grid-template-columns: minmax(220px,1fr) auto auto; gap: 14px; align-items: center; }
.resource-search { height: 48px; padding: 0 15px; display: flex; align-items: center; gap: 10px; border: 1px solid #d7d7d3; border-radius: 13px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.resource-search:focus-within { border-color: #c29a00; box-shadow: 0 0 0 4px rgba(246,196,0,.12); }
.resource-search span { color: #8f9197; font-size: 1.05rem; }
.resource-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: .76rem; }
.resource-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.resource-filters button { min-height: 36px; padding: 0 13px; border: 1px solid #d9dadc; border-radius: 999px; background: #fff; color: var(--muted); font-size: .63rem; font-weight: 850; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.resource-filters button:hover { border-color: #999ca3; color: var(--ink); transform: translateY(-1px); }
.resource-filters button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.resource-count { color: #8f9299; font-size: .64rem; font-weight: 850; white-space: nowrap; }
.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.resource-card { --spot-x:50%; --spot-y:50%; position: relative; min-height: 318px; padding: 14px; display: grid; grid-template-rows: 154px 1fr auto; gap: 13px; overflow: hidden; border: 1px solid #deded9; border-radius: 20px; background: #fff; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; animation: card-in .28s ease both; }
.resource-card::before { position: absolute; inset: 0; background: radial-gradient(220px circle at var(--spot-x) var(--spot-y),rgba(246,196,0,.18),transparent 62%); content: ""; opacity: 0; transition: opacity .25s ease; }
.resource-card:hover { z-index: 2; border-color: rgba(198,161,15,.72); box-shadow: 0 24px 54px rgba(23,24,31,.11); transform: translateY(-5px); }
.resource-card:hover::before { opacity: 1; }
.resource-card[hidden] { display: none; }
.resource-card__media { position: relative; z-index: 1; display: grid; place-items: center; overflow: hidden; border-radius: 15px; background: linear-gradient(135deg,#f3f2ee,#fff); }
.resource-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; filter: drop-shadow(0 12px 18px rgba(23,24,31,.14)); transition: transform .25s ease; }
.resource-card:hover .resource-card__media img { transform: scale(1.035) rotate(-.6deg); }
.resource-card__media--mark { background: var(--ink); color: var(--yellow); }
.resource-card__media--mark span { font-size: 2.2rem; font-weight: 900; letter-spacing: -.08em; }
.resource-card__copy { position: relative; z-index: 1; }
.resource-card__copy span { display: block; margin-bottom: 7px; color: #9a7400; font-size: .56rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.resource-card__copy h3 { margin: 0 0 7px; color: var(--ink); font-size: 1.02rem; line-height: 1.15; letter-spacing: -.035em; }
.resource-card__copy p { margin: 0; color: var(--muted); font-size: .69rem; line-height: 1.5; }
.resource-card__link { position: relative; z-index: 1; min-height: 42px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 11px; background: var(--ink); color: #fff; font-size: .7rem; font-weight: 900; transition: background .2s ease, transform .2s ease; }
.resource-card__link:hover { background: #2b2d36; transform: translateY(-2px); }
.resource-empty { padding: 42px; border: 1px dashed #d6d6d1; border-radius: 18px; background: #fff; color: var(--muted); text-align: center; }
.resource-partner-grid { grid-template-columns: repeat(3,1fr); }
.resource-partner-card { min-height: 156px; grid-template-columns: 58px 1fr 38px; }
.resource-partner-card small { display: block; margin-top: 7px; color: #7a7e86; font-size: .57rem; line-height: 1.45; }
.resource-partner-card > a { position: relative; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--ink); font-weight: 900; box-shadow: 0 8px 18px rgba(23,24,31,.09); transition: background .2s ease, transform .2s ease; }
.resource-partner-card:hover > a { background: var(--yellow); transform: rotate(8deg); }
.modern-form { display: grid; gap: 14px; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: #8b6900; font-size: .6rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form-field input { width: 100%; min-height: 54px; padding: 0 15px; border: 1px solid #d7d8da; border-radius: 13px; background: #fff; color: var(--ink); font: inherit; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input:focus { border-color: #c29a00; box-shadow: 0 0 0 4px rgba(246,196,0,.12); }
.login-panel { display: grid; gap: 20px; }
.feature-list { display: grid; gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 10px; color: #525660; font-size: .78rem; }
.feature-list li::before { width: 20px; height: 20px; flex: 0 0 20px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow-soft); color: #896700; content: "✓"; font-size: .61rem; font-weight: 900; }
.form-note { margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.55; }

.legal-page { background: var(--paper); }
.legal-hero { position: relative; padding: 176px 0 92px; overflow: hidden; background: radial-gradient(circle at 82% 18%,rgba(246,196,0,.22),transparent 32%), var(--paper); }
.legal-hero--privacy { background: radial-gradient(circle at 82% 18%,rgba(246,196,0,.17),transparent 34%), linear-gradient(180deg,var(--paper),#fff); }
.legal-hero::after { position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(transparent,rgba(255,255,255,.72)); content: ""; pointer-events: none; }
.legal-hero__orb { position: absolute; border: 1px solid rgba(23,24,31,.07); border-radius: 50%; pointer-events: none; }
.legal-hero__orb--one { width: 540px; height: 540px; left: -300px; top: 110px; box-shadow: 0 0 0 92px rgba(246,196,0,.035); }
.legal-hero__orb--two { width: 440px; height: 440px; right: -235px; bottom: -170px; box-shadow: 0 0 0 110px rgba(23,24,31,.025); }
.legal-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) 380px; gap: 60px; align-items: end; }
.legal-back { width: fit-content; min-height: 38px; margin-bottom: 26px; padding: 0 14px; display: inline-flex; align-items: center; border: 1px solid rgba(23,24,31,.12); border-radius: 999px; background: rgba(255,255,255,.52); color: #6d717a; font-size: .68rem; font-weight: 840; letter-spacing: .04em; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .2s ease; }
.legal-back:hover { background: #fff; color: var(--ink); transform: translateX(-3px); }
.legal-hero h1 { max-width: 720px; margin-bottom: 22px; color: var(--ink); font-size: clamp(4rem,7vw,7rem); font-weight: 860; letter-spacing: -.075em; line-height: .86; overflow-wrap: break-word; hyphens: auto; }
.legal-hero--privacy h1 { max-width: 780px; font-size: clamp(3.55rem,6.15vw,6.35rem); letter-spacing: -.07em; }
.legal-hero__copy p { max-width: 690px; margin: 0; color: #62656e; font-size: 1.04rem; line-height: 1.72; }
.legal-quick-card { min-height: 300px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: #17181f; color: #fff; box-shadow: var(--shadow); position: relative; }
.legal-quick-card::after { position: absolute; width: 220px; height: 220px; right: -82px; bottom: -112px; border-radius: 50%; background: var(--yellow); opacity: .9; content: ""; }
.legal-quick-card span, .legal-quick-card strong, .legal-quick-card div { position: relative; z-index: 1; }
.legal-quick-card > span { color: var(--yellow); font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.legal-quick-card strong { max-width: 285px; font-size: 1.55rem; line-height: 1.2; letter-spacing: -.04em; }
.legal-quick-card div { display: grid; gap: 8px; color: rgba(255,255,255,.68); font-size: .78rem; font-weight: 760; }
.legal-quick-card a { width: fit-content; transition: color .2s ease; }
.legal-quick-card a:hover { color: var(--yellow); }
.legal-quick-card--privacy::after { background: linear-gradient(135deg,var(--yellow),#ffe983); }
.legal-section { padding: 70px 0 112px; background: #fff; }
.legal-shell { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 44px; align-items: start; }
.legal-toc { position: sticky; top: 118px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(244,243,239,.84); box-shadow: 0 18px 45px rgba(23,24,31,.06); backdrop-filter: blur(14px); }
.legal-toc span { display: block; margin-bottom: 13px; color: #8b6900; font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.legal-toc a { min-height: 40px; padding: 0 11px; display: flex; align-items: center; border-radius: 10px; color: #5f636c; font-size: .75rem; font-weight: 800; transition: background .2s ease, color .2s ease, transform .2s ease; }
.legal-toc a:hover { background: #fff; color: var(--ink); transform: translateX(3px); }
.legal-content { display: grid; gap: 18px; }
.legal-card { padding: 38px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 24px 62px rgba(23,24,31,.07); }
.legal-card h2 { margin-bottom: 15px; color: var(--ink); font-size: clamp(2rem,4vw,3.25rem); line-height: .98; letter-spacing: -.058em; }
.legal-card h3 { margin: 0 0 8px; color: var(--ink); font-size: 1.05rem; letter-spacing: -.02em; }
.legal-card p { margin-bottom: 14px; color: #666a73; font-size: .93rem; line-height: 1.78; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card a:not(.button):not(.arrow-link) { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(246,196,0,.55); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.legal-card--split { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 38px; align-items: start; }
.legal-card--dark { overflow: hidden; background: #17181f; color: #fff; position: relative; }
.legal-card--dark::after { position: absolute; width: 220px; height: 220px; right: -92px; bottom: -120px; border-radius: 50%; background: var(--yellow); opacity: .82; content: ""; }
.legal-card--dark > * { position: relative; z-index: 1; }
.legal-card--dark .micro-label { color: var(--yellow); }
.legal-card--dark h2 { color: #fff; }
.legal-card--dark p { color: rgba(255,255,255,.62); }
.legal-card--muted { background: #f7f6f2; }
.legal-kv { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.legal-kv div { min-height: 112px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 17px; background: #f6f5f0; }
.legal-kv small, .legal-contact span span, .legal-contact a span { color: #8e929a; font-size: .62rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.legal-kv strong { color: var(--ink); font-size: .94rem; line-height: 1.45; }
.legal-contact { display: grid; gap: 10px; font-style: normal; }
.legal-contact a, .legal-contact > span { min-height: 72px; padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; border: 1px solid #e4e4e1; border-radius: 16px; background: #f7f6f2; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.legal-contact a:hover { border-color: rgba(246,196,0,.58); background: #fff; transform: translateY(-2px); }
.legal-contact strong { color: var(--ink); font-size: .86rem; line-height: 1.35; overflow-wrap: anywhere; }
.legal-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.legal-grid > div { min-height: 178px; padding: 22px; border-radius: 20px; background: #f7f6f2; transition: transform .2s ease, box-shadow .2s ease; }
.legal-grid > div:hover { transform: translateY(-3px); box-shadow: 0 16px 35px rgba(23,24,31,.08); }
.legal-rights { margin: 22px 0; display: flex; flex-wrap: wrap; gap: 9px; }
.legal-rights span, .legal-chip-list span { padding: 8px 12px; border-radius: 999px; background: var(--yellow-soft); color: #715600; font-size: .68rem; font-weight: 850; }
.legal-chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.legal-chip-list span { background: #fff; color: #555962; border: 1px solid #e1e1de; }
.legal-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.product-stage.is-visible { transform: perspective(1100px) rotateX(var(--tilt-x,0deg)) rotateY(var(--tilt-y,0deg)); transform-style: preserve-3d; transition: opacity .65s ease, transform .2s ease, box-shadow .3s ease; }
.product-stage.is-visible.is-tilting { box-shadow: 0 38px 105px rgba(20,21,28,.2); }
.profile-cards .profile-card, .portal-grid .portal-card { transition-delay: calc(var(--item-index,0) * 70ms); }
.back-to-top { --scroll-progress: 0deg; position: fixed; z-index: 80; right: 24px; bottom: 24px; width: 49px; height: 49px; display: grid; place-items: center; border: 0; border-radius: 50%; background: conic-gradient(var(--yellow) var(--scroll-progress),rgba(23,24,31,.13) 0); color: var(--ink); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
.back-to-top::before { position: absolute; inset: 4px; border-radius: 50%; background: #fff; box-shadow: 0 10px 30px rgba(23,24,31,.16); content: ""; }
.back-to-top span { position: relative; z-index: 1; font-size: 1rem; font-weight: 900; transition: transform .2s ease; }
.back-to-top:hover span { transform: translateY(-3px); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

@media (max-width: 1100px) {
  .nav-link { padding-inline: 9px; }
  .primary-nav { gap: 12px; }
  .mega-panel--services { right: -240px; }
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: clamp(3.2rem,5.7vw,5.4rem); }
  .product-stage { height: 620px; }
  .profile-layout { gap: 52px; }
  .service-panel { padding: 48px; gap: 42px; }
  .az-grid { grid-template-columns: repeat(3,1fr); }
  .flow-layout { gap: 45px; }
  .flow-source span, .flow-target span { min-width: 84px; }
  .company-panel { padding: 44px; }
  .company-profile { gap: 45px; }
  .team-card > div:last-child { padding: 15px; }
  .partner-grid { grid-template-columns: repeat(3,1fr); }
  .contact-card { padding: 54px; }
  .legal-hero__grid { grid-template-columns: minmax(0,1fr) 340px; gap: 38px; }
  .legal-card--split { grid-template-columns: minmax(0,1fr) 320px; }
  .footer-main { gap: 35px; }
}

@media (max-width: 920px) {
  html { scroll-padding-top: 92px; }
  .utility-bar { display: none; }
  .nav-shell { height: 72px; padding-inline: 18px; }
  .brand img { width: 151px; }
  .menu-toggle { display: flex; }
  .primary-nav { display: none; position: absolute; left: 0; right: 0; top: calc(100% + 10px); max-height: calc(100vh - 103px); padding: 15px; overflow-y: auto; border-radius: 18px; background: #181a21; box-shadow: 0 26px 70px rgba(10,11,16,.34); }
  .primary-nav.is-open { display: block; }
  .nav-list { display: block; }
  .nav-link { width: 100%; min-height: 51px; justify-content: space-between; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .portal-cta { width: 100%; margin-top: 12px; }
  .mega-panel { position: static; display: none; visibility: visible; opacity: 1; pointer-events: auto; width: auto; margin: 2px 0 10px; padding: 14px; border: 0; border-radius: 12px; background: #22242d; box-shadow: none; transform: none; }
  .nav-trigger[aria-expanded="true"] + .mega-panel { display: block; }
  .mega-panel--services { grid-template-columns: 1fr; }
  .mega-intro { display: none; }
  .mega-links a { padding: 9px 8px; }
  .hero { min-height: 0; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 25px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-copy > p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { max-width: 630px; margin-inline: auto; }
  .product-stage { width: min(100%,680px); height: 620px; margin-inline: auto; }
  .hero-footnote { display: none; }
  .brand-band__inner { grid-template-columns: 180px 1fr; gap: 10px; }
  .brand-band__values > span { padding-inline: 10px; }
  .brand-band__values b { font-size: .66rem; }
  .audience-shell { grid-template-columns: 1fr; }
  .audience-options { grid-template-columns: repeat(3,1fr); }
  .audience-options button { min-height: 135px; padding: 18px; display: flex; flex-direction: column; align-items: flex-start; }
  .audience-options button > span { margin-bottom: 12px; }
  .audience-options button i { right: 14px; top: 18px; transform: none; }
  .audience-options button.is-active i { transform: rotate(-8deg); }
  .company-panel { min-height: 0; }
  .company-profile { grid-template-columns: 1fr; }
  .company-panel__intro { grid-template-columns: 1fr; gap: 12px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .history-detail-list { grid-template-columns: repeat(2,1fr); }
  .mission-origin { grid-template-columns: 1fr; }
  .mission-values { grid-template-columns: repeat(3,1fr); }
  .az-hero { grid-template-columns: 1fr; }
  .az-hero aside { justify-content: flex-start; }
  .az-grid { grid-template-columns: repeat(2,1fr); }
  .resource-intro-grid { grid-template-columns: 1fr; }
  .resource-toolbar { grid-template-columns: 1fr; }
  .resource-count { position: absolute; visibility: hidden; }
  .resource-grid, .resource-partner-grid { grid-template-columns: repeat(2,1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 450px; }
  .journey-shell { padding: 32px 24px; }
  .journey-track { left: 11%; right: 11%; }
  .journey-steps button { padding-inline: 6px; }
  .partner-toolbar { grid-template-columns: 1fr; }
  .partner-filters { order: 3; }
  .partner-count { position: absolute; visibility: hidden; }
  .partner-grid { grid-template-columns: repeat(2,1fr); }
  .product-modal[open] { grid-template-columns: .8fr 1.2fr; }
  .product-modal__copy { padding: 54px 38px; }
  .cursor-orb { display: none; }
  .profile-layout, .info-layout, .flow-layout { grid-template-columns: 1fr; gap: 50px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .tab-list { grid-template-columns: repeat(2,1fr); }
  .tab-list button:nth-child(2) { border-right: 0; }
  .tab-list button:nth-child(-n+2) { border-bottom: 1px solid #e2e2df; }
  .service-panel { grid-template-columns: 1fr; }
  .service-graphic { min-height: 270px; }
  .flow-copy { text-align: center; }
  .flow-copy p { margin-inline: auto; }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-card { min-height: 225px; }
  .contact-card { grid-template-columns: 1fr; gap: 32px; }
  .legal-hero { padding-top: 132px; }
  .legal-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .legal-quick-card { min-height: 230px; }
  .legal-shell { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
  .legal-toc::-webkit-scrollbar { display: none; }
  .legal-toc span { min-width: max-content; margin: 0; padding: 0 10px; display: inline-flex; align-items: center; }
  .legal-toc a { min-width: max-content; }
  .legal-card--split { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.2fr repeat(2,1fr); }
  .footer-column:last-child { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .nav-shell { height: 68px; margin-top: 9px; border-radius: 14px; }
  .brand img { width: 140px; }
  .menu-toggle span { display: none; }
  .hero { padding-top: 113px; padding-bottom: 42px; }
  .hero-copy { padding-top: 25px; text-align: left; }
  .hero h1 { font-size: clamp(3rem,14.5vw,4.2rem); line-height: .94; }
  .hero-copy > p { font-size: .9rem; }
  .hero-actions { justify-content: flex-start; }
  .button { width: 100%; }
  .hero-proof { gap: 0; }
  .hero-proof div { padding-right: 7px; }
  .hero-proof strong { font-size: 1.15rem; }
  .hero-proof span { font-size: .56rem; }
  .product-stage { height: 570px; border-width: 5px; border-radius: 25px; }
  .product-stage__head { left: 20px; right: 20px; top: 20px; }
  .product-cover { top: 78px; width: 220px; height: 330px; }
  .product-cover__badge { right: -15px; }
  .product-peek { width: 76px; height: 128px; top: 165px; }
  .carousel-button { top: 48%; width: 38px; height: 38px; }
  .carousel-button--prev { left: 13px; }.carousel-button--next { right: 13px; }
  .product-stage__info { left: 21px; right: 21px; bottom: 61px; }
  .product-stage__info h2 { font-size: 1.18rem; }
  .carousel-progress { left: 175px; right: 21px; bottom: 25px; }
  .carousel-dots { left: 21px; bottom: 18px; gap: 5px; }
  .carousel-dots button { width: 6px; height: 6px; }
  .carousel-dots button[aria-current="true"] { width: 18px; }
  .brand-band { padding: 15px 0; }
  .brand-band__inner { grid-template-columns: 1fr; gap: 10px; }
  .brand-band__lead { min-height: 58px; padding: 10px 15px; flex-direction: row; align-items: center; justify-content: space-between; }
  .brand-band__lead strong { font-size: .85rem; }
  .brand-band__values { display: flex; gap: 7px; overflow-x: auto; padding: 1px 0 5px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .brand-band__values::-webkit-scrollbar { display: none; }
  .brand-band__values > span { min-height: 58px; flex: 0 0 145px; padding: 9px 13px; border: 1px solid rgba(23,24,31,.11); background: rgba(255,255,255,.12); scroll-snap-align: start; }
  .brand-band__values b { font-size: .66rem; }
  .section { padding: 82px 0; }
  .audience-options { display: flex; overflow-x: auto; padding-bottom: 5px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .audience-options::-webkit-scrollbar { display: none; }
  .audience-options button { min-height: 120px; flex: 0 0 78%; scroll-snap-align: start; }
  .audience-result { min-height: 440px; padding: 31px 24px; }
  .audience-result h3 { font-size: 2.45rem; }
  .audience-result ul { display: grid; }
  .audience-result__actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .company-explorer { border-radius: 21px; }
  .company-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .company-tabs::-webkit-scrollbar { display: none; }
  .company-tabs button { min-height: 79px; flex: 0 0 42%; padding: 15px; scroll-snap-align: start; }
  .company-panel { padding: 31px 20px; }
  .company-profile__statement h3, .company-panel__intro h3, .mission-intro h3 { font-size: 2.35rem; }
  .company-panel .profile-card { min-height: 180px; }
  .team-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
  .team-filters::-webkit-scrollbar { display: none; }
  .team-filters button { flex: 0 0 auto; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { display: grid; grid-template-columns: 42% 58%; }
  .team-card__image { height: 100%; min-height: 190px; }
  .history-years { display: flex; overflow-x: auto; margin-bottom: 18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .history-years::-webkit-scrollbar { display: none; }
  .history-years::before { display: none; }
  .history-years button { min-height: 58px; flex: 0 0 76px; gap: 5px; border: 1px solid var(--line); border-radius: 10px; scroll-snap-align: start; }
  .history-years button i { width: 8px; height: 8px; border-width: 1px; }
  .history-stage { min-height: 350px; padding: 31px 24px 120px; align-items: flex-start; }
  .history-stage h4 { font-size: 2rem; }
  .history-stage > strong { right: 19px; font-size: 5.5rem; }
  .history-detail-list { display: flex; overflow-x: auto; padding-bottom: 5px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .history-detail-list::-webkit-scrollbar { display: none; }
  .history-detail-list article { min-height: 162px; flex: 0 0 76%; scroll-snap-align: start; }
  .mission-origin { grid-template-columns: 1fr; }
  .mission-values { display: flex; overflow-x: auto; padding-bottom: 5px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .mission-values::-webkit-scrollbar { display: none; }
  .mission-values article { min-height: 155px; flex: 0 0 72%; scroll-snap-align: start; }
  .mission-principles { grid-template-columns: 1fr; }
  .case-card { min-height: 510px; padding: 23px; }
  .case-card__symbol { height: 125px; }
  .case-card dl div { grid-template-columns: 82px 1fr; }
  .journey-shell { padding: 18px; border-radius: 21px; }
  .journey-track { display: none; }
  .journey-steps { display: flex; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .journey-steps::-webkit-scrollbar { display: none; }
  .journey-steps button { min-height: 103px; flex: 0 0 155px; padding: 18px 12px; border: 1px solid rgba(255,255,255,.1); scroll-snap-align: start; }
  .journey-detail { min-height: 310px; padding: 27px 23px; grid-template-columns: 1fr; gap: 24px; }
  .journey-detail h3 { font-size: 1.9rem; }
  .journey-detail__status { justify-items: start; }
  .partner-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
  .partner-filters::-webkit-scrollbar { display: none; }
  .partner-filters button { flex: 0 0 auto; }
  .partner-grid { grid-template-columns: 1fr; }
  .product-modal { max-height: calc(100vh - 20px); overflow-y: auto; border-radius: 22px; }
  .product-modal[open] { display: block; }
  .product-modal__media { min-height: 285px; }
  .product-modal__media img { max-height: 220px; }
  .product-modal__copy { padding: 35px 24px; }
  .product-modal__copy h2 { font-size: 2.45rem; }
  .product-modal__copy .button { width: 100%; }
  .profile-statement h2, .section-heading h2, .flow-copy h2, .info-copy h2 { font-size: 2.5rem; }
  .profile-cards { grid-template-columns: 1fr; }
  .profile-card { min-height: 190px; }
  .profile-card--dark { grid-column: auto; min-height: 215px; }
  .service-explorer { border-radius: 21px; }
  .tab-list { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .tab-list button { flex: 0 0 69%; min-height: 83px; border-right: 1px solid #e2e2df !important; border-bottom: 0 !important; scroll-snap-align: start; }
  .service-panel { min-height: 0; padding: 31px 22px; gap: 30px; }
  .service-copy h3 { font-size: 2.2rem; }
  .service-graphic { min-height: 235px; padding: 24px; }
  .az-hero { padding: 24px; border-radius: 22px; }
  .az-hero h3 { font-size: 2.25rem; }
  .az-grid { grid-template-columns: 1fr; }
  .az-card { min-height: 185px; }
  .resource-section { padding: 48px 0 82px; }
  .resource-library { margin-inline: -4px; padding: 16px; border-radius: 22px; }
  .resource-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .resource-filters::-webkit-scrollbar { display: none; }
  .resource-filters button { flex: 0 0 auto; }
  .resource-grid, .resource-partner-grid, .quick-card-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 292px; }
  .notice-card, .quick-card { padding: 22px; border-radius: 20px; }
  .flow-map { min-height: 485px; }
  .flow-map svg { display: none; }
  .flow-source, .flow-target { left: 50%; right: auto; top: auto; display: flex; width: calc(100% - 30px); justify-content: center; gap: 6px; transform: translateX(-50%); }
  .flow-source { top: 30px; }.flow-target { bottom: 30px; }
  .flow-source span, .flow-target span { min-width: 0; flex: 1; padding-inline: 5px; font-size: .54rem; }
  .flow-hub { width: 135px; height: 135px; }
  .portal-card { min-height: 230px; padding: 24px; }
  .info-layout { gap: 32px; }
  .accordion summary { min-height: 78px; font-size: .84rem; }
  .accordion summary span { gap: 12px; }
  .accordion details > div { padding: 0 10px 25px 27px; }
  .contact-section { padding-bottom: 58px; }
  .contact-card { min-height: 0; padding: 38px 24px; border-radius: 23px; }
  .contact-card h2 { font-size: 2.75rem; }
  .contact-card aside { justify-items: stretch; }
  .phone-link { text-align: center; }
  .contact-mark { right: -25px; bottom: -70px; font-size: 11rem; }
  .legal-hero { padding: 112px 0 58px; }
  .legal-back { margin-bottom: 20px; }
  .legal-hero h1 { font-size: clamp(3.5rem,19vw,5.2rem); }
  .legal-hero__copy p { font-size: .92rem; }
  .legal-quick-card { min-height: 220px; padding: 24px; border-radius: 22px; }
  .legal-quick-card strong { font-size: 1.35rem; }
  .legal-section { padding: 48px 0 82px; }
  .legal-shell { gap: 24px; }
  .legal-toc { margin-inline: -2px; padding: 12px; border-radius: 16px; }
  .legal-card { padding: 26px 20px; border-radius: 22px; }
  .legal-card h2 { font-size: 2.2rem; }
  .legal-kv, .legal-grid { grid-template-columns: 1fr; }
  .legal-grid > div { min-height: 0; }
  .legal-actions { align-items: stretch; flex-direction: column; }
  .site-footer { padding-top: 52px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding-top: 18px; flex-direction: column; align-items: flex-start; }
  .back-to-top { right: 15px; bottom: 15px; width: 45px; height: 45px; }
}

@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; }
}
