/* TokenSket shared styles */
:root {
  --blue: #2980FE;
  --blue-dark: #1767D6;
  --blue-soft: #EAF3FF;
  --blue-pale: #F5F8FD;
  --gray-soft: #F7F9FC;
  --white: #FFFFFF;
  --text: #172033;
  --body: #465266;
  --muted: #718096;
  --border: #DCE6F2;
  --footer: #10233F;
  --shadow: 0 18px 50px rgba(38, 91, 150, .10);
  --radius: 22px;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--body); background: var(--white); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif; line-height: 1.75; }
body.menu-open { overflow: hidden; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { color: var(--blue); }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; background: var(--footer); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(220,230,242,.9); backdrop-filter: blur(16px); }
.header-shell { max-width: 1340px; margin: 0 auto; min-height: 78px; padding: 0 24px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: auto; max-height: 44px; object-fit: contain; }
.desktop-nav { display: flex; align-items: stretch; gap: 3px; margin-left: auto; white-space: nowrap; }
.nav-link { position: relative; display: inline-flex; align-items: center; min-height: 78px; padding: 0 11px; color: var(--text); font-size: 15px; font-weight: 700; }
.nav-link::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--blue); transform: scaleX(0); transition: .2s ease; }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-group { position: relative; }
.mega-menu { position: absolute; left: 50%; top: calc(100% - 5px); width: 760px; padding: 22px; display: grid; grid-template-columns: 1.25fr repeat(2, 1fr); gap: 10px; border: 1px solid var(--border); border-radius: 0 0 22px 22px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: .2s ease; }
.mega-menu-narrow { width: 650px; }
.nav-group:hover .mega-menu, .nav-group:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu a, .mega-intro { min-height: 82px; padding: 14px; border-radius: 14px; }
.mega-menu a { display: flex; flex-direction: column; gap: 4px; color: var(--text); background: var(--gray-soft); transition: .2s ease; }
.mega-menu a:hover, .mega-menu a:focus-visible { background: var(--blue-soft); transform: translateY(-2px); }
.mega-menu strong { font-size: 15px; }
.mega-menu span { color: var(--muted); font-size: 13px; line-height: 1.55; }
.mega-intro { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; }
.mega-intro strong { display: block; margin-bottom: 5px; }
.mega-intro span { color: rgba(255,255,255,.84); }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.download-btn, .primary-btn, .secondary-btn, .text-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 22px; border-radius: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.download-btn, .primary-btn { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 10px 24px rgba(41,128,254,.22); }
.download-btn:hover, .primary-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(41,128,254,.28); }
.secondary-btn { color: var(--blue-dark); background: var(--blue-soft); border: 1px solid #cfe3ff; }
.secondary-btn:hover { transform: translateY(-2px); background: #deecff; }
.text-btn { min-height: 42px; padding: 8px 0; color: var(--blue-dark); }
.menu-toggle { width: 48px; height: 48px; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; border: 1px solid var(--border); border-radius: 14px; background: #fff; }
.menu-toggle span { width: 21px; height: 2px; margin: 0 auto; border-radius: 2px; background: var(--text); }
.menu-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(16,35,63,.42); opacity: 0; visibility: hidden; transition: .25s ease; }
.menu-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; z-index: 1200; top: 0; right: 0; bottom: 0; width: min(92vw, 520px); background: #fff; transform: translateX(105%); transition: .28s ease; overflow-y: auto; box-shadow: -20px 0 60px rgba(16,35,63,.18); }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-head { position: sticky; top: 0; z-index: 2; min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--border); }
.menu-close { width: 46px; height: 46px; border: 0; border-radius: 14px; color: var(--text); background: var(--blue-soft); font-size: 28px; line-height: 1; }
.mobile-menu-body { padding: 18px 20px 36px; }
.mobile-home, .mobile-group > button { width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 13px 4px; color: var(--text); border: 0; border-bottom: 1px solid var(--border); background: transparent; font-weight: 800; text-align: left; }
.mobile-group > div { display: none; padding: 8px 0 12px; }
.mobile-group.is-open > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-group > div a { min-height: 46px; display: flex; align-items: center; padding: 10px 12px; border-radius: 12px; background: var(--gray-soft); color: var(--body); font-weight: 650; }
.mobile-menu-download { width: 100%; margin-top: 22px; }
main { overflow: clip; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 62px 0; }
.section-blue { background: var(--blue-pale); }
.section-soft { background: var(--gray-soft); }
.section-dark { color: #fff; background: linear-gradient(145deg, var(--footer), #183c6e 70%, #215ca8); }
.section-dark .section-kicker, .section-dark .eyebrow { color: #8fc4ff; }
.section-dark p, .section-dark li { color: rgba(255,255,255,.78); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker, .eyebrow { display: inline-flex; margin-bottom: 10px; color: var(--blue-dark); font-size: 13px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, h3, h4 { margin: 0 0 14px; color: var(--text); line-height: 1.25; }
h1 { font-size: clamp(38px, 5vw, 68px); letter-spacing: -.035em; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.025em; }
h3 { font-size: 21px; }
p { margin: 0 0 16px; }
ul, ol { margin: 0; padding-left: 1.2em; }
.hero { position: relative; padding: 72px 0 78px; background: radial-gradient(circle at 78% 18%, rgba(41,128,254,.18), transparent 32%), linear-gradient(180deg, #fff, var(--blue-pale)); }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; left: -210px; bottom: -200px; border: 1px solid #cfe3ff; border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 54px; }
.hero-copy p { max-width: 680px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.hero-tags span { padding: 7px 11px; border: 1px solid #d5e7ff; border-radius: 999px; color: var(--blue-dark); background: rgba(255,255,255,.78); font-size: 13px; font-weight: 800; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 8% 5%; border-radius: 36% 64% 58% 42% / 44% 44% 56% 56%; background: linear-gradient(145deg, #dcecff, #fff); box-shadow: var(--shadow); }
.hero-visual img { position: relative; z-index: 1; max-height: 500px; object-fit: contain; }
.float-note { position: absolute; z-index: 2; max-width: 180px; padding: 12px 15px; border: 1px solid rgba(220,230,242,.9); border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: 0 12px 30px rgba(38,91,150,.12); color: var(--text); font-size: 13px; font-weight: 800; }
.float-note.one { left: 0; top: 18%; }
.float-note.two { right: -2%; top: 39%; }
.float-note.three { left: 8%; bottom: 7%; }
.capability-strip { position: relative; z-index: 4; margin-top: -24px; }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.capability-item { padding: 24px; border-right: 1px solid var(--border); }
.capability-item:last-child { border-right: 0; }
.capability-item strong { display: block; margin-bottom: 6px; color: var(--text); font-size: 17px; }
.capability-item p { margin: 0; color: var(--muted); font-size: 14px; }
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.category-card { position: relative; min-height: 220px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 28px rgba(38,91,150,.06); overflow: hidden; }
.category-card::after { content: ""; position: absolute; width: 86px; height: 86px; right: -28px; bottom: -28px; border-radius: 50%; background: var(--blue-soft); }
.category-card.wide { grid-column: span 2; background: linear-gradient(135deg, #fff, var(--blue-pale)); }
.category-card.featured { grid-column: span 2; min-height: 250px; color: #fff; background: linear-gradient(145deg, var(--blue), var(--blue-dark)); border-color: transparent; }
.category-card.featured h3, .category-card.featured p, .category-card.featured a { color: #fff; }
.category-card p { color: var(--muted); }
.category-card a { position: relative; z-index: 1; font-weight: 850; }
.image-copy, .split-layout, .feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.image-panel { min-height: 420px; display: grid; place-items: center; padding: 34px; border-radius: 28px; background: linear-gradient(145deg, #dcecff, #fff); }
.image-panel img { max-height: 430px; object-fit: contain; }
.content-panel { padding: 36px; border: 1px solid var(--border); border-radius: 24px; background: #fff; box-shadow: 0 16px 42px rgba(38,91,150,.07); }
.check-list { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-dark); background: var(--blue-soft); font-size: 12px; font-weight: 900; }
.content-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.offset-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 22px; align-items: start; }
.offset-card { padding: 34px; border-radius: 26px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.offset-card:nth-child(2) { margin-top: 62px; background: linear-gradient(145deg, var(--blue-soft), #fff); }
.topic-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: stretch; }
.topic-card { padding: 36px; border-radius: 28px; background: #fff; border: 1px solid var(--border); }
.topic-card.primary-topic { background: linear-gradient(145deg, #fff, var(--blue-pale)); }
.topic-media { margin-top: 24px; min-height: 240px; display: grid; place-items: center; border-radius: 20px; background: var(--blue-soft); }
.topic-media img { max-height: 280px; object-fit: contain; }
.security-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: center; }
.security-points { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.security-point { padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); }
.security-point strong { display: block; margin-bottom: 5px; color: #fff; }
.swap-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; }
.swap-image { padding: 30px; border-radius: 28px; background: linear-gradient(145deg, #fff, var(--blue-soft)); box-shadow: var(--shadow); }
.swap-image img { max-height: 380px; margin: 0 auto; object-fit: contain; }
.process { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; counter-reset: step; }
.process-item { position: relative; min-height: 245px; padding: 22px 18px; border: 1px solid var(--border); border-radius: 20px; background: #fff; }
.process-item::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 20px; border-radius: 14px; color: #fff; background: var(--blue); font-weight: 900; }
.process-item p { color: var(--muted); font-size: 14px; }
.process-item a { font-weight: 850; }
.eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.eco-card { padding: 34px; border-radius: 28px; border: 1px solid var(--border); background: #fff; }
.eco-card:first-child { background: linear-gradient(135deg, #eef6ff, #fff); }
.timeline { display: grid; gap: 0; border-top: 1px solid var(--border); }
.timeline-item { display: grid; grid-template-columns: 130px 1fr auto; gap: 22px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--border); }
.timeline-item time { color: var(--blue-dark); font-weight: 850; }
.timeline-item h3 { margin-bottom: 5px; font-size: 18px; }
.timeline-item p { margin: 0; color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review { min-height: 205px; padding: 24px; border: 1px solid var(--border); border-radius: 22px; background: #fff; }
.review:nth-child(2n) { background: var(--blue-pale); }
.review p { color: var(--body); }
.review span { color: var(--muted); font-size: 13px; font-weight: 800; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-item > button { width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px; border: 0; color: var(--text); background: transparent; text-align: left; font-weight: 850; }
.faq-item > button::after { content: "＋"; color: var(--blue); font-size: 24px; }
.faq-item.is-open > button::after { content: "－"; }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--body); }
.faq-item.is-open .faq-answer { display: block; }
.download-cta { position: relative; padding: 56px; border-radius: 30px; text-align: center; background: linear-gradient(145deg, var(--blue), var(--blue-dark)); box-shadow: 0 22px 50px rgba(41,128,254,.28); overflow: hidden; }
.download-cta::before, .download-cta::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.download-cta::before { width: 260px; height: 260px; left: -90px; top: -140px; }
.download-cta::after { width: 320px; height: 320px; right: -130px; bottom: -210px; }
.download-cta h2, .download-cta p { position: relative; z-index: 1; color: #fff; }
.download-cta p { max-width: 720px; margin: 0 auto 24px; color: rgba(255,255,255,.82); }
.download-cta .download-btn { position: relative; z-index: 1; color: var(--blue-dark); background: #fff; box-shadow: none; }
.page-hero { padding: 76px 0 58px; background: linear-gradient(180deg, #fff, var(--blue-pale)); border-bottom: 1px solid var(--border); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.page-hero h1 { font-size: clamp(38px, 5vw, 60px); }
.page-hero p { max-width: 760px; font-size: 18px; }
.page-hero-media { min-height: 330px; display: grid; place-items: center; padding: 28px; border-radius: 28px; background: linear-gradient(145deg, #dcecff, #fff); box-shadow: var(--shadow); }
.page-hero-media img { max-height: 330px; object-fit: contain; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--blue-dark); }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.info-card { padding: 26px; border: 1px solid var(--border); border-radius: 22px; background: #fff; }
.info-card.accent { background: linear-gradient(145deg, var(--blue-soft), #fff); }
.info-card p { color: var(--muted); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; counter-reset: innerstep; }
.step-card { padding: 28px; border-radius: 22px; background: var(--gray-soft); border: 1px solid var(--border); }
.step-card::before { counter-increment: innerstep; content: counter(innerstep); width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 13px; color: #fff; background: var(--blue); font-weight: 900; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 20px; background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare-table th, .compare-table td { padding: 17px 18px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.compare-table th { color: var(--text); background: var(--blue-pale); }
.compare-table tr:last-child td { border-bottom: 0; }
.notice-box { padding: 25px 28px; border-left: 4px solid var(--blue); border-radius: 0 18px 18px 0; background: var(--blue-pale); }
.notice-box strong { display: block; margin-bottom: 8px; color: var(--text); }
.prose { max-width: 880px; }
.prose h2 { margin-top: 38px; font-size: 32px; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { font-size: 16px; }
.link-panel { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.site-footer { color: rgba(255,255,255,.74); background: var(--footer); }
.footer-shell { max-width: var(--max); margin: 0 auto; padding: 68px 20px 46px; display: grid; grid-template-columns: 1.1fr 1.9fr; gap: 56px; }
.footer-brand img { width: auto; max-height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 420px; }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.footer-links strong { display: block; margin-bottom: 14px; color: #fff; }
.footer-links a { display: block; margin: 8px 0; color: rgba(255,255,255,.72); }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 22px 20px 30px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; }
@media (min-width: 1101px) {
  .mobile-menu, .menu-overlay { display: none; }
}
@media (max-width: 1180px) {
  .desktop-nav { gap: 0; }
  .nav-link { padding: 0 7px; font-size: 14px; }
  .header-shell { gap: 14px; padding: 0 18px; }
  .header-download { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .category-card.wide, .category-card.featured { grid-column: span 1; }
  .process { grid-template-columns: repeat(3,1fr); }
  .review-grid, .info-grid, .steps-grid { grid-template-columns: repeat(2,1fr); }
  .footer-shell { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 48px; }
  .hero-grid, .page-hero-grid, .image-copy, .split-layout, .feature-split, .offset-grid, .topic-grid, .security-layout, .swap-layout, .eco-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .float-note.two { right: 0; }
  .capability-grid { grid-template-columns: repeat(2,1fr); }
  .capability-item:nth-child(2) { border-right: 0; }
  .capability-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .offset-card:nth-child(2) { margin-top: 0; }
  .security-points { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 110px 1fr; }
  .timeline-item > a { grid-column: 2; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  .header-shell { min-height: 68px; padding: 0 12px; }
  .brand img { max-width: 126px; max-height: 38px; }
  .header-download { min-height: 44px; padding: 9px 13px; border-radius: 12px; font-size: 14px; }
  .menu-toggle { width: 44px; height: 44px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 56px 0; }
  .section-tight { padding: 46px 0; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero-copy p, .page-hero p { font-size: 16px; }
  .hero-visual { min-height: 390px; }
  .hero-visual img { max-height: 360px; }
  .float-note { max-width: 154px; padding: 9px 11px; font-size: 12px; }
  .float-note.one { top: 10%; }
  .float-note.two { top: 43%; }
  .float-note.three { left: 0; bottom: 2%; }
  .capability-strip { margin-top: 0; padding-top: 16px; }
  .capability-grid, .category-grid, .review-grid, .info-grid, .steps-grid, .security-points { grid-template-columns: 1fr; }
  .capability-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .capability-item:last-child { border-bottom: 0; }
  .category-card, .category-card.featured { min-height: auto; }
  .content-panel, .offset-card, .topic-card, .eco-card { padding: 25px; }
  .image-panel { min-height: 320px; padding: 22px; }
  .process { grid-template-columns: 1fr; }
  .process-item { min-height: auto; }
  .timeline-item { grid-template-columns: 1fr; gap: 7px; }
  .timeline-item > a { grid-column: 1; }
  .download-cta { padding: 38px 22px; }
  .page-hero { padding: 52px 0 42px; }
  .page-hero-media { min-height: 280px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-group.is-open > div { grid-template-columns: 1fr; }
}
@media (max-width: 390px) {
  .header-download { padding-left: 10px; padding-right: 10px; }
  .header-actions { gap: 7px; }
  .footer-links { grid-template-columns: 1fr; }
}
