:root {
  color-scheme: light;
  --ink: #172642;
  --muted: #65738a;
  --blue: #2875f5;
  --blue-hover: #155ee0;
  --blue-soft: #edf4ff;
  --surface: #f6f8fc;
  --white: #fff;
  --line: #e5eaf3;
  --blue-line: #d4e3ff;
  --radius: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
body { margin: 0; font-size: 16px; line-height: 1.55; }
a { color: inherit; text-decoration: none; transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { font-weight: 650; line-height: 1.2; text-wrap: balance; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
section[id], article[id] { scroll-margin-top: 30px; }
.container { width: min(1280px, calc(100% - 80px)); margin-inline: auto; }
.visually-hidden, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; z-index: 10; top: 12px; left: 12px; padding: 12px 20px; background: white; }

.site-header { background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 3px 14px #344d8008; }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 650; white-space: nowrap; }
.brand-icon { width: 35px; height: 35px; flex-shrink: 0; display: grid; place-items: center; overflow: hidden; border-radius: 10px; }
.brand-icon img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; grid-area: 1 / 1; }
.site-nav { display: flex; gap: 30px; margin-left: auto; font-size: 14px; color: #5c6980; }
.site-nav a, .footer-links a { display: inline-flex; align-items: center; min-height: 40px; }
.site-nav a:hover, .footer-links a:hover { color: var(--blue); }
.button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; gap: 20px; padding: 12px 21px; border: 1px solid var(--blue); border-radius: 11px; background: var(--blue); color: white; font-size: 14px; font-weight: 600; line-height: 1.4; box-shadow: 0 5px 12px #2875f51a; }
.button:hover { background: var(--blue-hover); border-color: var(--blue-hover); box-shadow: 0 6px 18px #2875f52b; }
.button-small { min-height: 39px; padding: 9px 17px; font-size: 13px; }
.header-cta { background: var(--blue-soft); border-color: transparent; color: var(--blue); box-shadow: none; }
.header-cta:hover { color: white; }
.button-secondary { background: white; border-color: #dce4f0; color: var(--ink); box-shadow: none; }
.button-secondary:hover { background: var(--blue-soft); color: var(--blue); border-color: var(--blue-line); box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; color: var(--blue); font-size: 14px; font-weight: 600; }
.text-link:hover { color: var(--blue-hover); }
.eyebrow { display: flex; align-items: center; gap: 8px; color: var(--blue); font-size: 12px; font-weight: 600; margin-bottom: 15px; letter-spacing: .3px; }

.site-footer { border-top: 1px solid #edf0f6; }
.footer-main { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 26px; font-size: 11px; }
.footer-brand { font-weight: 600; }
.footer-brand span { display: block; color: #8d99ac; font-weight: 400; margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; color: #7d899d; }

/* Calm document surfaces share the homepage palette and type scale. */
body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.document-main { padding-block: 28px 80px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.breadcrumb:hover { color: var(--blue); }
.document-heading { padding: 32px 36px; margin-bottom: 40px; border: 1px solid #e2eafa; border-radius: var(--radius); background: #f4f8ff; }
.document-heading .eyebrow { margin-bottom: 12px; }
.document-heading h1 { max-width: 860px; font-size: clamp(32px, 3.5vw, 46px); letter-spacing: -1.2px; overflow-wrap: anywhere; }
.document-lead { max-width: 720px; margin-top: 18px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.document-layout { display: grid; grid-template-columns: minmax(0, 800px) minmax(220px, 1fr); align-items: start; gap: 64px; }
.document-content { min-width: 0; padding: 0 36px; }
.document-section { scroll-margin-top: 28px; }
.document-section + .document-section { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.document-section h2 { margin-bottom: 16px; font-size: 24px; letter-spacing: -.5px; line-height: 1.3; }
.document-section p, .document-section li { color: #52617a; font-size: 15px; line-height: 1.75; }
.document-section p + p { margin-top: 14px; }
.document-section ul, .document-section ol { margin: 14px 0 0; padding-left: 22px; }
.document-section li + li { margin-top: 8px; }
.document-section table { width: 100%; margin: 18px 0; border-collapse: collapse; color: #52617a; font-size: 15px; }
.document-section th, .document-section td { padding: 14px 16px; border: 1px solid var(--line); text-align: left; }
.document-section th { background: var(--blue-soft); color: var(--ink); font-weight: 600; }
.document-section th:last-child, .document-section td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.document-content a { color: var(--blue); text-decoration: underline; text-decoration-color: #c0d5f9; text-underline-offset: 3px; overflow-wrap: anywhere; }
.document-content a:hover { color: var(--blue-hover); text-decoration-color: currentColor; }
.document-aside { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.document-aside > p { margin-bottom: 12px; font-size: 12px; color: var(--muted); }
.document-aside nav { display: grid; }
.document-aside nav a { display: flex; align-items: center; min-height: 44px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.document-aside nav a:hover { color: var(--blue); }
.aside-help { margin-top: 24px; font-size: 12px; color: var(--muted); }
.aside-help a { display: block; padding-top: 8px; color: var(--blue); overflow-wrap: anywhere; }
.terms-prices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 0 0 18px; }
.terms-prices > div { padding: 18px 20px; background: var(--blue-soft); border: 1px solid var(--blue-line); border-radius: 12px; }
.terms-prices dt { font-size: 13px; color: var(--muted); }
.terms-prices dd { margin: 6px 0 0; font-size: 26px; font-weight: 600; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.details-list { margin: 0; }
.details-list > div { display: grid; grid-template-columns: 155px minmax(0, 1fr); gap: 24px; padding-block: 22px; border-bottom: 1px solid var(--line); }
.details-list > div:first-child { padding-top: 0; }
.details-list > div:last-child { border-bottom: 0; }
.details-list dt { color: var(--muted); font-size: 13px; }
.details-list dd { margin: 0; font-size: 16px; overflow-wrap: anywhere; }
.heading-contact { margin-top: 20px; }
.heading-contact span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 13px; }
.heading-contact a { display: inline-block; max-width: 100%; color: var(--blue); font-size: clamp(18px, 2.2vw, 26px); font-weight: 600; letter-spacing: -.5px; overflow-wrap: anywhere; }
.heading-contact a:hover { color: var(--blue-hover); }
.support-topics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 24px; }
.support-topics h3 { margin-bottom: 10px; font-size: 17px; line-height: 1.4; }
.return-main { display: grid; place-items: center; padding-block: 48px 64px; }
.return-card { width: min(720px, 100%); padding: 44px 48px; border: 1px solid #e2eafa; border-radius: var(--radius); background: #f4f8ff; text-align: center; box-shadow: 0 12px 36px #344d8008; }
.return-icon { width: 52px; height: 52px; display: grid; place-items: center; margin: 0 auto 22px; border: 1px solid var(--blue-line); border-radius: 14px; color: var(--blue); background: white; }
.return-card .eyebrow { justify-content: center; margin-bottom: 14px; }
.return-card h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -1px; }
.return-card > p:not(.eyebrow) { margin-top: 20px; font-size: 16px; color: var(--muted); }
.return-card .return-note { font-size: 13px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; margin-top: 28px; }
@media (max-width: 1100px) {
  .container { width: calc(100% - 48px); }
  .header-inner { gap: 24px; }
  .site-nav { gap: 20px; }
  .document-layout { grid-template-columns: minmax(0, 1fr) 240px; gap: 28px; }
  .document-content { padding-inline: 12px; }
  .document-aside { padding: 20px; }
}
@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; gap: 8px 20px; padding-block: 16px; }
  .brand { margin-right: auto; }
  .site-nav { order: 3; width: 100%; margin-left: 0; justify-content: center; flex-wrap: wrap; gap: 4px 28px; }
  .document-layout { display: flex; flex-direction: column; gap: 32px; }
  .document-content, .document-aside { width: 100%; }
  .document-aside { order: -1; }
  .document-aside nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
  .document-aside .aside-help { display: none; }
  .document-heading { padding: 28px; margin-bottom: 28px; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .header-inner { min-height: 76px; gap: 8px 12px; padding-block: 12px; }
  .brand { font-size: 13px; gap: 7px; }
  .brand-icon { width: 32px; height: 32px; }
  .header-cta { min-height: 40px; padding: 9px 11px; font-size: 12px; }
  .site-nav { justify-content: space-between; font-size: 12px; gap: 4px 16px; }
  .document-main { padding-block: 16px 48px; }
  .breadcrumb { margin-bottom: 16px; }
  .document-heading { padding: 24px 20px; border-radius: 18px; }
  .document-heading h1 { font-size: 30px; letter-spacing: -.7px; }
  .document-lead { font-size: 15px; margin-top: 14px; }
  .document-content { padding-inline: 4px; }
  .document-section h2 { font-size: 22px; }
  .document-section p, .document-section li { font-size: 14px; }
  .document-section + .document-section { margin-top: 26px; padding-top: 26px; }
  .document-aside { padding: 16px; }
  .document-aside nav { column-gap: 16px; }
  .document-aside nav a { font-size: 12px; }
  .terms-prices { gap: 10px; }
  .terms-prices > div { padding: 16px 12px; }
  .terms-prices dd { font-size: 23px; }
  .details-list > div { grid-template-columns: minmax(0, 1fr); gap: 8px; padding-block: 18px; }
  .details-list dd { font-size: 15px; }
  .heading-contact a { font-size: 19px; }
  .support-topics { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .return-main { padding-block: 28px 40px; }
  .return-card { padding: 30px 22px; }
  .return-card > p:not(.eyebrow) { font-size: 14px; }
  .return-card .return-note { font-size: 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .footer-links { gap: 0 17px; }
}
@media (max-width: 359px) {
  .header-cta { margin-left: auto; }
  .brand { width: 100%; }
  .document-aside nav { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) { a { transition: none; } }
@media (forced-colors: active) { .button { border: 1px solid ButtonText; } }
