/* Bad Kitty Gaming  */

:root {
  --bg-page: #f5f6f8;
  --bg-white: #ffffff;
  --bg-dark: #0a0f1a;
  --bg-dark-soft: #121a2a;
  --text: #0f1419;
  --text-muted: #5a6570;
  --text-on-dark: #e8ebf0;
  --line: #e1e4e8;
  --line-dark: #242f45;
  --accent: #e04f3d;
  --accent-hover: #c73d2d;
  --accent-subtle: rgba(224, 79, 61, 0.12);
  --shadow-header: 0 1px 0 rgba(15, 20, 25, 0.06);
  --shadow-float: 0 18px 50px rgba(8, 12, 20, 0.18);
  --radius: 8px;
  --radius-lg: 12px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1160px;
  --header-h: 120px;
  --topbar-h: 36px;
  --z-header: 100;
  --z-mega: 200;
  --z-drawer: 300;
  --z-backdrop: 150;
  --duration: 0.2s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-page);
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: var(--bg-white);
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container.narrow {
  max-width: 520px;
}

/* —— Top bar —— */
.top-bar {
  background: #eef0f3;
  color: var(--text-muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--topbar-h);
  gap: 1rem;
}

.top-bar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.top-bar__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.top-bar__links a:hover {
  color: var(--text);
  text-decoration: none;
}

.top-bar__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.top-bar__locale {
  color: var(--text-muted);
}

.top-bar__account {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.top-bar__account:hover {
  text-decoration: none;
  color: var(--accent);
}

/* —— Header & brand —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--bg-white);
  box-shadow: var(--shadow-header);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(8, 12, 20, 0.08);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
  color: var(--text);
}

.brand__mark {
  color: var(--accent);
  flex-shrink: 0;
}

/* Raster logo (wordmark in artwork; alt / aria-label on link for a11y) */
.brand__logo {
  display: block;
  height: 104px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
  object-position: left center;
}

.brand__logo--footer {
  height: 80px;
  max-width: 160px;
}

.brand__text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand__text-muted {
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.15em;
}

.brand--footer .brand__text {
  font-size: 1.1rem;
}

/* —— Main nav (desktop) —— */
.main-nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.main-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
}

.main-nav__list > li {
  position: static;
  display: flex;
}

/* Specificity: beat .main-nav__list > li { position: static } so the hover “bridge” works */
.main-nav__list > li.has-mega {
  position: relative;
  z-index: 10;
}

/* Invisible “bridge” between nav trigger and full-width mega panel (avoids hover gaps) */
.has-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 20px;
  z-index: 199;
  pointer-events: auto;
  background: transparent;
}

.main-nav__trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--duration), color var(--duration);
}

.main-nav__trigger:hover,
.main-nav__trigger[aria-expanded="true"] {
  background: #f0f2f4;
  text-decoration: none;
}

.main-nav__trigger .chev {
  transition: transform var(--duration);
  opacity: 0.6;
}

.main-nav__trigger[aria-expanded="true"] .chev,
.has-mega:hover .main-nav__trigger .chev,
.has-mega:focus-within .main-nav__trigger .chev {
  transform: rotate(180deg);
}

a.main-nav__link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--duration), color var(--duration);
  white-space: nowrap;
}

a.main-nav__link:hover {
  background: #f0f2f4;
  text-decoration: none;
}

/* —— Mega menu —— */
.mega {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--topbar-h) + var(--header-h));
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  padding: 1.75rem 0 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  pointer-events: none;
  z-index: var(--z-mega);
}

.has-mega.is-open .mega,
.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(220px, 0.9fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.mega__label {
  margin: 0 0 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mega__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega__links li {
  margin-bottom: 1rem;
}

.mega__links a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 0.2rem;
}

.mega__links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.mega__links span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

.mega__sublabel {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}

.mega__sublist {
  list-style: none;
  margin: 0 0 0.5rem 1rem;
  padding: 0;
}

.mega__sublist a {
  font-weight: 500;
  font-size: 14px;
}

.mega__col--feature {
  min-height: 100%;
}

.mega__card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  min-height: 150px;
  padding: 1.25rem;
  background: linear-gradient(145deg, #f8f9fb 0%, #eef1f5 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mega__card:hover {
  border-color: #cfd4da;
  box-shadow: 0 8px 28px rgba(8, 12, 20, 0.08);
  text-decoration: none;
}

.mega__card--alt {
  background: linear-gradient(145deg, #fff5f3 0%, #ffebe8 100%);
  border-color: #f5d0ca;
}

.mega__card-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.mega__card strong {
  font-size: 15px;
  line-height: 1.35;
}

.mega__card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 0.5rem;
}

.mega-backdrop {
  position: fixed;
  inset: 0;
  top: calc(var(--topbar-h) + var(--header-h));
  background: rgba(8, 12, 20, 0.35);
  z-index: var(--z-backdrop);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s;
}

.mega-backdrop.is-visible,
body:has(.has-mega:hover) .mega-backdrop,
body:has([data-mega]:focus-within) .mega-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* —— CTAs —— */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost:hover {
  background: #f5f6f8;
  border-color: #d0d4d9;
  color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--lg {
  padding: 0.75rem 1.35rem;
  font-size: 15px;
}

.btn--block {
  width: 100%;
}

.icon-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.icon-btn:hover {
  background: #f5f6f8;
}

.mobile-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header:has([data-mobile-open][aria-expanded="true"]) .mobile-toggle__bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header:has([data-mobile-open][aria-expanded="true"]) .mobile-toggle__bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* —— Mobile drawer —— */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  pointer-events: none;
  visibility: hidden;
}

.mobile-drawer[aria-hidden="false"] {
  visibility: visible;
}

.mobile-drawer.is-open {
  pointer-events: auto;
}

.mobile-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.45);
  opacity: 0;
  transition: opacity 0.25s;
}

.mobile-drawer.is-open .mobile-drawer__scrim {
  opacity: 1;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100% - 2.5rem, 400px);
  height: 100%;
  background: var(--bg-white);
  box-shadow: -8px 0 40px rgba(8, 12, 20, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer__title {
  font-weight: 700;
  font-size: 1rem;
}

.mobile-accordion {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0.75rem 1.5rem;
}

.acc-item {
  border-bottom: 1px solid var(--line);
}

.acc-item--flat {
  padding: 0;
}

.acc-item__headlink {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.acc-item__headlink:hover {
  color: var(--accent);
  text-decoration: none;
}

.acc-item__btn {
  width: 100%;
  text-align: left;
  padding: 1rem 0.5rem;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
}

.acc-item__btn::after {
  content: "›";
  color: var(--text-muted);
  font-size: 1.1rem;
  transform: rotate(90deg);
  transition: transform 0.2s;
}

.acc-item.is-open .acc-item__btn::after {
  transform: rotate(-90deg);
}

.acc-item__panel {
  list-style: none;
  margin: 0;
  padding: 0 0.5rem 0.75rem 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.is-open .acc-item__panel {
  max-height: 320px;
}

.acc-item__panel a {
  display: block;
  padding: 0.45rem 0;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
}

.acc-item__panel a:hover {
  color: var(--accent);
  text-decoration: none;
}

.mobile-drawer__cta {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: center;
  padding: 3.5rem 0 4rem;
  color: var(--text-on-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #0a0f1a 0%, #0f1828 38%, #152036 100%);
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  max-width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(224, 79, 61, 0.35) 0%, transparent 65%);
  filter: blur(2px);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, black 50%, transparent 100%);
  pointer-events: none;
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.15rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero__title-accent {
  color: #ff8a7a;
  text-shadow: 0 0 40px rgba(224, 79, 61, 0.45);
}

.hero__lede {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(232, 235, 240, 0.88);
  max-width: 52ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 480px;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line-dark);
}

.hero__stats dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.2rem;
}

.hero__stats dd {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
  background: var(--bg-page);
}

.section--dark {
  background: #0c111d;
  color: var(--text-on-dark);
}

.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section--dark .section__title {
  color: #fff;
}

.section__lede {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.trust {
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.info-card {
  padding: 1.5rem;
  background: #fafbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.info-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.info-card:hover {
  border-color: #d5d8dc;
  box-shadow: 0 12px 32px rgba(8, 12, 20, 0.06);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split__content p,
.split__content .checklist {
  color: rgba(232, 235, 240, 0.85);
}

.split__content p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(224, 79, 61, 0.35);
}

.console-preview {
  background: var(--bg-dark-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}

.console-preview__titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #0d1420;
  border-bottom: 1px solid var(--line-dark);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  font-family: ui-monospace, monospace;
}

.console-preview__pill {
  background: rgba(60, 180, 120, 0.2);
  color: #6fe0a8;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.console-preview__rows {
  padding: 1rem 1.25rem 1.25rem;
}

.console-preview__row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.console-preview__row:last-child {
  border-bottom: none;
}

.console-preview__row strong {
  color: #fff;
  font-weight: 600;
}

/* —— Contact —— */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

/* —— Footer —— */
.site-footer {
  background: #e9ecef;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.5rem;
  font-size: 14px;
  color: var(--text-muted);
}

.footer__grid {
  display: grid;
  /* Brand column + N link columns; add a track when you add a .footer__grid > div after the brand */
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__head {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
  font-size: 13px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}

.footer__links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer__tag {
  margin: 0.75rem 0 0;
  max-width: 24ch;
  line-height: 1.5;
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #dde1e5;
  font-size: 12px;
  color: var(--text-muted);
}

/* —— Responsive —— */
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }

  .header__actions .btn {
    display: inline-flex;
  }

  .mobile-toggle {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .header__actions .btn {
    display: none;
  }

  .icon-btn.mobile-toggle {
    display: flex;
  }

  .mega {
    display: none;
  }

  .mega-backdrop {
    display: none;
  }
}

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

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

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

@media (max-width: 600px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  :root {
    --header-h: 88px;
  }

  .brand__logo {
    height: 72px;
  }

  .top-bar__links a:nth-child(n + 3) {
    display: none;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
