/**
 * Shared layout + theming for comparison chart / feature rows
 * Dark defaults (:root); wrap light sections in .theme-light
 */

:root {
  --fl-border: rgba(255, 255, 255, 0.05);
  --fl-border-strong: rgba(255, 255, 255, 0.08);
  --fl-bg: transparent;
  --fl-text: inherit;
  --fl-text-muted: rgba(255, 255, 255, 0.55);
  --fl-heading: inherit;
  --fl-mock-bg: #1a1a1a;
  --fl-mock-border: rgba(255, 255, 255, 0.05);
  --fl-mock-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  --fl-screen-bar-bg: #0e0e0e;
  --fl-screen-bar-border: rgba(255, 255, 255, 0.05);
  --fl-screen-url-bg: #1c1c1c;
  --fl-screen-url-text: rgba(255, 255, 255, 0.3);
  --fl-hero-float-bg: rgba(98, 98, 98, 0.04);
  --fl-hero-float-border: rgba(255, 255, 255, 0.08);
  --fl-pill-bg: #000;
  --fl-pill-border: rgba(255, 255, 255, 0.05);
  --fl-pill-text: rgba(255, 255, 255, 0.55);
  --fl-pill-hot-bg: rgba(212, 107, 202, 0.05);
  --fl-pill-hot-border: rgba(255, 60, 142, 0.3);
  --fl-pill-hot-text: #ff3c8e;
  --fl-stat-num: var(--white, #fff);
  --fl-stat-label: var(--muted, #999);
  --fl-tag-strip-bg: #111111;
  --fl-tag-strip-text: rgba(255, 255, 255, 0.2);
  --fl-tag-strip-border: rgba(255, 255, 255, 0.08);
  --fl-screen-body-bg: #111;
  --fl-row-shaded: rgba(255, 255, 255, 0.05);
  --fl-row-line-border-bottom: none;
  --fl-marquee-fade: #151719;
  --fl-ready-heading: inherit;
  --fl-ready-text: inherit;
  --fl-feature-intro-flex: 1;
  --fl-eyebrow-bg-size: 150% 100%;
}

/**
 * Dark full-page shell for usecase landings that do not use `.dark-mode`
 * (shared `--fl-*` tokens read as dark-on-dark; without a painted shell, body stays light).
 */
.usecase-landing-dark {
  min-height: 100vh;
  background-color: #151719;
  color: hsla(0, 0%, 100%, 0.9);
}

.usecase-landing-dark h1,
.usecase-landing-dark h2,
.usecase-landing-dark h3,
.usecase-landing-dark h4,
.usecase-landing-dark h5,
.usecase-landing-dark h6 {
  color: hsla(0, 0%, 100%, 0.9);
}

.usecase-landing-dark .h2-style {
  color: hsla(0, 0%, 100%, 0.9);
}

/**
 * Full-page dark shell when a template wraps content in `.dark-mode`
 * (matches header partial). Safe site-wide: inert unless `.dark-mode` exists.
 * Do not use unconditional `body { … }` here — default.hbs loads this file globally.
 */
.dark-mode {
  min-height: 100vh;
  background-color: #151719;
  color: hsla(0, 0%, 100%, 0.9);
  position: relative;
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4 {
  color: hsla(0, 0%, 100%, 0.9);
}

.dark-mode p {
  color: rgb(151, 151, 151);
}

.dark-mode h5 {
  color: #fff;
}

.dark-mode .secondary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(151, 151, 151);
  padding-bottom: 20px;
}

.dark-mode .hero-container {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dark-mode h1.homepage {
  font-weight: bold;
  padding: 80px 0 0;
}

.dark-mode .button-border-light {
  background: hsla(0, 0%, 100%, 0.1);
  border: 0.5px solid rgb(60, 63, 68);
  color: hsla(0, 0%, 100%, 0.9);
}

.dark-mode .button-border-light:hover {
  background: hsla(0, 0%, 100%, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.dark-mode .site-footer {
  background-color: #23242a;
}

.dark-mode a.footer-menu-item-link {
  color: hsla(0, 0%, 100%, 0.5);
}

.dark-mode .footer-links {
  color: hsla(0, 0%, 100%, 0.5);
}

.dark-mode .privacy a,
.dark-mode .terms a,
.dark-mode .discord a {
  color: hsla(0, 0%, 100%, 0.5);
}

.dark-mode .discord a:hover {
  color: #ff2753;
}

/* Avoid light overscroll stripes when the page uses a dark shell */
html:has(.usecase-landing-dark),
html:has(.dark-mode) {
  background-color: #151719;
}

.theme-light {
  --fl-border: rgba(0, 0, 0, 0.06);
  --fl-border-strong: rgba(0, 0, 0, 0.06);
  --fl-bg: #fff;
  --fl-text: #222;
  --fl-text-muted: #666;
  --fl-heading: #222;
  --fl-mock-bg: transparent;
  --fl-mock-border: none;
  --fl-mock-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  --fl-screen-bar-bg: #f0f0f0;
  --fl-screen-bar-border: rgba(0, 0, 0, 0.06);
  --fl-screen-url-bg: #e8e8e8;
  --fl-screen-url-text: rgba(0, 0, 0, 0.35);
  --fl-hero-float-bg: rgba(240, 240, 240, 0.7);
  --fl-hero-float-border: rgba(0, 0, 0, 0.06);
  --fl-pill-bg: #f5f5f5;
  --fl-pill-border: rgba(0, 0, 0, 0.06);
  --fl-pill-text: rgba(0, 0, 0, 0.5);
  --fl-pill-hot-bg: rgba(191, 149, 247, 0.08);
  --fl-pill-hot-border: rgba(165, 106, 204, 0.25);
  --fl-pill-hot-text: #8061bd;
  --fl-stat-num: #999;
  --fl-stat-label: #1a1a1a;
  --fl-tag-strip-bg: #fafafa;
  --fl-tag-strip-text: rgba(0, 0, 0, 0.2);
  --fl-tag-strip-border: rgba(0, 0, 0, 0.06);
  --fl-screen-body-bg: #fafafa;
  --fl-row-shaded: rgba(0, 0, 0, 0.04);
  --fl-marquee-fade: #ffffff;
  --fl-ready-heading: #222;
  --fl-ready-text: #666;
  --fl-feature-intro-flex: 1.5;
  --fl-eyebrow-bg-size: 100% 100%;
  background: var(--fl-bg);
  color: var(--fl-text);
}

/* ── Core layout ── */

/**
 * Divider tiers — each block owns a single top border.
 * - `.inner-toplines` / `.fl-contained`: line respects the block's own max-width (usually 1200px).
 * - `.fl-edge`: full-viewport line (use on blocks without a max-width, e.g. edge-to-edge banners).
 * Stacked same-width blocks naturally produce one line per seam (no duplication).
 */
.inner-toplines,
.fl-contained,
.fl-edge {
  border-top: 1px solid var(--fl-border);
}

.inner-toplines.single {
  border-bottom: none;
}

/**
 * Cross-block collapse: `.stats-band` / `.tag-strip` keep their own framed look (top+bottom).
 * When they precede a top-bordered tier block, drop the follower's top so the framed block's
 * bottom is the only seam line. Handles both sibling patterns:
 *   [stats/tag] + <section class="... inner-toplines">
 *   [stats/tag] + <section> with .inner-toplines on an inner .container
 */
 :is(.stats-band, .tag-strip, .inner-bottomlines)
 + :is(.inner-toplines, .fl-contained),
:is(.stats-band, .tag-strip, .inner-bottomlines)
 + :is(section, div) > :is(.inner-toplines, .fl-contained):first-child {
 border-top: none;
}

.inner-sidelines {
  border-left: 1px solid var(--fl-border);
  border-right: 1px solid var(--fl-border);
}
.inner-bottomlines {
  border-bottom: 1px solid var(--fl-border);
}

section.secondaryHero {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  align-items: center;
  box-sizing: border-box;
}

section.comparisonChart {
  font-size: 16px;
  line-height: 1.4em;
}

section.secondaryHero .row {
  align-items: flex-start;
}

section.secondaryHero .row.vertifcal-align {
  align-items: flex-start;
}

section.comparisonChart .row {
  display: flex;
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
}

section.comparisonChart .row > div {
  width: 30%;
  padding: 0 20px;
}

.row-line {
  padding: 30px 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  overflow: hidden;
  border-bottom: var(--fl-row-line-border-bottom);
}

.row-line.shaded {
  background-color: var(--fl-row-shaded);
}

.row-line-divider {
  border-top: 1px solid var(--fl-border);
}

.feature-intro {
  flex: var(--fl-feature-intro-flex);
}

.theme-light .feature-intro {
  width: auto !important;
}

.feature-intro p {
  font-size: 18px;
  color: var(--fl-text-muted);
}

/* Beat page-level `.dark-mode p` when feature copy lives inside `.dark-mode` */
.dark-mode .feature-intro p,
.dark-mode .feature-text p {
  color: var(--fl-text-muted);
}

.feature-text {
  flex: 2;
  align-self: flex-start;
}

.feature-text p {
  color: var(--fl-text-muted);
}

.feature-media {
  flex: 3;
  position: relative;
}

.row-line > .feature-media:only-child {
  width: 100%;
  flex: none;
  padding: 0;
}

.theme-light h2.h2-style,
.theme-light h4 {
  color: var(--fl-heading);
}

.em-headline {
  font-family: "Kaisei Decol", serif;
  font-style: italic;
  font-weight: bold;
}

.hero_headline_eyebrow {
  background: linear-gradient(90deg, #6cb4ee, #d46bca, #ff3c8e, #ff6b35);
  background-size: var(--fl-eyebrow-bg-size);
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: stabil_grotesk, sans-serif;
  margin: 15px 0;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.theme-light .hero_headline_eyebrow {
  margin: 15px auto;
}

/* ── Mock screen ── */
.mock-screen {
  background: var(--fl-mock-bg);
  border: var(--fl-mock-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--fl-mock-shadow);
}

.mock-screen .screen-bar {
  background: var(--fl-screen-bar-bg);
}

.mock-screen video {
  clip-path: none;
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  background: var(--fl-screen-bar-bg);
  border-bottom: 1px solid var(--fl-screen-bar-border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-r {
  background: #e8352a;
}

.theme-light .dot-r {
  background: #ef0000;
}

.dot-y {
  background: #f5a623;
}

.dot-g {
  background: #27c96e;
}

.screen-url {
  flex: 1;
  background: var(--fl-screen-url-bg);
  border-radius: 4px;
  height: 20px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 10px;
  color: var(--fl-screen-url-text);
  letter-spacing: 0.03em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.screen-body {
  padding: 0;
  background: var(--fl-screen-body-bg, #111);
}

/* ── Hero float ── */
.hero-visual {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 20px auto 20px;
}

.hero-float {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 100%;
  max-width: 30%;
  z-index: 2;
  pointer-events: none;
  animation: hero-bob 6s ease-in-out infinite;
  background: var(--fl-hero-float-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--fl-hero-float-border);
  border-radius: 16px;
  padding: 10px;
}

.hero-float img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@keyframes hero-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ── Feature pills ── */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.featurePill {
  background: var(--fl-pill-bg);
  border: 1px solid var(--fl-pill-border);
  border-radius: 20px;
  padding: 3px 14px 5px;
  font-size: 12px;
  font-weight: 400;
  color: var(--fl-pill-text);
  letter-spacing: 0.02em;
}

.featurePill.hot {
  background: var(--fl-pill-hot-bg);
  border: 1px solid var(--fl-pill-hot-border);
  color: var(--fl-pill-hot-text);
}

.featurePill:hover {
  background-color: transparent;
}

.feature-divider {
  max-width: 1200px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--fl-border);
}

/* ── Tag strip ── */
.tag-strip {
  border-top: 1px solid var(--fl-tag-strip-border);
  border-bottom: 1px solid var(--fl-tag-strip-border);
  padding: 16px 0;
  overflow: hidden;
  background: var(--fl-tag-strip-bg);
  color: var(--fl-tag-strip-text);
}

.tag-strip-inner {
  display: flex;
  gap: 40px;
  animation: fl-tag-strip-scroll 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.strip-tag::after {
  content: "\2726";
  color: var(--red, #9e88d1);
  font-size: 8px;
}

.strip-tag {
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fl-tag-strip-text);
  display: flex;
  align-items: center;
  gap: 40px;
}

@keyframes fl-tag-strip-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Stats band ── */
.stats-band {
  border-top: 1px solid var(--fl-border);
  border-bottom: 1px solid var(--fl-border);
  padding: 48px 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 48px;
  line-height: 1;
  color: var(--fl-stat-label);
  letter-spacing: -0.03em;
}

.stat-num span {
  color: var(--fl-stat-label);
}

.stat-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--fl-stat-label);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ── In-action / process steps ── */
.in-action {
  margin: 0 auto;
  text-align: center;
  /* Step card radii: inner corners stay small, outer corners of the group are more rounded. */
  --step-radius: 6px;
  --step-radius-outer: 14px;
}

/* Neutralize Bootstrap-ish `.row` negative gutters inside .in-action */
.in-action .row {
  margin-left: 0;
  margin-right: 0;
}

.in-action .steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin: 48px 20px 20px 20px;
}

.in-action .step {
  background: var(--fl-row-shaded);
  padding: 28px 24px 32px;
  text-align: left;
  transition: background 0.25s ease;
  border-radius: var(--step-radius);
}

/* 4-col desktop: first gets left outer corners, last gets right outer corners */
.in-action .step:first-child {
  border-top-left-radius: var(--step-radius-outer);
  border-bottom-left-radius: var(--step-radius-outer);
}

.in-action .step:last-child {
  border-top-right-radius: var(--step-radius-outer);
  border-bottom-right-radius: var(--step-radius-outer);
}

.in-action .step:hover {
  background: var(--fl-border-strong);
}

.in-action .step-num {
  font-size: 40px;
  color: var(--fl-stat-num);
  line-height: 1;
  margin-bottom: 20px;
}

.in-action .step h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--fl-heading);
}

.in-action .step p {
  font-size: 15px;
  color: var(--fl-text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .in-action .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
  }

  /* 2x2 grid: outer corners of the group */
  .in-action .step:first-child,
  .in-action .step:nth-child(2),
  .in-action .step:nth-child(3),
  .in-action .step:last-child {
    border-radius: var(--step-radius);
  }
  .in-action .step:first-child { border-top-left-radius: var(--step-radius-outer); }
  .in-action .step:nth-child(2) { border-top-right-radius: var(--step-radius-outer); }
  .in-action .step:nth-child(3) { border-bottom-left-radius: var(--step-radius-outer); }
  .in-action .step:last-child { border-bottom-right-radius: var(--step-radius-outer); }
}

@media (max-width: 520px) {
  .in-action .steps {
    grid-template-columns: 1fr;
  }

  /* 1-col stack: first rounds the top, last rounds the bottom */
  .in-action .step:first-child,
  .in-action .step:nth-child(2),
  .in-action .step:nth-child(3),
  .in-action .step:last-child {
    border-radius: var(--step-radius);
  }
  .in-action .step:first-child {
    border-top-left-radius: var(--step-radius-outer);
    border-top-right-radius: var(--step-radius-outer);
  }
  .in-action .step:last-child {
    border-bottom-left-radius: var(--step-radius-outer);
    border-bottom-right-radius: var(--step-radius-outer);
  }
}

/* ── Ready section (launch) ── */
.ready-wrapper {
  border-top: 1px solid var(--fl-border);
  margin-top: -1px;
}

.ready-section {
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 700px;
  margin: 0 auto;
}

.ready-section h3 {
  color: var(--fl-ready-heading);
  margin-bottom: 16px;
}

.ready-section p {
  color: var(--fl-ready-text);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

.ready-section .hero-cta-buttons {
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 120px;
}

/* ── Playbook Intelligence marquee ── */
.pi-marquee-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  border-top: 1px solid var(--fl-border);
}

.pi-marquee-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(224, 210, 255, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(255, 218, 241, 0.25) 0%, transparent 45%);
  pointer-events: none;
}

.pi-marquee-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.pi-marquee-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 16px;
  padding: 0 8px;
}

.pi-marquee-row {
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.pi-marquee-row::before,
.pi-marquee-row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.pi-marquee-row::before {
  left: 0;
  background: linear-gradient(to right, var(--fl-marquee-fade) 0%, transparent 100%);
}

.pi-marquee-row::after {
  right: 0;
  background: linear-gradient(to left, var(--fl-marquee-fade) 0%, transparent 100%);
}

.pi-marquee-row .pi-marquee-track {
  animation: piMarqueeScroll 45s linear infinite;
}

.pi-marquee-row.reverse .pi-marquee-track {
  animation: piMarqueeScrollReverse 50s linear infinite;
}

.pi-marquee-row:nth-child(3) .pi-marquee-track {
  animation-duration: 55s;
}

#example-prompts {
  scroll-margin-top: 100px;
}

@keyframes piMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes piMarqueeScrollReverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.pi-prompt-card {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--fl-border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #666;
  width: 400px;
  height: 120px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  text-decoration: none;
  text-align: left;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.pi-prompt-card.copied {
  border-color: rgba(155, 125, 232, 0.5);
}

.pi-prompt-card.copied::after {
  content: "Copied to clipboard!";
  font-weight: 600;
  opacity: 1;
  color: #9b7de8;
}

.pi-prompt-card:hover {
  border-color: rgba(155, 125, 232, 0.5);
  color: #333;
}

.pi-prompt-card::after {
  content: "Copy prompt";
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #bbb;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pi-prompt-card:hover::after {
  opacity: 1;
  color: #9b7de8;
}

.pi-prompt-card strong {
  display: inline;
}

/* ── Responsive ── */
@media (max-width: 1260px) {
  section.secondaryHero {
    padding: 0 30px;
    box-sizing: border-box;
  }

  .row-line {
    gap: 20px;
  }

  .stats-band {
    padding: 48px 40px;
  }
}

@media (max-width: 960px) {
  .row-line:has(.feature-text) {
    flex-direction: column !important;
    gap: 20px;
  }

  .row-line {
    padding: 30px 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .feature-text,
  .feature-media {
    flex: none;
    width: 100%;
  }

  section.comparisonChart .row > div {
    width: auto;
    padding: 0;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 30px;
  }
}

@media (max-width: 768px) {
  .pi-marquee-section {
    padding: 60px 0 40px;
  }

  .pi-prompt-card {
    font-size: 14px;
    padding: 16px 20px;
    width: 300px;
  }

  .pi-marquee-row::before,
  .pi-marquee-row::after {
    width: 60px;
  }
}

@media (max-width: 767px) {
  .stat-num {
    font-size: 40px;
  }
  h2.h2-style {
    font-size: 36px;
  }

  .hero_headline_eyebrow {
    background-size: 100% 100%;
  }

  .row-line {
    flex-direction: column !important;
    gap: 20px;
    padding: 20px 16px;
    margin-left: 0;
    margin-right: 0;
  }

  section.comparisonChart {
    width: 100% !important;
    box-sizing: border-box;
  }

  section.comparisonChart .container {
    width: 100%;
    box-sizing: border-box;
  }

  section.comparisonChart .row {
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
    gap: 20px;
  }

  section.comparisonChart .row > div {
    padding: 0;
    width: 100%;
  }

  section.secondaryHero {
    width: auto;
    align-items: center;
    padding: 0 20px;
  }

  .hero-float {
    position: static;
    width: 80%;
    margin: 20px auto 0;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 20px;
  }

  .secondary-header {
    padding: 0;
    padding-bottom: 30px;
    font-size: 20px !important;
  }

  .dark-mode h1.homepage {
    padding-top: 0;
  }

  .dark-mode .hero-container {
    width: auto;
    max-width: 100%;
    padding: 0;
    position: relative;
    overflow: visible;
  }
}
