:root {
  --bg: #090909;
  --bg-2: #111111;
  --paper: #f3eee4;
  --ink: #111111;
  --accent: #d6ff3a;
  --accent-2: #eaff8a;
  --muted: #8d8d85;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(17, 17, 17, 0.12);
  --card: #141414;
  --danger: #ff5a3c;
  --font-d: "Unbounded", system-ui, sans-serif;
  --font-b: "Manrope", system-ui, sans-serif;
  --radius: 22px;
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { background: var(--bg); color: #f5f5f0; max-width: 100%; }
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}

.cursor, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 14px; height: 14px;
  background: var(--accent);
  mix-blend-mode: difference;
  transition: width .2s, height .2s;
}
.cursor-ring {
  width: 42px; height: 42px;
  border: 1.5px solid var(--accent);
  opacity: 0.85;
  transition: width .2s, height .2s;
}
.cursor.grow { width: 22px; height: 22px; }
.cursor.grow + .cursor-ring, .cursor-ring.grow { width: 64px; height: 64px; }
@media (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

.wrap {
  width: min(var(--max), calc(100vw - 40px));
  margin-inline: auto;
  min-width: 0;
}

.nav {
  position: fixed;
  top: 16px;
  left: 12px;
  right: 12px;
  width: auto;
  max-width: var(--max);
  margin-inline: auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 10px 10px 20px;
  border: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
}
.logo {
  font-family: var(--font-d);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
}
.logo i {
  width: 8px; height: 8px;
  background: var(--accent);
  display: inline-block;
  border-radius: 2px;
}
.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--accent);
  color: #111;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
}
.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  place-items: center;
}
.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
  box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
}

.hero {
  padding: 140px 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}
.hero > * { min-width: 0; }
.kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3rem, 7.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-lead {
  margin-top: 28px;
  max-width: 520px;
  color: #c9c9c0;
  font-size: 18px;
  overflow-wrap: break-word;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #111; }
.btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
}
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta b {
  display: block;
  font-family: var(--font-d);
  font-size: 22px;
}
.hero-meta span { color: var(--muted); font-size: 13px; }

.hero-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 520px;
  filter: saturate(0.85) contrast(1.05);
}
.term {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(214, 255, 58, 0.32);
  border-radius: 16px;
  background: rgba(7, 9, 7, 0.9);
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}
.term-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(214, 255, 58, 0.14);
  background: rgba(255, 255, 255, 0.03);
}
.term-dots { display: flex; gap: 6px; }
.term-dots i {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: block;
  background: #3d3d3d;
}
.term-dots i:nth-child(1) { background: #ff5f57; }
.term-dots i:nth-child(2) { background: #febc2e; }
.term-dots i:nth-child(3) { background: #28c840; }
.term-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #8d8d85;
  letter-spacing: 0.04em;
}
.term-live {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.term-live:before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
.term-body { position: relative; padding: 12px 14px 14px; }
.term-bin {
  position: absolute;
  inset: 0;
  padding: 12px 14px;
  color: rgba(214, 255, 58, 0.12);
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.7;
  white-space: nowrap;
  animation: codeDrift 22s linear infinite;
  pointer-events: none;
}
.term-log {
  position: relative;
  margin: 0;
  font: inherit;
  font-size: 12.5px;
  line-height: 1.7;
  color: #cfd3c6;
  white-space: pre-wrap;
}
.term-log .cmt { color: #5f6658; }
.term-log .dec { color: var(--accent); }
.term-log .p { color: var(--accent); margin-right: 6px; }
.term-log .kv b { color: var(--accent); font-weight: 600; }
.term-log .ok { color: var(--accent); }
.term-log .bar {
  display: block;
  margin: 4px 0;
  color: #8d8d85;
}
.term-log .fill {
  display: inline-block;
  width: 92px;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), #8cff6a);
  box-shadow: 0 0 12px rgba(214, 255, 58, 0.35);
  vertical-align: middle;
  transform-origin: left center;
  animation: load 2.4s ease-out forwards;
}
.caret {
  display: inline-block;
  width: 8px; height: 13px;
  margin-left: 4px;
  background: var(--accent);
  vertical-align: -2px;
  animation: blink 1s step-end infinite;
}
.term-log .ln,
.term-log .kv,
.term-log .bar,
.term-log .ok,
.term-log .dec,
.term-log .cmt {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  animation: type 0.7s steps(28, end) both;
}
.term-log > span:nth-child(1) { animation-delay: 0.1s; }
.term-log > span:nth-child(2) { animation-delay: 0.4s; }
.term-log > span:nth-child(3) { animation-delay: 0.8s; }
.term-log > span:nth-child(4) { animation-delay: 1.1s; }
.term-log > span:nth-child(5) { animation-delay: 1.35s; }
.term-log > span:nth-child(6) { animation-delay: 1.6s; }
.term-log > span:nth-child(7) { animation-delay: 1.85s; }
.term-log > span:nth-child(8) { animation-delay: 2.2s; }
@keyframes type {
  from { max-width: 0; }
  to { max-width: 100%; }
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes load {
  from { transform: scaleX(0.12); }
  to { transform: scaleX(1); }
}
.grid-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101010;
  min-height: 520px;
  display: none;
  flex-direction: column;
}
.grid-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  background:
    repeating-conic-gradient(#f5f5f0 0% 25%, #111 0% 50%)
    0 0 / 16px 16px;
  background-color: #f5f5f0;
}
.grid-head span:first-child {
  background: #111;
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 6px;
}
.lights {
  display: flex;
  gap: 6px;
  background: #111;
  padding: 6px 8px;
  border-radius: 999px;
}
.lights i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e10600;
  box-shadow: 0 0 8px #e10600;
  display: block;
}
.bolid {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.bolid:hover { background: rgba(214, 255, 58, 0.06); }
.bolid b {
  font-family: var(--font-d);
  font-size: 20px;
  color: var(--muted);
}
.bolid.p1 {
  background: linear-gradient(90deg, rgba(214, 255, 58, 0.16), transparent 70%);
}
.bolid.p1 b { color: var(--accent); }
.bolid h3 {
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.bolid p { color: var(--muted); font-size: 13px; margin-top: 2px; }
.bolid strong {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--accent);
  font-size: 18px;
}
.code-banner {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(214, 255, 58, 0.28);
  background: rgba(6, 8, 6, 0.92);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  margin-top: auto;
}
.code-banner.in-grid { border-radius: 0; }
.code-rain {
  position: absolute;
  inset: 0;
  padding: 10px 14px 0;
  color: rgba(214, 255, 58, 0.22);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.12em;
  white-space: nowrap;
  animation: codeDrift 18s linear infinite;
  pointer-events: none;
}
.code-readout {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  padding: 16px 18px 14px;
}
.code-readout b {
  color: var(--accent);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.code-readout span {
  color: #9aa392;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.code-prompt { color: var(--accent); margin-right: 6px; }
@keyframes codeDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-40%); }
}

.marquee {
  margin-top: 56px;
  border-block: 1px solid var(--line);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: slide 28s linear infinite;
  font-family: var(--font-d);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track span { display: flex; align-items: center; gap: 40px; }
.marquee-track i {
  width: 7px; height: 7px;
  background: var(--accent);
  display: inline-block;
  border-radius: 50%;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 96px 0; }
.section-h {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}
.section-h h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.5vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: min(720px, 100%);
  overflow-wrap: break-word;
}
.section-h p { color: var(--muted); max-width: 340px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step b {
  font-family: var(--font-d);
  color: var(--accent);
  font-size: 13px;
}
.step h3 {
  font-size: 28px;
  font-family: var(--font-d);
  letter-spacing: -0.04em;
  margin: 18px 0 12px;
}
.step p { color: #bdbdb4; }

.cases { display: grid; gap: 56px; }
.case {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.case:nth-child(even) .case-shot { order: 2; }
.case-shot {
  display: block;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  background: #1a1a1a;
  border-bottom: 1px solid var(--line);
}
.chrome i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3a3a3a;
}
.chrome i:nth-child(1) { background: #ff5f57; }
.chrome i:nth-child(2) { background: #febc2e; }
.chrome i:nth-child(3) { background: #28c840; }
.chrome span {
  margin-left: 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: #8d8d85;
}
.case-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.case-body small {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}
.case-body h3 {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
  margin: 8px 0 12px;
}
.case-body p { color: #c9c9c0; max-width: 460px; }
.case-body ul {
  margin: 18px 0 22px;
  display: grid;
  gap: 8px;
}
.case-body li {
  position: relative;
  padding-left: 16px;
  color: #d7d7ce;
  font-size: 14.5px;
}
.case-body li:before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 8px;
}
.case-link {
  display: inline-flex;
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid rgba(214, 255, 58, 0.35);
  padding-bottom: 2px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
}
.work {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 280px;
  isolation: isolate;
  border: 1px solid var(--line);
}
.work:nth-child(1),
.work:nth-child(2) { min-height: 520px; }
.work img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.work:hover img { transform: scale(1.06); }
.work-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
}
.work-info small {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}
.work-info h3 {
  font-family: var(--font-d);
  font-size: 26px;
  margin-top: 6px;
}
.work-info p { color: #d7d7ce; font-size: 14px; margin-top: 6px; }

.paper {
  background: var(--paper);
  color: var(--ink);
  border-radius: 36px;
  padding: 56px 0;
}
.paper .section-h p { color: #5d5d56; }
.plans {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 12px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.plan {
  background: #fff;
  border-radius: 24px;
  padding: 26px 22px 22px;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.plan.hit {
  background: #111;
  color: #fff;
  border: 1px solid #111;
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.plan h3 {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: -0.04em;
}
.price {
  font-family: var(--font-d);
  font-size: 46px;
  letter-spacing: -0.06em;
  margin: 8px 0 4px;
}
.price span { font-size: 16px; opacity: .6; }
.plan .when { color: inherit; opacity: .6; font-size: 14px; margin-bottom: 18px; }
.plan ul { display: grid; gap: 10px; margin: 8px 0 22px; flex: 1; }
.plan li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
}
.plan li:before {
  content: "";
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 7px;
}
.plan.hit .btn { width: 100%; background: var(--accent); color: #111; }
.plan:not(.hit) .btn {
  width: 100%;
  background: #111;
  color: #fff;
}

.faq {
  display: grid;
  gap: 8px;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: "+"; color: var(--accent); font-size: 22px; line-height: 1; }
.faq details[open] summary:after { content: "–"; }
.faq p { color: #c2c2b8; margin-top: 10px; max-width: 720px; }

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.contact .hint { color: var(--muted); margin-top: 16px; max-width: 420px; }
.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 12px;
}
.form label { font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.form input, .form select, .form textarea {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
  outline: none;
}
.form textarea { min-height: 110px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .ok {
  display: none;
  background: var(--accent);
  color: #111;
  border-radius: 16px;
  padding: 22px;
  font-weight: 700;
}
.form.sent .fields, .form.sent .btn { display: none; }
.form.sent .ok { display: block; }

.footer {
  padding: 28px 0 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}
.footer .tg {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--accent);
  border: 1px solid rgba(214, 255, 58, 0.35);
  background: rgba(214, 255, 58, 0.08);
  transition: background .2s, transform .2s;
}
.footer .tg:hover {
  background: var(--accent);
  color: #111;
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #090909;
  z-index: 40;
  padding: 110px 28px;
  flex-direction: column;
  gap: 22px;
  font-family: var(--font-d);
  font-size: 32px;
}
.mobile-menu.open { display: flex; }

@media (max-width: 1180px) {
  .plans { grid-template-columns: 1fr 1fr; }
  .plan.hit { transform: none; }
}
@media (max-width: 980px) {
  .hero, .contact, .steps, .plans { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: grid; place-items: center; }
  .case { grid-template-columns: 1fr; gap: 18px; }
  .case:nth-child(even) .case-shot { order: 0; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work:nth-child(1),
  .work:nth-child(2) { min-height: 360px; }
  .plan.hit { transform: none; }
  .hero-visual, .hero-visual img { min-height: 340px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
  .section-h { flex-direction: column; align-items: start; }
  .hero-meta { flex-wrap: wrap; }
  .nav-cta { display: none; }
  .wrap { width: min(var(--max), calc(100vw - 32px)); }
  .hero h1 { font-size: clamp(2.4rem, 13vw, 3.2rem); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .term-log { font-size: 11.5px; }
  .term-title { display: none; }
  .section-h h2 { font-size: clamp(1.85rem, 10vw, 2.4rem); }
}
