:root {
  color-scheme: dark;
  --bg: #06080b;
  --bg-alt: #0a0d12;
  --surface: rgba(13, 17, 24, 0.92);
  --surface-strong: rgba(17, 21, 29, 0.98);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --text: #f4f6fa;
  --muted: #a6afbd;
  --muted-strong: #778192;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #d11d2f;
  --accent-strong: #ff4152;
  --accent-soft: rgba(209, 29, 47, 0.16);
  --accent-glow: rgba(209, 29, 47, 0.2);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --font-sans: "Aptos", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Aptos Display", "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(209, 29, 47, 0.12), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 72% 76%, rgba(209, 29, 47, 0.08), transparent 22%),
    linear-gradient(180deg, #07090c 0%, #050608 100%);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 100% 96px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 96px 100%;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  opacity: 0.8;
}

body::after {
  background:
    linear-gradient(125deg, transparent 47%, rgba(209, 29, 47, 0.1) 48%, transparent 49%) 0 0 / 28rem 28rem,
    linear-gradient(55deg, transparent 46%, rgba(255, 255, 255, 0.04) 47%, transparent 48%) 0 0 / 35rem 35rem;
  opacity: 0.5;
  transform: translateZ(0);
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--text);
  color: #0b0d12;
  font-weight: 700;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(22px);
}

.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

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

.brand__mark {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(209, 29, 47, 0.95), rgba(120, 11, 20, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 24px rgba(0, 0, 0, 0.25);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand__mark--image {
  display: block;
  object-fit: cover;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand__text {
  display: grid;
  gap: 0.08rem;
}

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

.brand__text small {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.site-nav a:not(.btn) {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle__icon {
  width: 1.1rem;
  height: 0.85rem;
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle__icon::before {
  top: 0;
  box-shadow: 0 0.37rem 0 currentColor;
}

.nav-toggle__icon::after {
  bottom: 0;
  width: 70%;
}

.btn,
.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover,
.contact-pill:hover {
  transform: translateY(-1px);
}

.btn--primary,
.contact-pill {
  background: linear-gradient(180deg, rgba(225, 42, 58, 0.98), rgba(170, 22, 34, 0.98));
  color: #fff;
  box-shadow: 0 14px 28px rgba(145, 18, 28, 0.24);
}

.btn--primary:hover,
.contact-pill:hover {
  box-shadow: 0 18px 34px rgba(145, 18, 28, 0.3);
}

.btn--secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.section-shell {
  padding-top: 1.4rem;
}

.hero {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  align-items: center;
  padding-block: clamp(1.1rem, 2.6vw, 2.2rem);
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin-top: 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-description {
  margin-top: 1.15rem;
  max-width: 30rem;
  font-size: clamp(1.03rem, 1.3vw, 1.1rem);
  color: var(--muted);
}

.hero-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 0.95rem;
  min-height: 100%;
  padding: clamp(1.15rem, 2.4vw, 1.8rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 18%, rgba(209, 29, 47, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(11, 14, 19, 0.98), rgba(6, 8, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 56px 100%,
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 100% 56px;
  opacity: 0.28;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel .eyebrow {
  margin: 0;
}

.hero-panel__actions {
  display: grid;
  gap: 0.8rem;
}

.hero-panel__btn {
  width: 100%;
  justify-content: center;
  min-height: 3.25rem;
}

.section {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 1.5rem;
}

.section-heading h2,
.about-panel h3,
.community-card h2,
.contact h2,
.footer-links h2,
.footer-meta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  text-wrap: balance;
}

.section-intro {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

.info-card,
.topic-card,
.about-panel,
.community-card,
.contact-copy,
.video-card,
.page-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(13, 17, 24, 0.95), rgba(9, 12, 17, 0.95));
  box-shadow: var(--shadow-md);
}

.info-card {
  padding: 1.4rem;
  min-height: 100%;
}

.info-card::before,
.topic-card::before,
.about-panel::before,
.community-card::before,
.contact-copy::before,
.video-card::before,
.page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.info-card__index,
.topic-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(209, 29, 47, 0.14);
  color: #ff7f89;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.info-card h3,
.topic-card h3,
.video-card h3 {
  margin-top: 1rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.info-card p,
.topic-card p,
.about-copy p,
.community-card p,
.contact-copy p,
.footer-copy,
.footer-note,
.section-intro {
  color: var(--muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.video-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.video-card:hover,
.video-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.video-card__thumb-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
  isolation: isolate;
  background: #050608;
}

.video-card__thumb-link img,
.video-card img {
  display: block;
  border-bottom: 1px solid var(--line);
}

.video-card__thumb-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  --thumb-scale-base: 1;
  --thumb-scale-hover: 1.06;
  transform: scale(var(--thumb-scale-base));
  transform-origin: center;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.video-card__thumb-link .video-card__thumb-image {
  --thumb-scale-base: 1.16;
  --thumb-scale-hover: 1.22;
  object-position: center center;
  filter: saturate(0.98) contrast(1.03);
}

.video-card__thumb-image--eua-ira {
  object-position: center 38%;
}

.video-card__thumb-image--eleicoes {
  object-position: center 46%;
}

.video-card__thumb-image--ucrania {
  object-position: center center;
}

.video-card__thumb-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.02), rgba(5, 7, 10, 0.22)),
    radial-gradient(circle at 50% 50%, rgba(209, 29, 47, 0), rgba(209, 29, 47, 0.14) 52%, rgba(0, 0, 0, 0.22) 100%);
  opacity: 0;
  transition: opacity 260ms ease;
  z-index: 2;
  pointer-events: none;
}

.video-card__thumb-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(4.4rem, 7vw, 5.75rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(0.96);
  transition:
    transform 260ms ease,
    opacity 260ms ease;
  z-index: 3;
  pointer-events: none;
}

.video-card__thumb-play::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(10, 13, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
}

.video-card__thumb-play::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 0.78rem 0 0.78rem 1.15rem;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.32));
}

.video-card__thumb-link:hover::before,
.video-card__thumb-link:focus-visible::before {
  opacity: 1;
}

.video-card__thumb-link:hover img,
.video-card__thumb-link:focus-visible img,
.video-card:hover .video-card__thumb-link img,
.video-card:focus-within .video-card__thumb-link img {
  transform: scale(var(--thumb-scale-hover));
  filter: brightness(0.88) saturate(1.08) contrast(1.05);
}

.video-card__thumb-link:hover .video-card__thumb-play,
.video-card__thumb-link:focus-visible .video-card__thumb-play,
.video-card:hover .video-card__thumb-play,
.video-card:focus-within .video-card__thumb-play {
  transform: translate(-50%, -50%) scale(1);
}

.video-card__thumb-link:hover .video-card__thumb-play::before,
.video-card__thumb-link:focus-visible .video-card__thumb-play::before,
.video-card:hover .video-card__thumb-play::before,
.video-card:focus-within .video-card__thumb-play::before {
  background: rgba(10, 13, 18, 0.66);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 0 0 1px rgba(209, 29, 47, 0.18),
    0 20px 38px rgba(0, 0, 0, 0.38);
}

.video-card__body {
  display: grid;
  grid-template-rows: minmax(2.75rem, auto) auto;
  align-content: space-between;
  gap: 0.9rem;
  padding: 1rem 1.05rem 1.15rem;
}

.video-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.video-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.video-card__button:hover,
.video-card__button:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.section-heading--news {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.section-heading__link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-heading__link:hover,
.section-heading__link:focus-visible {
  color: var(--text);
}

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

.news-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(13, 17, 24, 0.95), rgba(9, 12, 17, 0.95));
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-card:hover,
.news-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.news-card__visual {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(209, 29, 47, 0.72) 48% 49%, transparent 49%),
    repeating-linear-gradient(90deg, transparent 0 22%, rgba(255, 255, 255, 0.08) 22.2% 22.5%, transparent 22.7% 45%),
    radial-gradient(circle at 72% 30%, rgba(209, 29, 47, 0.34), transparent 26%),
    linear-gradient(135deg, #111821, #07090d);
  isolation: isolate;
}

.news-card__visual::before,
.news-card__visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.news-card__visual::before {
  inset: 14% 9%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: skewX(-18deg);
}

.news-card__visual::after {
  inset: auto -12% 13% 39%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 1.4rem 0 rgba(255, 255, 255, 0.14), 0 -1.4rem 0 rgba(255, 255, 255, 0.14);
  transform: rotate(-20deg);
}

.news-card__index {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: start;
  padding: 0 1rem 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: 0.08em;
}

.news-card__body {
  display: grid;
  grid-template-rows: minmax(2.75rem, auto) auto;
  align-content: space-between;
  gap: 0.9rem;
  padding: 1rem 1.05rem 1.15rem;
}

.news-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.news-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.news-card__button:hover,
.news-card__button:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track > * {
  flex: 0 0 calc((100% - 2rem) / 3.35);
  min-width: 0;
  scroll-snap-align: start;
  transition: opacity 220ms ease;
}

.products-page .carousel-track > * {
  flex: 0 0 calc((100% - 2.25rem) / 4.1);
}

.products-page .product-card__body {
  gap: 0.65rem;
  padding: 0.85rem 0.9rem 0.95rem;
}

.products-page .product-card__body h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.carousel-shell {
  position: relative;
}

@media (min-width: 721px) {
  .carousel-track > .carousel-card--preview {
    opacity: 0.38;
  }

  .carousel-shell[data-has-overflow="true"][data-at-end="false"]::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0.35rem;
    width: clamp(3.5rem, 9vw, 8rem);
    background: linear-gradient(90deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.76));
    pointer-events: none;
    z-index: 2;
  }
}

.carousel-actions {
  position: absolute;
  top: 50%;
  right: -1.15rem;
  z-index: 3;
  transform: translateY(-50%);
}

.carousel-next {
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 0 0 transparent);
  transition: transform 180ms ease, filter 180ms ease;
}

.carousel-next svg {
  width: 2.1rem;
  height: 2.1rem;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-next:hover,
.carousel-next:focus-visible {
  transform: translateX(3px);
  filter: drop-shadow(0 0 9px rgba(209, 29, 47, 0.62));
}

.carousel-next:active {
  transform: translateX(1px) scale(0.92);
}

.topic-card {
  padding: 1.35rem;
  min-height: 100%;
}

.topic-card--compact {
  padding: 1.15rem;
}

.topic-card p {
  margin-top: 0.75rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.about-copy,
.about-panel,
.community-card,
.contact-copy {
  padding: 1.4rem;
}

.about-copy {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-note {
  padding: 1rem 1.05rem;
  margin-top: 1.25rem;
  border-left: 2px solid var(--accent);
  background: rgba(209, 29, 47, 0.08);
  color: var(--text);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.about-panel h3 {
  font-size: 1.3rem;
}

.about-list {
  display: grid;
  gap: 0.8rem;
}

.about-list li {
  padding-left: 1rem;
  position: relative;
  color: var(--muted);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(209, 29, 47, 0.12);
}

.community-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  border-color: rgba(209, 29, 47, 0.18);
  background:
    radial-gradient(circle at 18% 0%, rgba(209, 29, 47, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(18, 22, 30, 0.96), rgba(9, 11, 16, 0.96));
}

.community-card__copy {
  max-width: 44rem;
}

.community-card__copy p {
  margin-top: 0.85rem;
}

.community-card__links {
  margin-top: 0.15rem;
}

.community-bell {
  width: clamp(3.5rem, 6vw, 4.5rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(225, 42, 58, 0.98), rgba(170, 22, 34, 0.98));
  color: #fff;
  box-shadow: 0 14px 30px rgba(209, 29, 47, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.community-bell svg {
  width: 45%;
  height: 45%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform-origin: 50% 12%;
}

.community-bell:hover,
.community-bell:focus-visible {
  box-shadow: 0 0 0 5px rgba(209, 29, 47, 0.12), 0 18px 36px rgba(145, 18, 28, 0.3);
  transform: translateY(-2px);
}

.community-bell:hover svg,
.community-bell:focus-visible svg {
  animation: bell-ring 520ms ease-in-out;
}

.community-bell:active {
  transform: translateY(0) scale(0.94);
}

@keyframes bell-ring {
  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(11deg);
  }

  50% {
    transform: rotate(-9deg);
  }

  75% {
    transform: rotate(5deg);
  }
}

.store-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 29, 47, 0.18);
  background:
    radial-gradient(circle at 14% 0%, rgba(209, 29, 47, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(18, 22, 30, 0.96), rgba(9, 11, 16, 0.96));
  box-shadow: var(--shadow-md);
}

.store-card__copy {
  max-width: 34rem;
}

.store-card__copy p {
  margin-top: 0.8rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.product-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(13, 17, 24, 0.95), rgba(9, 12, 17, 0.95));
  box-shadow: var(--shadow-md);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card--example {
  border-color: rgba(209, 29, 47, 0.24);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.product-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050608;
  border-bottom: 1px solid var(--line);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #050608;
  display: block;
}

.product-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.05rem 1.15rem;
}

.product-card__body h3 {
  margin-top: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.product-card__body p {
  color: var(--muted);
}

.product-card__body .video-card__button {
  margin-top: 0.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-form--panel {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(13, 17, 24, 0.95), rgba(9, 12, 17, 0.95));
  box-shadow: var(--shadow-md);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-pill {
  width: 100%;
  text-align: center;
}

.site-footer {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-block: 2rem 2.4rem;
  border-top: 1px solid var(--line);
  background: rgba(4, 5, 8, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.brand--footer {
  align-items: flex-start;
}

.footer-copy {
  margin-top: 1rem;
  max-width: 30rem;
}

.footer-links h2,
.footer-meta h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a,
.social-placeholder,
.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.social-links a:hover,
.footer-legal a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.social-placeholder {
  color: #8c96a7;
  border-style: dashed;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.status-page__main {
  width: min(100%, 42rem);
  display: grid;
  gap: 2rem;
}

.status-card {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.75rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.status-card h1,
.status-card p {
  margin: 0;
}

.status-card p:not(.eyebrow) {
  color: var(--muted);
  max-width: 38rem;
}

.status-card .btn {
  justify-self: start;
  margin-top: 0.5rem;
}

.news-shell {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.news-intro {
  display: grid;
  gap: 0.9rem;
  max-width: 46rem;
}

.news-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0.08em;
}

.news-empty {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: min(28rem, 60vh);
  align-content: center;
  padding: clamp(1.75rem, 7vw, 5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(115deg, rgba(209, 29, 47, 0.14), transparent 38%),
    repeating-linear-gradient(90deg, transparent 0 4.9rem, rgba(255, 255, 255, 0.035) 4.9rem 5rem),
    linear-gradient(145deg, rgba(17, 22, 30, 0.98), rgba(7, 9, 13, 0.98));
  box-shadow: var(--shadow-md);
}

.news-empty::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -45%;
  width: min(34rem, 76vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.025), 0 0 0 6rem rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.news-empty > * {
  position: relative;
  z-index: 1;
}

.news-empty h2 {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.news-empty p:not(.news-empty__status) {
  max-width: 33rem;
  color: var(--muted);
}

.contact-field {
  display: grid;
  gap: 0.4rem;
}

.contact-field span {
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.82rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  line-height: 1.5;
}

.contact-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #7f8999;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  outline: none;
  border-color: rgba(209, 29, 47, 0.52);
  box-shadow: 0 0 0 3px rgba(209, 29, 47, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.contact-note {
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 29, 47, 0.32);
  background: rgba(209, 29, 47, 0.14);
  color: #ff9aa3;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  justify-self: start;
  text-decoration: none;
}

.footer-contact:hover,
.footer-contact:focus-visible {
  border-color: rgba(209, 29, 47, 0.48);
  background: rgba(209, 29, 47, 0.2);
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.footer-note {
  font-size: 0.93rem;
}

.footer-copy--small {
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.page-shell {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.page-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.prose {
  display: grid;
  gap: 1.2rem;
}

.prose h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  display: grid;
  gap: 0.7rem;
  list-style: disc;
  padding-left: 1.25rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.error-page {
  min-height: calc(100vh - 6rem);
  display: grid;
  align-items: center;
}

.error-layout {
  display: grid;
  gap: 1.3rem;
}

.error-code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 29, 47, 0.28);
  background: rgba(209, 29, 47, 0.12);
  color: #ff8d95;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
  }

  html.js .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    padding-top: 0.4rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  html.js .site-nav {
    display: none;
  }

  html.js .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 0.2rem 0;
  }

  .community-card {
    gap: 0.75rem;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero-grid {
    gap: 0.9rem;
    padding-block: 0.85rem 1.25rem;
  }

  .card-grid--3,
  .card-grid--4,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: 0.06em;
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero-panel {
    padding: 1rem;
    border-radius: 26px;
  }

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

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

  .section-heading--news {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.2rem;
  }

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

  .carousel-track {
    gap: 0.85rem;
  }

  .carousel-track > * {
    flex-basis: calc(100% - 2.8rem);
  }

  .carousel-actions {
    display: none;
  }

  .social-links,
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

.products-page .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.products-page .carousel-actions {
  display: none;
}
