/* =====================
   RESET
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Inter, Helvetica, Arial, sans-serif;
    color: #e8e8e8;
    line-height: 1.6;

    /* Layered background */
    background:
      radial-gradient(
        60% 40% at 50% 0%,
        rgba(255,255,255,0.08),
        transparent 70%
      ),
      linear-gradient(
        to bottom,
        #141414 0%,
        #0b0b0b 45%,
        #000 100%
      );

}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("images/grain.png");
  opacity: 0.08;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* =====================
   LAYOUT
===================== */

a { color: inherit;
    text-decoration:none; }

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;

}

section {
  text-align: center;
  margin-bottom: 80px;
}

.divider {
  height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(255,255,255,0.25),
      transparent
    );
    margin: 96px 0;
}

/* =====================
   HERO
===================== */
.hero {
  padding-top: 40px;
}

.hero h1 {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.85;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-top: 12px;
  opacity: 0.55;
}


/* =====================
   BUTTONS
===================== */
button {
  margin-top: 36px;
  padding: 14px 34px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

button:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}


/* =====================
   PROBLEM
===================== */
.problem p {
  max-width: 720px;
  margin: 0 auto 24px;
  opacity: 0.9;
}

/* =====================
   PRODUCTS
===================== */
.products h2 {
  margin-bottom: 48px;
  font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

.product-card {
  padding: 40px 32px;
  border-radius: 10px;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.01)
    );
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.4);
}


.bottle-placeholder {
  height: 360px;
  margin-bottom: 28px;
  border-radius: 8px;
  background:
    radial-gradient(
      60% 80% at 50% 20%,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.05) 40%,
      rgba(0,0,0,0.8) 100%
    );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  opacity: 1.2;
}

.bottle-placeholder img {
  max-height: 140%;
  max-width: 140%;
  object-fit: contain;
}

h2 {
  font-weight: 400;
  letter-spacing: 0.04em;
}

h3 {
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.product-lead {
  font-size: 0.9rem;
  opacity: 0.75;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin-bottom: 8px;
  opacity: 0.85;
}

/* =====================
   LAUNCH
===================== */
.launch p {
  margin-bottom: 16px;
}

.muted {
  opacity: 0.6;
}

.micro {
  margin-top: 12px;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* =====================
   FOOTER
===================== */
.footer {
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer p {
  margin: 8px 0;
  opacity: 0.6;
}

/* PRODUCT HEADERS */
.product h3 {
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* CORE look */
.product.core h3 {
  color: #cfd8e3;
}

/* SELECT look */
.product.select h3 {
  color: #e8cfa8;
}

/* Lead line */
.product-lead {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.product.core .product-lead {
  color: #9fb3cc;
}

.product.select .product-lead {
  color: #d8b97a;
}

/* Bullet list */
.product ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
}

.product ul li {
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  position: relative;
  font-size: 0.95rem;
  color: #ddd;
}

.product ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
}

/* Different bullet color */
.product.core ul li::before {
  color: #8fb1d9;
}

.product.select ul li::before {
  color: #e3c07a;
}

/* Description text */
.product p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #bbb;
  margin-bottom: 1.5rem;
}

/* Buttons */
.product .btn.secondary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  transition: all 0.25s ease;
}

/* CORE button */
.product.core .btn.secondary {
  border: 1px solid #7fa6d6;
  color: #7fa6d6;
}

.product.core .btn.secondary:hover {
  background: #7fa6d6;
  color: #000;
}

/* SELECT button */
.product.select .btn.secondary {
  border: 1px solid #e3c07a;
  color: #e3c07a;
}

.product.select .btn.secondary:hover {
  background: #e3c07a;
  color: #000;
}

.next {
  display:inline-block;
}
.next button{
  margin-left:15px;
}
.mytext{
height:40px;
width: 200px;
border-radius: 10px;
}

.hidden-iframe {
  position: absolute;
left: -9999px;
top: 0;
width: 1px;
height: 1px;
opacity: 0;
pointer-events: none;
border: 0;
}

/* Inline success popup */
#signup-hint.success {
  margin-top: 18px;
  padding: 16px 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;

  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 12px;

  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95);

  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0.01em;

  /* subtle emphasis */
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* Optional: slight fade-in so it feels intentional */
#signup-hint.success {
  animation: successFade 220ms ease-out;
}

@keyframes successFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide Brevo INTEREST field but keep it in the form so it gets saved */
input[name="INTEREST"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
