* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  background: radial-gradient(circle at top left, #7e5cff 0%, #3c179f 35%, #170028 100%);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* =========================
   TOPBAR
========================= */

.vault-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: rgba(13, 7, 30, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-inline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.vault-logo {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.vault-sublogo {
  margin-top: 4px;
  font-size: 0.86rem;
  opacity: 0.82;
}

.menu-wrapper {
  position: relative;
}

.menu-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.menu-dropdown {
  position: absolute;
  top: 64px;
  right: 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(19, 10, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  z-index: 1005;
}

.menu-dropdown.show {
  display: flex;
}

.menu-dropdown a {
  color: white;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
  transition: 0.25s ease;
}

.menu-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   SHARED
========================= */

.newsletter-section {
  width: 100%;
  padding: 26px 20px 34px;
}

.section-head {
  max-width: 980px;
  margin: 0 auto 24px;
}

.section-head.center {
  text-align: center;
}

.mini-label {
  color: #d8c8ff;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2,
.newsletter-card h2 {
  font-size: 2.1rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.newsletter-card {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.11) 0%,
    rgba(255,255,255,0.05) 100%
  );
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.newsletter-card h2 {
  margin-bottom: 12px;
}

.newsletter-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.newsletter-card p {
  color: #f3efff;
  margin-bottom: 12px;
  line-height: 1.8;
}

/* =========================
   HERO
========================= */

.newsletter-hero {
  text-align: center;
  padding: 82px 20px 42px;
  max-width: 980px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.newsletter-hero h1 {
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #f0e8ff;
  margin-bottom: 16px;
}

.hero-text {
  font-size: 1.05rem;
  color: #f3efff;
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.85;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.hero-btn.primary {
  background: linear-gradient(90deg, #ffffff, #ece1ff);
  color: #34146f;
}

.hero-btn.secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   INTRO
========================= */

.intro-card {
  text-align: left;
}

/* =========================
   TOOL GRID
========================= */

.tool-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tool-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.11) 0%,
    rgba(255,255,255,0.05) 100%
  );
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(16px);
  transition: 0.3s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.tool-card:hover {
  transform: translateY(-4px);
}

.tool-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d8c7ff;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.tool-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.tool-card p {
  line-height: 1.75;
  opacity: 0.95;
}

.preview-note {
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 1rem;
  color: #f5eefe;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   MONEY MOVE
========================= */

.money-card {
  text-align: left;
}

.money-list {
  margin: 18px 0 18px 20px;
}

.money-list li {
  margin-bottom: 10px;
  color: #f3efff;
}

.money-line {
  font-size: 1.05rem;
}

.money-line.strong {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffffff;
}

.highlight-line {
  font-weight: bold;
  color: #ffffff;
  margin-top: 8px;
}

/* =========================
   STATUS
========================= */

.status-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.status-card {
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.11) 0%,
    rgba(255,255,255,0.05) 100%
  );
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.status-card h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* =========================
   FINAL NOTE / SIGNUP
========================= */

.final-note,
.signup-card {
  text-align: center;
}

.newsletter-form {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  width: 320px;
  max-width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 14px 22px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #ffffff, #ece1ff);
  color: #34146f;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .tool-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-hero h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .vault-topbar {
    padding: 16px 20px;
  }

  .menu-dropdown {
    right: 0;
    width: 240px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 600px) {
  .newsletter-hero {
    padding-top: 62px;
  }

  .newsletter-hero h1 {
    font-size: 2.1rem;
  }

  .section-head h2,
  .newsletter-card h2 {
    font-size: 1.6rem;
  }

  .newsletter-card,
  .tool-card,
  .status-card {
    padding: 22px;
  }
}
