@import url("https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Roboto+Condensed:wght@400;500;700;900&display=swap");

:root {
  --page-bg: #030704;
  --panel-bg: rgba(5, 12, 8, 0.86);
  --panel-bg-soft: rgba(8, 20, 12, 0.64);
  --lime: #9cff35;
  --lime-muted: #7cc72c;
  --line-muted: rgba(145, 190, 80, 0.42);
  --line-soft: rgba(145, 190, 80, 0.22);
  --text-main: #f1f3e9;
  --text-muted: #b9c0ad;
  --danger: #ff574d;
  --selection-bg: #b8ff4f;
  --selection-text: #031008;
  --scrollbar-track: #010302;
  --scrollbar-thumb: #5f8f2c;
  --scrollbar-thumb-hover: #b8ff4f;
  --focus-glow: rgba(184, 255, 79, 0.22);
  --cursor-default: url("assets/cursor-default.png") 8 2, auto;
  --cursor-pointer: url("assets/cursor-pointer.png") 13 1, pointer;
  --font-body: "Roboto Condensed", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Caveat Brush", "Segoe Print", "Bradley Hand ITC", fantasy;
  --radius-shell: 22px;
  --radius-card: 8px;
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.46), inset 0 0 28px rgba(156, 255, 53, 0.035);
}

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

html {
  min-height: 100%;
  accent-color: var(--lime);
  color-scheme: dark;
  cursor: var(--cursor-default);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
  -webkit-text-size-adjust: 100%;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
  text-shadow: none;
}

::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-text);
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(90deg, rgba(156, 255, 53, 0.035), transparent 34%, transparent 66%, rgba(156, 255, 53, 0.035)),
    var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--scrollbar-track);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(184, 255, 79, 0.9), rgba(95, 143, 44, 0.96));
  box-shadow: inset 0 0 0 1px rgba(184, 255, 79, 0.32);
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, var(--scrollbar-thumb-hover), var(--lime-muted));
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: #010302;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(156, 255, 53, 0.12), transparent 34rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(1, 6, 3, 0.52) 18%, rgba(0, 0, 0, 0.72) 50%, rgba(1, 6, 3, 0.52) 82%, rgba(0, 0, 0, 0.96) 100%),
    linear-gradient(180deg, rgba(1, 3, 2, 0.18) 0%, rgba(1, 3, 2, 0.72) 58%, #010302 100%),
    url("assets/swamp-background.webp");
  background-attachment: fixed, fixed, fixed, fixed;
  background-position: center top, center top, center top, center top;
  background-repeat: no-repeat;
  background-size: auto, auto, auto, max(1680px, 100vw) auto;
  background-color: #010302;
  color: var(--text-main);
  cursor: var(--cursor-default);
  font-family: var(--font-body);
  line-height: 1.45;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
  height: auto;
  cursor: var(--cursor-default);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

.ui-art {
  display: block;
  max-width: none;
  height: auto;
  cursor: var(--cursor-default);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

a,
button {
  cursor: var(--cursor-pointer);
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(184, 255, 79, 0.2);
}

input,
textarea {
  cursor: var(--cursor-default);
}

select {
  cursor: var(--cursor-pointer);
}

:where(a, a *, button, button *) {
  cursor: var(--cursor-pointer);
}

button,
.asset-button,
.brand,
.alert-actions a {
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

a>img,
button>img,
.asset-button img {
  pointer-events: none;
}

.site-shell {
  width: min(100%, 971px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-muted);
  background:
    radial-gradient(circle at 50% 14%, rgba(156, 255, 53, 0.045), transparent 360px),
    linear-gradient(180deg, rgba(5, 12, 8, 0.98), rgba(1, 4, 2, 0.995));
  box-shadow: 0 0 0 1px rgba(156, 255, 53, 0.08), 0 0 34px rgba(0, 0, 0, 0.72);
}

.site-shell>main>section,
.site-footer {
  border-bottom: 1px solid var(--line-soft);
}

.site-shell>main>section:focus {
  outline: none;
}

.site-shell>main>.hero {
  position: relative;
  height: 646px;
  overflow: hidden;
  isolation: isolate;
  padding: 20px 60px 40px;
  background: #020604;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 0.95;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(1, 4, 2, 0.9) 0%, rgba(1, 4, 2, 0.68) 33%, rgba(1, 4, 2, 0.12) 62%, rgba(1, 4, 2, 0.34) 100%),
    linear-gradient(180deg, rgba(1, 4, 2, 0.08) 0%, rgba(1, 4, 2, 0.08) 62%, rgba(1, 4, 2, 0.86) 100%);
}

.hero::after {
  background:
    radial-gradient(circle at 73% 24%, rgba(156, 255, 53, 0.11), transparent 180px),
    radial-gradient(circle at 18% 82%, rgba(156, 255, 53, 0.08), transparent 160px);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.site-header,
.hero__content,
.hero__monster,
.hero__badge {
  position: relative;
  z-index: 3;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transform: translate(-8px, -9px);
}

.brand__avatar {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 13px rgba(156, 255, 53, 0.32));
}

.brand__wordmark {
  display: grid;
  width: 332px;
  flex: 0 1 auto;
  gap: 1px;
  align-items: start;
}

.brand__wordmark-name {
  width: 332px;
}

.brand__tagline {
  display: block;
  margin-left: 28px;
  color: #f3f1e6;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.82);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__content {
  width: 552px;
  margin-top: 28px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  display: block;
  font-size: 0;
  line-height: 0;
}

.hero__headline-line {
  display: block;
  color: var(--text-main);
  white-space: nowrap;
}

.hero__headline-line--green {
  color: var(--lime);
  text-shadow: 0 0 9px rgba(156, 255, 53, 0.24), 2px 3px 0 rgba(0, 0, 0, 0.36);
}

.hero__title::after {
  display: none;
  width: 382px;
  height: 4px;
  margin-top: 15px;
  background: linear-gradient(90deg, var(--lime), rgba(156, 255, 53, 0.66) 82%, transparent);
  border-radius: 999px;
  box-shadow: 0 0 6px rgba(156, 255, 53, 0.24);
  content: "";
  transform: skewX(-12deg);
}

.hero__title-image {
  width: 489px;
  height: 208px;
  max-width: calc(100vw - 120px);
}

.hero__copy {
  width: 340px;
  margin: 34px 0 0;
  color: var(--text-main);
  font-size: 20px;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
}

.hero__actions {
  display: flex;
  gap: 23px;
  margin-top: 36px;
}

.asset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.asset-button img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: initial;
  transition: filter 180ms ease, transform 180ms ease;
}

.asset-button--primary {
  min-width: 0;
  border-color: transparent;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.asset-button--secondary {
  min-width: 0;
  background: transparent;
}

.asset-button--secondary::after {
  display: none;
}

.asset-button:hover,
.alert-actions a:hover {
  transform: translateY(-1px);
}

.asset-button:hover img {
  filter: brightness(1.07) saturate(1.06) drop-shadow(0 0 10px rgba(156, 255, 53, 0.16));
}

.asset-button:active {
  transform: translateY(0) scale(0.99);
}

.asset-button:active img {
  filter: brightness(0.98) saturate(1.02);
}

.asset-button--secondary:hover,
.alert-actions a:hover {
  border-color: rgba(156, 255, 53, 0.72);
  color: var(--lime);
}

.hero__monster {
  position: absolute;
  top: 66px;
  right: 18px;
  z-index: 2;
  width: 515px;
  max-width: none;
  opacity: 0.94;
  filter: drop-shadow(0 0 22px rgba(156, 255, 53, 0.12));
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.78) 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.78) 88%, transparent 100%);
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  right: 70px;
  bottom: 134px;
  z-index: 4;
  width: 178px;
  max-width: none;
  filter: drop-shadow(0 0 10px rgba(156, 255, 53, 0.18));
}

.site-shell>main>.feature-strip {
  min-height: 306px;
  height: auto;
  padding: 12px 60px 31px;
  background:
    radial-gradient(circle at 50% 56%, rgba(156, 255, 53, 0.04), transparent 240px),
    linear-gradient(180deg, rgba(3, 7, 4, 0.78), rgba(2, 6, 3, 0.92));
}

.site-shell>main>.alert-preview {
  min-height: 632px;
  height: auto;
  padding: 12px 60px 31px;
  background:
    radial-gradient(circle at 18% 40%, rgba(156, 255, 53, 0.045), transparent 220px),
    linear-gradient(180deg, rgba(2, 6, 3, 0.92), rgba(3, 8, 5, 0.96));
}

.site-shell>main>.benefits {
  min-height: 313px;
  height: auto;
  padding: 14px 47px 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(156, 255, 53, 0.045), transparent 230px),
    linear-gradient(180deg, rgba(3, 8, 5, 0.94), rgba(2, 5, 3, 0.96));
}

h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 0 21px;
  color: var(--lime);
  font-size: 0;
  line-height: 0;
  text-align: center;
  text-shadow: none;
}

h2::before,
h2::after {
  display: none;
}

h2::after {
  background: none;
}

.section-title-image {
  width: 854px;
  max-width: 100%;
}

.section-title-picture {
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
}

.section-title-image--mobile {
  display: none;
}

.feature-strip h2,
.alert-preview h2 {
  margin-bottom: 14px;
}

.asset-grid,
.alert-feature-list {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.asset-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  color: var(--lime);
  text-align: center;
  transition: filter 180ms ease, transform 180ms ease;
}

.feature-assets .asset-card {
  gap: 11px;
  padding: 0 18px 0;
}

.feature-assets .asset-card+.asset-card::before {
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-muted) 16%, var(--line-muted) 84%, transparent);
  content: "";
}

.feature-assets .asset-card>img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: sepia(0.35) saturate(1.25) hue-rotate(30deg) drop-shadow(0 0 9px rgba(156, 255, 53, 0.16));
  transition: filter 180ms ease, transform 180ms ease;
}

.asset-card h3,
.alert-feature-list h3 {
  color: var(--lime);
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}

.asset-card h3 {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
}

.label-image {
  max-width: 146px;
}

.asset-card p,
.alert-feature-list p {
  margin: 0;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.24;
}

.feature-assets .asset-card p {
  max-width: 150px;
}

.alert-layout {
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.alert-card {
  min-width: 0;
  padding: 12px 12px 10px;
  border: 1px solid rgba(157, 171, 112, 0.6);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 0, rgba(156, 255, 53, 0.045), transparent 170px),
    linear-gradient(180deg, rgba(8, 18, 18, 0.88), rgba(3, 9, 10, 0.92));
  box-shadow: var(--shadow-soft);
}

.alert-card__sender {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 8px;
  color: var(--lime);
  font-size: 18px;
  font-weight: 900;
}

.alert-card__sender img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.alert-card__sender-name {
  color: var(--lime);
}

.bot-pill {
  padding: 3px 8px 4px;
  border-radius: 7px;
  background: rgba(185, 192, 173, 0.24);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.signal-bubble {
  border: 1px solid var(--line-muted);
  border-radius: 11px;
  background:
    radial-gradient(circle at 12% 16%, rgba(156, 255, 53, 0.05), transparent 130px),
    rgba(1, 6, 6, 0.78);
}

.signal-message {
  display: grid;
  gap: 10px;
  padding: 14px 16px 14px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.3;
}

.signal-lead {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.signal-lead img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(156, 255, 53, 0.18));
}

.signal-message h3 {
  margin: 0 0 6px;
  color: var(--danger);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.signal-lead p {
  margin: 0;
  font-size: 19px;
  line-height: 1.38;
}

.signal-lead strong,
.signal-stats dd {
  color: #65ff72;
  font-weight: 900;
}

.signal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.signal-meta li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.signal-meta strong {
  color: var(--lime);
}

.signal-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px 18px;
  margin: 0;
}

.signal-stats div {
  display: flex;
  gap: 4px;
  align-items: baseline;
}

.signal-stats div:last-child {
  grid-column: 1 / -1;
}

.signal-stats dt,
.signal-stats dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.signal-stats dt {
  color: #ffffff;
  font-weight: 500;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-left: 4px;
}

.badge-row img {
  width: 30px;
  height: 30px;
  filter: saturate(0.9) brightness(0.94) drop-shadow(0 0 5px rgba(156, 255, 53, 0.12));
  transition: filter 180ms ease, transform 180ms ease;
}

.alert-actions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 15px;
}

.alert-actions a {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 25px 7px 12px;
  border: 1px solid rgba(146, 160, 105, 0.56);
  border-radius: 7px;
  background: rgba(4, 10, 7, 0.64);
  color: #e8e8dc;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.alert-actions a::after {
  position: absolute;
  top: 7px;
  right: 11px;
  color: rgba(220, 224, 205, 0.82);
  font-size: 15px;
  line-height: 1;
  content: ">";
}

.alert-actions a:first-child {
  border-color: rgba(166, 207, 66, 0.78);
  background: rgba(6, 15, 9, 0.68);
  color: #aad349;
}

.alert-actions a:hover {
  background: rgba(156, 255, 53, 0.075);
  box-shadow: inset 0 0 18px rgba(156, 255, 53, 0.045), 0 0 12px rgba(156, 255, 53, 0.08);
}

.alert-actions a:active {
  transform: translateY(0) scale(0.99);
}

.alert-action--full {
  grid-column: span 6;
}

.alert-action--half {
  grid-column: span 3;
}

.alert-action--third {
  grid-column: span 2;
}

.signal-metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  padding: 0 2px;
  color: rgba(185, 192, 173, 0.78);
  font-size: 16px;
}

.alert-feature-list {
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 10px;
}

.alert-feature-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  min-height: 106px;
  padding: 14px 0 15px;
  border-bottom: 1px solid var(--line-muted);
  transition: border-color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.alert-feature-list>li>img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: sepia(0.35) saturate(1.25) hue-rotate(30deg) drop-shadow(0 0 7px rgba(156, 255, 53, 0.16));
  transition: filter 180ms ease, transform 180ms ease;
}

.alert-feature-list h3 {
  display: block;
  font-family: var(--font-body);
  font-size: 0;
  font-weight: 900;
  line-height: 0;
  text-shadow: none;
}

.alert-heading-image {
  max-width: min(100%, 221px);
}

.alert-feature-list p {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.22;
}

.benefit-assets {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-assets .asset-card {
  min-height: 184px;
  gap: 11px;
  padding: 22px 15px 20px;
  border: 1px solid var(--line-muted);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 16%, rgba(156, 255, 53, 0.06), transparent 100px),
    rgba(5, 15, 10, 0.78);
  box-shadow: var(--shadow-soft);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.benefit-assets .asset-card>img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: sepia(0.35) saturate(1.2) hue-rotate(30deg) drop-shadow(0 0 8px rgba(156, 255, 53, 0.15));
  transition: filter 180ms ease, transform 180ms ease;
}

.benefit-assets .asset-card h3 {
  font-family: var(--font-body);
  font-size: 0;
  font-weight: 900;
  line-height: 0;
}

.benefit-heading-image {
  max-width: min(100%, 163px);
}

.benefit-assets .asset-card p {
  max-width: 150px;
  font-size: 18px;
  line-height: 1.24;
}

@media (hover: hover) and (pointer: fine) {
  .feature-assets .asset-card:hover,
  .benefit-assets .asset-card:hover {
    transform: translateY(-2px);
  }

  .feature-assets .asset-card:hover>img {
    filter: sepia(0.35) saturate(1.34) hue-rotate(30deg) brightness(1.08) drop-shadow(0 0 13px rgba(184, 255, 79, 0.22));
    transform: translateY(-1px);
  }

  .benefit-assets .asset-card:hover {
    border-color: rgba(184, 255, 79, 0.58);
    background:
      radial-gradient(circle at 50% 16%, rgba(156, 255, 53, 0.085), transparent 110px),
      rgba(7, 19, 12, 0.84);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.52), 0 0 20px rgba(156, 255, 53, 0.08), inset 0 0 28px rgba(156, 255, 53, 0.045);
  }

  .benefit-assets .asset-card:hover>img {
    filter: sepia(0.35) saturate(1.3) hue-rotate(30deg) brightness(1.08) drop-shadow(0 0 12px rgba(184, 255, 79, 0.22));
    transform: translateY(-1px);
  }

  .alert-feature-list li:hover {
    border-color: rgba(184, 255, 79, 0.56);
    filter: brightness(1.04);
    transform: translateX(2px);
  }

  .alert-feature-list>li:hover>img {
    filter: sepia(0.35) saturate(1.34) hue-rotate(30deg) brightness(1.08) drop-shadow(0 0 12px rgba(184, 255, 79, 0.22));
    transform: scale(1.02);
  }

  .badge-row img:hover {
    filter: saturate(1.05) brightness(1.08) drop-shadow(0 0 8px rgba(184, 255, 79, 0.22));
    transform: translateY(-1px);
  }
}

.site-shell>main>.final-cta {
  --cta-button-width: 260px;
  --cta-content-gap: 8px;
  --cta-content-y: -6px;
  --cta-title-crop-y: -25.55%;
  --cta-title-frame-height: 58px;
  --cta-title-width: 336px;
  position: relative;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) 225px;
  align-items: center;
  height: 224px;
  margin: 0;
  padding: 31px 54px 28px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(5, 17, 10, 0.76) 45%, rgba(0, 0, 0, 0.86)),
    var(--page-bg);
}

.final-cta::before {
  position: absolute;
  inset: 9px 33px 20px;
  z-index: 0;
  border: 1px solid rgba(156, 255, 53, 0.74);
  border-radius: 22px;
  background: rgba(1, 5, 3, 0.46);
  content: "";
}

.final-cta__silhouette {
  position: absolute;
  top: 9px;
  bottom: 20px;
  left: 33px;
  z-index: 1;
  width: 560px;
  height: calc(100% - 29px);
  max-width: none;
  border-radius: 20px 0 0 20px;
  object-fit: cover;
  object-position: left bottom;
  opacity: 0.92;
  filter: drop-shadow(0 0 9px rgba(156, 255, 53, 0.16));
  mix-blend-mode: screen;
  pointer-events: none;
}

.final-cta__content,
.final-cta__stamp {
  position: relative;
  z-index: 2;
}

.final-cta__content {
  grid-column: 2;
  display: grid;
  justify-items: center;
  gap: var(--cta-content-gap);
  text-align: center;
  transform: translateY(var(--cta-content-y));
}

.final-cta h2 {
  display: block;
  width: min(100%, var(--cta-title-width));
  height: var(--cta-title-frame-height);
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  color: var(--lime);
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}

.final-cta h2::before,
.final-cta h2::after {
  display: none;
}

.cta-title-image {
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  transform: translateY(var(--cta-title-crop-y));
}

.final-cta__content p {
  margin: 0;
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.2;
}

.final-cta .asset-button {
  width: var(--cta-button-width);
  aspect-ratio: 326 / 85;
  min-width: 0;
  min-height: 0;
  padding-block: 0;
  line-height: 0;
}

.final-cta .asset-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.final-cta__stamp {
  grid-column: 3;
  justify-self: center;
  width: 154px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 0 8px rgba(156, 255, 53, 0.18));
}

.site-footer {
  display: flex;
  height: 33px;
  min-height: 33px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-bottom: 0;
  background:
    linear-gradient(90deg, transparent, rgba(156, 255, 53, 0.055) 50%, transparent),
    #010302;
  color: rgba(185, 192, 173, 0.74);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.site-footer img {
  width: 21px;
  height: 21px;
  filter: drop-shadow(0 0 7px rgba(156, 255, 53, 0.22));
  transition: filter 180ms ease, transform 180ms ease;
}

.alert-actions a:focus-visible,
.asset-button:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--selection-bg);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(3, 16, 8, 0.86), 0 0 0 6px var(--focus-glow), 0 0 18px rgba(156, 255, 53, 0.24);
}

@media (hover: hover) and (pointer: fine) {
  .site-footer:hover img {
    filter: drop-shadow(0 0 10px rgba(184, 255, 79, 0.32));
    transform: translateY(-1px);
  }
}

@media (min-width: 781px) and (max-width: 900px) {
  .site-shell {
    width: min(100%, 864px);
    max-width: 864px;
  }

  .site-shell>main>.hero {
    height: 646px;
    padding: 18px 52px 35px;
  }

  .brand__avatar {
    width: 62px;
    height: 62px;
  }

  .brand__name {
    font-size: 56px;
  }

  .brand__tagline {
    font-size: 16px;
  }

  .hero__content {
    width: 430px;
    margin-top: 44px;
  }

  .hero__title-image {
    width: 490px;
    height: auto;
    max-width: calc(100vw - 104px);
  }

  h1 {
    font-size: 58px;
    line-height: 0.82;
  }

  .hero__title::after {
    width: 350px;
    margin-top: 12px;
  }

  .hero__copy {
    width: 305px;
    margin-top: 29px;
    font-size: 20px;
    line-height: 1.4;
  }

  .hero__actions {
    gap: 18px;
    margin-top: 35px;
  }

  .asset-button {
    min-height: 55px;
    font-size: 16px;
  }

  .asset-button--primary {
    min-width: 270px;
  }

  .asset-button--secondary {
    min-width: 185px;
  }

  .hero__monster {
    top: 60px;
    right: 18px;
    width: 455px;
  }

  .hero__badge {
    right: 54px;
    bottom: 76px;
    width: 160px;
  }

  .site-shell>main>.feature-strip {
    min-height: 306px;
    height: auto;
    padding: 22px 52px 34px;
  }

  .site-shell>main>.alert-preview {
    min-height: 568px;
    height: auto;
    padding: 22px 52px 28px;
  }

  .site-shell>main>.benefits {
    min-height: 313px;
    height: auto;
    padding: 22px 42px 38px;
  }

  h2 {
    margin-bottom: 17px;
    font-size: 35px;
  }

  .feature-assets .asset-card {
    padding: 6px 14px 0;
  }

  .feature-assets .asset-card>img {
    width: 74px;
    height: 74px;
  }

  .asset-card h3,
  .alert-feature-list h3 {
    font-size: 31px;
  }

  .asset-card p,
  .alert-feature-list p {
    font-size: 17px;
    line-height: 1.24;
  }

  .alert-layout {
    gap: 22px;
  }

  .alert-card {
    padding: 10px;
  }

  .signal-message {
    gap: 9px;
    padding: 12px 14px 12px;
    font-size: 16px;
  }

  .signal-lead {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .signal-lead img {
    width: 66px;
    height: 66px;
  }

  .signal-lead p,
  .signal-stats dt,
  .signal-stats dd {
    font-size: 16px;
  }

  .badge-row {
    gap: 10px;
    margin-top: 12px;
  }

  .badge-row img {
    width: 27px;
    height: 27px;
  }

  .alert-actions {
    gap: 7px;
    margin-top: 13px;
  }

  .alert-actions a {
    min-height: 34px;
    font-size: 15px;
  }

  .alert-feature-list li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 15px;
    min-height: 99px;
    padding: 12px 0 13px;
  }

  .alert-feature-list>li>img {
    width: 49px;
    height: 49px;
  }

  .alert-feature-list h3 {
    font-size: 22px;
  }

  .alert-feature-list p {
    font-size: 16px;
    line-height: 1.22;
  }

  .benefit-assets {
    gap: 16px;
  }

  .benefit-assets .asset-card {
    min-height: 166px;
    padding: 19px 12px 17px;
  }

  .benefit-assets .asset-card>img {
    width: 58px;
    height: 58px;
  }

  .benefit-assets .asset-card h3 {
    font-size: 19px;
  }

  .benefit-assets .asset-card p {
    font-size: 16px;
  }

  .site-shell>main>.final-cta {
    --cta-button-width: 230px;
    --cta-content-gap: 7px;
    --cta-content-y: -4px;
    --cta-title-frame-height: 52px;
    --cta-title-width: 304px;
    grid-template-columns: 218px minmax(0, 1fr) 200px;
    height: 201px;
    padding: 27px 48px 24px;
  }

  .final-cta::before {
    inset: 17px 29px 18px;
  }

  .final-cta__silhouette {
    top: 8px;
    bottom: 18px;
    left: 29px;
    width: 470px;
    height: calc(100% - 26px);
  }

  .final-cta h2 {
    font-size: 40px;
  }

  .final-cta__content p {
    font-size: 16px;
  }

  .final-cta .asset-button {
    width: var(--cta-button-width);
    min-width: 0;
    min-height: 0;
  }

  .final-cta__stamp {
    width: 137px;
  }

  .site-footer {
    height: 29px;
    min-height: 29px;
    font-size: 15px;
  }
}

/* Narrow tablet edge case: fixes the 781px-wide compressed desktop layout. */
@media (min-width: 781px) and (max-width: 820px) {
  .site-shell>main>.hero {
    height: 646px;
  }

  .site-shell>main>.feature-strip {
    min-height: 316px;
  }

  .site-shell>main>.alert-preview {
    min-height: 624px;
  }

  .site-shell>main>.benefits {
    min-height: 326px;
  }

  .site-shell>main>.final-cta {
    --cta-button-width: 230px;
    --cta-content-y: -2px;
    --cta-title-frame-height: 52px;
    --cta-title-width: 300px;
    grid-template-columns: 210px minmax(300px, 1fr) 112px;
    height: 218px;
    padding: 30px 42px 26px;
  }

  .final-cta::before {
    inset: 16px 26px 17px;
  }

  .final-cta__silhouette {
    top: 16px;
    bottom: 17px;
    left: 26px;
    width: 450px;
    height: calc(100% - 33px);
  }

  .final-cta__content {
    gap: 8px;
    transform: translateY(-2px);
  }

  .final-cta__content p {
    font-size: 17px;
  }

  .final-cta .asset-button {
    width: var(--cta-button-width);
    min-width: 0;
  }

  .final-cta__stamp {
    width: 108px;
    align-self: end;
    justify-self: end;
    margin-bottom: 6px;
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: min(100%, 864px);
    border-radius: 0;
  }

  .site-shell>main>.hero,
  .site-shell>main>.feature-strip,
  .site-shell>main>.alert-preview,
  .site-shell>main>.benefits,
  .site-shell>main>.final-cta {
    height: auto;
  }

  .site-shell>main>.hero {
    min-height: 650px;
    padding: 20px 32px 48px;
  }

  .brand__avatar {
    width: 58px;
    height: 58px;
  }

  .brand__wordmark,
  .brand__wordmark-name {
    width: 296px;
  }

  .brand__tagline {
    margin-left: 25px;
    font-size: 16px;
  }

  .brand__name {
    font-size: 44px;
  }

  .hero__content {
    width: min(100%, 430px);
    margin-top: 68px;
  }

  .hero__title-image {
    width: min(100%, 500px);
    height: auto;
  }

  h1 {
    font-size: 52px;
  }

  .hero__copy {
    width: min(100%, 330px);
    font-size: 20px;
    line-height: 1.44;
  }

  .hero__monster {
    top: 138px;
    right: -20px;
    width: 365px;
    opacity: 0.58;
  }

  .hero__badge {
    right: 34px;
    bottom: 54px;
    width: 150px;
  }

  .site-shell>main>.feature-strip,
  .site-shell>main>.alert-preview,
  .site-shell>main>.benefits {
    padding-right: 32px;
    padding-left: 32px;
  }

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

  .feature-assets {
    row-gap: 32px;
  }

  .feature-assets .asset-card+.asset-card::before {
    display: none;
  }

  .feature-assets .asset-card:nth-child(even)::before {
    display: block;
  }

  .alert-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .alert-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }

  .site-shell>main>.final-cta {
    --cta-button-width: 260px;
    --cta-content-y: 0px;
    --cta-title-frame-height: 56px;
    --cta-title-width: 326px;
    grid-template-columns: minmax(0, 1fr);
    min-height: 286px;
    padding: 42px 32px;
  }

  .final-cta::before {
    inset: 18px 24px;
  }

  .final-cta__silhouette {
    top: 18px;
    right: 24px;
    bottom: 18px;
    left: 24px;
    width: calc(100% - 48px);
    height: calc(100% - 36px);
    object-fit: cover;
    opacity: 0.34;
  }

  .final-cta__content,
  .final-cta__stamp {
    grid-column: 1;
  }

  .final-cta__stamp {
    width: 150px;
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  html {
    scrollbar-gutter: auto;
  }

  .site-shell>main>.hero {
    min-height: 690px;
    padding: 16px 20px 42px;
  }

  .brand {
    gap: 9px;
  }

  .brand__avatar {
    width: 46px;
    height: 46px;
  }

  .brand__wordmark,
  .brand__wordmark-name {
    width: 190px;
  }

  .brand__tagline {
    margin-left: 16px;
    font-size: 11px;
  }

  .brand__name {
    font-size: 34px;
  }

  .hero__content {
    margin-top: 64px;
  }

  .hero__title-image {
    width: min(100%, 489px);
    max-width: 100%;
  }

  h1 {
    font-size: 39px;
  }

  .hero__headline-line {
    white-space: normal;
  }

  .hero__title::after {
    width: min(100%, 280px);
  }

  .hero__actions {
    display: grid;
    width: min(100%, 285px);
    gap: 17px;
  }

  .asset-button,
  .asset-button--primary,
  .asset-button--secondary {
    width: 100%;
    min-width: 0;
  }

  .hero__monster {
    top: auto;
    right: -86px;
    bottom: -110px;
    width: 390px;
    opacity: 0.32;
  }

  .hero__badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 132px;
    margin-top: 30px;
  }

  h2 {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    font-size: 29px;
  }

  .section-title-image {
    width: clamp(300px, 92vw, 430px);
    max-width: 100%;
    height: auto;
  }

  .section-title-image--desktop {
    display: none;
  }

  .section-title-image--mobile {
    display: block;
  }

  h2::before,
  h2::after {
    display: none;
  }

  .feature-assets,
  .benefit-assets,
  .alert-feature-list {
    grid-template-columns: 1fr;
  }

  .feature-assets .asset-card:nth-child(even)::before {
    display: none;
  }

  .feature-assets .asset-card+.asset-card {
    border-top: 1px solid var(--line-soft);
    padding-top: 24px;
  }

  .signal-lead {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .signal-lead img {
    width: 74px;
    height: 74px;
  }

  .signal-stats {
    grid-template-columns: 1fr;
  }

  .signal-stats div:last-child {
    grid-column: auto;
  }

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

  .alert-action--full {
    grid-column: 1 / -1;
  }

  .alert-action--half,
  .alert-action--third {
    grid-column: auto;
  }

  .site-shell>main>.feature-strip,
  .site-shell>main>.alert-preview,
  .site-shell>main>.benefits {
    padding: 34px 20px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .final-cta__content {
    width: 100%;
    min-width: 0;
    gap: 14px;
    transform: none;
  }

  .final-cta__content p {
    max-width: 240px;
    line-height: 1.24;
    text-wrap: balance;
  }

  .final-cta .asset-button {
    min-width: 0;
    width: min(100%, 250px);
  }

  .site-footer {
    height: auto;
    min-height: 46px;
    flex-wrap: wrap;
    padding: 12px 18px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .site-shell>main>.hero {
    min-height: 650px;
  }

  .hero__content {
    margin-top: 48px;
  }

  h1 {
    font-size: 32px;
  }

  .hero__copy {
    font-size: 18px;
  }

  .brand__name {
    font-size: 28px;
  }

  .brand__wordmark,
  .brand__wordmark-name {
    width: 170px;
  }

  .brand__tagline {
    margin-left: 14px;
    font-size: 10px;
  }

  .hero__monster {
    right: -70px;
    bottom: -82px;
    width: 335px;
  }

  .hero__badge {
    width: 118px;
    margin-top: 24px;
  }

  .asset-button {
    min-height: 54px;
    font-size: 16px;
  }

  .site-shell>main>.final-cta {
    min-height: auto;
    padding: 36px 20px 42px;
  }

  .final-cta::before {
    inset: 18px 20px;
  }

  .final-cta__stamp {
    display: none;
  }

  .asset-card p,
  .alert-feature-list p,
  .benefit-assets .asset-card p {
    font-size: 17px;
  }

  .alert-actions a {
    min-height: 40px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
