:root {
  --wine: #5b0302;
  --wine-dark: #270101;
  --wine-black: #120505;
  --burg: rgb(114, 44, 59);
  --burg-deep: #3c111b;
  --gold: #caa974;
  --gold-light: #e6c494;
  --gold-pale: #fffbf1;
  --cream: #f5edd6;
  --cream-soft: #fff8ed;
  --muted: #d8c7b7;
  --text: #f8efe1;
  --dark: #0c0809;
  --charcoal: #1d181b;
  --border: rgba(202, 169, 116, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", system-ui, sans-serif;
  --gold-bar: linear-gradient(
    135deg,
    #fae2a6 0%,
    #fdf1d3 18%,
    #f1d198 38%,
    #e6bf7e 48%,
    #d4ac80 58%,
    #fdf1d3 68%,
    #fae2a6 78%,
    #fae2a6 100%
  );
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  background: var(--wine-black);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(114, 44, 59, 0.7),
      transparent 34%
    ),
    linear-gradient(180deg, #120505 0%, #1b080a 42%, #070404 100%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 8, 9, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(202, 169, 116, 0.22);
}
.header-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand-mark img {
  height: 48px;
  width: auto;
}
.top-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 251, 241, 0.72);
}
.top-nav a {
  transition: 0.2s ease;
}
.top-nav a:hover,
.top-nav .active {
  color: var(--gold-light);
}
.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 92px 0 76px;
  border-bottom: 1px solid rgba(202, 169, 116, 0.35);
}
.hero-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(26, 10, 14, 0.96),
      rgba(114, 44, 59, 0.95),
      rgba(26, 10, 14, 0.9)
    ),
    url("../../../assets/background-light.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.56;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  animation: glow-dance 30s linear infinite;
}
@keyframes glow-dance {
  0%,
  33% {
    filter: blur(20px);
  }
  50% {
    filter: blur(60px);
  }
  75% {
    filter: blur(120px);
  }
}
.hero-glow-one {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 70px;
  background: rgba(202, 169, 116, 0.13);
  animation: growth 11s linear ease-in-out;
}
.hero-glow-two {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: 40px;
  background: rgba(114, 44, 59, 0.38);
  animation: growth 11s linear ease-in-out;
}

@keyframes growth {
  0%,
  33% {
    scale: 1.1;
  }
  50% {
    scale: 1;
  }
  75% {
    scale: 1.1;
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow,
.section-kicker,
.card-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
h1,
h2,
h3 {
  font-family: var(--ff-display);
  line-height: 1.05;
}
h1 {
  font-size: clamp(3.25rem, 7.5vw, 6.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
}
h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  font-weight: 700;
  text-wrap: balance;
}
h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}
.hero-lead {
  max-width: 660px;
  margin: 26px 0 28px;
  font-size: 1.17rem;
  line-height: 1.85;
  color: rgba(255, 251, 241, 0.84);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.22s ease;
  text-align: center;
}
.btn-primary,
.btn-submit {
  background: linear-gradient(
    135deg,
    #fae2a6,
    #caa974 42%,
    #f5dba5 70%,
    #b88c4e
  );
  color: var(--wine-dark);
  box-shadow:
    0 12px 34px rgba(202, 169, 116, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.btn-primary:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(202, 169, 116, 0.34);
}
.btn-secondary {
  border-color: rgba(202, 169, 116, 0.45);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
}
.btn-secondary:hover {
  background: rgba(202, 169, 116, 0.12);
}
.btn-secondary.light {
  color: var(--wine-dark);
  border-color: rgba(91, 3, 2, 0.25);
  background: rgba(255, 251, 241, 0.7);
}
.btn-outline {
  border-color: rgba(202, 169, 116, 0.55);
  color: var(--gold-light);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(202, 169, 116, 0.1);
}
.micro-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(245, 237, 214, 0.68);
}
.hero-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(202, 169, 116, 0.32);
  box-shadow: var(--shadow);
  padding: 34px;
  border-radius: 28px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--gold);
  opacity: 0.9;
}
.hero-card h2 {
  font-size: 2.25rem;
  color: var(--gold-pale);
  margin-bottom: 18px;
}
.hero-card p {
  color: rgba(245, 237, 214, 0.78);
  margin-bottom: 22px;
}
.hero-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
}
.hero-card li {
  padding: 13px 14px;
  border: 1px solid rgba(202, 169, 116, 0.18);
  background: rgba(12, 8, 9, 0.36);
  border-radius: 14px;
  color: #fff;
}
.hero-card li:before {
  content: "✦";
  color: var(--gold-light);
  margin-right: 9px;
}
.truth-section,
.benefits-section,
.exclusive-section,
.founder-section,
.whatsapp-section {
  padding: 88px 0;
}
.narrow {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}
.truth-section {
  background: var(--cream-soft);
  color: var(--wine-dark);
}
.truth-section h2 {
  color: var(--wine);
  margin-bottom: 24px;
}
.truth-section p:not(.section-kicker) {
  font-size: 1.16rem;
  color: #4c2b2b;
  margin: 14px auto;
  max-width: 720px;
}
.truth-section .section-kicker {
  color: var(--wine);
}
.benefits-section {
  background: var(--cream-soft);
  color: var(--wine-dark);
}
.benefits-section h2 {
  color: var(--wine);
  margin-bottom: 24px;
}
.benefits-section .tier-label {
  font-size: 1.16rem;
  color: var(--gold);
  margin: 14px auto;
  max-width: 720px;
}
.tier-description {
  color: white;
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.benefits-header {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto 42px;
  text-align: center;
}
.benefits-header .section-kicker {
  color: var(--wine);
}
.benefits-header h2 {
  color: var(--wine);
}
.membership-options-section {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(202, 169, 116, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #120505 0%, var(--burg-deep) 100%);
  border-top: 1px solid rgba(202, 169, 116, 0.22);
  border-bottom: 1px solid rgba(202, 169, 116, 0.22);
}

.membership-options-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 56px auto 0;
  gap: 32px;
  align-items: start;
  display: flex;
  flex-direction: column;
}

.membership-tier {
  position: relative;
  padding: 38px;
  border-radius: 30px;
  background: rgba(114, 44, 59, 1);
  border: 1px solid rgba(202, 169, 116, 0.24);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.membership-tier:before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(202, 169, 116, 0.65);
  pointer-events: none;
}

.vip-tier {
  background: linear-gradient(
    180deg,
    rgba(5, 2, 3, 0.92),
    rgba(5, 2, 3, 0.92)
  );
  border: 1px solid rgba(202, 169, 116, 0.42);
}

.vip-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold-bar);
  border: 1px solid rgba(202, 169, 116, 0.28);
  color: var(--burg-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tier-label {
  color: var(--gold);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.membership-tier h3 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 18px;
  text-align: center;
}

.vip-includes {
  margin-bottom: 26px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(114, 44, 59, 0.5);
  border: 1px solid rgba(202, 169, 116, 0.24);
  color: var(--gold-light);
  font-weight: 700;
}

.tier-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tier-benefit {
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(12, 8, 9, 0.34);
  border: 1px solid rgba(202, 169, 116, 0.14);
}

.tier-benefit strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.tier-benefit span {
  display: block;
  color: rgba(245, 237, 214, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tier-cta {
  margin-top: 30px;
}

.tier-cta .btn {
  width: 100%;
}

@media (max-width: 860px) {
  .membership-options-grid {
    grid-template-columns: 1fr;
  }

  .membership-tier {
    padding: 48px 26px;
    border-radius: 24px;
  }
  
.tier-benefits {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}
}
.identity-section,
.offer-section {
  padding: 96px 0;
  background: linear-gradient(
    180deg,
    var(--burg-deep) 0%,
    var(--burg-deep) 100%
  );
}
.section-header {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto 42px;
  text-align: center;
}
.section-header h2 {
  color: var(--gold-pale);
}
.identity-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.identity-grid article,
.offer-card {
  background: rgba(22, 22, 22, 0.55);
  border: 1px solid rgba(202, 169, 116, 0.24);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.3s,
    background 0.3s;
}
.identity-grid span,
.offer-card p {
  display: block;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.vip-includes {
  padding-top: 18px;
}
.identity-grid h3,
.offer-card h3 {
  color: #fff;
  margin-bottom: 14px;
}
.identity-grid p,
.offer-card li {
  color: rgba(245, 237, 214, 0.75);
}
.exclusive-section {
  background: linear-gradient(
    90deg,
    var(--burg-deep),
    var(--burg),
    var(--burg-deep)
  );
  border-block: 1px solid rgba(202, 169, 116, 0.33);
}
.exclusive-grid {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}
.exclusive-grid h2 {
  color: #fff;
}
.exclusive-grid p {
  font-size: 1.08rem;
  color: rgba(255, 251, 241, 0.82);
  margin-bottom: 18px;
}
.text-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}
.offer-section {
  background: linear-gradient(135deg,var(--burg),var(--burg-deep));
}
.offer-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.offer-card li:before {
  content: "→";
  color: var(--gold);
  margin-right: 8px;
}

.offer-card:hover {
  transform: translate(-5px, -5px);
  background: var(--charcoal);
}
.vip-offer {
  background: linear-gradient(
    180deg,
    rgba(114, 44, 59, 0.72),
    rgba(91, 3, 2, 0.52)
  );
  box-shadow: 0px 0px 15px 1px var(--gold-light);
  border-color: rgba(202, 169, 116, 0.46);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    background 0.1s;
}

.vip-offer:hover {
  box-shadow: 0px 0px 5px 1px var(--gold-light);
  background: linear-gradient(
    180deg,
    rgba(114, 44, 59, 0.82),
    rgba(91, 3, 2, 0.72)
  );
}
.btn-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
}
.membership-benefits {
  border: 1px solid var(--gold);
  background: linear-gradient(132deg, #11111155, #111111aa, #11111155);
  padding: 32px;
  box-shadow: 0px 0px 15px 1px var(--gold-light);
  border-radius: 16px;
}
.founder-section {
  padding: 96px 0;
  background: url("../../../assets/background-dark.webp");
  color: var(--wine-dark);
}

.founder-authority-card {
  width: min(1080px, calc(100% - 32px));
  padding:32px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 38px;
  align-items: center;
  
  border: 1px solid rgba(91, 3, 2, 0.14);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 24px 80px rgba(39, 1, 1, 0.14);
}

.founder-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(91, 3, 2, 0.18), rgba(39, 1, 1, 0.42)),
    var(--burg-deep);
  border: 1px solid rgba(202, 169, 116, 0.35);
}

.founder-photo:after {
  content: "Founder of Boss Ladies";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12, 8, 9, 0.72);
  border: 1px solid rgba(202, 169, 116, 0.38);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
}

.founder-content {
  padding: 14px 8px;
}

.founder-content .section-kicker {
  color: var(--gold-pale);
}

.founder-content h2 {
  color: var(--gold-light);
  font-size: clamp(1.6rem, 3.2vw, 3.1rem);
  margin-bottom: 22px;
}

.founder-content p {
  color: white;
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.founder-lead {
  font-size: 1.18rem !important;
  color: var(--gold-pale) !important;
}

.founder-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 22px;
}

.founder-proof div {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff8ed;
  border: 1px solid rgba(91, 3, 2, 0.12);
}

.founder-proof strong {
  display: block;
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.founder-proof span {
  display: block;
  color: #5c4e48;
  font-size: 0.92rem;
  line-height: 1.5;
}

.founder-content .signature {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 10px;
}

@media (max-width: 860px) {
  .founder-authority-card {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 26px;
  }

  .founder-photo,
  .founder-photo img {
    min-height: 360px;
  }

  .founder-proof {
    grid-template-columns: 1fr;
  }
}
.signature {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--wine);
  font-style: italic;
  margin-top: 20px;
}
.waitlist-section {
  padding: 104px 0;
  background: linear-gradient(
    180deg,
    var(--burg-deep),
    var(--burg),
    var(--burg-deep)
  );
  border-top: 1px solid rgba(202, 169, 116, 0.25);
}
.waitlist-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 46px;
  align-items: start;
}
.waitlist-copy h2 {
  color: #fff;
  margin-bottom: 20px;
}
.waitlist-copy p {
  color: rgba(245, 237, 214, 0.8);
  font-size: 1.12rem;
}
.urgency-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(202, 169, 116, 0.1);
  border: 1px solid rgba(202, 169, 116, 0.28);
}
.urgency-box strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.urgency-box span {
  color: rgba(255, 251, 241, 0.8);
}
.signup-card {
  background: var(--gold-pale);
  color: var(--wine-dark);
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(202, 169, 116, 0.48);
  box-shadow: var(--shadow);
  position: relative;
}
.signup-card:before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.signup-top {
  text-align: center;
  margin-bottom: 22px;
}
.signup-top h3 {
  color: var(--wine);
  font-size: 2.2rem;
}
.signup-top p {
  color: #654848;
}
.community-form {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--wine);
  letter-spacing: 0.03em;
}
.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(91, 3, 2, 0.16);
  border-radius: 14px;
  background: #fff;
  padding: 14px 14px;
  font: inherit;
  color: #251313;
}
.check-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid rgba(91, 3, 2, 0.14);
  border-radius: 16px;
  background: #fff;
}
.check-wrap input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}
.check-wrap span {
  font-size: 0.86rem;
  line-height: 1.45;
  color: #5c4e48;
}
.btn-submit {
  width: 100%;
  border: 0;
  margin-top: 4px;
}
.small-note {
  font-size: 0.76rem;
  color: #6b5555;
  text-align: center;
}
.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
}
.alert {
  display: none;
  margin-top: 8px;
  padding: 12px;
  border-radius: 14px;
  font-size: 0.9rem;
}
.alert-info {
  display: block;
  background: #fff7e8;
  color: #7a5712;
  border: 1px solid #efd699;
}
.alert-ok {
  display: block;
  background: #edf7ef;
  color: #1b5a2f;
  border: 1px solid #b7dfc0;
}
.blueprint-section {
  padding: 86px 0;
  background: linear-gradient(180deg, #f5edd6, #fffbf1);
  color: var(--wine-dark);
}
.blueprint-card {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, #fff, #f3ddba);
  border: 1px solid rgba(91, 3, 2, 0.14);
  border-radius: 30px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(39, 1, 1, 0.12);
}
.blueprint-image img{
  box-shadow: 0px 0px 15px 5px var(--burg-deep);
}
.blueprint-card .section-kicker {
  color: var(--wine);
}
.blueprint-card h2 {
  color: var(--wine);
  margin-bottom: 16px;
}
.blueprint-card p {
  color: #543636;
  font-size: 1.08rem;
  margin-bottom: 22px;
}
.whatsapp-section {
  text-align: center;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}
.whatsapp-section h2 {
  color: #fff;
  margin-bottom: 14px;
}
.whatsapp-section p {
  color: rgba(245, 237, 214, 0.74);
  font-size: 1.04rem;
  margin-bottom: 24px;
}
.community-footer {
  padding: 46px 20px;
  text-align: center;
  background: #080303;
  border-top: 1px solid rgba(202, 169, 116, 0.22);
}
.footer-logo {
  height: 62px;
  width: auto;
  margin: 0 auto 20px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--gold-light);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-note {
  margin-top: 18px;
  color: rgba(245, 237, 214, 0.55);
  font-size: 0.82rem;
}
@media (max-width: 860px) {
  .top-nav {
    display: none;
  }
  .hero-section {
    min-height: auto;
    padding: 72px 0;
  }
  .hero-inner,
  .exclusive-grid,
  .waitlist-grid,
  .blueprint-card {
    grid-template-columns: 1fr;
  }
  .identity-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .hero-card,
  .founder-card,
  .signup-card,
  .blueprint-card {
    border-radius: 22px;
    padding: 24px;
  }
  h1 {
    font-size: 3.3rem;
  }
  .hero-lead {
    font-size: 1.02rem;
  }
  .truth-section,
  .identity-section,
  .exclusive-section,
  .offer-section,
  .founder-section,
  .waitlist-section,
  .blueprint-section,
  .whatsapp-section {
    padding-block: 64px;
  }
  .brand-mark img {
    height: 40px;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
