## css/style.css

```css
/*
  MB Intuitive — Core Styles
  Palette:
    --navy: #0D1B2A;
    --midnight: #0B1320;
    --gray-100: #F5F7FA;
    --gray-300: #E5E7EB;
    --gray-600: #6B7280;
    --emerald: #2D6A4F;
    --copper: #B87333;
    --white: #FFFFFF;
  Fonts: Montserrat (headers), Lato (body)
*/

:root {
  --navy: #0D1B2A;
  --midnight: #0B1320;
  --gray-100: #F5F7FA;
  --gray-300: #E5E7EB;
  --gray-600: #6B7280;
  --emerald: #2D6A4F;
  --copper: #B87333;
  --white: #FFFFFF;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 2.2rem + 1.2vw, 3rem); margin: 0 0 0.5rem; }
h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin: 0 0 0.5rem; }
h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }
.lead { font-size: 1.1rem; color: var(--navy); opacity: .9; }
.small { font-size: .9rem; }
.muted { color: var(--gray-600); }

.container { width: min(1100px, 92%); margin: 0 auto; }
.section { padding: 72px 0; }
.section--alt { background: var(--gray-100); }
.section-header { text-align: center; margin-bottom: 36px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(13,27,42,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 700; text-decoration: none; }
.brand-mark { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--navy); color: var(--white); font-weight: 700; }
.brand-word { letter-spacing: .5px; }

.nav-list { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav-list a { text-decoration: none; color: var(--navy); font-weight: 600; }
.nav-list a.btn { color: var(--white); }
.nav-toggle { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-inner { padding: 96px 0; text-align: center; }
.hero-ctas { display: inline-flex; gap: 12px; margin-top: 18px; }
.trust-bullets { display: flex; gap: 16px; justify-content: center; list-style: none; padding: 0; margin: 18px 0 0; color: var(--gray-600); }
.hero-glow { position: absolute; inset: -20% -10% auto -10%; height: 60%; background: radial-gradient(600px 300px at 50% 20%, rgba(45,106,79,0.25), transparent 60%); pointer-events: none; }

/* Buttons */
.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 700; transition: transform .08s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--primary { background: linear-gradient(135deg, var(--emerald), #1f5a42); color: var(--white); }
.btn--ghost { border: 2px solid var(--emerald); color: var(--emerald); }
.btn--small { padding: 8px 14px; font-size: .9rem; background: var(--emerald); color: var(--white); }

/* Grid */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

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

/* Cards */
.card { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--gray-300); }
.card-icon { font-size: 28px; }
.tick-list { padding-left: 1.2em; margin: 8px 0 0; }
.tick-list li { margin: 6px 0; }

/* About stats */
.statbox { display: grid; gap: 12px; align-content: start; }
.stat { display: flex; align-items: baseline; gap: 10px; background: var(--gray-100); padding: 14px 16px; border-radius: 12px; border: 1px solid var(--gray-300); }
.stat-num { font-weight: 700; font-size: 1.25rem; }
.stat-label { color: var(--gray-600); }

/* Process */
.process { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.process li { list-style: none; background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--gray-300); }
.process li h3::before { counter-increment: step; content: counter(step) ". "; color: var(--emerald); }

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

/* Quotes */
.quotes .quote { background: var(--white); border-left: 4px solid var(--copper); padding: 16px 18px; border-radius: 10px; box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.quotes cite { display: block; margin-top: 8px; color: var(--gray-600); font-style: normal; }

/* CTA */
.cta { background: linear-gradient(180deg, var(--gray-100), #fff); }
.cta-inner { text-align: center; background: var(--white); border: 1px solid var(--gray-300); border-radius: 20px; padding: 36px; box-shadow: var(--shadow); }

/* Coming Soon */

.coming-soon {
  min-height: 70vh; /* take up most of screen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.coming-soon h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0D1B2A; /* your navy */
}

.coming-soon p {
  font-size: 1.2rem;
  color: #6B7280; /* muted gray */
  margin: 5px 0;
}

.coming-soon a {
  color: #2D6A4F; /* emerald */
  font-weight: 600;
  text-decoration: none;
}
.coming-soon a:hover {
  text-decoration: underline;
}


/* Footer */
.site-footer { background: var(--midnight); color: var(--white); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.site-footer .brand-mark { background: var(--white); color: var(--midnight); }
.site-footer .brand-word { font-weight: 700; letter-spacing: .5px; }
.to-top { color: var(--white); text-decoration: none; opacity: .9; }

@media (max-width: 720px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* Nav (mobile) */
.nav-toggle { display: none; background: none; border: 2px solid var(--gray-300); border-radius: 10px; padding: 6px 10px; }
@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .nav-list { position: absolute; right: 16px; top: 64px; background: var(--white); border: 1px solid var(--gray-300); border-radius: 12px; padding: 12px; flex-direction: column; gap: 10px; display: none; box-shadow: var(--shadow); }
  .nav-list.is-open { display: flex; }
}

/* Focus states */
:focus-visible { outline: 3px solid var(--emerald); outline-offset: 2px; border-radius: 8px; }
```

/* Footer */
.site-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #6B7280; /* muted gray */
  padding: 20px 0;
  border-top: 1px solid #E5E7EB;
  margin-top: 40px;
}
