/* Base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #650101;
}
h1, h2 { margin: 0 0 20px; }
p { margin: 0 0 15px; }

/* Hero */
.hero {
  background: url('main_bg.png') top center no-repeat;
  background-size: 1460px auto;
  text-align: center;
  padding: 60px 20px;
  height: 210px;
}

/* Showcase */
.showcase {
  background: #0b0f16 url('hex_bg.png') top center/cover;
  padding: 60px 20px;
}
.showcase-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.showcase .logo-col {
  flex: 0 0 100%;
  text-align: center;
  padding: 10px 20px;
}
.showcase h1 {
  font-size: clamp(1rem, 5vw, 2rem);
  text-align: center;
  margin-bottom: 10px;
}
.showcase .text-col {
  flex: 1 1 45%;
  padding: 10px 0;
}
.showcase .image-col {
  flex: 1 1 45%;
  text-align: center;
}
.showcase .image-col img {
  max-width: 360px;
  height: auto;
  margin: 0 5px;
}
.showcase .availability {
  margin-top: 15px;
  font-weight: bold;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
}
.logo-3hex {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 330px;
  height: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #a00;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: bold;
}
.btn:hover { background: #c00; }

.showcase .text-col .btn {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

/* Signup Section */
.signup {
  background: #600;
  padding: 60px 20px;
}
.signup-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
}
.signup .copy {
  flex: 1 1 45%;
  min-width: 300px;
  background: url('arrow.png') top right no-repeat;
  background-size: 360px auto;
}
.signup .form-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 400px;
  align-self: flex-start;
}

.signup .copy > :first-child,
.signup .form-wrapper > :first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.form-embed {
  background: #fff;
  border: 4px solid #000;
  border-radius: 16px;  
  padding: 10px 16px;
  margin: 0 auto;
  display: inline-block;
}

.form-embed iframe {
  max-width: 420px;
  width: 100%;
  display: block;
}

.footer {
  text-align: center;
  padding-top: 20px;
  height: 40px;
  background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .showcase-inner,
  .signup-inner { flex-direction: column; gap: 20px; }

  .signup .copy,
  .signup .form-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .showcase .image-col img {
    width: 80%;
    max-width: 320px;
    margin: 10px 0;
  }
}
