:root {
  --bg: #080808;
  --card: #141414;
  --card2: #1d1d1d;
  --text: #f6f6f6;
  --muted: #b7b7b7;
  --yellow: #ffe100;
  --line: #2a2a2a;
  --red: #ff3b30;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 9px 12px;
  background: var(--yellow);
  color: #080808;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.topbar a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 6vw;
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.brand {
  color: var(--yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 34px;
  letter-spacing: 1px;
}

.navlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #ddd;
  font-weight: 700;
}

.navlinks a:hover {
  color: var(--yellow);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 70px 6vw 45px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: #080808;
  font-weight: 900;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.86;
  letter-spacing: 1px;
}

.hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.buttons,
.article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buttons {
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 2px solid var(--yellow);
  border-radius: 14px;
  background: var(--yellow);
  color: #070707;
  font-weight: 900;
}

.btn.secondary {
  background: transparent;
  color: var(--yellow);
}

.feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, #191919, #0e0e0e);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.feature img,
.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

.feature .pad,
.card .body {
  padding: 18px;
}

.feature h2 {
  margin: 14px 0 10px;
  font-size: 36px;
  line-height: 1;
}

.feature p,
.card p,
.small {
  color: var(--muted);
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #080808;
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 40px 6vw;
}

.section h2 {
  margin: 0 0 20px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 42px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-head p {
  margin: 0;
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.card h3 {
  margin: 10px 0 8px;
  font-size: 23px;
  line-height: 1.1;
}

.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #101010;
  color: #ddd;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.emailbox {
  padding: 28px;
  border-radius: 26px;
  background: var(--yellow);
  color: #070707;
}

.emailbox h2 {
  color: #070707;
}

.emailbox input {
  width: 100%;
  margin: 10px 0;
  padding: 15px;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
}

.emailbox button {
  padding: 14px 17px;
  border: 0;
  border-radius: 12px;
  background: #080808;
  color: #fff;
  font-weight: 900;
}

.article {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 6vw;
}

.article h1 {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
}

.article p,
.article li {
  color: #ddd;
  font-size: 19px;
  line-height: 1.65;
}

.video-embed {
  aspect-ratio: 16 / 9;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #000;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  background: #000 center / cover no-repeat;
}

.video-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82));
}

.video-fallback__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px;
}

.video-fallback__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #080808;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.video-fallback__content h3 {
  margin: 0 0 10px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
}

.video-fallback__content p {
  margin: 0 0 16px;
  max-width: 600px;
  color: #e0e0e0;
}

.video-fallback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.video-fallback__actions .btn {
  min-width: 170px;
}

.callout {
  margin: 24px 0;
  padding: 20px;
  border-left: 8px solid var(--yellow);
  border-radius: 14px;
  background: #151515;
}

.callout a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-links {
  margin-top: 28px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 35px 6vw;
  border-top: 1px solid var(--line);
  color: #aaa;
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.small {
  font-size: 14px;
}

.product {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 14px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #151515;
}

.placeholder {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background: #242424;
  color: var(--yellow);
  font-weight: 900;
}

.form {
  max-width: 650px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #141414;
}

.form input,
.form textarea {
  width: 100%;
  margin: 8px 0;
  padding: 14px;
  border: 1px solid #333;
  border-radius: 12px;
  background: #080808;
  color: #fff;
}

.form button {
  padding: 14px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  font-weight: 900;
}

@media (max-width: 850px) {
  .hero,
  .grid,
  .split {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 45px;
  }

  .brand {
    font-size: 30px;
  }
}
