:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(10, 10, 10, 0.28);
  --panel-strong: rgba(8, 8, 8, 0.5);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f3eee8;
  --text-soft: rgba(243, 238, 232, 0.76);
  --text-muted: rgba(243, 238, 232, 0.52);
  --accent: #d81d3c;
  --accent-deep: #8b0e22;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
  --font-display: 'Oswald', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(216, 29, 60, 0.12), transparent 22%),
    linear-gradient(180deg, #0b0b0b 0%, #040404 100%);
  color: var(--text);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
}

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

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

.page-shell {
  min-height: 100vh;
  padding: clamp(14px, 2vw, 24px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - clamp(28px, 4vw, 48px));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  background: #080808;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% 20%;
  filter: saturate(0.96) contrast(1.02) brightness(0.78);
  transform: scale(1.015);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.86) 0%, rgba(4, 4, 4, 0.68) 28%, rgba(4, 4, 4, 0.18) 54%, rgba(4, 4, 4, 0.24) 100%),
    radial-gradient(circle at 18% 28%, rgba(216, 29, 60, 0.1), transparent 24%);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.88) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(26px, 3.2vw, 42px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: clamp(184px, 16vw, 248px);
  height: auto;
  flex: 0 0 auto;
  mix-blend-mode: screen;
  filter: contrast(1.06) saturate(1.02) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.eyebrow {
  color: rgba(243, 238, 232, 0.9);
  font-size: 1.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.62rem 1.12rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.42);
  color: rgba(243, 238, 232, 0.94);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content {
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(100%, 41rem);
  display: grid;
  gap: 1.15rem;
  align-self: center;
  padding-top: 0;
  margin-top: -2.5rem;
}

.eyebrow-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: none;
  opacity: 0.84;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(6rem, 10.2vw, 9.9rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgb(206, 6, 37);
  text-transform: uppercase;
  text-wrap: balance;
  transform: translateY(0.9rem);
  animation: none;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  h1 {
    background: linear-gradient(
      100deg,
      rgb(206, 6, 37) 0%,
      rgb(206, 6, 37) 44%,
      rgba(255, 247, 247, 0.98) 50%,
      rgb(206, 6, 37) 56%,
      rgb(206, 6, 37) 100%
    );
    background-size: 220% 100%;
    background-position: 120% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-shine 7.5s linear infinite;
  }
}

h1 span {
  color: var(--accent);
}

.lead {
  max-width: 28rem;
  margin: 1.9rem 0 0;
  color: var(--text-soft);
  font-size: 1.7rem;
  line-height: 1.5;
}

.support-copy {
  margin: 0.3rem 0 0;
  color: rgba(243, 238, 232, 0.9);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.55rem;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 1.35rem 1.9rem;
  border-radius: 999px;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.cta-primary {
  border: 1px solid rgba(216, 29, 60, 0.52);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff7f8;
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.18);
  color: var(--text);
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-1px);
}


.closing-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0 0;
}

.closing-meta {
  color: rgba(243, 238, 232, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(243, 238, 232, 0.44);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.powered-logo {
  width: 28px;
  height: auto;
  opacity: 0.78;
  filter: saturate(0.58) brightness(0.92);
  transform: scale(1.38);
  transform-origin: center;
}

@keyframes title-shine {
  0% {
    background-position: 130% 50%;
  }

  100% {
    background-position: -130% 50%;
  }
}

@media (max-width: 1024px) {
  .hero-photo {
    object-position: 68% 20%;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(4, 4, 4, 0.72) 0%, rgba(4, 4, 4, 0.4) 34%, rgba(4, 4, 4, 0.9) 100%),
      radial-gradient(circle at 18% 20%, rgba(216, 29, 60, 0.14), transparent 28%);
  }

  .hero-content {
    align-items: flex-end;
  }

  .hero-copy {
    width: min(100%, 36rem);
    padding-top: 0;
    margin-top: 0;
  }

  .eyebrow-copy,
  h1 {
    transform: none;
  }
}

@media (max-width: 768px) {
  .page-shell {
    padding: 10px;
  }

  .hero {
    min-height: calc(100vh - 20px);
    border-radius: 24px;
  }

  .hero-photo {
    object-position: 76% 18%;
    filter: saturate(0.93) contrast(1.03) brightness(0.68);
    transform: none;
  }

  .hero-backdrop {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.8) 35%,
      rgba(0, 0, 0, 0.5) 60%,
      rgba(0, 0, 0, 0.16) 80%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .hero-inner {
    gap: 2.2rem;
    padding: 22px 22px 24px;
  }

  .topbar {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0.55rem;
  }

  .brand-lockup {
    gap: 0.6rem;
    min-width: 0;
  }

  .brand-logo {
    width: 72px;
  }

  .status-pill {
    min-height: 26px;
    flex: 0 0 auto;
    padding: 0.24rem 0.48rem;
    font-size: 0.48rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    opacity: 0.82;
  }

  .hero-copy {
    width: min(100%, 19rem);
    gap: 0;
    margin-top: 2.2rem;
    align-self: center;
  }

  h1 {
    max-width: 7.1ch;
    font-size: clamp(3.45rem, 12vw, 4.95rem);
    line-height: 0.95;
    letter-spacing: -0.018em;
    color: rgba(255, 255, 255, 0.98);
  }

  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    h1 {
      background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.98) 44%,
        rgb(206, 6, 37) 50%,
        rgba(255, 255, 255, 0.98) 56%,
        rgba(255, 255, 255, 0.98) 100%
      );
      background-size: 220% 100%;
      background-position: 120% 50%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: title-shine 7.5s linear infinite;
    }
  }

  .eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    line-height: 1.15;
  }

  .eyebrow-copy {
    color: rgb(230, 18, 45);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    opacity: 0.96;
    white-space: normal;
    transform: translateY(-2.7rem);
    margin-top: 0;
    margin-bottom: 1.15rem;
    filter: saturate(1.18) brightness(1.08);
  }

  .lead {
    max-width: 20rem;
    margin-top: 1.7rem;
    font-size: 0.98rem;
    line-height: 1.64;
  }

  .support-copy {
    margin-top: 1.35rem;
    font-size: 0.9rem;
    opacity: 0.78;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-top: 1.35rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1.1rem;
    border-radius: 15px;
    font-size: 0.8rem;
  }

  .status-pill {
    min-height: 31px;
    padding: 0.38rem 0.72rem;
    font-size: 0.58rem;
    color: rgba(243, 238, 232, 0.64);
  }

  .closing-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 0.7rem;
  }

  .closing-meta,
  .powered-by {
    font-size: 0.58rem;
    line-height: 1.5;
  }
}
