/* =========================================================
   RIGHT AWAY LENDING — GROWTH TAKEOVER 2026
   Main stylesheet
   ========================================================= */

:root {
  --gold: #f4b400;
  --gold-bright: #ffca20;
  --steel: #aeb2b5;
  --black: #070707;
  --panel: #151515;
}

/* ---------- Base ---------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #eeeeee;
  font-family: "Oswald", Arial, sans-serif;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
    url("assets/industrial-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 136, 0, 0.10),
      transparent 18%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 0, 0.08),
      transparent 20%
    );
}

/* ---------- Header ---------- */

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 96px;
  padding: 8px 3.2%;
  background: linear-gradient(#0e0e0e, #070707);
  border-bottom: 1px solid #5a3d00;
}

.brand img {
  display: block;
  width: 230px;
}

.site-header nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 34px;
}

.site-header nav a {
  color: #dddddd;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--gold-bright);
}

/* ---------- Metal Buttons ---------- */

.metal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  color: #111111;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-shadow: 0 1px #fff7a0;
  background: linear-gradient(
    180deg,
    #ffd733 0%,
    #d79500 45%,
    #ffbd00 100%
  );
  border: 4px solid #272727;
  box-shadow:
    inset 0 0 0 2px #8b6b24,
    0 0 0 2px #777777,
    0 8px 18px #000000;
}

.metal-btn::before,
.metal-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #dddddd,
    #333333 42%,
    #080808 70%
  );
  transform: translateY(-50%);
}

.metal-btn::before {
  left: 8px;
}

.metal-btn::after {
  right: 8px;
}

.metal-btn.small {
  padding: 11px 30px;
  font-size: 20px;
}

.metal-btn.big {
  min-width: 360px;
  padding: 18px 55px;
  font-size: 44px;
}

/* ---------- Scrolling Caution Tape ---------- */

.caution {
  height: 52px;
  overflow: hidden;
  background: repeating-linear-gradient(
    135deg,
    #f6b900 0 30px,
    #111111 30px 52px
  );
  border-top: 5px solid #111111;
  border-bottom: 5px solid #111111;
  box-shadow: 0 5px 15px #000000;
}

.caution-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  color: #111111;
  font-family: "Anton", sans-serif;
  font-size: 22px;
  white-space: nowrap;
  background: rgba(244, 180, 0, 0.95);
  animation: caution-scroll 18s linear infinite;
}

.caution-track span {
  padding-right: 34px;
}

.caution-track.reverse {
  animation-direction: reverse;
}

@keyframes caution-scroll {
  to {
    transform: translateX(-33.333%);
  }
}

/* ---------- Main Layout ---------- */

main {
  max-width: 1320px;
  margin: 0 auto;
}

.steel-shell {
  border-left: 5px solid #222222;
  border-right: 5px solid #222222;
  box-shadow:
    inset 0 0 80px #000000,
    0 0 30px #000000;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 20px;
  min-height: 960px;
  padding: 28px 22px 22px;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.78),
    rgba(20, 20, 20, 0.92)
  );
}

.hero-left {
  min-width: 0;
}

.hero-title-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 8px #000000);
}

.metal-label {
  margin: 4px 14px 18px;
  padding: 12px;
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: 31px;
  letter-spacing: 0.08em;
  text-align: center;
  background: linear-gradient(#2b2b2b, #101010);
  border: 3px solid #555555;
  box-shadow:
    inset 0 0 0 2px #111111,
    0 0 0 2px #6c4d14;
}

.hero-sub {
  margin: 15px 0 22px;
  color: #d4d4d4;
  font-family: "Anton", sans-serif;
  font-size: 31px;
  letter-spacing: 0.045em;
  text-align: center;
  text-shadow: 2px 2px #000000;
}

/* ---------- Countdown ---------- */

.countdown-wrap h2,
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.time-box {
  position: relative;
  text-align: center;
}

.time-box span {
  display: block;
  padding: 13px 3px 8px;
  color: #ffb400;
  font-family: "Anton", sans-serif;
  font-size: 63px;
  line-height: 1;
  text-shadow: 0 0 9px #ff8a00;
  background: linear-gradient(145deg, #202020, #070707);
  border: 4px solid #4e4e4e;
  box-shadow:
    inset 0 0 0 2px #090909,
    inset 0 0 25px #000000,
    0 3px 0 #000000;
}

.time-box span::before,
.time-box span::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #555555;
}

.time-box span::before {
  left: 8px;
}

.time-box span::after {
  right: 8px;
}

.time-box small {
  display: block;
  margin-top: 7px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

/* ---------- Strategies Image ---------- */

.strategies-image {
  width: 100%;
  margin: 22px 0 0;
  padding: 0;
  overflow: hidden;
}

.strategies-banner {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}

/* ---------- Poster ---------- */

.poster-panel {
  position: relative;
  align-self: start;
  padding: 12px;
  background: linear-gradient(#222222, #080808);
  border: 5px solid #383838;
  box-shadow:
    inset 0 0 0 2px #111111,
    0 12px 25px #000000;
}

.poster-panel::before,
.poster-panel::after {
  content: "";
  position: absolute;
  top: 8px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #bbbbbb,
    #333333 45%,
    #050505 72%
  );
}

.poster-panel::before {
  left: 8px;
}

.poster-panel::after {
  right: 8px;
}

.poster-panel img {
  display: block;
  width: 100%;
}

/* ---------- Shared Steel Panel ---------- */

.steel-panel {
  background: linear-gradient(#202020, #111111);
  border: 4px solid #444444;
  box-shadow:
    inset 0 0 0 2px #090909,
    0 8px 25px #000000;
}

/* ---------- Benefits Image ---------- */

.benefits.steel-panel {
  display: block;
  width: 100%;
  margin: 30px 0;
  padding: 0;
  overflow: hidden;
}

.steel-benefits-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}

/* ---------- Call to Action ---------- */

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 46px 55px;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 6, 0.97),
    rgba(17, 17, 17, 0.94)
  );
  border-top: 4px solid #181818;
}

.cta p {
  margin: 0;
  color: #cccccc;
  font-family: "Anton", sans-serif;
  font-size: 37px;
}

.cta h2 {
  margin: 8px 0 0;
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 3px 3px #000000;
}

.cta-right {
  text-align: center;
}

.cta-right span {
  display: block;
  margin-top: 18px;
  color: #bbbbbb;
  font-family: "Anton", sans-serif;
  font-size: 25px;
  letter-spacing: 0.08em;
}

/* ---------- Footer ---------- */

footer {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 70px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 34px 55px;
  background: #090909;
  border-top: 1px solid #5c420d;
}

.footer-brand img {
  width: 210px;
}

.footer-brand p {
  max-width: 430px;
  color: #aaaaaa;
}

.footer-brand + div a {
  display: block;
  margin: 4px 0;
  color: #bbbbbb;
  text-decoration: none;
}

footer h4 {
  margin: 10px 0;
  color: #dddddd;
  font-size: 20px;
}

.social {
  color: var(--gold);
  font-size: 27px;
}

.copyright {
  padding: 10px;
  color: #777777;
  text-align: center;
  background: #050505;
  border-top: 1px solid #222222;
}

/* =========================================================
   Responsive Layout
   ========================================================= */

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding: 10px 18px;
  }

  .site-header nav {
    order: 3;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
    padding: 8px;
    overflow-x: auto;
  }

  .site-header nav a {
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .poster-panel {
    max-width: 650px;
    margin: 0 auto;
  }
.cta {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  .brand img {
    width: 175px;
  }

  .metal-btn.small {
    font-size: 16px;
  }

  .hero {
    padding: 14px 8px;
  }

  .metal-label {
    margin-inline: 4px;
    font-size: 20px;
  }

  .hero-sub {
    font-size: 21px;
  }

  .countdown {
    gap: 5px;
  }

  .countdown-wrap h2 {
    font-size: 21px;
  }

  .time-box span {
    padding: 11px 2px 7px;
    font-size: 36px;
  }

  .time-box small {
    font-size: 12px;
  }
.cta {
    padding: 35px 15px;
  }

  .cta p {
    font-size: 27px;
  }

  .cta h2 {
    font-size: 42px;
  }

  .metal-btn.big {
    width: 100%;
    min-width: 0;
    font-size: 32px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 25px;
  }

  .caution {
    height: 44px;
  }

  .caution-track {
    font-size: 18px;
  }
}


/* ---------- Image Banner Mobile Adjustments ---------- */

@media (max-width: 600px) {
  .strategies-image {
    margin-top: 16px;
  }

  .strategies-banner,
  .steel-benefits-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
