.goalstox-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02),
    0 30px 60px rgba(0, 0, 0, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goalstox-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02),
    0 40px 80px rgba(0, 0, 0, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.btn-gradient {
  background: linear-gradient(135deg, #24387D 0%, #304AA6 45%, #5B73C9 100%);
  color: white;
}

.icon-container {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(48, 74, 166, 0.08);
  color: #304AA6;
  transition: background 0.2s ease;
}

.goalstox-card:hover .icon-container {
  background: rgba(48, 74, 166, 0.14);
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2rem;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  min-width: 100%;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Modal Styling */
.modal-overlay {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}


/*  */
:root {
  --brand: #304AA6;
  --brand-dark: #253a82;
  --tint: #e9edfb;
  --soft-bg: #f3f5fd;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-muted: #7a7a9a;
  --white: #ffffff;
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 30px 60px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.04);
  --shadow-card-inset: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --radius: 20px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3 {
  font-family: 'Inter', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  display: inline-block;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

p.large {
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--soft-bg);
}

.btn-text {
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.btn-text:hover {
  gap: 10px;
}

/* Card */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card), var(--shadow-card-inset);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 40px 80px rgba(0, 0, 0, 0.08), 0 12px 28px rgba(0, 0, 0, 0.05), var(--shadow-card-inset);
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: var(--soft-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0 24px;
}

nav .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Inter', serif;
  font-size: 1.5rem;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-cta {
  background: var(--brand) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
  font-size: 0.85rem !important;
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  padding: 160px 24px 100px;
  background: linear-gradient(180deg, var(--soft-bg) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(48, 74, 166, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
  /* max-width: 820px;  */
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: normal;
  color: var(--brand);
}

.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  color: var(--text-secondary);
}


.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.hero-stats .stat-num {
  font-family: 'Inter', serif;
  font-size: 2rem;
  color: var(--brand);
}

.hero-stats .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== GOALS SECTION ===== */
.goals-section {
  padding: 120px 24px;
}

.goals-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.goals-visual {
  background: var(--soft-bg);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
}

.goal-item .goal-icon {
  font-size: 1.4rem;
}

.goal-item .goal-label {
  font-weight: 500;
  font-size: 0.95rem;
}

.goal-item .goal-amount {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 600;
}

/* ===== ASSET CLASSES (Bento) ===== */
.assets-section {
  padding: 120px 24px;
  background: var(--soft-bg);
}

.assets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.asset-card {
  padding: 40px;
}

.asset-card.featured {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
}

.asset-card.featured .icon-circle {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.asset-card.featured h3 {
  color: white;
}

.asset-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.asset-card.featured .asset-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.asset-card h3 {
  margin-bottom: 12px;
}

.asset-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--tint);
  color: var(--brand);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* ===== YOUR WAY (Split) ===== */
.yourway-section {
  padding: 120px 24px;
}

.yourway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.way-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.way-card h3 {
  margin-bottom: 16px;
}

.way-card p {
  flex: 1;
  margin-bottom: 24px;
}

.way-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.way-icon.diy {
  background: #f0fdf4;
  color: #16a34a;
}

.way-icon.guided {
  background: var(--soft-bg);
  color: var(--brand);
}

/* ===== TOOLS ===== */
.tools-section {
  padding: 120px 24px;
  background: var(--soft-bg);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.tool-card {
  padding: 32px 28px;
  text-align: center;
}

.tool-card .icon-circle {
  margin: 0 auto 20px;
}

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

.tool-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== SEGMENTS ===== */
.segments-section {
  padding: 120px 24px;
}

.segment-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-light);
}

.segment-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.segment-block.reversed .segment-visual {
  order: -1;
}

.segment-visual {
  border-radius: var(--radius);
  padding: 48px 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.segment-visual.golden {
  background: linear-gradient(135deg, #fef9ef, #fdf2d8);
}

.segment-visual.hergoals {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
}

.segment-visual.easygoals {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.segment-visual .segment-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.segment-visual .segment-stat {
  font-family: 'Inter', serif;
  font-size: 2.4rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.segment-visual .segment-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.segment-content .label {
  margin-bottom: 12px;
}

.segment-content h2 {
  margin-bottom: 8px;
}

.segment-tagline {
  font-family: 'Inter', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.segment-content p {
  margin-bottom: 28px;
}

/* ===== ADVANTAGE ===== */
.advantage-section {
  padding: 120px 24px;
  background: var(--soft-bg);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.advantage-grid .card {
  padding: 36px;
}

.advantage-grid h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.advantage-grid p {
  font-size: 0.92rem;
}

.adv-number {
  font-family: 'Inter', serif;
  font-size: 2rem;
  color: var(--tint);
  margin-bottom: 16px;
  line-height: 1;
}

/* ===== PARTNERS ===== */
.partners-section {
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.partners-section p.large {
  max-width: 600px;
  margin: 0 auto 48px;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partner-pill {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== PRODUCTS ===== */
.products-section {
  padding: 80px 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.product-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.product-card p {
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 20px;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  text-align: center;
  color: white;
}

.footer-cta h2 {
  color: white;
  margin-bottom: 16px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.footer-cta .btn-primary {
  background: white;
  color: var(--brand);
}

.footer-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.footer-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
footer {
  padding: 64px 24px 32px;
  background: #fafafa;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {

  .tools-grid,
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .advantage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .goals-inner,
  .yourway-grid,
  .assets-grid,
  .segment-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .segment-block.reversed .segment-visual {
    order: 0;
  }

  .tools-grid,
  .products-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  section {
    padding: 80px 24px !important;
  }
}

/*  */