/* These reusable colors make the design easy to change later. */
:root {
  --black: #080808;
  --white: #ffffff;
  --green: #39ff14;
  --gold: #ffd700;
  --soft-white: #d8d8d8;
  --heading-font: "Cinzel", Georgia, "Times New Roman", serif;
  --body-font: Arial, Helvetica, sans-serif;
}

/* This removes browser defaults so spacing is predictable. */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: var(--body-font);
  line-height: 1.6;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 1.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-decoration: none;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand span {
  max-width: 190px;
  text-shadow: 0 1px 0 #555555, 0 2px 6px rgba(0, 0, 0, 0.9);
}

.brand small {
  display: block;
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.menu {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.menu a {
  border-bottom: 2px solid transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding-bottom: 0.35rem;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.menu a:hover,
.menu a:focus,
.menu a.active {
  border-color: var(--green);
  color: var(--green);
}

.menu-phone {
  border-left: 1px solid #3d3d3d;
  padding-left: 1.5rem;
}

.menu-phone a {
  color: var(--gold);
  font-size: 0.82rem;
  white-space: nowrap;
}

.hero {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 4rem 0 7rem;
  text-align: center;
}

.eyebrow {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero > .eyebrow {
  background: linear-gradient(90deg, #fff3a5 0%, var(--gold) 28%, #b8ff82 52%, var(--green) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--green);
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.22em;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.22);
}

h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 1.12;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.4rem 1rem 0.55rem;
  border-left: 1px solid rgba(255, 215, 0, 0.65);
  border-right: 1px solid rgba(255, 215, 0, 0.65);
  animation: fade-up 0.8s ease-out both;
}

.heading-intro {
  display: block;
  background: linear-gradient(180deg, #ffffff 8%, #ffffff 45%, #c9c9c9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.35px rgba(255, 255, 255, 0.62);
  font-size: 0.56em;
  letter-spacing: 0.15em;
  text-shadow:
    0 1px 0 #ffffff,
    0 3px 0 #686868,
    0 6px 10px rgba(0, 0, 0, 0.92),
    0 0 14px rgba(255, 255, 255, 0.2);
}

.heading-brand {
  display: block;
  margin-top: 0.2em;
  background: linear-gradient(180deg, #edffbd 0%, #91ff3d 20%, #39ff14 48%, #22d600 72%, #118500 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--green);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.9px rgba(255, 215, 0, 0.92);
  letter-spacing: 0.012em;
  text-shadow:
    0 1px 0 #fff8b8,
    0 2px 0 #d5ae00,
    0 4px 0 #7a6200,
    0 6px 0 #075c00,
    0 9px 14px rgba(0, 0, 0, 0.96),
    0 0 12px rgba(57, 255, 20, 0.38),
    0 0 24px rgba(57, 255, 20, 0.2);
}

/* Fallback depth for browsers that do not support gradient-filled text. */
@supports not (-webkit-background-clip: text) {
  .heading-intro {
    color: var(--white);
  }

  .heading-brand {
    color: var(--green);
  }
}

.intro {
  color: var(--soft-white);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 2rem auto;
  max-width: 800px;
}

.video-frame {
  position: relative;
  max-width: 900px;
  margin: 2.5rem auto 0;
  border: 2px solid var(--gold);
  box-shadow: 12px 12px 0 rgba(57, 255, 20, 0.75);
  background: #000000;
  line-height: 0;
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(78px, 10vw, 112px);
  height: clamp(78px, 10vw, 112px);
  border: 4px solid var(--gold);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.65);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.video-play-button span {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-left: 0.12em;
}

.video-play-button:hover,
.video-play-button:focus-visible {
  box-shadow: 0 0 38px rgba(57, 255, 20, 0.9);
  transform: translate(-50%, -50%) scale(1.07);
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.video-play-button[hidden] {
  display: none;
}

.button {
  display: inline-block;
  background: var(--green);
  border: 2px solid var(--green);
  color: var(--black);
  font-weight: 800;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus {
  background: transparent;
  color: var(--green);
  transform: translateY(-2px);
}

.video-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.button-gold {
  background: var(--black);
  border-color: var(--gold);
  color: var(--gold);
}

.button-gold:hover,
.button-gold:focus {
  background: var(--gold);
  color: var(--black);
}

.notice {
  color: var(--green);
  min-height: 1.5rem;
  margin-top: 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 0 0 7rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border: 1px solid rgba(255, 215, 0, 0.65);
  background: linear-gradient(145deg, #151515, #090909);
  padding: 2rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  animation: fade-up 0.7s ease-out both;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55px;
  height: 3px;
  background: var(--gold);
}

.feature-card:nth-child(2) {
  animation-delay: 0.12s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.24s;
}

.feature-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(57, 255, 20, 0.14);
  transform: translateY(-6px);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 1.65rem;
  font-weight: 800;
}

.feature-card h2,
.about h2 {
  font-family: var(--heading-font);
  line-height: 1.15;
}

.feature-card h2 {
  color: var(--green);
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.feature-card p,
.about > p:not(.eyebrow) {
  color: var(--soft-white);
}

.about {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 6rem 0;
  border-top: 1px solid #333333;
}

.about h2 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
}

.about > p:not(.eyebrow) {
  max-width: 850px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.contact {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 6rem 0;
  border-top: 1px solid #333333;
}

.contact h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact > p:not(.eyebrow) {
  color: var(--soft-white);
  margin-bottom: 1.5rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  min-width: 0;
}

.domain,
.phone-link,
.site-footer a {
  color: var(--gold);
  display: inline-block;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
}

.domain:hover,
.domain:focus,
.phone-link:hover,
.phone-link:focus,
.site-footer a:hover,
.site-footer a:focus {
  color: var(--green);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(1180px, 90%);
  margin: 0 auto;
  border-top: 1px solid #333333;
  color: var(--soft-white);
  font-size: 0.85rem;
  padding: 2rem 0;
}

.footer-brand {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.5rem;
  min-width: 0;
}

.site-footer > p {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid #252525;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* On smaller screens, the menu wraps and the welcome section stacks. */
@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .menu {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }

  .menu-phone {
    width: 100%;
    border-left: 0;
    border-top: 1px solid #3d3d3d;
    padding: 0.75rem 0 0;
  }

  .hero {
    padding: 3rem 0 5rem;
  }

  .hero > .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  h1 {
    letter-spacing: 0;
    padding-inline: 0.65rem;
  }

  .heading-brand {
    -webkit-text-stroke-width: 0.55px;
  }

  .heading-intro {
    letter-spacing: 0.11em;
  }

  .video-frame {
    margin-top: 2rem;
    box-shadow: 7px 7px 0 rgba(57, 255, 20, 0.75);
  }

  .features {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-direction: column;
  }

  .site-footer > p {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  h1,
  .feature-card {
    animation: none;
  }

  .button,
  .feature-card,
  .video-play-button {
    transition: none;
  }
}
