/* =========================================================
   MyClients — landing
   Editorial · varm · rolig. Matcher app'ens pastel-DNA.
   ========================================================= */

:root {
  /* Ink & paper */
  --ink:         #1c2a33;
  --ink-soft:    #45565f;
  --muted:       #7a8a92;
  --line:        rgba(28, 42, 51, 0.10);
  --line-soft:   rgba(28, 42, 51, 0.06);
  --paper:       #f8f4ec;
  --paper-warm:  #f1ead9;
  --paper-card:  #fffdf8;

  /* Accents (matcher app'ens pastelverden) */
  --teal:        #2c7a8c;
  --teal-deep:   #1f5d6c;
  --lavender:    #a89bc9;
  --lavender-bg: #ece8f4;
  --peach:       #e4a47a;
  --peach-bg:    #f6e3d2;
  --sage:        #8aa896;
  --sage-bg:     #e1ebe4;
  --terracotta:  #c47a5f;

  /* Spacing rhythm */
  --pad-page: 28px;
  --pad-page-lg: 56px;
  --max-w: 1180px;

  /* Type */
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans:  "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
}

body {
  background:
    radial-gradient(1200px 600px at 85% -10%, var(--lavender-bg) 0%, transparent 55%),
    radial-gradient(900px 500px at -10% 30%, var(--peach-bg) 0%, transparent 50%),
    radial-gradient(1000px 700px at 50% 105%, var(--sage-bg) 0%, transparent 55%),
    var(--paper);
  background-attachment: fixed;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--ink); color: var(--paper); }

/* Subtle grain overlay — adds paper-feel */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11   0 0 0 0 0.16   0 0 0 0 0.20   0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Env badge */
.env-badge {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  background: #ffefc2;
  color: #6a4b00;
  border: 1px solid #e6c97a;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 60;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.env-badge.dev { background: #e6f3ff; color: #0a3d62; border-color: #9fc8e8; }

/* =========================================================
   NAV
   ========================================================= */
header.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(248, 244, 236, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-page);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 28, "SOFT" 50;
}
.brand img { width: 32px; height: 32px; }
.brand-name { font-style: italic; }

.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links > a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .2s ease;
  position: relative;
}
.nav-links > a:not(.btn):hover { color: var(--ink); }
.nav-links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); }

.lang {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding-left: 8px;
  border-left: 1px solid var(--line);
  margin-left: 4px;
}
.lang-btn {
  padding: 4px 2px;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color .18s ease;
}
.lang-btn:hover { color: var(--ink-soft); }
.lang-btn.is-active { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 6px 16px -8px rgba(28,42,51,.5);
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 10px 24px -10px rgba(31,93,108,.55);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* =========================================================
   MAIN container
   ========================================================= */
main {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-page) 80px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0 120px;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 28px;
  padding: 6px 12px;
  background: rgba(44, 122, 140, 0.08);
  border-radius: 999px;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  color: var(--ink);
}
.h1-line {
  display: block;
  animation: rise 1s cubic-bezier(.2,.7,.2,1) both;
}
.h1-line:nth-child(2) { animation-delay: .12s; }
.h1-line:nth-child(3) { animation-delay: .22s; }

.h1-italic {
  font-style: italic;
  color: var(--teal-deep);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 32px 0 36px;
  max-width: 52ch;
  animation: rise 1s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: .35s;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: rise 1s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: .45s;
}
.cta-row-center { justify-content: center; }

.hero-meta {
  margin-top: 40px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
  animation: rise 1s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: .6s;
}
.meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-bg);
}

/* ---------- Hero visual: efterligner record-app ---------- */
.hero-visual {
  position: relative;
  --px: 0px; --py: 0px;
  transform: translate3d(var(--px), var(--py), 0);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  animation: rise 1.1s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: .25s;
}

.app-card {
  position: relative;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 30px 60px -30px rgba(28, 42, 51, .25),
    0 10px 30px -15px rgba(28, 42, 51, .12);
  display: grid;
  gap: 22px;
}

.app-card-head {
  display: flex; align-items: center; gap: 14px;
}
.app-card-head-text { flex: 1; min-width: 0; }
.app-card-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}
.app-card-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  color: white;
  flex-shrink: 0;
}
.avatar-sm { width: 32px; height: 32px; font-size: 11px; }
.avatar-teal     { background: linear-gradient(135deg, #4a98aa, #2c7a8c); }
.avatar-peach    { background: linear-gradient(135deg, #e8b896, #c98a64); }
.avatar-lavender { background: linear-gradient(135deg, #b8acd6, #9486b8); }
.avatar-sage     { background: linear-gradient(135deg, #9ebaa8, #7a9587); }

/* Status pills */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pill-lavender { background: var(--lavender-bg); color: #5d4f80; }
.pill-peach    { background: var(--peach-bg);    color: #8a4e2c; }
.pill-sage     { background: var(--sage-bg);     color: #3d5e4b; }

.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-lavender { background: var(--lavender); }
.dot-peach    { background: var(--peach); }
.dot-sage     { background: var(--sage); }

/* Floating chips around the card */
.float-chip {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: rotate(var(--r));
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--paper-card);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px -12px rgba(28, 42, 51, .22);
  animation: bob 6s ease-in-out infinite;
  z-index: 2;
}
.float-chip.chip-lavender { color: #5d4f80; }
.float-chip.chip-peach    { color: #8a4e2c; animation-delay: -2s; }
.float-chip.chip-sage     { color: #3d5e4b; animation-delay: -4s; }

@keyframes bob {
  0%, 100% { transform: rotate(var(--r)) translateY(0); }
  50%      { transform: rotate(var(--r)) translateY(-8px); }
}

/* VAS section in card */
.app-card-section {
  padding: 16px;
  background: var(--paper);
  border-radius: 14px;
  border: 1px solid var(--line-soft);
}
.app-card-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.app-card-trend { color: var(--sage); font-weight: 600; }

.vas-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 8px;
}
.vas-number {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  color: var(--ink);
  line-height: 1;
}
.vas-of {
  font-size: 16px;
  color: var(--muted);
  margin-left: 2px;
}
.vas-bar {
  position: relative; flex: 1;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, #d9c89c 50%, var(--terracotta) 100%);
  opacity: 0.5;
}
.vas-fill {
  position: absolute; inset: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, #d9c89c 50%, var(--terracotta) 100%);
  clip-path: inset(0 60% 0 0);
}
.vas-marker {
  position: absolute; top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--paper-card);
  box-shadow: 0 2px 6px rgba(28,42,51,.3);
}
.vas-legend {
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Record entry in card */
.app-card-entry {
  padding-top: 4px;
}
.entry-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.entry-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.entry-role { font-size: 11px; color: var(--peach); font-weight: 600; letter-spacing: 0.04em; }
.entry-time { font-size: 11px; color: var(--muted); }

.entry-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.entry-tag {
  background: var(--sage-bg);
  border-left: 3px solid var(--sage);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: #3d5e4b;
}
.entry-tag-label {
  display: inline-block;
  font-weight: 700;
  margin-right: 6px;
}

/* =========================================================
   WAVE divider
   ========================================================= */
.wave {
  color: var(--line);
  margin: 0 calc(var(--pad-page) * -1);
  padding: 32px 0;
  opacity: 0.7;
}
.wave svg { width: 100%; height: 50px; display: block; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 100px 0;
  position: relative;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-side { position: sticky; top: 110px; align-self: start; }

.section-num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--teal);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 14, "SOFT" 100, "WONK" 1;
}
.section-num::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
}

.section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  font-weight: 400;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  max-width: 14ch;
}

.section-lede {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 40ch;
}

/* ---------- Persona list (section 01) ---------- */
.persona-list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.persona {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: padding-left .35s cubic-bezier(.2,.7,.2,1);
}
.persona:last-child { border-bottom: 1px solid var(--line); }
.persona:hover { padding-left: 12px; }
.persona-marker {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.persona-marker svg { width: 26px; height: 26px; }
.persona h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
  font-variation-settings: "opsz" 28;
}
.persona p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
}

/* ---------- Feature grid (section 02) ---------- */
.section-features { padding: 80px 0 120px; }
.section-features .section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-features .section-head h2 {
  margin: 0 auto;
  max-width: 18ch;
}
.section-features .section-num {
  display: block;
  text-align: center;
}
.section-features .section-num::before { display: none; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .25s ease;
  position: relative;
}
.feature:hover { background: rgba(255, 253, 248, 0.6); }
.feature-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--peach);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 24, "SOFT" 100;
}
.feature h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 28;
}
.feature p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* =========================================================
   MANIFEST pull-quote
   ========================================================= */
.manifest {
  margin: 80px calc(var(--pad-page) * -1);
  padding: 100px var(--pad-page);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.manifest::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(168, 155, 201, 0.15), transparent 60%),
    radial-gradient(500px 400px at 10% 90%, rgba(228, 164, 122, 0.12), transparent 55%);
  pointer-events: none;
}
.manifest > * { position: relative; z-index: 1; }
.manifest-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 1;
  font-style: italic;
  color: var(--peach);
  opacity: 0.7;
  margin-bottom: -32px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
}
.manifest p {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 300;
  max-width: 24ch;
  margin: 0 auto;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.manifest p::first-line { font-style: italic; color: #d9cdb3; }
.manifest-attr {
  margin: 36px auto 0;
  max-width: var(--max-w);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(248, 244, 236, 0.55);
  text-align: left;
}

/* =========================================================
   SECURITY (section 03)
   ========================================================= */
.security-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.security-list li {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.sec-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--teal);
  font-variation-settings: "opsz" 18, "SOFT" 100;
}
.sec-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  text-align: center;
  padding: 120px var(--pad-page) 60px;
  margin: 0 calc(var(--pad-page) * -1);
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 400;
  max-width: 18ch;
  margin: 0 auto 40px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.cta h2 .h1-italic {
  display: inline;
  color: var(--teal-deep);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  position: relative;
  z-index: 2;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--pad-page) 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-name {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  letter-spacing: -0.01em;
}
.footer-tag { font-size: 12px; color: var(--muted); margin-top: 2px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-h {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.footer-col a, .footer-col span {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--ink); }

.footer-base {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--pad-page);
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 56px; padding: 56px 0 80px; }
  .section-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-side { position: static; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  :root { --pad-page: 20px; }
  .nav-links { gap: 14px; }
  .nav-links > a:not(.btn):not(.lang-btn) { display: none; }
  .nav-links .lang { padding-left: 0; border-left: none; margin-left: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 8px; align-items: flex-start; }
  .section { padding: 72px 0; }
  .manifest { padding: 72px var(--pad-page); }
  .manifest-mark { font-size: 80px; margin-bottom: -20px; }
  .security-list li { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .float-chip { font-size: 9.5px; padding: 5px 9px; }
}

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