:root {
  --bg: #030403;
  --panel: rgba(10, 13, 11, 0.84);
  --panel-strong: rgba(4, 6, 5, 0.94);
  --line: rgba(151, 234, 41, 0.25);
  --line-soft: rgba(255, 255, 255, 0.12);
  --text: #f8f8f1;
  --muted: #b8bdb4;
  --green: #9bf22d;
  --cyan: #00d9ff;
  --yellow: #f5c542;
  --shadow: rgba(151, 234, 41, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 14%, rgba(151, 234, 41, 0.14), transparent 28rem),
    radial-gradient(circle at 16% 26%, rgba(0, 217, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, #000 0%, var(--bg) 60%, #000 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 12px clamp(18px, 4vw, 72px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 1px solid rgba(151, 234, 41, 0.28);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 16%;
  box-shadow: 0 0 24px rgba(151, 234, 41, 0.16);
}

.brand-name {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 1.7vw, 1.72rem);
  font-weight: 800;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 42px);
  color: #e8e8e3;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 18px var(--shadow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
  content: "";
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta {
  padding: 0 26px;
  border: 1px solid var(--green);
  color: var(--green);
}

.button {
  max-width: 100%;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-primary {
  border-color: var(--green);
  background: rgba(151, 234, 41, 0.09);
  color: var(--green);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(151, 234, 41, 0.18);
}

.button-icon {
  color: var(--green);
  font-size: 0.76rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  min-height: calc(100vh - 84px);
  padding: clamp(52px, 7vw, 104px) clamp(22px, 6vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(720px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(0.78rem, 1.2vw, 0.96rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 6.4vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.8);
}

h1::after {
  display: block;
  width: min(420px, 86vw);
  height: 3px;
  margin-top: 26px;
  background: linear-gradient(90deg, #e01826, #ffc400, var(--green), var(--cyan), #e700ff);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.75);
  content: "";
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-text,
.strip-copy p,
.submit-band p {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.62;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: minmax(360px, 52vh);
  gap: 18px;
  min-width: 0;
}

.hero-visual::before {
  position: absolute;
  inset: 12% 3% 4%;
  z-index: -1;
  background: radial-gradient(circle, rgba(151, 234, 41, 0.2), transparent 64%);
  filter: blur(32px);
  content: "";
}

.visual-panel {
  min-height: 360px;
  border: 1px solid rgba(151, 234, 41, 0.18);
  border-radius: 8px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)), url("ChatGPT Image May 16, 2026, 08_35_08 PM.png");
  background-size: auto 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.72);
  overflow: hidden;
}

.visual-plane {
  background-position: 8% center;
}

.visual-cards {
  background-position: 94% center;
}

.video-card {
  position: absolute;
  right: clamp(16px, 4vw, 42px);
  bottom: clamp(18px, 5vw, 52px);
  display: grid;
  gap: 8px;
  width: min(340px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(151, 234, 41, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.76);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.video-label {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-card strong {
  font-size: 1.2rem;
  line-height: 1.28;
}

.video-card a {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.youtube-band,
.submit-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px) 54px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(151, 234, 41, 0.1), rgba(255, 255, 255, 0.035));
}

.youtube-band > *,
.submit-band > *,
.content-strip > * {
  min-width: 0;
}

.youtube-band h2,
.submit-band h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.content-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px) 54px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
  overflow: hidden;
}

.strip-image {
  min-height: 360px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.48)), url("ChatGPT Image May 16, 2026, 08_26_22 PM.png");
  background-position: 72% center;
  background-size: cover;
}

.strip-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 62px);
  background: rgba(0, 0, 0, 0.78);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px) 70px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
  overflow: hidden;
}

.feature-grid article {
  min-height: 240px;
  padding: clamp(24px, 3.4vw, 42px);
  background: rgba(0, 0, 0, 0.76);
}

.feature-number {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  text-shadow: 0 0 22px var(--shadow);
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.submit-band {
  display: block;
  text-align: center;
}

.submit-band p {
  margin: 0 auto 26px;
}

.social-section {
  padding: 28px clamp(22px, 6vw, 96px) 88px;
  text-align: center;
}

.social-section h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 380px));
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}

.social-card {
  display: grid;
  gap: 8px;
  min-height: 172px;
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-card span {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-card strong {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-card small {
  color: var(--muted);
  font-size: 0.98rem;
}

.primary-social {
  border-color: rgba(151, 234, 41, 0.5);
  box-shadow: 0 0 48px rgba(151, 234, 41, 0.1);
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 0 36px rgba(151, 234, 41, 0.16);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 72px);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  background: #000;
}

.site-footer img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.site-footer p {
  flex: 1;
  margin: 0;
}

.site-footer a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .content-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    min-height: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 1.24rem;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 20px;
  }

  .hero {
    padding: 32px 18px 44px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(2.78rem, 12.6vw, 3.6rem);
    line-height: 0.95;
  }

  .hero-actions,
  .youtube-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-align: center;
    white-space: normal;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: 260px;
  }

  .visual-panel {
    min-height: 260px;
    background-size: auto 220%;
  }

  .visual-plane {
    background-position: 4% center;
  }

  .visual-cards {
    display: none;
  }

  .video-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-text,
  .strip-copy p,
  .submit-band p {
    font-size: 1rem;
  }

  .strip-image {
    min-height: 250px;
  }

  .feature-grid,
  .social-links {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 190px;
  }

  .site-footer {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .site-footer p {
    flex: 0 0 100%;
    order: 2;
  }
}
