:root {
    --black: #080a0d;
    --charcoal: #181c22;
    --yellow: #f5c400;
    --gold: #d9a514;
    --ivory: #fff9e8;
    --warm-gray: #f2f1ed;
    --white: #fff;
    --ink: #12151a;
    --muted: #5e6570;
    --line: rgba(8, 10, 13, .12);
    --shadow: 0 24px 70px rgba(8, 10, 13, .12);
    --radius: 22px;
    --shell: min(1320px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, Arial, sans-serif; line-height: 1.65; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; background: var(--yellow); color: var(--black); transform: translateY(-150%); transition: .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; background: rgba(8,10,13,.92); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(16px); transition: box-shadow .25s; }
.site-header.scrolled { box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: 290px; height: 82px; object-fit: contain; object-position: left center; filter: drop-shadow(0 6px 14px rgba(245,196,0,.12)); }
.site-header .brand-logo, .site-footer .brand-logo { height: 78px; padding: 4px 8px; background: linear-gradient(135deg, #fff, var(--ivory)); border: 1px solid rgba(245,196,0,.5); border-radius: 9px; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 25px; font-size: .86rem; font-weight: 600; }
.primary-nav > a:not(.button), .nav-trigger { position: relative; color: rgba(255,255,255,.82); }
.primary-nav > a:not(.button)::after, .nav-trigger::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--yellow); transition: right .2s; }
.primary-nav > a:not(.button):hover::after, .primary-nav > a:not(.button):focus-visible::after, .nav-group:hover .nav-trigger::after, .nav-group:focus-within .nav-trigger::after { right: 0; }
.nav-group { position: relative; }
.nav-trigger { display: flex; align-items: center; gap: 6px; padding: 12px 0; background: transparent; border: 0; cursor: pointer; font: inherit; }
.nav-trigger span { color: var(--yellow); font-size: .78rem; transition: transform .2s; }
.nav-group:hover .nav-trigger span, .nav-group:focus-within .nav-trigger span, .nav-group.open .nav-trigger span { transform: rotate(180deg); }
.primary-nav .nav-portal { color: var(--yellow) !important; }
.dropdown-menu { position: absolute; top: calc(100% + 16px); left: 50%; z-index: 120; width: 275px; padding: 9px; visibility: hidden; opacity: 0; background: rgba(12,14,18,.98); border: 1px solid rgba(245,196,0,.35); border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,.38); transform: translate(-50%, 10px); transition: opacity .18s, transform .18s, visibility .18s; }
.dropdown-menu::before { content: ''; position: absolute; top: -8px; left: 50%; width: 14px; height: 14px; background: #0c0e12; border-top: 1px solid rgba(245,196,0,.35); border-left: 1px solid rgba(245,196,0,.35); transform: translateX(-50%) rotate(45deg); }
.nav-group:hover .dropdown-menu, .nav-group:focus-within .dropdown-menu, .nav-group.open .dropdown-menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.dropdown-menu a { display: block; padding: 10px 12px; color: rgba(255,255,255,.78); border-radius: 7px; font-size: .76rem; line-height: 1.35; transition: color .18s, background .18s, transform .18s; }
.dropdown-menu a + a { border-top: 1px solid rgba(255,255,255,.055); }
.dropdown-menu a:hover, .dropdown-menu a:focus-visible { color: var(--white); background: rgba(245,196,0,.11); transform: translateX(3px); }
.dropdown-menu b { display: block; color: var(--yellow); font-size: .8rem; }
.dropdown-menu small { display: block; margin-top: 3px; color: rgba(255,255,255,.48); font-size: .64rem; font-weight: 500; }
.nav-group-wide .dropdown-menu { width: 325px; }
.dropdown-menu-right { right: 0; left: auto; transform: translate(0, 10px); }
.dropdown-menu-right::before { right: 42px; left: auto; transform: rotate(45deg); }
.nav-group:hover .dropdown-menu-right, .nav-group:focus-within .dropdown-menu-right, .nav-group.open .dropdown-menu-right { transform: translate(0, 0); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; }
.menu-toggle i { display: block; height: 2px; margin: 5px 0; background: var(--white); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border: 1px solid var(--yellow); border-radius: 7px; background: var(--yellow); color: var(--black); font-weight: 800; box-shadow: 0 12px 30px rgba(245,196,0,.22); transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: #ffda2e; box-shadow: 0 16px 35px rgba(245,196,0,.32); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .8rem; }
.button-outline { background: transparent; color: var(--black); border-color: rgba(8,10,13,.3); box-shadow: none; }
.button-outline:hover, .button-outline:focus-visible { background: var(--white); border-color: var(--gold); }
.button-light { background: var(--white); border-color: var(--white); }

.hero { position: relative; min-height: 690px; overflow: hidden; padding: 132px 0 78px; color: var(--ink); background: radial-gradient(circle at 76% 48%, rgba(245,196,0,.18), transparent 24%), linear-gradient(135deg, #fff 0%, var(--ivory) 56%, #fffdf7 100%); border-bottom: 1px solid rgba(217,165,20,.22); }
.hero::before { content: ''; position: absolute; top: 80px; right: 4%; width: 510px; height: 510px; background: radial-gradient(circle, rgba(245,196,0,.13), rgba(245,196,0,.025) 48%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; right: -11%; bottom: -46%; width: 610px; height: 610px; border: 1px solid rgba(217,165,20,.14); border-radius: 50%; box-shadow: 0 0 0 80px rgba(245,196,0,.025), 0 0 0 160px rgba(245,196,0,.014); }
.hero-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(217,165,20,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(217,165,20,.08) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, black, transparent 68%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 58px; }
.eyebrow { margin: 0 0 18px; color: var(--yellow); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 36px; height: 2px; margin: 0 10px 3px 0; background: currentColor; }
.eyebrow.dark { color: #9a7300; }
.eyebrow.centered span:last-child { margin: 0 0 3px 10px; }
.hero h1 { max-width: 650px; margin: 0; color: var(--black); font: 700 clamp(2.65rem, 4.1vw, 4.15rem)/1.06 Playfair Display, Georgia, serif; letter-spacing: -.035em; }
.hero h1 em { position: relative; display: block; color: var(--black); font-style: normal; }
.hero h1 em::after { content: ''; position: absolute; z-index: -1; left: 0; bottom: 5px; width: 58%; height: 9px; background: rgba(245,196,0,.72); }
.hero-lead { margin: 24px 0 10px; color: var(--black); font-size: clamp(1.02rem, 1.45vw, 1.22rem); font-weight: 800; }
.hero-description { max-width: 650px; margin: 0; color: var(--muted); font-size: .94rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 29px 0 24px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px 23px; margin: 0; padding: 0; color: #555d67; font-size: .77rem; list-style: none; }
.hero-trust span { color: var(--yellow); }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.ecosystem-frame { position: relative; width: min(100%, 740px); padding: 10px 10px 16px; }
.ecosystem-frame::before { content: ''; position: absolute; inset: 6% 8% 20%; z-index: -1; background: radial-gradient(circle, rgba(245,196,0,.27), rgba(245,196,0,.06) 48%, transparent 72%); filter: blur(24px); }
.ecosystem-art { width: 100%; border-radius: 42% 42% 18% 18%; mix-blend-mode: multiply; filter: saturate(1.07) contrast(1.03) drop-shadow(0 25px 38px rgba(126,91,0,.12)); }
.ecosystem-labels { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin: -22px 2.5% 0; }
.ecosystem-labels span { display: flex; min-height: 48px; align-items: center; gap: 7px; padding: 7px 9px; color: var(--black); background: rgba(255,255,255,.96); border: 1px solid rgba(217,165,20,.48); border-radius: 9px; box-shadow: 0 10px 25px rgba(92,67,0,.09); font-size: .57rem; font-weight: 800; line-height: 1.25; }
.ecosystem-labels b { display: grid; width: 24px; height: 24px; flex: 0 0 24px; place-items: center; background: var(--yellow); border-radius: 50%; font-size: .72rem; }

.confidence-bar { position: relative; z-index: 4; margin-top: -30px; }
.confidence-inner { display: grid; grid-template-columns: .85fr 1.6fr; align-items: center; gap: 35px; min-height: 112px; padding: 22px 36px; color: var(--white); background: var(--black); border: 1px solid rgba(245,196,0,.55); border-radius: 14px; box-shadow: var(--shadow); }
.confidence-inner h2 { margin: 0; font: 600 1.5rem/1.3 Playfair Display, Georgia, serif; }
.confidence-inner h2 span { display: block; color: var(--yellow); }
.confidence-points { display: grid; grid-template-columns: repeat(3, 1fr); }
.confidence-points div { display: flex; align-items: center; gap: 12px; padding: 6px 20px; border-left: 1px solid rgba(245,196,0,.35); }
.confidence-points b { color: var(--yellow); font-size: .78rem; }.confidence-points span { font-weight: 700; }

.section { padding: 110px 0; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.section h2, .center-heading h2 { margin: 0; font: 700 clamp(2.35rem, 4.2vw, 4rem)/1.12 Playfair Display, Georgia, serif; letter-spacing: -.03em; }
.about-copy { padding-top: 18px; color: var(--muted); }
.about-copy p { margin-top: 0; }.large-copy { color: var(--ink); font: 600 1.45rem/1.45 Playfair Display, Georgia, serif; }
.text-link { display: inline-flex; gap: 10px; margin-top: 16px; color: #765900; font-weight: 800; }.text-link span { transition: transform .2s; }.text-link:hover span { transform: translateX(5px); }

.services-section { background: var(--warm-gray); }
.center-heading { max-width: 780px; margin: 0 auto 55px; text-align: center; }
.center-heading > p:last-child { max-width: 680px; margin: 20px auto 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 315px; padding: 31px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 10px 35px rgba(8,10,13,.045); transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--yellow), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(217,165,20,.5); box-shadow: 0 20px 50px rgba(8,10,13,.1); }.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; color: var(--black); background: var(--yellow); border-radius: 50%; }.service-icon svg { width: 28px; }
.service-card h3 { margin: 24px 0 12px; font: 700 1.25rem/1.28 Playfair Display, Georgia, serif; }.service-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.service-card a { position: absolute; left: 31px; bottom: 27px; color: #765900; font-size: .8rem; font-weight: 800; }.service-card a span { display: inline-block; margin-left: 5px; transition: transform .2s; }.service-card a:hover span { transform: translateX(5px); }
.more-services { margin-top: 28px; padding: 28px 33px; background: var(--ivory); border: 1px solid rgba(217,165,20,.3); border-radius: 14px; }.more-services > span { font-weight: 800; }.more-services ul { display: flex; flex-wrap: wrap; gap: 8px 28px; margin: 11px 0 0; padding: 0; color: var(--muted); font-size: .86rem; list-style: none; }.more-services li::before { content: '•'; margin-right: 8px; color: var(--gold); }

.approach-section { color: var(--white); background: var(--black); }
.approach-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }.approach-copy h2 { color: var(--white); }.approach-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); }.approach-copy .button { margin-top: 24px; }
.steps { margin: 0; padding: 0; list-style: none; }.steps li { display: grid; grid-template-columns: 75px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.12); }.steps li:first-child { border-top: 1px solid rgba(255,255,255,.12); }.steps b { color: var(--yellow); font: 700 1.35rem Playfair Display, Georgia, serif; }.steps h3 { margin: 0 0 6px; font-size: 1.05rem; }.steps p { margin: 0; color: rgba(255,255,255,.58); font-size: .87rem; }

.portal-section { overflow: hidden; background: var(--ivory); }.portal-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }.portal-copy p:not(.eyebrow) { color: var(--muted); }.check-list { margin: 27px 0 0; padding: 0; list-style: none; }.check-list li { margin: 10px 0; font-weight: 700; }.check-list li::before { content: '✓'; display: inline-grid; width: 25px; height: 25px; margin-right: 10px; place-items: center; color: var(--black); background: var(--yellow); border-radius: 50%; font-size: .72rem; }
.portal-preview { overflow: hidden; color: var(--white); background: var(--black); border: 4px solid var(--charcoal); border-radius: 18px; box-shadow: 0 35px 80px rgba(8,10,13,.25); transform: perspective(1200px) rotateY(-3deg); }.portal-top { height: 55px; display: flex; align-items: center; gap: 12px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); }.mini-brand { display: grid; width: 30px; height: 30px; place-items: center; color: var(--black); background: var(--yellow); font-weight: 900; border-radius: 6px; }.portal-top i { width: 8px; height: 8px; margin-left: auto; background: #55d88a; border-radius: 50%; }.portal-body { min-height: 335px; display: grid; grid-template-columns: 150px 1fr; }.portal-body aside { display: flex; flex-direction: column; gap: 16px; padding: 24px 17px; background: #0f1319; font-size: .68rem; }.portal-body aside b { padding: 8px 10px; color: var(--black); background: var(--yellow); border-radius: 5px; }.portal-body aside span { color: rgba(255,255,255,.56); }.portal-main { padding: 25px; }.portal-main > p { margin: 0; color: rgba(255,255,255,.55); font-size: .7rem; }.portal-main h3 { margin: 2px 0 18px; }.portal-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }.portal-cards span { padding: 15px 11px; background: #151a22; border: 1px solid rgba(245,196,0,.25); border-radius: 8px; font-size: .58rem; }.portal-cards b { display: block; margin-bottom: 3px; color: var(--yellow); font-size: 1rem; }.portal-activity { margin-top: 12px; padding: 16px; background: #151a22; border-radius: 8px; font-size: .67rem; }.portal-activity i { display: block; width: 80%; height: 7px; margin-top: 11px; background: rgba(255,255,255,.08); border-radius: 4px; }.portal-activity i:nth-child(3) { width: 63%; }.portal-activity i:nth-child(4) { width: 72%; }

.contact-section { padding: 100px 0; background: var(--white); }.contact-panel { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 45px; overflow: hidden; padding: 65px 70px; color: var(--white); background: linear-gradient(125deg, var(--charcoal), var(--black)); border-radius: var(--radius); box-shadow: var(--shadow); }.contact-panel::after { content: ''; position: absolute; right: -120px; width: 380px; height: 380px; border: 55px solid rgba(245,196,0,.08); border-radius: 50%; }.contact-panel > * { position: relative; z-index: 2; }.contact-panel h2 { max-width: 730px; margin: 0; font: 700 clamp(2.1rem, 3.7vw, 3.5rem)/1.12 Playfair Display, Georgia, serif; }.contact-panel p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.64); }

.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.65); background: var(--black); }.footer-grid { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 60px; }.footer-brand { color: var(--white); }.footer-grid > div:first-child p { max-width: 310px; }.footer-grid h3 { margin: 0 0 16px; color: var(--white); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 8px; font-size: .8rem; }.footer-grid a:hover { color: var(--yellow); }
.footer-credit { position: relative; display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 55px; padding: 24px 30px; overflow: hidden; text-align: left; background: linear-gradient(110deg, rgba(245,196,0,.09), rgba(255,255,255,.025), rgba(245,196,0,.09)); border: 1px solid rgba(245,196,0,.32); border-radius: 14px; }
.footer-credit::before, .footer-credit::after { content: ''; position: absolute; width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--yellow)); }.footer-credit::before { left: 25px; }.footer-credit::after { right: 25px; transform: rotate(180deg); }
.footer-credit-logo { width: 260px; height: 94px; padding: 4px 8px; flex: 0 0 auto; object-fit: contain; background: linear-gradient(135deg, #fff, var(--ivory)); border: 1px solid rgba(245,196,0,.5); border-radius: 9px; filter: drop-shadow(0 7px 14px rgba(245,196,0,.2)); }
.footer-credit-copy { position: relative; z-index: 2; display: grid; line-height: 1.25; }
.footer-credit-copy strong { color: var(--white); font: 700 1.12rem Playfair Display, Georgia, serif; letter-spacing: .035em; }
.footer-credit-copy > span { color: var(--yellow); font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-credit-copy small { margin-top: 5px; color: rgba(255,255,255,.52); font-size: .67rem; }.footer-credit-copy small a { color: rgba(255,255,255,.8); font-weight: 700; }.footer-credit-copy small a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }.reveal-delay { transition-delay: .15s; }.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
    .primary-nav { gap: 15px; }.primary-nav > a:not(.button) { display: none; }
    .hero-layout { grid-template-columns: 1fr; }.hero-copy { max-width: 760px; }.hero-visual { min-height: 480px; }.hero { padding-bottom: 105px; }
    .confidence-inner { grid-template-columns: 1fr; }.confidence-inner h2 span { display: inline; }.confidence-points div:first-child { border-left: 0; }
    .service-grid { grid-template-columns: repeat(2,1fr); }.approach-panel { gap: 55px; }.portal-layout { grid-template-columns: 1fr; }.portal-copy { max-width: 720px; }.portal-preview { transform: none; }
}

@media (max-width: 760px) {
    :root { --shell: min(100% - 28px, 1320px); }
    .header-inner { min-height: 78px; }.brand-logo { width: 205px; height: 64px; }.site-header .brand-logo { height: 62px; }
    .menu-toggle { display: block; }.primary-nav { position: fixed; inset: 78px 0 auto; display: flex; max-height: 0; flex-direction: column; align-items: stretch; gap: 0; overflow: hidden; background: var(--black); transition: max-height .3s ease; }.primary-nav.open { max-height: calc(100vh - 78px); padding: 12px 20px 25px; overflow-y: auto; }.primary-nav > a:not(.button) { display: block; padding: 13px 5px; border-bottom: 1px solid rgba(255,255,255,.08); }.primary-nav .button { margin-top: 15px; }
    .nav-group { border-bottom: 1px solid rgba(255,255,255,.08); }.nav-trigger { width: 100%; justify-content: space-between; padding: 14px 5px; }.nav-trigger::after { display: none; }
    .dropdown-menu, .dropdown-menu-right, .nav-group-wide .dropdown-menu { position: static; width: 100%; max-height: 0; padding: 0 5px; visibility: visible; overflow: hidden; opacity: 1; background: #10141a; border: 0; border-radius: 0; box-shadow: none; transform: none; transition: max-height .25s, padding .25s; }
    .dropdown-menu::before { display: none; }.nav-group:hover .dropdown-menu, .nav-group:focus-within .dropdown-menu { max-height: 0; padding-block: 0; transform: none; }.nav-group.open .dropdown-menu, .nav-group.open .dropdown-menu-right { max-height: 520px; padding-block: 8px; transform: none; }
    .dropdown-menu a { padding: 10px 13px; }.dropdown-menu a:hover, .dropdown-menu a:focus-visible { transform: none; }
    .hero { min-height: auto; padding: 112px 0 92px; }.hero h1 { font-size: clamp(2.25rem, 10vw, 3.5rem); }.hero-layout { gap: 30px; }.hero-visual { min-height: 0; margin-inline: -12px; }.ecosystem-labels { grid-template-columns: repeat(2,1fr); margin-top: -12px; }.hero-description { font-size: .92rem; }.hero-actions { flex-direction: column; align-items: stretch; }.hero-trust { flex-direction: column; gap: 8px; }
    .confidence-inner { padding: 26px 22px; }.confidence-points { grid-template-columns: 1fr; }.confidence-points div { padding: 10px 0; border-left: 0; border-top: 1px solid rgba(245,196,0,.25); }
    .section { padding: 80px 0; }.split-layout, .approach-panel { grid-template-columns: 1fr; gap: 35px; }.service-grid { grid-template-columns: 1fr; }.more-services ul { display: block; }.more-services li { margin: 8px 0; }
    .portal-body { grid-template-columns: 95px 1fr; }.portal-body aside { padding: 20px 9px; }.portal-cards { grid-template-columns: 1fr; }.portal-preview { font-size: .85rem; }
    .contact-panel { flex-direction: column; align-items: flex-start; padding: 45px 28px; }.contact-panel .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child { grid-column: 1 / -1; }.footer-credit::before, .footer-credit::after { display: none; }.footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
    .ecosystem-labels { margin-inline: 0; }.ecosystem-labels span { min-height: 44px; padding: 6px; font-size: .52rem; }.ecosystem-labels b { width: 20px; height: 20px; flex-basis: 20px; }
    .footer-grid { grid-template-columns: 1fr; }.footer-grid > div:first-child { grid-column: auto; }.footer-credit { flex-direction: column; align-items: center; padding: 22px 18px; text-align: center; }.footer-credit-logo { width: 230px; height: 82px; }.footer-credit-copy strong { font-size: 1rem; }.footer-credit-copy small { font-size: .6rem; }
}

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