:root {
  --bg: #080809;
  --bg-deep: #050506;
  --surface: #121315;
  --surface-soft: #18191c;
  --surface-raised: #1f2024;
  --ink: #fbf7f2;
  --text: #efe7dd;
  --muted: #b9afa4;
  --muted-strong: #d6cec4;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --brand: rgb(186, 13, 13);
  --brand-dark: #8f0808;
  --brand-soft: rgba(186, 13, 13, 0.16);
  --green: #5ac994;
  --amber: #e2b24c;
  --cyan: #83c7d8;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Century Gothic", "Avenir Next", Avenir, Montserrat, "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 40px 40px;
  font-family: var(--font-body);
  line-height: 1.5;
}

body::selection {
  color: #fff;
  background: var(--brand);
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

p {
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

ul,
ol {
  margin: 0;
}

li,
strong,
span,
summary,
button {
  overflow-wrap: break-word;
  hyphens: auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 0 40px;
  background: rgba(8, 8, 9, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: 194px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 8px;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-action {
  margin-left: 6px;
  color: #fff;
  background: var(--brand);
}

.site-nav .nav-action:hover {
  color: #fff;
  background: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 148px 40px 84px;
  background:
    linear-gradient(115deg, rgba(186, 13, 13, 0.24) 0%, rgba(186, 13, 13, 0.08) 28%, transparent 54%),
    linear-gradient(180deg, #09090a 0%, #101113 54%, #080809 100%);
}

.brand-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.brand-pattern::before {
  content: "";
  position: absolute;
  inset: -18%;
  background-image: url("./assets/brand/klubfuchs_mark_square_white.svg");
  background-size: 124px 124px;
  background-repeat: repeat;
  opacity: 0.026;
  transform: rotate(-10deg);
  transform-origin: center;
}

.brand-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 9, 0.2), transparent 28%, transparent 72%, rgba(8, 8, 9, 0.55)),
    linear-gradient(180deg, transparent 0%, rgba(8, 8, 9, 0.92) 100%);
}

.hero-inner,
.section-inner,
.demo-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 540px);
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 15px;
  color: #ffd9d6;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.85rem, 3.75vw, 3.75rem);
  line-height: 0.98;
  hyphens: manual;
}

.hero-copy {
  max-width: 710px;
  margin-top: 28px;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--brand);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.dashboard-visual {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(18, 19, 21, 0.92);
  box-shadow: var(--shadow);
}

.dashboard-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(186, 13, 13, 0.72), transparent 34%, rgba(255, 255, 255, 0.18));
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.dashboard-top strong {
  margin-left: auto;
  color: var(--ink);
}

.window-dot {
  position: relative;
  flex: 0 0 47px;
  width: 47px;
  height: 11px;
}

.window-dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 18px 0 0 var(--amber), 36px 0 0 var(--green);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric-card {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.metric-card small {
  margin-top: 12px;
  font-size: 0.85rem;
}

.metric-card.highlight {
  background: rgba(186, 13, 13, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
}

.metric-card.danger strong {
  color: #ffbeb9;
}

.metric-card.warning strong {
  color: #ffe0a1;
}

.dashboard-flow {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.dashboard-flow div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.dashboard-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.section {
  padding: 104px 40px;
  border-top: 1px solid var(--line);
}

.section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.018);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading h2,
.demo-copy h2 {
  font-size: clamp(2.05rem, 3.35vw, 3.35rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.demo-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-grid,
.feature-grid,
.audience-grid,
.control-grid,
.difference-grid {
  display: grid;
  gap: 14px;
}

.problem-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.problem-grid article,
.feature-card,
.audience-grid article,
.control-grid article,
.difference-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 19, 21, 0.86);
}

.problem-grid article {
  min-height: 250px;
  padding: 20px;
}

.problem-grid span,
.feature-index,
.difference-grid span,
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-grid h3,
.feature-card h3,
.audience-grid h3,
.control-grid h3,
.difference-grid h3,
.timeline h3 {
  font-size: 1.24rem;
  line-height: 1.15;
}

.problem-grid p,
.feature-card p,
.audience-grid p,
.control-grid p,
.difference-grid p,
.timeline p,
.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.section-statement {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.08;
}

.solution-layout,
.difference-layout,
.branding-layout,
.demo-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 116px;
}

.promise {
  display: block;
  margin-top: 26px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.15;
}

.connection-map {
  display: grid;
  gap: 14px;
}

.connection-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(186, 13, 13, 0.16), transparent),
    rgba(18, 19, 21, 0.9);
}

.connection-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--ink);
  font-weight: 850;
}

.connection-row span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 10px;
  height: 1px;
  background: var(--brand);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 510px;
  padding: 22px;
}

.feature-card p {
  min-height: 132px;
}

.feature-card ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.feature-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-grid article {
  min-height: 330px;
  padding: 22px;
}

.audience-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  line-height: 1.25;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(186, 13, 13, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.018);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 19, 21, 0.9);
}

.timeline li::after {
  display: none;
}

.difference-grid {
  grid-template-columns: 1fr;
}

.difference-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 120px;
  padding: 22px;
}

.difference-grid span {
  margin-bottom: 0;
}

.difference-grid p {
  margin-top: 0;
}

.control-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.control-grid article {
  min-height: 220px;
  padding: 22px;
}

.control-grid article::before {
  content: "";
  display: block;
  width: 38px;
  height: 6px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--brand);
}

.branding-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(186, 13, 13, 0.18), transparent 56%),
    #0a0a0b;
}

.branding-panel {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(18, 19, 21, 0.95);
}

.branding-panel img {
  display: block;
  width: 230px;
  height: auto;
}

.branding-panel ul {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.branding-panel li {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted-strong);
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%),
    var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 19, 21, 0.92);
}

.pricing-card.featured {
  border-color: rgba(186, 13, 13, 0.72);
  background:
    linear-gradient(180deg, rgba(186, 13, 13, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(18, 19, 21, 0.96);
  box-shadow: 0 24px 70px rgba(186, 13, 13, 0.18);
}

.pricing-card span {
  display: block;
  color: var(--muted-strong);
  font-weight: 900;
}

.pricing-card strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  line-height: 0.95;
}

.pricing-card p {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 750;
}

.demo-section {
  position: relative;
  overflow: hidden;
  padding: 110px 40px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(186, 13, 13, 0.38), rgba(8, 8, 9, 0.1) 44%),
    var(--bg-deep);
}

.demo-copy {
  max-width: 560px;
}

.demo-copy .button {
  margin-top: 28px;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(18, 19, 21, 0.92);
  box-shadow: var(--shadow);
}

.demo-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.demo-form .website-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.demo-form label.wide,
.demo-form p,
.demo-form button {
  grid-column: 1 / -1;
}

.demo-form span {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 850;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.demo-form textarea {
  resize: vertical;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: 2px solid rgba(186, 13, 13, 0.75);
  outline-offset: 2px;
}

.demo-form p {
  color: var(--muted);
  font-size: 0.94rem;
}

.demo-form .form-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--muted-strong);
  font-weight: 750;
}

.demo-form .form-status.success {
  color: #a9e8bd;
}

.demo-form .form-status.error {
  color: #ffb4b4;
}

.demo-form button {
  width: fit-content;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 64px;
  padding: 20px 22px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.legal-page-main {
  min-height: calc(100vh - 120px);
  padding-top: 78px;
}

.legal-page-section {
  border-top: 0;
  padding-top: 72px;
}

.legal-page-section .section-heading h1 {
  font-size: clamp(2.05rem, 3.35vw, 3.35rem);
  line-height: 1;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 19, 21, 0.86);
}

.legal-grid h2,
.legal-grid h3 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.legal-grid p {
  color: var(--muted);
}

.legal-grid a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(186, 13, 13, .7);
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 40px;
  border-top: 1px solid var(--line);
  background: #060607;
  color: var(--muted);
}

.site-footer img {
  display: block;
  width: 176px;
  height: auto;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 24px;
  }

  .hero,
  .section,
  .demo-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-inner,
  .solution-layout,
  .difference-layout,
  .branding-layout,
  .demo-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .dashboard-visual {
    max-width: 760px;
  }

  .sticky-copy {
    position: static;
  }

  .problem-grid,
  .audience-grid,
  .control-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline li {
    min-height: 0;
  }

  .timeline li::after {
    top: auto;
    right: auto;
    bottom: -13px;
    left: 36px;
    width: 2px;
    height: 13px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 164px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 24px 22px;
    background: rgba(8, 8, 9, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    min-height: 48px;
  }

  .site-nav .nav-action {
    margin-left: 0;
  }

  .hero {
    padding-top: 116px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 112px;
  }

  .difference-grid article {
    grid-template-columns: 44px 1fr;
  }

  .difference-grid article p {
    grid-column: 1 / -1;
  }

  .demo-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero,
  .section,
  .demo-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-bottom: 62px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.1rem);
    line-height: 1.05;
  }

  .hero-bullets li {
    padding-left: 24px;
  }

  .hero-actions,
  .site-footer,
  .site-footer div {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .demo-form button {
    width: 100%;
  }

  .problem-grid,
  .feature-grid,
  .audience-grid,
  .control-grid,
  .legal-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .audience-grid article,
  .problem-grid article,
  .control-grid article,
  .pricing-card {
    min-height: 0;
  }

  .feature-card p {
    min-height: 0;
  }

  .connection-row {
    display: grid;
  }

  .connection-row span + span::before {
    display: none;
  }

  .dashboard-visual,
  .demo-form,
  .branding-panel {
    padding: 16px;
  }

  .site-footer {
    padding: 30px 18px;
  }
}
