/* ---------------- Fonts ---------------- */

@font-face {
  font-family: "LeagueGothic";
  src: url("/fonts/LeagueGothic-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Retropix";
  src: url("/fonts/retropix.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Tangkiwood";
  src: url("/fonts/TANTangkiwood-Display.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-display: swap;
}

/* ---------------- Base ---------------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: #fff9f4;
  color: #393939;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------- Top Bar ---------------- */

.topbar {
  background: #d6e9dc;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}

.topbar-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: LeagueGothic, sans-serif;
  font-size: 23px;
  letter-spacing: 0.2em;
}

.icons img {
  height: 30px;
  margin-left: 14px;
}

/* ---------------- Hero ---------------- */

.hero {
  min-height: calc(100vh - 80px);
  padding: 100px 0;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ---------------- Text ---------------- */

.hero-text {
  max-width: 550px; /* REDUCED from 620px */
  flex-shrink: 0;
}

.kicker {
  font-family: Retropix, monospace;
  font-size: 8px;
  color: #5B2F4F;
  margin-bottom: 15px;
}

.headline {
  font-family: Tangkiwood, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  margin-bottom: 24px;
}

/* ---------------- Highlights ---------------- */

.hl-pink,
.hl-mint {
  padding: 0 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hl-pink {
  background: linear-gradient(to bottom, transparent 55%, #fed9e0 55%);
}

.hl-mint {
  background: linear-gradient(to bottom, transparent 55%, #d6e9dc 55%);
}

/* ---------------- Description ---------------- */

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ---------------- Trust Badge ---------------- */

.trust-badge {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(0,0,0,0.35);
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------------- CTA ---------------- */

.cta-bottom {
  margin-top: 35px;
  display: inline-block;
  padding: 18px 48px;
  border-radius: 999px;
  border: 1.5px solid #000;
  background: #ffdbf7;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-bottom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ---------------- Hero Image ---------------- */

.hero-image {
  flex: 1; /* allows image column to grow */
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 820px; /* LARGE IMAGE */
  height: auto;
  display: block;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 900px) {
  .hero-layout {
    flex-direction: column;
    text-align: left;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 360px;
  }
}
