@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #080a0f;
  --bg-soft: #101522;
  --panel: rgba(13, 18, 30, 0.92);
  --panel-2: rgba(20, 27, 42, 0.9);
  --text: #f2f5fb;
  --muted: #b8c0d6;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 10% 12%, rgba(224, 25, 22, 0.23), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(31, 158, 219, 0.2), transparent 28%),
    radial-gradient(circle at 58% 100%, rgba(122, 201, 67, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

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

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

#app {
  min-height: 100vh;
  padding: 28px;
}

.page-shell {
  min-height: calc(100vh - 56px);
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px 10px 16px 4px;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.eyebrow {
  width: fit-content;
  margin: 8px 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fbff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  width: min(240px, 72%);
  height: auto;
  margin: 0 0 10px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.wordmark-wrap {
  max-width: 100%;
  overflow: hidden;
}

.gss-logo {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 8px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 18px);
  padding: 0;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(1.5rem, 4.2vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: 1.2px;
  font-weight: 900;
  text-transform: uppercase;
}

.word {
  display: inline-block;
}

.gay {
  background: linear-gradient(90deg, #e01916 0%, #f04a1f 55%, #ff7a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sober {
  color: #ffffff;
}

.strong {
  background: linear-gradient(90deg, #ffd51f 0%, #7ac943 28%, #1f9edb 62%, #8e44cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider {
  height: clamp(34px, 4.6vw, 68px);
  width: 2px;
  background: #bfbfbf;
  opacity: 0.9;
}

h1 {
  margin: 8px 0 0;
  max-width: 24ch;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  font-weight: 800;
  text-transform: uppercase;
}

.lead {
  margin: 14px 0 0;
  max-width: 60ch;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.65;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #e01916, #ff7a1f 45%, #ffd51f 100%);
  color: #110f0b;
  box-shadow: 0 14px 28px rgba(224, 25, 22, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f8ff;
}

.microcopy {
  margin: 18px 0 0;
  font-size: 0.85rem;
  color: #a6b1ca;
  letter-spacing: 0.03em;
}

.hero-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(255, 122, 31, 0.15), rgba(31, 158, 219, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transform-origin: center;
  /* Focal crop guidance for assets/michaeltaylor.png:
     Useful subject zone is roughly x 18-83% and y 24-89%.
     Keep faces/chests/hands prioritized and allow feet/foreground/bridge to crop out. */
  object-position: 50% 42%;
}

figcaption {
  padding: 0 6px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #aeb7cd;
}

@media (max-width: 960px) {
  #app {
    padding: 14px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .hero-copy {
    padding: 10px 4px 6px;
  }

  .hero-media {
    padding: 0 6px 8px;
  }

  .photo-frame {
    aspect-ratio: 3 / 4;
  }

  .photo-frame img {
    object-position: 50% 42%;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: min(190px, 60%);
  }

  .gss-logo {
    gap: 6px;
    letter-spacing: 0.7px;
    padding: 8px 8px;
    font-size: clamp(1.02rem, 7.8vw, 1.8rem);
  }

  .divider {
    width: 1px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.14rem, 5vw, 1.45rem);
  }

  .button {
    width: 100%;
  }

  .photo-frame {
    aspect-ratio: 1 / 1;
  }

  .photo-frame img {
    object-position: 50% 40%;
  }
}