/* ═══════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  background-color: #081220;
  color: #F4F6F8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
.font-serif, h1, h2, .section-headline, .hero-headline, .pullquote {
  font-family: 'Shippori Mincho', Georgia, serif;
}

/* ═══════════════════════════════════════════
   LAYOUT CONTAINERS
════════════════════════════════════════════ */
.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 900px) { .section-inner { padding: 0 20px; } }

.section-dark  { background-color: #081220; padding: 48px 0 64px; }
.section-navy  { background-color: #0A1628; padding: 48px 0 64px; }
.section-deep  { background-color: #060E1A; padding: 64px 0 80px; }

@media (min-width: 768px) {
  .section-dark, .section-navy, .section-deep { padding: 72px 0 88px; }
}

/* ═══════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 56px;
  background-color: #F4F6F8;
  border-bottom: 1px solid rgba(8,18,32,0.08);
  box-shadow: 0 1px 0 rgba(8,18,32,0.07);
}

.navbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 900px) { .navbar-inner { padding: 0 20px; } }

.logo-img { height: 34px; width: auto; object-fit: contain; max-width: 170px; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar-links a {
  font-size: 13px;
  color: rgba(8,18,32,0.60);
  transition: color 0.15s;
  letter-spacing: 0.01em;
}
.navbar-links a:hover { color: #081220; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background-color: #081220;
  color: #F4F6F8;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background-color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-nav-cta:hover { background-color: #132540; border-color: rgba(212,168,67,0.30); }

.navbar-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #081220;
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 56px;
  z-index: 199;
  background-color: #F4F6F8;
  padding: 16px 20px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 17px;
  font-weight: 300;
  color: rgba(8,18,32,0.80);
  padding: 20px 0;
  border-bottom: 1px solid rgba(8,18,32,0.08);
  transition: color 0.15s;
}
.mobile-link:hover { color: #081220; }

.btn-mobile-cta {
  display: block;
  margin-top: 24px;
  text-align: center;
  background-color: #081220;
  color: #F4F6F8;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background-color 0.15s, border-color 0.15s;
}
.btn-mobile-cta:hover { background-color: #132540; border-color: rgba(212,168,67,0.30); }

@media (max-width: 1024px) {
  .navbar-links { display: none; }
  .btn-nav-cta { display: none; }
  .navbar-burger { display: flex; }
}

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero-wrap {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, #0B1526 0%, #081220 60%, #081220 100%);
  padding-top: 56px;
}

.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 88px;
}
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 56px;
  }
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(212,168,67,0.10);
  border: 1px solid rgba(212,168,67,0.20);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  color: #D4A843;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background-color: #D4A843;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-headline em { color: #D4A843; font-style: italic; }

.hero-body {
  font-size: 17px;
  line-height: 1.75;
  color: #D4D8E0;
  margin-bottom: 12px;
  max-width: 520px;
}
.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #9CA3AF;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.proof-items { display: flex; flex-wrap: wrap; gap: 20px; }
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9CA3AF;
}
.proof-item svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════
   ROUTE PROGRESSION CARD
════════════════════════════════════════════ */
.route-card {
  background-color: #111827;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

.route-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.route-card-label {
  font-size: 11px;
  color: #9CA3AF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.route-card-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  color: #9CA3AF;
}
.route-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: rgba(212,168,67,0.60);
  flex-shrink: 0;
}

.route-steps {
  padding: 20px;
  position: relative;
}
.route-steps::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background-color: rgba(255,255,255,0.08);
}

.route-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 10px 0;
  opacity: 0.45;
  transition: opacity 0.5s ease;
}
.route-step.active { opacity: 1; }
.route-step.done   { opacity: 0.55; }

.route-step-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.20);
  background-color: transparent;
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  z-index: 1;
  transition: border-color 0.5s, background-color 0.5s, box-shadow 0.5s;
}
.route-step.active .route-step-dot {
  border-color: #D4A843;
  background-color: rgba(212,168,67,0.20);
  box-shadow: 0 0 8px rgba(212,168,67,0.30);
  animation: pulse-dot 2s ease-in-out infinite;
}
.route-step.done .route-step-dot {
  border-color: rgba(255,255,255,0.30);
  background-color: rgba(255,255,255,0.10);
}

.route-step-content { flex: 1; min-width: 0; }
.route-step-meta { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.route-week {
  font-size: 10px;
  color: #9CA3AF;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: monospace;
}
.route-step-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(200,205,216,0.70);
  transition: color 0.5s;
}
.route-step.active .route-step-title { color: #ffffff; }

.route-step-note {
  font-size: 11px;
  color: rgba(156,163,175,0.70);
  margin-top: 2px;
  transition: color 0.5s;
}
.route-step.active .route-step-note { color: #D4A843; }

.route-card-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.route-alt-label {
  font-size: 10px;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.route-alt {
  display: flex;
  flex-direction: column;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.route-alt:last-of-type { border-bottom: none; }
.route-alt-name { font-size: 12px; color: #C8CDD8; margin-bottom: 2px; }
.route-alt-meta { display: flex; gap: 12px; font-size: 11px; color: #9CA3AF; }

.route-card-cta-text {
  font-size: 12px;
  color: #D4A843;
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 4px;
}
.route-card-disclaimer {
  font-size: 11px;
  color: rgba(156,163,175,0.70);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #D4A843;
  color: #081220;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  transition: background-color 0.15s;
  box-shadow: 0 2px 12px rgba(212,168,67,0.25);
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Noto Sans JP', system-ui, sans-serif;
}
.btn-primary:hover { background-color: #c49a38; color: #081220; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #D4D8E0;
  font-size: 14px;
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.30); color: #ffffff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C8CDD8;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 7px;
  transition: border-color 0.15s, color 0.15s;
  font-family: 'Noto Sans JP', system-ui, sans-serif;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.30); color: #ffffff; }

.btn-sm  { font-size: 12px; padding: 9px 16px; border-radius: 7px; box-shadow: 0 2px 8px rgba(212,168,67,0.20); }
.btn-card { width: 100%; font-size: 12px; padding: 9px 14px; margin-top: auto; }
.btn-wide { width: 100%; max-width: 280px; padding: 13px 24px; font-size: 14px; }
.btn-full { width: 100%; padding: 13px 24px; font-size: 14px; border-radius: 8px; }

/* ═══════════════════════════════════════════
   EYEBROW / LABELS
════════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A843;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════════ */
.section-header { margin-bottom: 32px; }
.section-header-wide { margin-bottom: 48px; }

.two-col-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  margin-bottom: 32px;
  align-items: start;
}
@media (max-width: 768px) { .two-col-header { grid-template-columns: 1fr; } }

.col-body-text { display: flex; align-items: flex-end; }
.col-body-text p { font-size: 15px; line-height: 1.75; color: #C8CDD8; }

.section-headline {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.section-headline em { color: #D4A843; font-style: italic; }

/* ═══════════════════════════════════════════
   CARDS
════════════════════════════════════════════ */
.card {
  background-color: #111827;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background-color 0.2s;
}
.card:hover { border-color: rgba(255,255,255,0.16); background-color: #131E30; }

.card-hover-gold:hover { border-color: rgba(212,168,67,0.25); }

.card-inner { padding: 24px 28px; border-radius: 10px; }

.card-popular {
  border-color: rgba(212,168,67,0.30);
  position: relative;
}
.card-popular-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background-color: #D4A843;
  color: #000;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 0 0 6px 6px;
}

.card-cta-gold {
  background-color: rgba(212,168,67,0.07);
  border-color: rgba(212,168,67,0.25);
  justify-content: space-between;
  gap: 12px;
}
.card-cta-gold:hover { background-color: rgba(212,168,67,0.10); }

.card-num {
  font-family: 'Shippori Mincho', Georgia, serif;
  font-size: 28px;
  color: #4B5563;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.card-num-serif {
  font-family: 'Shippori Mincho', Georgia, serif;
  font-size: 32px;
  color: #4B5563;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.card-num-small {
  font-size: 10px;
  color: #6B7280;
  letter-spacing: 0.10em;
  display: block;
  margin-bottom: 8px;
}
.card-num-small-gold {
  font-size: 12px;
  color: #D4A843;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.card-icon { font-size: 22px; display: block; margin-bottom: 8px; }
.card-icon-lg { font-size: 20px; display: block; margin-bottom: 12px; }

.card-title { font-size: 14px; font-weight: 600; color: #ffffff; margin-bottom: 4px; }
.card-title-lg {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.card-title-serif {
  font-family: 'Shippori Mincho', Georgia, serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.35;
}
.card-body { font-size: 12px; color: #9CA3AF; line-height: 1.65; }
.card-meta {
  font-size: 11px;
  color: rgba(156,163,175,0.80);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 12px;
}
.card-footnote {
  font-size: 12px;
  color: rgba(156,163,175,0.80);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 16px;
}

/* ═══════════════════════════════════════════
   GRIDS
════════════════════════════════════════════ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-routes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .grid-routes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-routes { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════
   INFO STRIP
════════════════════════════════════════════ */
.info-strip {
  background-color: #141823;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 18px 24px;
}
.info-strip p { font-size: 14px; color: #C8CDD8; line-height: 1.7; }

/* ═══════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.body-text-bright { font-size: 15px; line-height: 1.8; color: #D4D8E0; margin-bottom: 16px; }
.body-text-muted  { font-size: 14px; line-height: 1.75; color: #B0BAC8; margin-bottom: 24px; }
.body-text-mid    { font-size: 15px; line-height: 1.75; color: #C8CDD8; margin-bottom: 20px; }

.pullquote {
  font-size: 17px;
  font-style: italic;
  color: #ffffff;
  border-left: 2px solid #D4A843;
  padding-left: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A843;
}
.meta-val { font-size: 13px; color: #ffffff; }

.cred-list { display: flex; flex-direction: column; }
.cred-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cred-item:last-child { border-bottom: none; }
.cred-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background-color: #D4A843;
  flex-shrink: 0;
  margin-top: 5px;
}
.cred-text { font-size: 13px; color: #9CA3AF; line-height: 1.6; }
.cred-text strong { font-weight: 500; color: #F4F6F8; display: block; margin-bottom: 1px; }

/* ═══════════════════════════════════════════
   CTA / CONTACT SECTION
════════════════════════════════════════════ */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: start;
}
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }

.cta-headline { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }

.async-note { font-size: 13px; color: #6B7280; margin-top: 12px; margin-bottom: 28px; }
.inline-link { color: #D4A843; transition: opacity 0.15s; }
.inline-link:hover { opacity: 0.8; }

.trust-list { display: flex; flex-direction: column; gap: 10px; }
.trust-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #6B7280; }
.trust-check { color: #D4A843; font-weight: 600; flex-shrink: 0; }

.cta-card { padding: 32px 28px; border-radius: 14px; }
.cta-card-title {
  font-family: 'Shippori Mincho', Georgia, serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.cta-card-body { font-size: 14px; color: #C8CDD8; line-height: 1.7; margin-bottom: 20px; }

.cta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}
.cta-divider::before, .cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: rgba(255,255,255,0.08);
}
.cta-divider span { font-size: 11px; color: #6B7280; text-transform: uppercase; letter-spacing: 0.08em; }
.cta-small-note { font-size: 11px; color: #6B7280; text-align: center; margin-top: 12px; line-height: 1.5; }

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background-color: #F4F6F8;
  border-top: 1px solid rgba(8,18,32,0.08);
  padding: 40px 48px;
}
@media (max-width: 900px) { .footer { padding: 40px 20px; } }

.footer-inner { max-width: 1320px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px 40px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; text-align: center; }
}

.footer-logo { height: 28px; width: auto; object-fit: contain; max-width: 150px; }
@media (max-width: 768px) { .footer-logo { margin: 0 auto; } }
.footer-tagline { font-size: 12px; color: rgba(8,18,32,0.55); margin-top: 4px; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.footer-nav a { font-size: 12px; color: rgba(8,18,32,0.55); transition: color 0.15s; }
.footer-nav a:hover { color: #081220; }

.footer-contact { text-align: right; }
@media (max-width: 768px) { .footer-contact { text-align: center; } }

.footer-email-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-bottom: 3px;
}
@media (max-width: 768px) { .footer-email-row { justify-content: center; } }

.footer-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: #BC002D;
  flex-shrink: 0;
}
.footer-email { font-size: 13px; color: #081220; transition: color 0.15s; }
.footer-email:hover { color: #BC002D; }
.footer-copy { font-size: 11px; color: rgba(8,18,32,0.50); margin-top: 4px; }

.footer-disclaimer { border-top: 1px solid rgba(8,18,32,0.08); padding-top: 20px; }
.footer-disclaimer p {
  font-size: 13px;
  color: rgba(8,18,32,0.65);
  line-height: 1.9;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   SCROLL MARGIN (fixed navbar offset)
════════════════════════════════════════════ */
#problem-wrap, #routes-wrap, #how-wrap,
#services-wrap, #for-wrap, #about-wrap, #contact-wrap {
  scroll-margin-top: 56px;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }

/* ═══════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0   rgba(212,168,67,0.40); }
  50%  { box-shadow: 0 0 12px rgba(212,168,67,0.50); }
  100% { box-shadow: 0 0 0   rgba(212,168,67,0.40); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE UTILITIES
════════════════════════════════════════════ */
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-wide { max-width: 100%; }
  .meta-strip { grid-template-columns: repeat(3, 1fr); }
}