/* MyDay100 | Shared Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg:          #F2F5F8;
  --surface:     #ffffff;
  --navy:        #1B3A5F;
  --navy-soft:   #2E527C;
  --fuji:        #6B8AA8;
  --fuji-pale:   #C2D8E5;
  --ink:         #141B24;
  --ink-soft:    #6B7886;
  --ink-faint:   #9aa3ad;
  --hairline:    #C9D2DA;
  --gold:        #C9A961;
  --gold-deep:   #A07F4F;
  --shadow:      0 1px 4px rgba(20,27,36,0.10);
  --shadow-lift: 0 8px 28px rgba(20,27,36,0.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 58, 95, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fuji-pale);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 200ms;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 200ms, transform 150ms !important;
}
.nav-cta:hover { background: #d4b368 !important; transform: translateY(-1px); }
/* ── HAMBURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 220ms, opacity 200ms;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(27,58,95,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 17px; }
  .nav-cta { padding: 12px 32px !important; font-size: 15px !important; }
}


/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: var(--fuji-pale);
  padding: 40px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--fuji-pale);
  text-decoration: none;
  transition: color 200ms;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { display: none; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 200ms, transform 150ms, box-shadow 200ms;
  box-shadow: 0 4px 16px rgba(201,169,97,0.35);
  letter-spacing: -0.01em;
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: #d4b368;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,97,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--fuji-pale);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid rgba(194,216,229,0.35);
  text-decoration: none;
  display: inline-block;
  transition: border-color 200ms, color 200ms, transform 150ms;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  text-decoration: none;
  display: inline-block;
  transition: border-color 200ms, color 200ms, transform 150ms;
}
.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
  padding: 28px clamp(20px, 5vw, 64px);
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 5px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* ── SECTION ── */
.page-section { padding: clamp(64px, 10vw, 112px) clamp(20px, 5vw, 64px); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  display: block;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 52px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0f2540 55%, #1a3356 100%);
  color: #fff;
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 64px) clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(201,169,97,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}
.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 760px;
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--fuji-pale);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── CARD ── */
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 250ms, transform 200ms, border-color 250ms;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fuji-pale), var(--gold));
  opacity: 0;
  transition: opacity 250ms;
}
.card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
  border-color: var(--fuji-pale);
}
.card:hover::before { opacity: 1; }
.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fuji);
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  display: block;
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-body {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── CARD ACCENT (reader profiles) ── */
.card-accent {
  background: linear-gradient(160deg, var(--navy) 0%, #0f2540 100%);
  border-color: rgba(194,216,229,0.18);
  color: #fff;
}
.card-accent::before {
  background: linear-gradient(90deg, var(--gold), #e8c97a);
  opacity: 1;
}
.card-accent .card-label { color: rgba(201,169,97,0.75); }
.card-accent .card-title { color: #fff; }
.card-accent .card-body { color: var(--fuji-pale); }
.card-accent:hover {
  border-color: rgba(201,169,97,0.35);
  transform: translateY(-4px);
}

/* ── CALLOUT BLOCK ── */
.callout {
  background: rgba(201,169,97,0.08);
  border: 1px solid rgba(201,169,97,0.25);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 20px 24px;
}
.callout-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.callout-text strong { color: var(--navy); font-weight: 600; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 550ms ease, transform 550ms ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── PAGE CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 64px);
  text-align: center;
}
.cta-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201,169,97,0.7);
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  display: block;
}
.cta-strip-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-strip-sub {
  font-size: 16px;
  color: var(--fuji-pale);
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-strip-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
