/* VN Data Solutions — terminal world, dark only. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/static/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/static/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/static/fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/static/fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #0B0B12;
  --surface: #15151F;
  --surface-2: #1B1B27;
  --line: #23232E;
  --line-soft: #1A1A24;
  --fg: #F5F5F7;
  --muted: #9CA3AF;
  --dim: #8B8B96;
  --accent: #A855F7;
  --accent-soft: #C084FC;
  --accent-solid: #8B2FD6;
  --accent-solid-hi: #9D45E8;
  --ok: #4ADE80;
  --danger: #FCA5A5;

  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
  --band-y: clamp(64px, 9vw, 104px);
  --radius: 14px;
  --radius-sm: 8px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Browser surfaces belong to the design too. */
::selection { background: var(--accent); color: #0B0B12; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--line);
  border: 3px solid var(--bg);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: #333342; }
html { scrollbar-color: var(--line) var(--bg); scrollbar-width: thin; }

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 3px;
}

h1, h2, h3, p, dl, dd, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration-color: color-mix(in srgb, var(--accent) 60%, transparent); text-underline-offset: 3px; }

strong { font-weight: 600; }
.strong { color: var(--fg); font-weight: 600; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.dim { color: var(--dim); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent-solid);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { left: 0; }

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.head-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding-block: 12px;
}

.brand {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  flex: none;
}
.brand-caret { color: var(--accent); }
.brand:hover .brand-path { color: var(--accent-soft); }

.nav {
  display: flex;
  gap: 24px;
  margin-inline-start: auto;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  padding-block: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s var(--ease-out), border-color 0.15s var(--ease-out);
}
.nav a:hover { color: var(--fg); border-bottom-color: var(--accent); }
.nav a[aria-current="page"] { color: var(--fg); border-bottom-color: var(--accent); }

.head-actions { display: flex; align-items: center; gap: 16px; flex: none; }

.lang {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--dim);
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: border-color 0.15s var(--ease-out), color 0.15s var(--ease-out);
}
.lang-on { color: var(--fg); }
.lang-sep { padding-inline: 3px; opacity: 0.5; }
.lang:hover { border-color: var(--accent); color: var(--fg); }
.lang:hover .lang-off { color: var(--accent-soft); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.18s var(--ease-out),
              transform 0.18s var(--ease-out),
              box-shadow 0.18s var(--ease-out),
              border-color 0.18s var(--ease-out);
}
.btn-sm { font-size: 13px; padding: 10px 16px; }

.btn-primary {
  background: var(--accent-solid);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.btn-primary:hover {
  background: var(--accent-solid-hi);
  box-shadow: 0 6px 20px -6px rgba(139, 47, 214, 0.7);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary[disabled] {
  background: var(--surface-2);
  color: var(--dim);
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); background: var(--surface); }

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-soft);
  text-decoration: none;
}
.inline-link:hover { text-decoration: underline; }
.inline-link .door-arrow { transition: transform 0.2s var(--ease-out); }
.inline-link:hover .door-arrow { transform: translateX(3px); }

/* ---------- hero ---------- */

.hero { padding-block: clamp(56px, 8vw, 96px) clamp(56px, 8vw, 88px); border-bottom: 1px solid var(--line); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.25rem, 5.4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.032em;
  text-wrap: balance;
}
.hero-title-accent { color: var(--accent-soft); }

.lead {
  margin-top: 20px;
  max-width: 46ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ---------- terminal ---------- */

.term {
  background: #05050A;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #2E2E3D;
  flex: none;
}
.term-file {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--dim);
  margin-inline-start: 8px;
  white-space: nowrap;
}

.term-body {
  margin: 0;
  padding: 22px 24px 26px;
  font-family: var(--mono);
  font-size: clamp(12px, 1.35vw, 13.5px);
  line-height: 1.85;
  color: var(--muted);
  white-space: pre-wrap;
  overflow-x: auto;
  min-height: 11.5em;
}
.term-body .kw { color: var(--accent-soft); }
.term-body .str { color: var(--fg); }
.term-body .ok { color: var(--ok); }

.term-body::after {
  content: '';
  display: inline-block;
  width: 0.6em;
  height: 1.05em;
  margin-inline-start: 2px;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0; } }

/* ---------- bands ---------- */

.band { padding-block: var(--band-y); border-bottom: 1px solid var(--line); }
.band-alt { background: var(--surface); }

.section-title {
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-wrap: balance;
  max-width: 22ch;
}

.section-lead {
  margin-top: 14px;
  max-width: 54ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
}

/* ---------- doors ---------- */

.doors {
  margin-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--line);
}

.door + .door { border-top: 1px solid var(--line); }

.door-hit {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 8px 32px;
  padding: 26px 20px 26px 18px;
  margin-inline: -18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 0.2s var(--ease-out);
}
.door-hit:hover { background: var(--surface); }
.band-alt .door-hit:hover { background: var(--surface-2); }

.door-cmd {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.door-caret { margin-inline-end: 8px; opacity: 0.65; }
.door-hit:hover .door-caret { opacity: 1; }

.door-head {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.door-body {
  grid-column: 2;
  grid-row: 2;
  margin-top: 6px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.door-go {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-soft);
  white-space: nowrap;
}
.door-arrow { display: inline-block; transition: transform 0.2s var(--ease-out); }
.door-hit:hover .door-arrow { transform: translateX(4px); }

/* ---------- key/value rows ---------- */

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.rows { border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 12px 24px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}
.row dt {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent);
  padding-top: 3px;
}
.row dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 60ch;
}
.rows-wide .row { grid-template-columns: 12rem minmax(0, 1fr); }
.row-plain dt { color: var(--dim); font-family: var(--sans); font-size: 0.9375rem; }
.row dd.mono { font-family: var(--mono); font-size: 0.8125rem; color: var(--fg); }

/* ---------- contact ---------- */

.band-contact { border-bottom: none; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-title { max-width: 16ch; }

.form { display: grid; gap: 20px; }
.form[hidden] { display: none; }

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.field { display: grid; gap: 8px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field label, .field legend {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  padding: 0;
}
.opt { font-weight: 400; color: var(--dim); }

input[type="text"], input[type="email"], textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  caret-color: var(--accent);
  transition: border-color 0.15s var(--ease-out), background-color 0.15s var(--ease-out);
}
.band-alt input, .band-alt textarea { background: var(--surface-2); }
textarea { resize: vertical; min-height: 120px; }

input::placeholder, textarea::placeholder { color: #7E828C; }

input:hover, textarea:hover { border-color: #2F2F3D; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.18);
}

input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--danger); }

.err {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--danger);
}
.err[hidden] { display: none; }

.segments { display: flex; flex-wrap: wrap; gap: 8px; }
.seg { position: relative; }
.seg input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.seg span {
  display: block;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  background: var(--surface);
  transition: color 0.15s var(--ease-out), border-color 0.15s var(--ease-out),
              background-color 0.15s var(--ease-out);
}
.seg:hover span { color: var(--fg); border-color: #2F2F3D; }
.seg input:checked + span {
  color: var(--fg);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, var(--surface));
}
.seg input:focus-visible + span {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-note {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--danger);
  max-width: 44ch;
}
.form-note[hidden] { display: none; }
.form-note a { color: var(--danger); }

.form-done {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 30px;
  background: color-mix(in srgb, var(--accent) 9%, var(--bg));
}
.form-done[hidden] { display: none; }
.done-h {
  font-family: var(--mono);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ok);
}
.done-b { margin-top: 10px; color: var(--muted); max-width: 46ch; line-height: 1.65; }
.form-done .btn { margin-top: 20px; }

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

.site-foot {
  border-top: 1px solid var(--line);
  padding-block: clamp(40px, 6vw, 56px);
  background: var(--surface);
}
.foot-inner { display: grid; gap: 22px; }

.foot-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
}
.foot-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  white-space: nowrap;
}
.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9375rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s var(--ease-out);
}
.foot-links a:hover { color: var(--fg); }
.foot-links a:hover .ico { stroke: var(--accent-soft); }
.foot-links a:hover .ico-solid { fill: var(--accent-soft); stroke: none; }

.ico {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: var(--dim);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.15s var(--ease-out), fill 0.15s var(--ease-out);
}
.ico-solid { fill: var(--dim); stroke: none; }

.foot-rights { font-family: var(--mono); font-size: 11.5px; color: var(--dim); }

/* ---------- about ---------- */

.about-head { padding-block: clamp(52px, 7vw, 84px); border-bottom: 1px solid var(--line); }
.about-title {
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.08;
}
.about-role {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
}
.about-bio { max-width: 68ch; margin-top: 24px; }

.facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 26px;
  font-size: 0.875rem;
  color: var(--dim);
}
.facts li { display: flex; align-items: center; }
.facts li + li::before {
  content: '';
  width: 3px;
  height: 3px;
  flex: none;
  border-radius: 99px;
  background: #3A3A48;
  margin-inline: 15px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.split-side { max-width: none; }

.track { border-top: 1px solid var(--line); }
.job { padding-block: 24px; border-bottom: 1px solid var(--line); }
.job-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
}
.job-org { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.015em; }
.job-role { font-weight: 400; color: var(--muted); }
.job-period {
  font-family: var(--mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  white-space: nowrap;
  flex: none;
}
.job-blurb {
  margin-top: 8px;
  max-width: 68ch;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.about-cta { text-align: left; }
.about-cta .hero-actions { margin-top: 26px; }

/* ---------- admin ---------- */

.admin { background: var(--bg); }
.admin-wrap { padding-block: 48px 80px; }
.admin-head { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.admin-title { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.025em; }
.admin-meta { margin-top: 6px; font-size: 0.875rem; color: var(--dim); }
.admin-scroll { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 800px; }
.admin-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dim);
  padding: 16px 14px 10px 0;
  border-bottom: 1px solid var(--line);
}
.admin-table td {
  padding: 16px 14px 16px 0;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  color: var(--muted);
}
.admin-table .mono { font-size: 12px; }
.admin-name { color: var(--fg); font-weight: 600; }
.admin-msg { max-width: 46ch; white-space: pre-wrap; }
.nowrap { white-space: nowrap; }
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 99px;
  border: 1px solid var(--accent);
  color: var(--accent-soft);
}
.admin-empty { margin-top: 32px; color: var(--muted); }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero-grid,
  .approach-grid,
  .contact-grid,
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-grid { gap: 40px; }
  .term { order: 2; }
  .section-title, .contact-title { max-width: 26ch; }
  .door-hit { grid-template-columns: minmax(0, 1fr) auto; }
  .door-cmd { grid-column: 1 / -1; grid-row: 1; }
  .door-head { grid-column: 1; grid-row: 2; margin-top: 8px; }
  .door-body { grid-column: 1 / -1; grid-row: 3; }
  .door-go { grid-column: 2; grid-row: 2; align-self: baseline; }
}

@media (max-width: 720px) {
  /* Two tidy rows: identity and language on top, section links under them.
     The header CTA drops out — the hero button sits right below it anyway. */
  .head-inner { flex-wrap: wrap; row-gap: 12px; min-height: 0; padding-block: 10px; }
  .head-actions { margin-inline-start: auto; }
  .head-actions .btn { display: none; }
  .nav {
    order: 3;
    width: 100%;
    margin-inline-start: 0;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .nav::-webkit-scrollbar { display: none; }
  html { scroll-padding-top: 104px; }

  .row, .rows-wide .row { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .door-hit { padding-block: 22px; }
  .door-go { grid-column: 1; grid-row: 4; margin-top: 12px; align-self: start; }
  .form-done { padding: 22px 20px; }
}

@media (max-width: 480px) {
  .btn { width: 100%; }
  .btn-sm { width: auto; }
  .hero-actions { gap: 10px; }
  .head-actions { gap: 10px; }
  .foot-links a span { word-break: break-word; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
