/* ==========================================================================
   Stacklet landing page — base, navbar, buttons, footer, layout utilities
   Navbar/footer/buttons mirror stacklet.ai's theme CSS.
   ========================================================================== */

@import url("tokens.css");

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

html {
  margin: 0; padding: 0;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}
html.menu-locked, html.menu-locked body { overflow: hidden; }

body {
  margin: 0 auto; padding: 0; position: relative;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: var(--lh-heading);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  padding: 0;
  text-wrap: balance;
}
h1, .h1 { font-size: var(--fs-h1); }
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); line-height: 1.16; }
h4, .h4 { font-size: var(--fs-h4); line-height: 1.2; }
.h1-display { font-size: var(--fs-display); line-height: var(--lh-tight); letter-spacing: -0.02em; margin-bottom: 30px; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lead { font-size: var(--fs-lead); line-height: 1.45; color: var(--text-body); }
.muted { color: var(--text-muted); }
.small { font-size: var(--fs-small); }
.mono { font-family: var(--font-mono); font-size: 0.875em; letter-spacing: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent); transform: rotate(45deg);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 2px solid rgba(228,75,51,.7); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.content-container {
  margin: 0 auto;
  max-width: var(--container);
  width: var(--container-w);
}
.content-container::after { clear: both; content: ""; display: block; }

.row { display: flex; }
.row.no-collapse { flex-wrap: nowrap; }
.align-center { align-items: center; }
.justify-spaced { justify-content: space-between; }

.section { display: flex; justify-content: center; position: relative; }
.section > .content-container { position: relative; z-index: 1; }
.page-section { padding-block: var(--section-y); }
.pt-100 { padding-top: 100px; }
.pb-150 { padding-bottom: 150px; }
.section-border { background: var(--border); height: 1px; left: 50%; position: absolute; transform: translateX(-50%); width: 100%; }
.section-border.top { top: 0; }
.section-border.bottom { bottom: 0; }
.section-border.contained { width: min(var(--container), var(--container-w)); }

.bg-black  { background-color: var(--sl-black); }
.bg-tan    { background: var(--sl-grey-700); }
.bg-orange { background-color: var(--accent); }
.bg-contained-black > .content-container { background-color: var(--sl-grey-900); border-radius: var(--radius-lg); color: #fff; }
.bg-contained-tan   > .content-container { background: var(--sl-grey-700); border-radius: var(--radius-lg); }
.bg-contained-orange> .content-container { background: var(--accent); border-radius: var(--radius-lg); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure   { max-width: 62ch; }
.measure-s { max-width: 44ch; }

.grid { display: grid; gap: var(--grid-gap, 24px); }
.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)); }
@media (max-width: 1025.98px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 719.98px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   Buttons  (mirrors .button / .button-white / .text-button)
   -------------------------------------------------------------------------- */
.button, .button-white {
  background: var(--accent);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  box-shadow: var(--btn-shadow);
  color: var(--sl-grey-900);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-right: 30px;
  padding: 16px 24px;
  position: relative;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.button:hover, .button-white:hover {
  background: var(--accent-hover);
  box-shadow: var(--btn-shadow-hover);
  color: var(--sl-grey-900);
}
.button:last-child, .button-white:last-child { margin-right: 0; }
.button-white {
  background: rgba(23,23,23,.3);
  border: 1px solid #606060;
  box-shadow: var(--btn-ghost-shadow);
  color: var(--sl-sand-50);
}
.button-white:hover {
  background: rgba(23,23,23,.3);
  border-color: var(--accent);
  box-shadow: var(--btn-ghost-shadow);
  color: var(--accent);
}
.button.small, .button-white.small { font-size: 16px; line-height: 16px; padding: 12px 18px; }
@media (max-width: 1025.98px) {
  .button, .button-white { margin-bottom: 10px; margin-right: 0; text-align: center; width: 100%; }
}

.text-button, .text-button-white {
  color: var(--accent);
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 20px;
  margin-right: 30px;
  padding-right: 28px;
  position: relative;
  text-decoration: none;
  transition: var(--dur);
}
.text-button::after, .text-button-white::after {
  background-color: var(--accent);
  content: "";
  display: inline-block;
  height: 20px; width: 20px;
  -webkit-mask: url("../assets/img/arrow-right.svg") no-repeat 50% 50%;
          mask: url("../assets/img/arrow-right.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover; mask-size: cover;
  position: absolute; right: 3px; top: calc(50% - 9px);
  transition: var(--dur);
}
.text-button:hover { color: var(--sl-grey-250); }
.text-button:hover::after { background-color: var(--sl-grey-250); right: 0; }
.text-button-white, .text-button-white:hover { color: #fff; }
.text-button-white::after, .text-button-white:hover::after { background-color: #fff; }
.text-button-white:hover::after { right: 0; }

.button-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.button-row .button, .button-row .button-white { margin: 0; }
@media (max-width: 1025.98px) { .button-row { flex-direction: column; align-items: stretch; } }

/* --------------------------------------------------------------------------
   Header / navbar  (mirrors header.header.banner.fixed)
   -------------------------------------------------------------------------- */
header.header { position: relative; z-index: 10; }
header.header.fixed { left: 0; position: fixed; top: 0; width: 100%; }
header.header ul { margin: 0; padding: 0; }
header.header li { list-style: none; margin-bottom: 0; }
header.header a { position: relative; }
header.header a:not(.text-button):not(.button) { font-weight: 400; text-decoration: none; }

header.header .main-banner {
  box-shadow: 0 1px 2px rgba(16,24,40,.05);
  padding: 20px 0;
  position: relative;
  transition: background-color .25s var(--ease), backdrop-filter .25s var(--ease), padding .25s var(--ease);
}
header.header.scrolled .main-banner,
header.header.mega-open .main-banner {
  background: rgba(8,9,10,.82);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
          backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
header.header.scrolled .main-banner { padding: 12px 0; }

header.header .brand {
  display: flex; align-items: center;
  height: 50px; width: 180px;
  margin-right: 20px;
  flex: 0 0 auto;
}
header.header .brand img { width: 173px; height: 48px; }

header.header .nav-wrapper { display: flex; align-items: center; flex: 1 1 auto; justify-content: center; }
header.header .nav-primary { margin-left: 32px; }
header.header .nav-primary ul#menu-primary-navigation { align-items: center; display: flex; flex-wrap: wrap; }
header.header .nav-primary ul#menu-primary-navigation > li { padding: 10px 0; position: relative; }
header.header .nav-primary ul#menu-primary-navigation > li:not(:last-child) { margin-right: 32px; }
header.header .nav-primary a { color: #fff; font-size: 1rem; line-height: 1.5; transition: color var(--dur); }
header.header .nav-primary a:hover { color: var(--accent); }
header.header .nav-primary .current-menu-item a { color: var(--accent); }

header.header a:not(.text-button):not(.button).mega-menu-toggle { margin-right: 22px; }
header.header a:not(.text-button):not(.button).mega-menu-toggle::after {
  background-color: var(--accent);
  content: "";
  display: inline-block;
  height: 10px; width: 10px;
  -webkit-mask: url("../assets/img/plus.svg") no-repeat 50% 50%;
          mask: url("../assets/img/plus.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover; mask-size: cover;
  position: absolute; right: -20px; top: calc(50% - 5px);
  transition: transform var(--dur) var(--ease), background-color var(--dur);
}
header.header a.mega-menu-toggle.mega-menu-active { color: var(--accent); }
header.header a.mega-menu-toggle.mega-menu-active::after { transform: rotate(45deg); }

header.header .nav-button { margin-right: 0; flex: 0 0 auto; }
header.header .nav-button.button { font-size: 20px; padding: 16px 24px; }

/* hamburger */
header.header .menu-toggle {
  align-items: center; cursor: pointer; display: none;
  height: 15px; justify-content: center;
  position: absolute; right: 5%; top: 37px;
  width: 30px; z-index: 10;
}
header.header .menu-toggle span {
  background-color: #fff; height: 2px; left: 0; position: absolute; top: 0;
  transition: .2s; width: 100%;
}
header.header .menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
header.header .menu-toggle span:last-child { bottom: 0; top: auto; }
header.header .menu-toggle.open span:first-child { top: 50%; transform: rotate(-45deg); }
header.header .menu-toggle.open span:nth-child(2) { opacity: 0; }
header.header .menu-toggle.open span:last-child { top: 50%; transform: rotate(45deg); }

@media (max-width: 1025.98px) {
  .desktop-only { display: none !important; }
  header.header .menu-toggle { display: flex; }
  header.header .brand { width: 150px; }
  header.header .brand img { width: 144px; height: 40px; }
}
@media (min-width: 1026px) { .mobile-only { display: none !important; } }

/* --------------------------------------------------------------------------
   Mega menu panels  (mirrors .mega-menu / .mm-icon-button)
   -------------------------------------------------------------------------- */
.mega-menu {
  background: var(--sl-ink);
  border: 1px solid var(--sl-grey-800);
  border-radius: 25px;
  box-shadow: 0 8px 20px 0 rgba(0,0,0,.07), 0 30px 80px rgba(0,0,0,.6);
  display: none;
  left: 50%;
  margin: 0 auto;
  max-width: var(--container);
  overflow: hidden;
  padding: 16px;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  width: var(--container-w);
  z-index: 5;
}
.mega-menu.two-thirds { max-width: 966px; }
.mega-menu.is-open { display: block; animation: mm-in .18s var(--ease); }
@keyframes mm-in { from { opacity: 0; transform: translate(-50%, -6px); } to { opacity: 1; transform: translate(-50%, 0); } }

.mega-menu .mega-row { display: flex; gap: 8px; }
.mega-menu .col-4 { flex: 1 1 33.3333%; margin: 0; max-width: none; min-width: 0; }
.mega-menu .col-6 { flex: 1 1 50%; margin: 0; max-width: none; min-width: 0; }
.mega-menu .col-8 { flex: 1 1 66.6667%; margin: 0; max-width: none; min-width: 0; }

.mega-menu-menu-component { display: flex; flex-direction: column; gap: 8px; }
.mm-content-wrapper { display: flex; flex-direction: column; height: 100%; justify-content: space-between; gap: 24px; padding: 8px; }
.mm-content-wrapper .mm-content-content { padding-right: 20px; }
.mm-content-wrapper h2 { font-size: 32px; margin: 0; color: var(--sl-sand-50); }
.mm-content-wrapper p { color: var(--text-muted); margin-top: 12px; }

.mm-icon-button {
  align-items: center;
  background: var(--sl-grey-900);
  border: 1px solid var(--sl-grey-700);
  border-radius: 16px;
  box-shadow: inset 0 4px 4px 0 rgba(0,0,0,.25);
  color: var(--accent);
  display: flex; gap: 24px;
  padding: 24px;
  text-decoration: none;
  transition: all var(--dur);
}
.mm-icon-button:hover { border-color: var(--accent); }
.mm-icon-button .icon { flex: 0 0 auto; }
.mm-icon-button .icon svg { height: 32px; width: 32px; }
/* icon files are masked so they inherit the accent colour (like the live site's currentColor SVGs) */
.mm-icon-button .icon[class*="icon-"] {
  background-color: var(--accent);
  height: 32px; width: 32px;
  -webkit-mask: var(--icon) no-repeat 50% 50%; mask: var(--icon) no-repeat 50% 50%;
  -webkit-mask-size: contain; mask-size: contain;
}
.mega-menu-sidebar .sidebar-arrow { width: 40px; height: 40px; filter: brightness(0); opacity: .9; }
.mm-icon-button .button-content-title { color: var(--sl-grey-200); font-size: 24px; font-weight: 500; line-height: normal; }
.mm-icon-button .button-content-description { color: var(--text-muted); font-size: 20px; font-weight: 400; line-height: 140%; }
.mm-icon-button.compact { padding: 18px 20px; gap: 18px; }
.mm-icon-button.compact .button-content-title { font-size: 20px; }
.mm-icon-button.compact .button-content-description { font-size: 16px; }

.mega-menu-sidebar {
  background: linear-gradient(180deg, var(--accent), var(--sl-orange-dark));
  border-radius: 16px;
  color: var(--sl-ink);
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%;
  padding: 24px;
  position: relative;
  text-decoration: none;
  min-height: 220px;
}
.mega-menu-sidebar .pre-heading {
  background: rgba(0,0,0,.1);
  border-radius: 6px;
  color: var(--sl-ink);
  display: inline-block;
  font-size: 16px; font-weight: 400;
  margin-bottom: 15px;
  padding: 4px 10px;
  align-self: flex-start;
}
.mega-menu-sidebar .sidebar-card {
  align-items: center; display: flex; justify-content: space-between; gap: 16px;
  color: var(--sl-ink);
  font-size: 32px; font-weight: 500; line-height: 116%;
}
.mega-menu-sidebar .sidebar-card svg { width: 40px; height: 40px; flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   Mobile off-canvas menu
   -------------------------------------------------------------------------- */
.mobile-menu {
  background: var(--sl-black);
  inset: 0;
  overflow-y: auto;
  padding: 0 5% 40px;
  position: fixed;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  z-index: 60;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .menu-header { align-items: center; display: flex; height: 88px; justify-content: space-between; }
.mobile-menu .primary-logo { width: 150px; }
.mobile-menu .primary-logo img { height: 40px; width: auto; }
.mobile-menu .menu-escape { cursor: pointer; padding: 8px; }
.mobile-menu .nav > li { border-bottom: 1px solid var(--border); }
.mobile-menu .nav > li > a {
  color: #fff; display: block; font-size: 22px; font-weight: 500;
  padding: 18px 0; text-decoration: none; position: relative;
}
.mobile-menu .menu-item-has-children > a::after {
  background: var(--accent); content: ""; height: 12px; width: 12px;
  -webkit-mask: url("../assets/img/plus.svg") no-repeat 50% 50%; mask: url("../assets/img/plus.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover; mask-size: cover;
  position: absolute; right: 4px; top: calc(50% - 6px);
  transition: transform var(--dur);
}
.mobile-menu .menu-item-has-children.open > a::after { transform: rotate(45deg); }
.mobile-menu .sub-menu { display: none; padding: 0 0 12px 16px; }
.mobile-menu .menu-item-has-children.open .sub-menu { display: block; }
.mobile-menu .sub-menu a { color: var(--text-body); display: block; font-size: 18px; padding: 10px 0; text-decoration: none; }
.mobile-menu .sub-menu a:hover { color: var(--accent); }
.mobile-menu .nav > li.cta { border: 0; padding-top: 24px; }
.mobile-menu .nav > li.cta .button { width: 100%; margin: 0; }

/* --------------------------------------------------------------------------
   Footer  (mirrors .footer)
   -------------------------------------------------------------------------- */
.footer {
  --footer-bg: #08090a; --panel-bg: #121212; --panel-border: #272727; --card-bg: #1b1b1b;
  --text-strong: #ded7cf; --text-med: #c2bbb0; --text-muted: #96928d; --text-meta: #8b8f97;
  --btn-bg: #e44b33; --btn-text: #1e1e1e; --radius: 16px; --radius-sm: 8px;
  background: var(--footer-bg); overflow: hidden; position: relative;
}
.footer .chevron { height: 560px; pointer-events: none; position: absolute; top: calc(50% - 280px); width: 520px; opacity: .9; }
.footer .chevron svg { width: 100%; height: 100%; }
.footer .chevron-left  { left: -60px; }
.footer .chevron-right { right: -70px; }
.footer .footer-inner { padding: 40px 0; position: relative; z-index: 1; }
.footer .footer-panel {
  background: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: var(--radius);
  margin: 0 auto; max-width: 1477px; padding: 40px; width: calc(100% - 48px);
}
.footer .footer-top { align-items: start; display: grid; gap: 90px; grid-template-columns: minmax(420px, 697px) 1fr; }
.footer .footer-card {
  background: var(--card-bg); border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  padding: 24px;
}
.footer .footer-title { color: var(--text-strong); font-size: 48px; font-weight: 500; line-height: 1.14; margin: 0; max-width: 610px; }
.footer .footer-subtitle { color: var(--text-muted); font-size: 20px; font-weight: 400; line-height: 1.4; margin: 16px 0 0; max-width: 457px; }
.footer .footer-form { display: grid; gap: 16px; margin-top: 24px; }
.footer .footer-label { color: var(--text-strong); font-size: 20px; font-weight: 400; line-height: 1.4; }
.footer .footer-input-wrap { align-items: center; background: var(--text-strong); border-radius: var(--radius-sm); display: flex; padding: 12px 24px; }
.footer .footer-input { background: transparent; border: 0; color: #111; font-family: inherit; font-size: 20px; font-weight: 400; line-height: 1.4; outline: none; width: 100%; }
.footer .footer-input::placeholder { color: #111; opacity: .7; }
.footer .footer-btn {
  background: var(--btn-bg); border: 0; border-radius: var(--radius-sm);
  box-shadow: inset 0 4px 4px rgba(255,255,255,.25); color: var(--btn-text); cursor: pointer;
  font-family: inherit; font-size: 20px; font-weight: 500; justify-self: start; padding: 12px 24px;
}
.footer .footer-btn:hover { filter: brightness(1.05); }
.footer .footer-btn:active { transform: translateY(1px); }
.footer .footer-nav { display: flex; gap: 90px; justify-content: flex-end; padding-top: 6px; }
.footer .footer-col-title { color: var(--text-strong); font-size: 20px; font-weight: 500; margin-bottom: 20px; }
.footer .footer-links { display: grid; gap: 16px; }
.footer .footer-links a { color: var(--text-muted); font-size: 24px; font-weight: 500; text-decoration: none; transition: color var(--dur); }
.footer .footer-links a:hover { color: var(--text-strong); }
.footer .footer-bottom { align-items: flex-end; display: flex; gap: 32px; justify-content: space-between; margin-top: 72px; }
.footer .footer-meta { display: grid; gap: 16px; }
.footer .footer-copyright { color: var(--text-med); font-size: 20px; font-weight: 500; }
.footer .footer-meta-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer .footer-meta-links a { color: var(--text-meta); font-size: 16px; font-weight: 400; line-height: 1.4; text-decoration: none; }
.footer .footer-meta-links a:hover { color: var(--text-strong); }
.footer .footer-social { align-items: center; display: flex; gap: 12px; justify-content: flex-end; }
.footer .footer-social a { align-items: center; border-radius: 10px; display: inline-flex; height: 48px; justify-content: center; text-decoration: none; width: 48px; }
.footer .footer-social a svg { color: var(--text-med); height: 32px; width: 32px; transition: color var(--dur); }
.footer .footer-social a:hover svg { color: var(--btn-bg); }
@media (max-width: 1200px) {
  .footer .footer-panel { margin: 0 24px; width: auto; }
  .footer .footer-top { gap: 48px; grid-template-columns: 1fr; }
  .footer .footer-nav { gap: 48px; justify-content: flex-start; }
}
@media (max-width: 899.98px) { .footer .footer-links a { font-size: 18px; } }
@media (max-width: 720px) {
  .footer .footer-panel { padding: 24px; margin: 0 16px; }
  .footer .footer-title { font-size: 36px; }
  .footer .footer-nav { gap: 32px; justify-content: space-between; }
  .footer .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer .footer-social { flex-wrap: wrap; justify-content: flex-start; width: 100%; }
  .footer .chevron { opacity: .35; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Mega-menu icon files (masked so they take the accent colour) */
.icon-about { --icon: url("../assets/img/icons/about.svg"); }
.icon-assetdb { --icon: url("../assets/img/icons/assetdb.svg"); }
.icon-blog { --icon: url("../assets/img/icons/blog.svg"); }
.icon-careers { --icon: url("../assets/img/icons/careers.svg"); }
.icon-case-studies { --icon: url("../assets/img/icons/case-studies.svg"); }
.icon-cloud-ai-infrastructure { --icon: url("../assets/img/icons/cloud-ai-infrastructure.svg"); }
.icon-cloud-custodian-users { --icon: url("../assets/img/icons/cloud-custodian-users.svg"); }
.icon-events-webinars { --icon: url("../assets/img/icons/events-webinars.svg"); }
.icon-finops { --icon: url("../assets/img/icons/finops.svg"); }
.icon-iac-governance { --icon: url("../assets/img/icons/iac-governance.svg"); }
.icon-jun0 { --icon: url("../assets/img/icons/jun0.svg"); }
.icon-press-articles { --icon: url("../assets/img/icons/press-articles.svg"); }
.icon-security-compliance { --icon: url("../assets/img/icons/security-compliance.svg"); }
.icon-why-open-source { --icon: url("../assets/img/icons/why-open-source.svg"); }

/* Heading scale below the desktop breakpoint (mirrors theme) */
@media (max-width: 1025.98px) {
  h1, .h1 { font-size: 3rem; }
  h2, .h2 { font-size: 2.5rem; }
  h3, .h3 { font-size: 2.25rem; }
  .h1-display { font-size: 3.125rem; }
}
