/* MacTidy site styles.
   Tokens come straight from brand/GUIDELINES.md section 3. Azure is the only
   brand blue that may carry white text (5.2:1); Sky fails AA at 2.8:1, so it is
   for graphics and glows only. Shadows are #0A2E63, never black. */

:root {
  --sky-bright: #8CF2FF;
  --sky: #22A0FF;
  --azure: #0A66E8;
  --deep: #083CB4;
  --navy: #05236C;
  --glass: #EAF8FF;
  --band: #3FA6EE;
  --shadow: #0A2E63;
  --ink: #0B0D18;
  --mist: #C7D0EA;

  --success: #4CD787;
  --warning: #FF9A38;
  --danger: #FF5A5A;

  --bg: var(--ink);
  --surface: #12162a;
  --surface-2: #171c33;
  --line: rgba(199, 208, 234, 0.14);
  --text: #F2F5FF;
  --text-dim: var(--mist);

  /* System stack on purpose. The brand's web faces are Nunito and Public Sans,
     but loading them from Google would send every visitor's IP to a third party
     on a site whose whole argument is that nothing tracks you. On a Mac,
     ui-rounded resolves to SF Pro Rounded, which is what the brand is built on
     anyway. Self-host the webfonts if you want them; do not hotlink them. */
  --font-display: ui-rounded, "SF Pro Rounded", "Nunito", system-ui, -apple-system, sans-serif;
  --font-body: system-ui, -apple-system, "Public Sans", "Helvetica Neue", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --wrap: 1120px;
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* The brand gradient: diagonal, cyan top right to deep navy bottom left.
   Fixed direction, per the guidelines. Never vertical, never a third hue. */
.grad-bg {
  background:
    radial-gradient(1100px 620px at 88% -8%, rgba(34, 160, 255, 0.30), transparent 62%),
    radial-gradient(900px 560px at 6% 8%, rgba(10, 102, 232, 0.24), transparent 60%),
    linear-gradient(160deg, #0d1226 0%, var(--ink) 58%);
}

img { max-width: 100%; display: block; }
a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

/* ---------- type ---------- */

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.14; margin: 0 0 .5em; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-dim); }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;   /* guidelines: uppercase labels get +0.16em */
  font-size: .74rem;
  font-weight: 700;
  color: var(--sky);
  margin: 0 0 .9rem;
}
.dim { color: var(--text-dim); }
.mono { font-family: var(--font-mono); font-size: .92em; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(150%) blur(14px);
  background: rgba(11, 13, 24, 0.82);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 22px; min-height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 7px; }
.nav { display: flex; gap: 20px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--text-dim); font-size: .95rem; font-weight: 500; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); text-decoration: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.4rem; border-radius: 999px;
  font-weight: 700; font-size: .98rem; font-family: var(--font-body);
  border: 1px solid transparent; cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--azure); color: #fff; box-shadow: 0 10px 26px -10px var(--shadow); }
.btn-primary:hover { background: var(--deep); }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.03); }
.btn-ghost:hover { border-color: rgba(199,208,234,.34); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---------- layout blocks ---------- */

section { padding: clamp(52px, 8vw, 96px) 0; }
.section-sm { padding: clamp(36px, 5vw, 60px) 0; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.split { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.wide-right { grid-template-columns: 0.85fr 1.15fr; } }

/* ---------- screenshots ---------- */

.shot {
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -32px var(--shadow);
  overflow: hidden;
  background: var(--surface);
}
/* Screenshots are tall app screens. Show the top and crop the rest rather than
   squashing them. */
.shot.crop { height: clamp(320px, 46vw, 520px); }
.shot.crop img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
figure { margin: 0; }
figcaption { font-size: .88rem; color: var(--text-dim); margin-top: .7rem; }

/* ---------- misc ---------- */

.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .72rem; border-radius: 999px;
  background: rgba(34,160,255,.13); border: 1px solid rgba(34,160,255,.3);
  color: var(--sky-bright); font-size: .8rem; font-weight: 600;
}
.pill.warn { background: rgba(255,154,56,.13); border-color: rgba(255,154,56,.34); color: var(--warning); }
.pill.ok { background: rgba(76,215,135,.13); border-color: rgba(76,215,135,.32); color: var(--success); }

ul.ticks, ul.crosses { list-style: none; padding: 0; margin: 0 0 1.1em; }
ul.ticks li, ul.crosses li { padding-left: 1.9rem; position: relative; margin-bottom: .6rem; }
ul.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }
ul.crosses li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); font-weight: 800; }

table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .95rem; }
th, td { text-align: left; padding: .72rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 700; color: var(--text); }
td { color: var(--text-dim); }

.note {
  border-left: 3px solid var(--azure);
  background: rgba(10,102,232,.08);
  padding: 16px 20px; border-radius: 0 12px 12px 0;
}
.note.warn { border-left-color: var(--warning); background: rgba(255,154,56,.08); }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps > li { counter-increment: step; position: relative; padding-left: 58px; margin-bottom: 28px; }
.steps > li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--azure); color: #fff;
  font-family: var(--font-display); font-weight: 800;
}

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--line); padding: 46px 0 60px; color: var(--text-dim); font-size: .92rem; }
.site-footer h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--text); margin-bottom: .9rem; font-family: var(--font-body); }
.site-footer a { color: var(--text-dim); display: block; margin-bottom: .45rem; }
.site-footer a:hover { color: var(--text); }
.footer-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); margin-bottom: 34px; }
.footer-legal { border-top: 1px solid var(--line); padding-top: 22px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between; }

/* ---------- legal documents ---------- */

.doc { max-width: 780px; }
.doc h2 { margin-top: 2.2em; font-size: 1.5rem; }
.doc h3 { margin-top: 1.6em; font-size: 1.12rem; }
.doc li { margin-bottom: .5rem; }
.doc table { font-size: .9rem; }
.doc-meta { font-size: .9rem; color: var(--text-dim); border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; margin-bottom: 2rem; }
.placeholder {
  background: rgba(255,154,56,.16);
  border-bottom: 1px dashed var(--warning);
  color: #ffd9ab; padding: 0 .28rem; border-radius: 3px;
  font-family: var(--font-mono); font-size: .88em;
}
.toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc li { margin-bottom: .3rem; }
.toc a { color: var(--text-dim); }

@media (max-width: 760px) {
  /* One scrollable row rather than three wrapped ones. Six links and a button
     wrapped to 300px of header on a phone, which is most of the first screen
     before any of the page showed up. */
  .site-header .wrap { min-height: 56px; gap: 12px; }
  .brand { flex: 0 0 auto; }
  .nav {
    flex: 1 1 auto;
    min-width: 0;            /* without this the row refuses to shrink and the
                                links ride over the wordmark */
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    margin-left: 0;
    justify-content: flex-start;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { font-size: .88rem; white-space: nowrap; }
  .nav .btn { padding: .52rem 1rem; font-size: .88rem; }
  .brand { font-size: 1.02rem; }
  .brand img { width: 26px; height: 26px; }
}

/* 2026 product design: quiet chrome, generous typography, blue product light. */
:root { --bg:#fff; --surface:#f5f6f8; --surface-2:#eceff4; --line:rgba(14,28,48,.13); --text:#17191e; --text-dim:#626872; --wrap:1160px; --radius:24px; --font-display:-apple-system,BlinkMacSystemFont,"Helvetica Neue",sans-serif; }
body { font-size:16px; line-height:1.65; }
.grad-bg { background:radial-gradient(ellipse at 85% 0%,#edf7ff 0,transparent 35%),#fff; }
a { color:#0861d7; }
h1,h2,h3,h4 { font-weight:650; letter-spacing:-.045em; }
h1 { font-size:clamp(44px,6vw,76px); }
h2 { font-size:clamp(34px,4.7vw,60px); }
h3 { letter-spacing:-.025em; }
.site-header { background:rgba(255,255,255,.88); border-bottom:1px solid rgba(0,0,0,.07); }
.site-header .wrap { min-height:76px; }
.brand { font-family:var(--font-body); font-weight:700; letter-spacing:-.04em; font-size:21px; }
.nav { gap:30px; }
.nav a { font-size:13px; }
.nav .btn { color:#fff; padding:8px 19px; }
.btn { font-weight:550; font-size:15px; padding:13px 25px; transition:background .2s,transform .2s; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { box-shadow:none; }
.btn-ghost { background:#fff; }
.eyebrow { color:#576675; font-size:11px; letter-spacing:.16em; }
.pill { color:#0756b7; background:#e8f3ff; }
.pill.ok { color:#14723d; background:#e5f6ed; }
.pill.warn { color:#8a4800; background:#fff2dd; }
.placeholder { color:#8a4800; }
.ticks li::before { color:#14723d; }
.site-footer { background:#f5f5f7; font-size:12px; padding:55px 0 28px; }
.site-footer .brand { display:flex; color:var(--text); }
.site-footer h4 { font-size:10px; }
.skip-link { position:fixed; top:10px; left:15px; z-index:100; background:#fff; padding:12px 20px; transform:translateY(-160%); border:2px solid var(--azure); border-radius:8px; }
.skip-link:focus { transform:translateY(0); }
:focus-visible { outline:3px solid #0a66e8; outline-offset:5px; }
[id] { scroll-margin-top:96px; }
.hero { padding:76px 0 0; overflow:hidden; background:linear-gradient(#fff 40%,#f1f7fd); }
.hero-copy { text-align:center; position:relative; z-index:2; }
.hero .eyebrow { margin-bottom:24px; }
.hero h1 { font-size:clamp(58px,7.5vw,98px); line-height:1.01; letter-spacing:-.065em; font-weight:650; margin-bottom:24px; }
.hero h1 span { color:#0969de; background:linear-gradient(28deg,#0847b6,#138bde); background-clip:text; -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.hero-description { font-size:clamp(18px,2vw,22px); color:#646a73; line-height:1.5; letter-spacing:-.025em; margin-bottom:26px; }
.hero .btn-row { justify-content:center; gap:30px; }
.text-link { font-size:15px; font-weight:550; display:inline-flex; align-items:center; gap:10px; }
.hero-meta { font-size:12px; color:#727881; margin:17px 0 0; }
.hero-meta span { margin:0 7px; }
.product-stage { position:relative; padding:64px 70px 24px; }
.stage-orbit { position:absolute; inset:35% -20% -45%; border-radius:50%; background:radial-gradient(ellipse at 65% 5%,#b9f1ff,#398cf2 35%,#064096 60%,#051d48 80%); transform:rotate(-7deg); }
.app-window { position:relative; border:1px solid #454957; border-radius:14px; background:#131523; padding:7px; box-shadow:0 28px 75px -25px #0a2e6399; overflow:hidden; }
.window-bar { height:34px; display:flex; align-items:center; justify-content:space-between; color:#c8cbd3; font-size:10px; padding:0 12px; }
.traffic { display:flex; gap:6px; }
.traffic i { width:8px; height:8px; background:#fe6058; border-radius:50%; }
.traffic i:nth-child(2) { background:#ffbd2e; }.traffic i:nth-child(3) { background:#28c840; }
.window-caption { opacity:.6; font-size:9px; }
.app-content { display:grid; grid-template-columns:165px 1fr; border-radius:8px; overflow:hidden; }
.app-sidebar { background:#1b1d2b; padding:22px 15px; color:#b9bdcd; font-size:11px; display:flex; flex-direction:column; gap:9px; }
.app-sidebar>img { margin-bottom:2px; }.app-sidebar strong { font-size:16px; color:white; }
.sidebar-label { font-size:7px; letter-spacing:.12em; padding-top:21px; opacity:.6; }
.app-sidebar>span:not(.sidebar-label) { padding:7px 10px; }
.app-sidebar .selected { background:#303e60; border-radius:6px; color:white; }
.app-sidebar small { margin-top:auto; font-size:8px; padding-top:25px; }
.pulse-screen { aspect-ratio:1.49; overflow:hidden; background:#151525; }
.pulse-screen img { width:100%; height:auto; margin-top:-20%; }
.stage-caption { position:relative; color:#fff; text-align:center; font-size:11px; margin:29px 0 0; }
.promise-strip { display:flex; justify-content:center; gap:70px; padding:27px 0; font-size:12px; color:#727782; border-bottom:1px solid var(--line); }
.section-heading { display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-bottom:42px; }
.section-heading h2 { margin:0; }
.section-heading>p { max-width:310px; color:var(--text-dim); margin:0 0 3px; font-size:17px; }
.explore-section { padding:110px 0; }
.feature-tiles { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature-tile { min-height:480px; padding:30px; border-radius:24px; color:var(--text); position:relative; overflow:hidden; display:flex; flex-direction:column; transition:transform .25s,box-shadow .25s; }
.feature-tile:hover { text-decoration:none; transform:translateY(-5px); box-shadow:0 20px 40px -28px #0a2e6380; }
.tile-kicker { font-size:9px; letter-spacing:.16em; color:#546477; margin-bottom:24px; }
.feature-tile h3 { font-size:28px; line-height:1.12; letter-spacing:-.045em; }
.feature-tile p { font-size:12px; line-height:1.7; color:#626b78; }
.clean-tile { background:#edf5ff; }.protect-tile { background:#f0f2f5; }.recover-tile { background:#edf7f7; }
.tile-bottom { margin-top:auto; display:flex; justify-content:space-between; font-size:12px; font-weight:600; z-index:1; }.tile-bottom>span { border:1px solid #b2becd; border-radius:50%; width:25px; height:25px; display:grid; place-items:center; }
.space-graphic { width:175px; height:175px; margin:12px auto 24px; position:relative; }
.space-ring { width:100%; height:100%; border-radius:50%; background:conic-gradient(from 40deg,#0a66e8 0 24%,#51b5fa 24% 40%,#a4deff 40% 50%,#dbe8f6 50%); transform:rotate(-25deg); mask:radial-gradient(transparent 54%,#000 55%); }
.space-label { position:absolute; inset:0; display:grid; align-content:center; text-align:center; font-size:14px; line-height:1.4; }.space-label strong { font-size:17px; font-weight:600; }
.shield-graphic { width:139px; height:165px; margin:16px auto 26px; display:grid; place-items:center; color:#fff; font-size:50px; background:linear-gradient(35deg,#073fa7,#339ff1 65%,#b3edff); clip-path:polygon(50% 0,96% 18%,92% 63%,76% 83%,50% 100%,24% 83%,8% 63%,4% 18%); }
.recovery-graphic { position:relative; height:194px; width:190px; margin:auto; display:grid; place-items:center; }.recovery-graphic>span { position:absolute; font-size:200px; line-height:1; color:#3d999d; font-weight:200; top:-27px; left:0; }.file-shape { width:57px; height:74px; border-radius:7px; background:linear-gradient(30deg,#a5dadd,#fff); transform:rotate(-10deg); box-shadow:0 10px 25px #0a2e631a; }.file-shape:after { content:''; display:block; width:30px; height:20px; margin:25px 13px; border-top:3px solid #79b5bf; border-bottom:3px solid #79b5bf; }
.control-section { background:#080b12; color:#f5f6f9; padding:110px 0; overflow:hidden; }.control-section .eyebrow { color:#849bb6; }.control-section h2 span { color:#77889f; }
.control-layout { display:grid; grid-template-columns:.75fr 1.25fr; gap:85px; margin-top:60px; align-items:center; }.control-copy h3 { font-size:25px; }.control-copy p { color:#98a3b6; font-size:16px; margin-bottom:35px; }.control-copy a { color:#6fbcff; }
.security-preview { height:420px; overflow:hidden; border-radius:20px; border:1px solid #ffffff29; position:relative; }.security-preview img { width:100%; height:auto; }.security-preview figcaption { position:absolute; bottom:0; margin:0; padding:45px 20px 20px; background:linear-gradient(transparent,#10121eee 50%); color:#c7d0ea; width:100%; font-size:12px; }
.privacy-section { padding:125px 0; }.privacy-layout { display:grid; grid-template-columns:1.2fr 1fr; gap:100px; align-items:center; }.privacy-layout h2 { font-size:clamp(36px,4.5vw,57px); }.privacy-layout h2 span { color:#878d96; }.privacy-copy>p { font-size:17px; color:#626872; }.privacy-facts { display:flex; gap:40px; border-top:1px solid var(--line); margin-top:35px; padding-top:25px; }.privacy-facts strong { display:block; font-size:19px; letter-spacing:-.03em; }.privacy-facts span { font-size:11px; color:#6c737c; }
.details-section { background:#f5f5f7; padding:90px 0; }.details-section h2 { font-size:44px; }.faq-list details { border-bottom:1px solid #d8dce2; }.faq-list summary { list-style:none; cursor:pointer; padding:23px 45px 23px 0; font-size:18px; font-weight:550; position:relative; }.faq-list summary::-webkit-details-marker { display:none; }.faq-list summary:after { content:'+'; position:absolute; right:8px; top:15px; font-size:28px; font-weight:300; }.faq-list details[open] summary:after { content:'−'; }.faq-list details p { color:#626872; max-width:760px; padding-bottom:16px; }
.closing-section { text-align:center; padding:100px 0 110px; background:radial-gradient(ellipse at 50% 100%,#e3f3ff,transparent 60%); }.closing-icon { margin:0 auto 25px; }.closing-section h2 { font-size:clamp(42px,5.5vw,70px); margin-bottom:30px; }.closing-section .hero-meta { margin-top:20px; }
@media(min-width:1500px) { .hero { padding-top:90px; } }
@media(max-width:900px) { .nav { gap:18px; }.product-stage { padding-inline:20px; }.feature-tiles { gap:12px; }.feature-tile { padding:23px; }.feature-tile h3 { font-size:24px; }.control-layout { gap:40px; }.privacy-layout { gap:45px; }.promise-strip { gap:28px; }.app-sidebar { padding:16px 12px; }.app-content { grid-template-columns:145px 1fr; } }
@media(max-width:640px) { .wrap { width:calc(100% - 36px); }.site-header .wrap { min-height:64px; justify-content:space-between; }.nav { flex:0 1 auto; margin-left:auto; gap:15px; overflow:visible; }.nav a:not(.btn) { display:none; }.nav .btn { font-size:12px; padding:8px 15px; }.hero { padding-top:53px; }.hero .eyebrow { font-size:9px; margin-bottom:22px; }.hero h1 { font-size:58px; }.hero-description { font-size:18px; }.hero .btn-row { gap:19px; }.hero-meta { font-size:10px; }.hero-meta span { margin:0 3px; }.product-stage { width:calc(100% - 24px); padding:40px 0 18px; }.app-content { grid-template-columns:85px 1fr; }.app-sidebar { padding:10px 6px; gap:5px; font-size:6px; }.app-sidebar>img { width:24px;height:24px; }.app-sidebar strong { font-size:10px; }.app-sidebar>span:not(.sidebar-label) { padding:4px; }.sidebar-label { font-size:5px; padding-top:5px; }.app-sidebar small { font-size:5px; padding-top:5px; }.pulse-screen { aspect-ratio:1.13; }.window-bar { height:23px; font-size:7px; padding:0 4px; }.window-caption { font-size:6px; }.traffic { gap:4px; }.traffic i { width:5px;height:5px; }.app-window { padding:4px; border-radius:9px; }.stage-caption { font-size:9px; margin-top:20px; }.promise-strip { gap:12px; font-size:9px; text-align:center; padding:22px 0; }.promise-strip span { flex:1; }.section-heading { display:block; margin-bottom:30px; }.section-heading>p { margin-top:22px; max-width:100%; }.section-heading>.text-link { margin-top:20px; }.explore-section,.control-section,.privacy-section { padding:70px 0; }.feature-tiles { grid-template-columns:1fr; gap:18px; }.feature-tile { padding:30px; min-height:455px; }.feature-tile h3 { font-size:32px; }.feature-tile p { font-size:14px; }.space-graphic { margin-block:18px 25px; }.control-layout,.privacy-layout { grid-template-columns:1fr; gap:35px; }.control-layout { margin-top:35px; }.security-preview { height:350px; }.privacy-layout h2 { font-size:43px; }.details-section { padding:65px 0; }.details-section h2 { font-size:36px; }.faq-list summary { font-size:16px; }.closing-section { padding:70px 0; }.g2 { grid-template-columns:1fr; }.footer-grid { grid-template-columns:1fr 1fr; gap:30px 20px; }.footer-grid>div:first-child { grid-column:1/-1; } }
@media(prefers-reduced-motion:reduce) { html { scroll-behavior:auto; } *,*::before,*::after { transition:none!important; animation:none!important; } }

/* Long release hashes and policy URLs must stay inside narrow tables. */
td { overflow-wrap:anywhere; }
.nav a.btn-primary:hover,.nav a.btn-primary[aria-current="page"] { color:#fff; }
