:root {
  color-scheme: light;
  --bg: #f6f8f5;
  --surface: #ffffff;
  --surface-strong: #eef3f0;
  --surface-soft: #f2f6f4;
  --line: #d6e1dc;
  --line-strong: #b8cfc3;
  --text: #10241d;
  --muted: #52665e;
  --accent: #0b6e4f;
  --accent-strong: #07583f;
  --accent-soft: #ddf2e8;
  --ink: #ffffff;
  --warning: #6b4b00;
  --warning-bg: #fff4d6;
  --danger: #9b1c1c;
  --danger-bg: #fdecec;
  --disabled: #60736a;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 18px 50px rgb(16 36 29 / 10%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 92% 5%, rgb(11 110 79 / 6%), transparent 34rem),
    radial-gradient(circle at 8% 42%, rgb(69 151 204 / 5%), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.16em; }
a:hover { color: var(--accent-strong); }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent-strong);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding-block: 88px; }
.section-compact { padding-block: 52px; }
.section-border { border-top: 1px solid var(--line); }
.muted { color: var(--muted); }
.measure { max-width: 72ch; }
.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; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(184 207 195 / 78%);
  background: #fff;
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(18px);
}

.notice-bar {
  border-bottom: 1px solid #e7d59e;
  background: var(--warning-bg);
  color: var(--warning);
  font-size: 14px;
}
.notice-bar .container { padding-block: 9px; }
.notice-bar strong { color: var(--warning); }

.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: -0.03em; }
.brand-mark { width: 38px; height: 38px; }
.brand-text span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav a { min-height: 44px; display: inline-flex; align-items: center; color: var(--muted); font-weight: 700; text-decoration: none; }
.nav a[aria-current="page"], .nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 8px; }
.cart-link { position: relative; }
.cart-count {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.menu-button { display: none; width: 48px; height: 48px; margin-left: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); color: var(--text); }

.hero { padding-block: 104px 78px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .72fr); align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-weight: 870; line-height: 1.08; letter-spacing: -0.045em; text-wrap: balance; }
h1 { max-width: 14ch; font-size: clamp(46px, 7vw, 86px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
.lead { max-width: 64ch; margin: 26px 0 0; color: var(--muted); font-size: clamp(19px, 2vw, 23px); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 78%);
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-strong); }
.button-primary { border-color: var(--accent); background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgb(8 122 82 / 18%); }
.button-primary:hover { border-color: var(--accent-strong); background: var(--accent-strong); color: #fff; }
.button-quiet { min-height: 44px; padding: 8px 12px; color: var(--muted); }
.button-wide { width: 100%; }
.stack-top { margin-top: 12px; }
.grid-top { margin-top: 28px; }

.signal-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  display: grid;
  align-content: space-between;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff, var(--accent-soft));
  box-shadow: var(--shadow);
}
.signal-card::before {
  content: "";
  position: absolute;
  inset: -25% -35% auto auto;
  width: 320px;
  aspect-ratio: 1;
  border: 1px solid rgb(8 122 82 / 22%);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgb(8 122 82 / 5%), 0 0 0 92px rgb(8 122 82 / 3%);
}
.signal-top, .signal-bottom { position: relative; z-index: 1; }
.signal-number { color: var(--accent); font-size: clamp(72px, 10vw, 126px); font-weight: 950; line-height: .8; letter-spacing: -0.08em; }
.signal-list { list-style: none; display: grid; gap: 12px; margin: 28px 0 0; padding: 0; }
.signal-list li { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.signal-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgb(8 122 82 / 10%); }

.proof-strip { border-block: 1px solid var(--line); background: rgb(255 255 255 / 72%); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 26px 24px; border-left: 1px solid var(--line); }
.proof-item:first-child { border-left: 0; }
.proof-item strong { display: block; margin-bottom: 4px; font-size: 18px; }
.proof-item span { color: var(--muted); font-size: 15px; }

.flagship-hero { padding-block: 92px 74px; overflow: hidden; }
.flagship-hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .8fr); align-items: center; gap: 64px; }
.flagship-hero h1 { max-width: 13ch; }
.ecosystem-orbit { position: relative; min-height: 470px; border: 1px solid var(--line-strong); border-radius: 34px; background: linear-gradient(145deg, #fff, #edf8f2); box-shadow: var(--shadow); }
.ecosystem-orbit::before, .ecosystem-orbit::after { content: ""; position: absolute; inset: 50% auto auto 50%; border: 1px solid rgb(11 110 79 / 18%); border-radius: 50%; transform: translate(-50%, -50%); }
.ecosystem-orbit::before { width: 310px; height: 310px; }
.ecosystem-orbit::after { width: 410px; height: 410px; }
.orbit-core, .orbit-service { position: absolute; z-index: 2; display: grid; gap: 3px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgb(255 255 255 / 94%); }
.orbit-core { inset: 50% auto auto 50%; min-width: 190px; text-align: center; transform: translate(-50%, -50%); box-shadow: 0 16px 38px rgb(16 36 29 / 13%); }
.orbit-core span, .orbit-service span, .ecosystem-node > span { color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.orbit-core strong { font-size: 28px; }
.orbit-core small, .orbit-service { color: var(--muted); }
.orbit-service strong { color: var(--text); }
.orbit-service-a { top: 52px; right: 34px; }
.orbit-service-b { bottom: 64px; left: 24px; }
.orbit-note { position: absolute; z-index: 2; right: 26px; bottom: 20px; max-width: 23ch; margin: 0; color: var(--muted); font-size: 13px; text-align: right; }
.concept-nav { position: sticky; z-index: 40; top: 77px; border-block: 1px solid var(--line); background: rgb(246 248 245 / 94%); backdrop-filter: blur(16px); }
.concept-nav-inner { display: flex; gap: 26px; overflow-x: auto; padding-block: 14px; scrollbar-width: none; }
.concept-nav-inner::-webkit-scrollbar { display: none; }
.concept-nav a { flex: 0 0 auto; color: var(--muted); font-size: 14px; font-weight: 800; text-decoration: none; }
.concept-nav a:hover { color: var(--accent-strong); }
.flagship-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.flagship-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.flagship-card { min-height: 100%; display: flex; flex-direction: column; gap: 16px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgb(255 255 255 / 88%); box-shadow: 0 10px 28px rgb(26 71 49 / 5%); }
.flagship-card-featured { border-color: rgb(11 110 79 / 38%); background: linear-gradient(145deg, #fff, #eef9f3); }
.flagship-card-pending { border-style: dashed; }
.flagship-card p, .case-placeholder p, .ecosystem-node p { margin: 0; color: var(--muted); }
.flagship-card a { margin-top: auto; color: var(--accent-strong); font-weight: 850; }
.status-chip { align-self: flex-start; display: inline-flex; padding: 5px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-strong); font-size: 12px; font-weight: 850; }
.status-chip-muted { background: var(--surface-strong); color: var(--muted); }
.card-note { margin-top: auto; color: var(--muted); font-size: 14px; }
.case-shell { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr); align-items: center; gap: 68px; }
.case-placeholder { padding: 30px; border: 1px dashed var(--line-strong); border-radius: 24px; background: rgb(255 255 255 / 72%); }
.case-placeholder h3 { margin-block: 18px 12px; }
.case-placeholder ul { margin: 22px 0 0; padding-left: 20px; color: var(--muted); }
.ecosystem-map { display: grid; grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr); align-items: stretch; }
.ecosystem-node { padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }
.ecosystem-node-core { border-color: var(--accent); background: linear-gradient(145deg, #fff, #edf8f2); }
.ecosystem-node h3 { margin-block: 14px; }
.ecosystem-node strong { display: block; margin-top: 24px; color: var(--accent-strong); font-size: 14px; }
.ecosystem-link { display: grid; place-items: center; }
.ecosystem-link span { position: relative; width: 100%; height: 1px; background: linear-gradient(90deg, var(--accent), #357cb6); }
.ecosystem-link span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border: 2px solid var(--accent); border-radius: 50%; background: white; transform: translate(-50%, -50%); }
.virtual-office-map { display: grid; grid-template-columns: minmax(220px, .72fr) 86px minmax(0, 1.5fr); align-items: stretch; padding: 22px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgb(255 255 255 / 84%), rgb(231 246 238 / 72%)); box-shadow: var(--shadow); }
.virtual-office-entry { display: flex; flex-direction: column; justify-content: center; padding: 28px; border: 1px solid rgb(11 110 79 / 30%); border-radius: 22px; background: linear-gradient(145deg, #fff, #eaf8f1); }
.virtual-office-entry h3 { margin-block: 14px 8px; }
.virtual-office-entry p { margin: 0; color: var(--muted); }
.virtual-office-route { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.virtual-office-route span { padding: 5px 8px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-strong); font-size: 11px; font-weight: 850; }
.virtual-office-link { display: grid; place-items: center; }
.virtual-office-link span { position: relative; width: 100%; height: 1px; background: linear-gradient(90deg, var(--accent), #357cb6); }
.virtual-office-link span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border: 2px solid var(--accent); border-radius: 50%; background: white; transform: translate(-50%, -50%); }
.virtual-office-units { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.virtual-office-unit { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgb(255 255 255 / 88%); }
.virtual-office-unit span { color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.virtual-office-unit strong { display: block; margin-top: 7px; }
.virtual-office-unit small { display: block; margin-top: 8px; color: var(--muted); line-height: 1.45; }
.virtual-office-note { margin: 18px 0 0; padding: 16px 18px; border-left: 3px solid #357cb6; background: rgb(255 255 255 / 64%); color: var(--muted); }
.virtual-office-note strong { color: var(--text); }
.disclosure-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .84fr); gap: 70px; }
.disclosure-list { display: grid; }
.disclosure-list div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding-block: 18px; border-top: 1px solid var(--line); }
.disclosure-list span { color: var(--accent); font-weight: 900; }
.disclosure-list p { margin: 0; color: var(--muted); }
.disclosure-list strong { color: var(--text); }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
.section-head p { max-width: 58ch; margin: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 8px 28px rgb(26 71 49 / 5%);
}
.card h3 a { text-decoration: none; }
.card p { color: var(--muted); }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pill { display: inline-flex; align-items: center; min-height: 30px; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 13px; font-weight: 750; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 20px; }
.price-mode { color: var(--accent); font-size: 14px; font-weight: 850; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { counter-increment: step; padding: 22px; border-top: 1px solid var(--line); }
.step::before { content: "0" counter(step); display: block; margin-bottom: 28px; color: var(--accent); font-weight: 900; }
.step p { color: var(--muted); }

.page-hero { padding-block: 78px 48px; }
.page-hero h1 { max-width: 18ch; font-size: clamp(42px, 6vw, 72px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: inherit; }
.breadcrumbs span[aria-current] { color: var(--text); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 68px; }
.prose { max-width: 76ch; }
.prose h2 { margin-top: 56px; font-size: clamp(28px, 3.5vw, 42px); }
.prose h3 { margin-top: 36px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 22px; }
.prose li + li { margin-top: 10px; }
.sticky-card { position: sticky; top: 110px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.sticky-card p { color: var(--muted); }

.notice { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.notice p { margin-bottom: 0; color: var(--muted); }
.notice-safe { border-color: rgb(8 122 82 / 38%); background: #f2fbf6; }
.notice-warning { border-color: #e2c879; background: var(--warning-bg); }
.notice-error { border-color: rgb(155 28 28 / 38%); background: var(--danger-bg); }

.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 28px; }
.cart-list { display: grid; gap: 14px; }
.cart-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 20px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.cart-row h2 { font-size: 24px; }
.cart-row h2 a { text-decoration: none; }
.cart-row p { margin-bottom: 0; color: var(--muted); }
.quantity-control { display: inline-grid; grid-template-columns: 44px 44px 44px; align-items: center; text-align: center; }
.quantity-control button { width: 44px; height: 44px; border: 1px solid var(--line); background: var(--surface-strong); color: var(--text); cursor: pointer; }
.quantity-control button:first-child { border-radius: 12px 0 0 12px; }
.quantity-control button:last-child { border-radius: 0 12px 12px 0; }
.quantity-control output { height: 44px; display: grid; place-items: center; border-block: 1px solid var(--line); }
.cart-summary, .checkout-panel, .auth-panel { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.cart-summary { position: sticky; top: 110px; }
.cart-summary h2, .sticky-card h2, .auth-panel h2 { overflow-wrap: anywhere; font-size: clamp(26px, 3vw, 36px); }
.checkout-list { list-style: none; margin: 24px 0; padding: 0; }
.checkout-list li { display: flex; justify-content: space-between; gap: 20px; padding-block: 14px; border-bottom: 1px solid var(--line); }
.checkout-panel .notice { margin-block: 24px; }
.auth-button { width: 100%; min-height: 50px; margin-top: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-strong); color: var(--disabled); text-align: left; }
.auth-button:disabled { cursor: not-allowed; opacity: 1; }
.draft-result { margin-top: 20px; padding: 20px; border: 1px solid var(--accent); border-radius: 16px; background: #edf9f3; }
.empty-state { padding: 46px; border: 1px dashed var(--line-strong); border-radius: var(--radius); text-align: center; background: rgb(255 255 255 / 74%); }
.empty-state p { color: var(--muted); }

.faq { display: grid; gap: 12px; }
.faq details { padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.faq summary { cursor: pointer; font-weight: 850; }
.faq p { color: var(--muted); }

.site-footer { padding-block: 54px; border-top: 1px solid var(--line); background: #edf5f0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { color: var(--muted); }
.footer-note { max-width: 54ch; color: var(--muted); font-size: 14px; }
.legal-line { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

[data-live-region] { position: fixed; z-index: 100; right: 20px; bottom: 20px; max-width: 360px; padding: 14px 18px; border: 1px solid var(--accent); border-radius: 14px; background: var(--surface-strong); color: var(--text); box-shadow: var(--shadow); }
[data-live-region]:empty { display: none; }

@media (max-width: 920px) {
  .hero-grid, .flagship-hero-grid, .content-grid, .cart-layout, .checkout-layout, .case-shell, .disclosure-grid, .virtual-office-map { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .signal-card { min-height: 330px; }
  .card-grid, .flagship-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps, .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-item:nth-child(4) { border-top: 1px solid var(--line); }
  .sticky-card, .cart-summary { position: static; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding-block: 62px; }
  .hero { padding-block: 62px 50px; }
  .flagship-hero { padding-block: 58px 48px; }
  .ecosystem-orbit { min-height: 390px; }
  .ecosystem-orbit::before { width: 250px; height: 250px; }
  .ecosystem-orbit::after { width: 340px; height: 340px; }
  .orbit-service-a { top: 36px; right: 18px; }
  .orbit-service-b { bottom: 70px; left: 16px; }
  .concept-nav { top: 69px; }
  h1 { font-size: clamp(38px, 12vw, 52px); }
  .page-hero h1 { font-size: clamp(36px, 11vw, 48px); }
  .header-inner { min-height: 68px; }
  .menu-button { display: inline-grid; place-items: center; }
  .nav {
    position: absolute;
    inset: 68px 14px auto;
    display: none;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .nav[data-open="true"] { display: grid; }
  .nav a { padding-inline: 12px; }
  .card-grid, .flagship-grid, .flagship-grid-three, .steps, .proof-grid, .footer-grid, .ecosystem-map { grid-template-columns: 1fr; }
  .ecosystem-link, .virtual-office-link { min-height: 54px; }
  .ecosystem-link span, .virtual-office-link span { width: 1px; height: 100%; }
  .virtual-office-units { grid-template-columns: 1fr; }
  .proof-item, .proof-item:nth-child(3), .proof-item:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-item:first-child { border-top: 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .cart-row { grid-template-columns: 1fr; }
  .quantity-control { justify-self: start; }
  .signal-card { padding: 26px; }
}

@media (max-width: 380px) {
  .card-footer { align-items: stretch; flex-direction: column; }
  .card-footer .button { width: 100%; }
}

@media (hover: hover) and (pointer: fine) {
  .card:hover { border-color: rgb(11 110 79 / 48%); box-shadow: 0 16px 38px rgb(16 36 29 / 10%); transform: translateY(-2px); }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  .card, .button, .skip-link { transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease; }
  .ecosystem-link span::after, .virtual-office-link span::after { animation: flagship-connection 4.8s ease-in-out infinite; }
}

@keyframes flagship-connection {
  0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(.82); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.16); border-color: #357cb6; }
}

@media print {
  .site-header, .site-footer, .button, [data-live-region] { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .notice, .checkout-panel { border-color: #777; background: #fff; color: #000; }
}
