:root {

  --field: #050409;

  --glass-hi:   rgba(255,255,255,.055);
  --glass-lo:   rgba(255,255,255,.022);
  --glass-row:  rgba(255,255,255,.035);
  --glass-well: rgba(5,4,10,.45);
  --pop-tint:   rgba(20,17,27,.66);

  --stroke:   rgba(255,255,255,.09);
  --stroke-2: rgba(255,255,255,.17);
  --hairline: rgba(255,255,255,.06);
  --topline:  rgba(255,255,255,.12);
  --specular: rgba(255,255,255,.34);
  --stroke-grad: linear-gradient(180deg, rgba(255,255,255,.17),
                 rgba(255,255,255,.02) 55%, rgba(255,255,255,.055));

  --shadow-card: 0 14px 34px -14px rgba(0,0,0,.72);
  --shadow-pop:  0 26px 52px -16px rgba(0,0,0,.82);
  --shadow-lift: 0 22px 48px -18px rgba(0,0,0,.8);

  --fg:         #F2EEF6;
  --dim:        #ABA2B4;
  --faint:      #8B8394;
  --faint-deco: #6B6375;
  --ink:        #0A0810;

  --cyan:    #9EDFEA;
  --magenta: #F0A6D8;
  --red:     #FF9A9A;
  --purple:  #8B6DC7;

  --accent:      var(--cyan);
  --accent-soft: rgba(158,223,234,.07);
  --accent-line: rgba(158,223,234,.38);
  --accent-glow: rgba(158,223,234,.12);
  --accent-wash: rgba(158,223,234,.05);

  --blur-pop:    28px;

  --r-1: 6px; --r-2: 8px; --r-3: 10px; --r-4: 14px; --r-pill: 999px;

  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 24px; --s8: 32px; --s10: 40px;

  --btn-h-sm: 30px;
  --btn-h:    40px;
  --btn-h-lg: 54px;

  --gutter:         clamp(20px, 4.5vw, 64px);
  --sec-y:          clamp(72px, 13vh, 136px);
  --content-max:    1120px;
  --content-narrow: 720px;
  --measure:        62ch;

  --bar-h:     38px;
  --note-h:    34px;
  --nav-h:     56px;
  --nav-space: calc(var(--nav-h) + var(--s8));

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "JetBrains Mono", "Cascadia Mono", Menlo, Consolas,
          "DejaVu Sans Mono", monospace;

  --display: "Unbounded", var(--sans);

  --ease:   cubic-bezier(.22,1,.36,1);
  --t-fast: .36s;
  --t-mid:  .56s;
  --t-big:  1.2s;

  --grain: 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.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");

  color-scheme: dark;
}

.acc-creations, .acc-cyan {
  --accent: var(--cyan);
  --accent-soft: rgba(158,223,234,.07);
  --accent-line: rgba(158,223,234,.38);
  --accent-glow: rgba(158,223,234,.12);
  --accent-wash: rgba(158,223,234,.05);
}
.acc-lewdity, .acc-magenta {
  --accent: var(--magenta);
  --accent-soft: rgba(240,166,216,.07);
  --accent-line: rgba(240,166,216,.38);
  --accent-glow: rgba(240,166,216,.12);
  --accent-wash: rgba(240,166,216,.05);
}
.acc-red {
  --accent: var(--red);
  --accent-soft: rgba(255,154,154,.07);
  --accent-line: rgba(255,154,154,.38);
  --accent-glow: rgba(255,154,154,.12);
  --accent-wash: rgba(255,154,154,.05);
}
.acc-hire, .acc-purple {
  --accent: var(--purple);
  --accent-soft: rgba(139,109,199,.09);
  --accent-line: rgba(139,109,199,.44);
  --accent-glow: rgba(139,109,199,.14);
  --accent-wash: rgba(139,109,199,.06);
}

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

html {
  background: var(--field);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--field);
}

main, .site-foot { position: relative; z-index: 1; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.15; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; border: 0; }

[hidden] { display: none !important; }

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid rgba(242,238,246,.92);
  outline-offset: 2px;
}

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.12); border-radius: 6px;
  border: 3px solid transparent; background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background-color: rgba(255,255,255,.22); }
::-webkit-scrollbar-track { background: transparent; }

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

.mono { font-family: var(--mono); }
.fg { color: var(--fg); }  .dim { color: var(--dim); }  .faint { color: var(--faint); }

.kick {
  display: flex; align-items: center; gap: var(--s3);
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  color: var(--faint); text-transform: none;
}
.kick::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }
.kick.bare::after { content: none; }
.kick .acc { color: var(--accent); }

.display {
  font-family: var(--display);
  font-weight: 700; letter-spacing: -.032em; line-height: .96;
  font-size: clamp(46px, 8.4vw, 116px);
  color: var(--fg);
}

.display-2 {
  font-weight: 700; letter-spacing: -.026em; line-height: 1.04;
  font-size: clamp(28px, 4.2vw, 54px);
  color: var(--fg);
}

.display-3 {
  font-weight: 700; letter-spacing: -.014em; line-height: 1.15;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--fg);
}

.sub  { color: var(--dim); font-size: clamp(14px, 1.5vw, 18px); }
.lede {
  color: var(--dim); font-size: clamp(16px, 1.9vw, 21px);
  line-height: 1.6; max-width: var(--measure);
}
.copy {
  color: var(--dim); font-size: 15px; line-height: 1.75; max-width: var(--measure);
}
.copy + .copy { margin-top: var(--s4); }
.copy strong, .lede strong { color: var(--fg); font-weight: 600; }
.copy a:not(.btn), .lede a:not(.btn) {
  color: var(--fg); text-decoration: underline;
  text-decoration-color: var(--stroke-2); text-underline-offset: 3px;
  transition: text-decoration-color var(--t-fast) var(--ease);
}
.copy a:not(.btn):hover, .lede a:not(.btn):hover { text-decoration-color: var(--accent); }
.measure { max-width: var(--measure); }

.tag {
  display: inline-flex; align-items: center; align-self: center;
  height: 16px; line-height: 1; padding: 0 6px; white-space: nowrap;
  font-family: var(--mono); font-size: 9px; letter-spacing: .08em;
  color: var(--faint); border-radius: 5px;
  box-shadow: inset 0 0 0 1px var(--stroke);
}
.tag.t-fg     { color: var(--fg); box-shadow: inset 0 0 0 1px var(--stroke-2); }
.tag.t-cyan   { color: var(--cyan);    box-shadow: inset 0 0 0 1px rgba(158,223,234,.35); }
.tag.t-mag    { color: var(--magenta); box-shadow: inset 0 0 0 1px rgba(240,166,216,.35); }
.tag.t-red    { color: var(--red);     box-shadow: inset 0 0 0 1px rgba(255,154,154,.35); }
.tag.t-accent { color: var(--accent);  box-shadow: inset 0 0 0 1px var(--accent-line); }

.chip {
  display: inline-flex; align-items: center; align-self: center; gap: 6px;
  height: 22px; line-height: 20px; padding: 0 var(--s2); white-space: nowrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  color: var(--dim); border-radius: var(--r-1);
  background: var(--glass-row);
  box-shadow: inset 0 0 0 1px var(--stroke);
}
.chip.c-fg   { color: var(--fg); box-shadow: inset 0 0 0 1px var(--stroke-2); }
.chip.c-cyan { color: var(--cyan);    background: rgba(158,223,234,.07);
  box-shadow: inset 0 0 0 1px rgba(158,223,234,.38), 0 0 10px rgba(158,223,234,.10); }
.chip.c-mag  { color: var(--magenta); background: rgba(240,166,216,.07);
  box-shadow: inset 0 0 0 1px rgba(240,166,216,.38), 0 0 10px rgba(240,166,216,.10); }
.chip.c-red  { color: var(--red);     background: rgba(255,154,154,.07);
  box-shadow: inset 0 0 0 1px rgba(255,154,154,.38), 0 0 10px rgba(255,154,154,.10); }
.chip.c-accent { color: var(--accent); background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent-line), 0 0 10px var(--accent-glow); }

.chips { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2); }

.glass, .card {
  position: relative;
  border-radius: var(--r-3);
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
}
.card { overflow: hidden; }

.glass::before, .card::before {
  content: ""; position: absolute; top: 0; left: 8%; right: 12%; height: 1px;
  z-index: 2; pointer-events: none; border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--specular) 38%, transparent);
}

.glass::after, .card::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  pointer-events: none; border-radius: inherit;
  background-image: var(--grain); opacity: .05;
}
.glass > *, .card > * { position: relative; z-index: 1; }

.card { padding: clamp(18px, 2.4vw, 28px); }
.card.flush { padding: 0; }

a.card, .card.is-link, button.card {
  display: block; text-align: left; width: 100%;
  transition: border-color var(--t-mid) var(--ease),
              transform   var(--t-mid) var(--ease),
              box-shadow  var(--t-mid) var(--ease);
}
a.card:hover, .card.is-link:hover, button.card:hover,
a.card:focus-visible, button.card:focus-visible {
  border-color: var(--stroke-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.card.lit {
  border-color: var(--accent-line);
  box-shadow: 0 0 22px var(--accent-glow), var(--shadow-card);
}

.well {
  position: relative; padding: 10px; margin: 0;
  background: var(--glass-well);
  border: 1px solid var(--stroke); border-radius: var(--r-3);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.5);
}
.well::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit; background-image: var(--grain); opacity: .05;
}
.well > * { position: relative; z-index: 1; }
.well.flush { padding: 0; overflow: hidden; }
.well img {
  width: 100%; border-radius: var(--r-1);
  filter: grayscale(.32) brightness(.66) saturate(.8);
  transition: filter var(--t-big) var(--ease);
}
.well.flush img { border-radius: 0; }
.well:hover img, a:hover .well img, a:focus-visible .well img { filter: none; }
.well .cap {
  display: flex; justify-content: space-between; gap: var(--s3);
  padding: 10px 2px 0;
  font-family: var(--mono); font-size: 9px; letter-spacing: .06em; color: var(--faint);
}
.well .cap .meta { color: var(--faint-deco); }

.frame {
  display: grid; place-items: center; flex: none;
  width: 56px; height: 56px; padding: 9px;
  border-radius: var(--r-3); background: var(--glass-well);
  box-shadow: inset 0 0 0 1px var(--stroke), inset 0 1px 3px rgba(0,0,0,.5);
}
.frame img {
  width: 100%; height: 100%; object-fit: contain; border-radius: 4px;
  filter: saturate(.7) brightness(.9);
  transition: filter var(--t-big) var(--ease);
}
a:hover .frame img, a:focus-visible .frame img, .frame:hover img { filter: none; }
.frame.lg { width: clamp(64px, 7vw, 88px); height: clamp(64px, 7vw, 88px); }
.frame.sm { width: 40px; height: 40px; padding: 7px; border-radius: var(--r-2); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  height: var(--btn-h); padding: 0 var(--s5);
  border-radius: var(--r-2); white-space: nowrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  color: var(--dim); background: var(--glass-row);
  box-shadow: inset 0 0 0 1px var(--stroke), inset 0 1px 0 var(--topline);
  transition: color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn:hover {
  color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--stroke-2), inset 0 1px 0 var(--topline);
}
.btn:active { transform: translateY(1px); }
.btn .go { color: var(--faint-deco); transition: color var(--t-fast) var(--ease); }
.btn:hover .go { color: var(--fg); }

.btn-pri {
  color: var(--ink); font-weight: 700;
  background: var(--fg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-card);
}
.btn-pri:hover {
  color: var(--ink); background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 0 26px rgba(242,238,246,.3);
}
.btn-pri .go { color: rgba(10,8,16,.55); }
.btn-pri:hover .go { color: var(--ink); }

.btn-accent {
  color: var(--accent); background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent-line), 0 0 12px var(--accent-glow);
}
.btn-accent:hover {
  color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--accent-line), 0 0 20px var(--accent-glow);
}
.btn-accent .go { color: var(--accent); }

.btn-sm { height: var(--btn-h-sm); padding: 0 var(--s3); font-size: 10px; letter-spacing: .06em; }
.btn-lg {
  height: var(--btn-h-lg); padding: 0 var(--s8);
  font-size: 12px; letter-spacing: .1em; border-radius: var(--r-3);
}
.btn-block { display: flex; width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .38; pointer-events: none; }

.btns { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3); }

.btn-dl {
  position: relative; display: grid; width: 100%;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center; gap: var(--s4);
  min-height: 74px; padding: var(--s3) var(--s5);
  border-radius: var(--r-3); text-align: left;
  background: linear-gradient(180deg, var(--glass-hi), var(--glass-lo));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease), background var(--t-mid) var(--ease);
}
.btn-dl::before {
  content: ""; position: absolute; top: 0; left: 8%; right: 12%; height: 1px;
  pointer-events: none; border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--specular) 38%, transparent);
}
.btn-dl::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit; background-image: var(--grain); opacity: .05;
}
.btn-dl > * { position: relative; z-index: 1; }
.btn-dl:hover, .btn-dl:focus-visible {
  border-color: var(--stroke-2); transform: translateY(-2px); box-shadow: var(--shadow-lift);
}
.btn-dl .dl-ic {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: var(--r-2); background: var(--glass-well);
  box-shadow: inset 0 0 0 1px var(--stroke), inset 0 1px 2px rgba(0,0,0,.5);
  font-family: var(--mono); font-size: 15px; color: var(--dim);
}
.btn-dl .dl-tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.btn-dl .dl-label { font-size: 15px; font-weight: 600; letter-spacing: -.008em; color: var(--fg); }
.btn-dl .dl-sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: var(--faint);
}
.btn-dl .dl-go {
  font-family: var(--mono); font-size: 13px; color: var(--faint-deco);
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn-dl:hover .dl-go { color: var(--fg); transform: translateY(2px); }
.btn-dl .dl-detected {
  display: inline-flex; align-items: center; align-self: flex-start; gap: 5px;
  margin-top: 2px; height: 16px; padding: 0 6px; border-radius: 5px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .08em;
  color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent-line);
}
.btn-dl.is-primary {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border-color: var(--stroke-2);
  box-shadow: 0 0 24px rgba(242,238,246,.09), var(--shadow-card);
}
.btn-dl.is-primary .dl-ic { color: var(--fg); box-shadow: inset 0 0 0 1px var(--stroke-2), inset 0 1px 2px rgba(0,0,0,.5); }

.wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--content-max);
  margin-inline: auto; padding-inline: var(--gutter);
}
.wrap.narrow { max-width: var(--content-narrow); }
.wrap.wide   { max-width: 1320px; }
.wrap.bleed  { max-width: none; }

.sec { position: relative; z-index: 1; padding-block: var(--sec-y); }
.sec.tight { padding-block: clamp(44px, 8vh, 80px); }
.sec.flush-top { padding-top: 0; }
.sec.flush-bottom { padding-bottom: 0; }
.sec.hair-top { border-top: 1px solid var(--hairline); }

.pad-nav { padding-top: var(--nav-space); }

.rule { height: 1px; border: 0; margin: 0; background: var(--hairline); }
.rule.strong { background: var(--stroke); }

.stack { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s4); }
.stack.center { align-items: center; text-align: center; }
.stack.s2  { gap: var(--s2); }
.stack.s3  { gap: var(--s3); }
.stack.s6  { gap: var(--s6); }
.stack.s8  { gap: var(--s8); }
.stack.s10 { gap: var(--s10); }
.stack.fill { align-items: stretch; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: clamp(14px, 1.8vw, 22px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.span-all { grid-column: 1 / -1; }

.rows { border-top: 1px solid var(--hairline); }
.row {
  position: relative; display: flex; align-items: center; gap: var(--s4);
  min-height: 66px; padding: var(--s3) var(--s2);
  border-bottom: 1px solid var(--hairline);
  transition: background var(--t-mid) var(--ease);
}
a.row, button.row { width: 100%; text-align: left; }
.row:hover, .row:focus-visible { background: var(--glass-row); }
.row .row-k { color: var(--fg); font-size: 15px; font-weight: 600; letter-spacing: -.008em; }
.row .row-sub { color: var(--faint); font-family: var(--mono); font-size: 10px; letter-spacing: .04em; }
.row .row-tx { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.row .row-v {
  margin-left: auto; flex: none;
  font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: .03em;
}
.row .row-go {
  flex: none; font-family: var(--mono); font-size: 13px; color: var(--faint-deco);
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.row:hover .row-go, .row:focus-visible .row-go { color: var(--fg); transform: translateX(4px); }
.row .row-v + .row-go { margin-left: var(--s4); }
.row .row-v:first-of-type { margin-left: auto; }

.lines { border-top: 1px solid var(--hairline); }
.line {
  display: flex; align-items: baseline; gap: clamp(16px, 3vw, 32px);
  padding: clamp(30px, 5.4vh, 58px) 0;
  border-bottom: 1px solid var(--hairline);
}
.line .line-k {
  flex: none; width: 92px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--faint);
}
.line .line-n {
  font-weight: 700; letter-spacing: -.03em; line-height: 1;
  font-size: clamp(34px, 6vw, 82px); color: var(--dim);
  transition: color var(--t-big) var(--ease), transform var(--t-big) var(--ease);
}
.line .line-go {
  margin-left: auto; flex: none;
  font-family: var(--mono); font-size: 14px; color: var(--faint-deco);
  transition: color var(--t-big) var(--ease);
}
.line:hover .line-n, .line:focus-visible .line-n { color: var(--fg); transform: translateX(14px); }
.line:hover .line-go, .line:focus-visible .line-go { color: var(--fg); }

.glitch {
  position: relative; display: inline-block;
  text-shadow: 0 0 20px rgba(242,238,246,.22);
}
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; inset: 0;
  opacity: 0; pointer-events: none; filter: blur(1.5px);
}
.glitch::before { color: var(--cyan);    animation: drift-a 14s ease-in-out infinite; }
.glitch::after  { color: var(--magenta); animation: drift-b 18s ease-in-out infinite; }
@keyframes drift-a {
  0%, 100% { opacity: 0;   transform: none; }
  50%      { opacity: .38; transform: translate(-2.5px, 0); }
}
@keyframes drift-b {
  0%, 100% { opacity: 0;   transform: none; }
  50%      { opacity: .38; transform: translate(2.5px, 0); }
}

.wordmark { font-weight: 700; letter-spacing: .22em; line-height: 1; white-space: nowrap; }

html.js [data-reveal] {
  opacity: 0; transform: translateY(12px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}
html.js [data-reveal].in-view { opacity: 1; transform: none; }
html.js [data-reveal][data-reveal-delay="1"] { transition-delay: .14s; }
html.js [data-reveal][data-reveal-delay="2"] { transition-delay: .28s; }
html.js [data-reveal][data-reveal-delay="3"] { transition-delay: .42s; }

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  :root { --nav-space: calc(var(--nav-h) + var(--s6)); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0,1fr); }
  .line .line-k { display: none; }
  .btn-lg { padding-inline: var(--s6); }
}

@media (max-width: 560px) {
  body { font-size: 14.5px; }
  .display { font-size: clamp(38px, 12vw, 62px); }
  .display-2 { font-size: clamp(25px, 7.4vw, 36px); }
  .btns > .btn { flex: 1 1 100%; }
  .row { flex-wrap: wrap; row-gap: var(--s2); }
  .row .row-v { margin-left: 0; }
  .btn-dl { gap: var(--s3); padding-inline: var(--s4); }
  .well .cap { flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

@media (forced-colors: active) {
  .btn, .btn-pri, .btn-sm, .btn-lg, .btn-dl, .btn-dl .dl-ic,
  .tag, .chip, .frame, .well, .card, .kr-cta,
  .pf-glyph, .pf-detected, .hd-tag {
    border: 1px solid ButtonBorder;
    forced-color-adjust: auto;
  }
  .btn-pri { border-color: Highlight; }

  .art, .motif { display: none; }
}
