:root {
  --input-background: #ffffff;
  --form-line: #ffffff;
  --label-title: #181A1B;
  --label-input: #181A1B;
  --input-color: #ffffff;
  --border-color: #ffffff;
  --button-color: #000000;
  --button-text-color: #ffffff;
  --bg: #ffffff;
  --surface: #F7F7F7;
  --surface-soft: #efefeb;
  --text: #1f1f1b;
  --muted: #6d6f68;
  --line: #EFEFEF;
  --accent: #435450;
  --accent-dark: #435450;
  --footer: #435450;
  --radius: 22px;
  --container: 1920px;
  --Light-lines: #EFEFEF;
  --Dark-Grey: #666;
}

html,
body {
  overflow-x: hidden;
  padding-right: 0 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.text-transform-none {
  text-transform: none;
}

.bg-grey {
  background-color: var(--Light-lines);
}

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

.container {
  max-width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.header-inner {
  width: 100%;
  min-height: 78px;
  display: block;
  padding-top: 1rem;
}

.brand {
  height: 64px;
  padding: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  justify-content: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-top: 1px solid var(--Light-lines);
  padding: 2rem 0;
}

.main-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 120;
  margin: 5px 0;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 0.28s ease, top 0.28s ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  transform: translateX(-50%) scaleX(0);
}

.menu-toggle.is-open span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  background-color: var(--surface);
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--surface);
  overflow: hidden;
}

.hero-copy {
  padding: clamp(220px, 5vw, 68px) 1rem 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0.5em 0;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--text);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 85.714%;
  font-weight: 400;
}

.lead {
  font-size: 1.2rem;
  max-width: 66ch;
  margin-bottom: 0;
}

.media-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
}

.media-placeholder img {
  height: 100%;
  object-fit: cover;
}

.form-section, .media-section {
  background-color: var(--surface);
}

.steps,
.form-section,
.prize-section,
.rules-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.steps h2,
.section-heading h2,
.prize-copy h2,
.rules-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.25;
  font-weight: 400;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.step-card {
  padding: 28px;
}

.step-number {
  display: inline-block;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  font-weight: normal;
}

.step-card p,
.section-heading p,
.rules-inner p,
.note,
.prize-copy p {
  margin: 0;
  color: var(--text);
}

.section-heading p {
  font-size: 1.5rem;
}

.contest-form {
  margin-top: 28px;
  background: var(--surface);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.full {
  grid-column: 1 / -1;
}

.small-gap {
  margin-top: 34px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: normal;
  letter-spacing: 0.03em;
  border: none;
}

.btn-primary {
  background: #000;
  color: #fff;
  width: min(100%, 340px);
}

.btn-secondary {
  background: var(--accent);
  color: #fff;
  min-width: 250px;
}

.prize-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 70px 0;
}

.logo-placeholder {
  min-height: 160px;
}

.wide-media {
  min-height: clamp(280px, 48vw, 620px);
  margin-top: 30px;
}

.rules-inner {
  display: flex;
  justify-content: center;
  align-items: normal;
  flex-direction: column;
}

.rules-inner .btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 18px;
}

.note {
  margin-top: 28px;
  font-size: 0.9rem;
}

.video-wrapper {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

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

.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  
}

.footer-top {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  color: var(--text);
}

.footer-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.badge {
  padding: 10px 14px;
}

.badge p {
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.11px;
  margin: 10px 0;
}

.badge p a {
  text-decoration: underline;
}

.badge p a:hover {
  text-decoration: none;
} 

.footer-bottom {
  background: var(--footer);
  padding: 18px 0;
  font-size: 0.85rem;
}

.w-button {
  background-color: var(--button-color);
  padding: 0.5rem 4rem;
  border-radius: 2rem;
  color: var(--button-text-color);
  text-transform: uppercase;
  outline: none;
  display: block;
  width: 30%;
  font-size: 1.5rem;
  border: none;
  font-weight: normal;
  cursor: pointer;
}

a.w-button {
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.5rem;
}

@media (max-width: 980px) {
    
  .header-inner {
    min-height: 78px;
    display: flex;
    padding-top: 1rem;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--surface);
    padding: 28px 20px 40px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    height: 400px;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .hero-grid,
  .prize-grid,
  .steps-grid,
  .upload-grid {
    max-width: 100%;
  }

  .hero-media {
    min-height: 360px;
  }

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

  .full {
    grid-column: auto;
  }

  .hero-copy {
    padding: clamp(130px, 5vw, 68px) 1rem 70px;
  }
}

@media (max-width: 760px) {

  .hero-grid, .prize-grid, .steps-grid, .upload-grid {

    grid-template-columns: 1fr;
  }

  .lead, .eyebrow {
    font-size: 1rem;
  }

  .w-button {
    width: 80%;
    font-size: 1.2rem;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .hero-copy,
  .contest-form,
  .rules-inner {
    padding-inline: 20px;
    padding: clamp(70px, 5vw, 68px) 16px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 1.9rem);
    line-height: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

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

  .header-inner {
    min-height: 78px;
    display: flex;
    padding-top: 1rem;
    justify-content: space-between
  }

  .section-heading p {
    font-size: 1.3rem;
  }

  .prize-grid {
    padding: 40px 0 0;
  }

  .badge svg {
    max-width: 70%;
  }

  .footer-badges {
    gap: 0;
  }

  .rules-inner {
    padding: clamp(50px, 5vw, 68px) 16px;
  }

  .badge {
    padding: 0;
  }

  .rules-inner p {
    margin: 25px;
  }

  .brand svg {
    max-width: 70%;
  }

  .wide-media {
    min-height: auto;
    margin-top: 0;
  }

  .section-heading h2 {
    font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  }
}

@media (min-width: 576px) {}

@media screen and (min-width: 768px) {

  .mw-10 {
    max-width: 100%;
  }

  .mw-20 {
    max-width: 100%;
  }

  .mw-30 {
    max-width: 100%;
  }

  .mw-40 {
    max-width: 100%;
  }

  .mw-50 {
    max-width: 100%;
  }

  .mw-60 {
    max-width: 100%;
  }

  .mw-70 {
    max-width: 100%;
  }

  .mw-80 {
    max-width: 100%;
  }

  .mw-90 {
    max-width: 100%;
  }
}

@media screen and (min-width: 992px) {

  li.nav-item {
    display: inline-block;
  }
}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1400px) {}

@media screen and (min-width: 1600px) {}

@media screen and (min-width: 1900px) {}

@media screen and (min-width: 2500px) {}

@media screen and (min-width: 3000px) {}

@media screen and (max-width: 575px) {
  #mainNav .navbar-nav li.nav-item a.nav-link {
    font-size: 1rem;
  }

  li.nav-item {
    display: inline-flex;
    justify-content: center;
  }

  .button {
    padding: 0.1rem 4rem;
    font-size: 1.5rem;
  }

  .hide_mobile {
    display: none;
  }

  .menu-footer p {
    text-align: center;
    font-size: 1rem;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .mw-10 {
    max-width: 10%;
  }

  .mw-20 {
    max-width: 20%;
  }

  .mw-30 {
    max-width: 30%;
  }

  .mw-40 {
    max-width: 40%;
  }

  .mw-50 {
    max-width: 50%;
  }

  .mw-60 {
    max-width: 60%;
  }

  .mw-70 {
    max-width: 70%;
  }

  .mw-80 {
    max-width: 80%;
  }

  .mw-90 {
    max-width: 90%;
  }

  .cta {
    padding: 0.5rem 3rem;
    font-size: 1.2rem;
  }

  h2,
  .h2 {
    font-size: calc(1.325rem + 0vw);
  }

  h3,
  .h3 {
    font-size: calc(1.3rem + 0vw);
  }

  h4,
  .h4 {
    font-size: calc(1.275rem + 0vw);
  }

  h5,
  .h5 {
    font-size: 1rem;
  }

  h6,
  .h6 {
    font-size: 0.9rem;
  }

  .btnblock {
    flex-direction: column;
    align-items: center;
  }
}