/* ---------------------------------------------------------------------------
   Kanon — B2B SaaS site
   Design language inherits from the TUM.ai E-Lab decks (paper + teal + serifs)
   applied to a conventional B2B information architecture.
   --------------------------------------------------------------------------- */

:root {
  /* Paper + ink palette (from decks) */
  --paper:    #f1e7d3;
  --paper-2:  #e8dcc2;
  --paper-3:  #ddd0b3;
  --paper-4:  #cdbf9d;
  --ink:      #1f1812;
  --ink-2:    #2d251c;
  --ink-3:    #4a3f30;
  --mute:     #8a7960;
  --mute-2:   #b09c7f;
  --line:     #c9b896;
  --line-2:   #d8cbab;
  --accent:   #2d5f6e;
  --accent-2: #1e4654;
  --accent-3: #4a8294;
  --frame:    #14110c;

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Fraunces", Georgia, serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;

  /* Layout */
  --maxw:     1200px;
  --pad-x:    clamp(20px, 5vw, 56px);
  --r:        4px;
  --shadow-sm: 0 1px 2px rgba(31, 24, 18, 0.06);
  --shadow:    0 6px 24px rgba(31, 24, 18, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 24, 18, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ===================== Buttons ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.06s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-2); }

.btn-lg { font-size: 15px; padding: 13px 22px; }
.btn-xl { font-size: 16px; padding: 16px 28px; }
.btn-block { display: flex; width: 100%; }

/* ===================== Nav ===================== */

.nav {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(241, 231, 211, 0.92);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { display: flex; align-items: baseline; gap: 8px; }

.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
  transform: translateY(2px);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 24px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-3);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.nav-cta {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ===================== Hero ===================== */

.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 8vw, 110px);
  background:
    radial-gradient(50% 60% at 80% 0%,  rgba(45, 95, 110, 0.05) 0%, transparent 70%),
    radial-gradient(60% 60% at 10% 100%, rgba(120, 95, 60, 0.08) 0%, transparent 70%),
    var(--paper);
  overflow: hidden;
}

.hero::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(45, 95, 110, 0.18);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 22px;
}

.acc-ul {
  background-image: linear-gradient(transparent 68%, rgba(45, 95, 110, 0.22) 68%);
  padding: 0 2px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 52ch;
}

.hero-sub em { color: var(--ink); font-style: italic; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-3);
}
.hero-meta b { color: var(--accent); font-weight: 700; }
.hero-meta .dotsep { color: var(--mute-2); }

/* Hero art — terminal window */

.hero-art { position: relative; }

.window {
  border-radius: 8px;
  background: var(--frame);
  box-shadow: var(--shadow-lg);
  border: 1px solid #2a2218;
  overflow: hidden;
  transform: rotate(-0.6deg);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #1a1610;
  border-bottom: 1px solid #2a2218;
}

.dotbtn {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dotbtn.r { background: #e26a5a; }
.dotbtn.y { background: #e3b96b; }
.dotbtn.g { background: #6ec07a; }

.window-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #8a7d68;
  letter-spacing: 0.04em;
}

.tree {
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: #d6c8a8;
  padding: 22px 24px 26px;
  margin: 0;
  background: transparent;
  white-space: pre;
  overflow-x: auto;
}

.tree .cmt    { color: #8a7d68; }
.tree .dir    { color: #e3b96b; font-weight: 500; }
.tree .file   { color: #f1e7d3; }
.tree .prompt { color: var(--accent-3); }
.tree .str    { color: #e0a097; }
.tree .ok     { color: #97c89f; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .window { transform: none; }
}

/* ===================== Logos / trusted-by ===================== */

.logos {
  padding: 34px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logos-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: center;
  margin: 0 0 18px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.logo-chip {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ===================== Sections ===================== */

.section {
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
}

.section:nth-of-type(even) { background: var(--paper-2); }

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.kicker b { color: var(--ink); }

.section-head h2,
.section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 22px;
}

.section h2 .acc { color: var(--accent); font-style: italic; font-weight: 500; }

.section .lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}

.section-head.center .lede { margin: 0 auto; }

/* ===================== Problem grid ===================== */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--mute-2);
  box-shadow: var(--shadow);
}

.card-icn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--accent);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 18px;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

@media (max-width: 800px) { .problem-grid { grid-template-columns: 1fr; } }

/* ===================== Product / Features ===================== */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 56px;
}

.feature {
  background: var(--paper);
  padding: 32px 28px 30px;
}

.feature-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.feature h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
}

.feature p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.feature code,
.section code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  background: var(--paper-3);
  padding: 1px 6px;
  border-radius: 2px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

/* ===================== How / Steps ===================== */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--accent);
}

.steps li::before {
  content: "";
  position: absolute;
  top: -7px; left: 0;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.steps .step-n {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.steps h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.1;
}

.steps p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ===================== Pricing ===================== */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
  align-items: stretch;
}

.tier {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.tier.featured {
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.ribbon {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.tier > header { margin-bottom: 22px; }

.tier h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 6px;
}

.tier-tag {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.tier-price .price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--ink);
  line-height: 1;
}

.tier-price .unit {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-3);
}

.tier-price.small .price { font-size: 22px; color: var(--accent); }
.tier-price.small .unit  { font-size: 12.5px; color: var(--ink-3); }

.tier-list {
  list-style: none;
  padding: 18px 0 24px;
  margin: 12px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex: 1;
}

.tier-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14.5px;
  color: var(--ink-2);
}

.tier-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-foot {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
  margin: 28px 0 0;
}

.pricing-foot a { color: var(--accent); border-bottom: 1px solid var(--line); }
.pricing-foot a:hover { border-color: var(--accent); }

@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; }
  .tier.featured { transform: none; }
}

/* ===================== About / Vision ===================== */

.forces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}

.forces article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
}

.force-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.force-n {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
}

.force-when {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--mute);
}

.forces h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--ink);
}

.forces p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.bigquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 28px;
  margin: 0;
  max-width: 60ch;
}

.bigquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
}

.bigquote .ql, .bigquote .qr { color: var(--mute-2); }

.bigquote footer {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

@media (max-width: 800px) { .forces { grid-template-columns: 1fr; } }

/* ===================== FAQ ===================== */

.faq-list {
  max-width: 820px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  margin: 14px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 70ch;
}

/* ===================== CTA ===================== */

.cta {
  background: var(--frame);
  color: var(--paper);
  text-align: center;
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid var(--frame);
  border-bottom: 1px solid var(--frame);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 50% 0%, rgba(241, 231, 211, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--paper-3);
  margin: 0 0 22px;
  letter-spacing: 0.02em;
}

.cta-motto .greek { color: var(--paper); font-style: italic; }
.cta-motto .sep   { color: var(--mute); margin: 0 14px; font-style: normal; }
.cta-motto .latin { color: var(--paper-3); }

.cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 auto 22px;
  max-width: 20ch;
}

.cta-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--paper-3);
  margin: 0 auto 36px;
  max-width: 52ch;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cta .btn-primary {
  background: var(--paper);
  color: var(--frame);
  border-color: var(--paper);
}
.cta .btn-primary:hover { background: #ffe9c9; border-color: #ffe9c9; }

.cta .btn-ghost {
  color: var(--paper);
  border-color: rgba(241, 231, 211, 0.32);
  background: transparent;
}
.cta .btn-ghost:hover { border-color: var(--paper); background: rgba(241, 231, 211, 0.06); }

.cta-meta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--mute-2);
  margin: 0;
}

/* ===================== Footer ===================== */

.foot {
  background: #0d0a07;
  color: var(--paper-3);
  padding: 64px 0 0;
}

.foot-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2218;
}

.foot-mark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.foot-mark .brand-mark { color: var(--accent-3); }
.foot-mark .brand-name { color: var(--paper); }

.foot-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--paper-3);
  margin: 0 0 10px;
}
.foot-motto .greek { color: var(--paper); }

.foot-line {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--mute-2);
  margin: 0;
  max-width: 36ch;
  line-height: 1.55;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.foot-col .foot-h {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 14px;
}

.foot-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--paper-3);
  padding: 4px 0;
  transition: color 0.18s ease;
}
.foot-col a:hover { color: var(--paper); }

.foot-bar {
  background: #0a0805;
}

.foot-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px var(--pad-x);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--mute);
}

.foot-bar-inner .grow { flex: 1; }
.foot-bar-inner .sep  { color: #3a2f1f; }
.foot-bar-inner a {
  color: var(--paper-3);
  border-bottom: 1px solid rgba(241, 231, 211, 0.18);
  padding-bottom: 1px;
}
.foot-bar-inner a:hover { border-color: var(--paper); color: var(--paper); }

@media (max-width: 800px) {
  .foot-inner { grid-template-columns: 1fr; gap: 32px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-bar-inner { flex-wrap: wrap; }
  .foot-bar-inner .grow { display: none; }
}
