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

  :root {
    --navy: #0d1f3c;
    --navy-mid: #1b3a5c;
    --navy-light: #2e5a8e;
    --navy-pale: #e8eef6;
    --navy-ghost: #f4f7fb;
    --white: #ffffff;
    --off-white: #fafaf9;
    --text-dark: #0d1f3c;
    --text-mid: #4a5568;
    --text-light: #718096;
    --gold: #c9a84c;
    --border: rgba(13,31,60,0.12);
    --border-light: rgba(13,31,60,0.07);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(8px);
  }

  .nav-logo {
    height: 36px;
    width: auto;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--navy-light) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
      linear-gradient(135deg, rgba(13,31,60,0.03) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(13,31,60,0.04) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-meridian-line {
    width: 1px;
    height: 60px;
    background: var(--gold);
    margin: 0 auto 3rem;
    opacity: 0.7;
  }

  .hero-logo {
    width: min(520px, 80vw);
    height: auto;
    margin-bottom: 2rem;
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--navy-light);
    letter-spacing: 0.02em;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    line-height: 1.5;
  }

  .hero-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 3.5rem;
  }

  .hero-values {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }

  .hero-value {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 400;
  }

  .hero-value span {
    color: var(--gold);
    margin-right: 0.5rem;
  }

  .hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
  }

  .btn-secondary {
    display: inline-block;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 2px;
    transition: all 0.2s;
  }

  .btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
  }

  /* SECTION BASE */
  section { padding: 6rem 2rem; }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
  }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .section-subheading {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
  }

  /* PROBLEM SECTION */
  .problem {
    background: var(--navy);
    color: var(--white);
  }

  .problem .section-heading { color: var(--white); }

  .problem .section-subheading {
    color: rgba(255,255,255,0.7);
    max-width: 700px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    margin-top: 4rem;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .stat-card {
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: background 0.2s;
  }

  .stat-card:hover { background: rgba(255,255,255,0.07); }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
  }

  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    line-height: 1.5;
  }

  .problem-quote {
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    border-left: 2px solid var(--gold);
    background: rgba(255,255,255,0.04);
  }

  .problem-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    line-height: 1.6;
  }

  /* SOLUTION SECTION */
  .solution { background: var(--off-white); }

  .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 4rem;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .solution-card {
    background: var(--white);
    padding: 2.5rem;
    position: relative;
  }

  .solution-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--navy-pale);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
  }

  .solution-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }

  .solution-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
  }

  /* WHO WE SERVE */
  .serve { background: var(--white); }

  .serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
  }

  .serve-card {
    padding: 3rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .serve-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
  }

  .serve-card-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: block;
  }

  .serve-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.25rem;
  }

  .serve-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1rem;
  }

  .serve-list {
    list-style: none;
    margin-top: 1.5rem;
  }

  .serve-list li {
    font-size: 0.85rem;
    color: var(--text-mid);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 300;
  }

  .serve-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* TEAM SECTION */
  .team { background: var(--navy-ghost); }

  .team-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
  }

  .team-credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .credential-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .credential-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .credential-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }

  .credential-text h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.25rem;
    letter-spacing: 0.04em;
  }

  .credential-text p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
  }

  .team-statement {
    padding: 3rem;
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
  }

  .team-statement::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--navy-pale);
    line-height: 1;
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-weight: 300;
  }

  .team-statement p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--navy);
    line-height: 1.7;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .team-statement-footer {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 400;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

  /* BOOK SECTION */
  .book { background: var(--white); }

  .book-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
  }

  .book-cover-wrap {
    position: relative;
  }

  .book-cover-shadow {
    width: 220px;
    box-shadow: 
      8px 8px 0 var(--navy-pale),
      16px 16px 0 rgba(13,31,60,0.06);
  }

  .book-cover-shadow img {
    width: 100%;
    height: auto;
    display: block;
  }

  .book-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .book-details .book-author {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1.5rem;
    display: block;
  }

  .book-details p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1rem;
    max-width: 520px;
  }

  .book-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 2rem;
  }

  .pillar-tag {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--navy-pale);
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
    font-weight: 400;
  }

  /* INVESTOR SECTION */
  .investor {
    background: var(--navy);
    color: var(--white);
    text-align: center;
  }

  .investor .section-heading { color: var(--white); }

  .investor-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 680px;
    margin: 1.5rem auto 3rem;
    line-height: 1.9;
    font-weight: 300;
  }

  .investor-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 3rem 0 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .investor-metric {
    text-align: center;
  }

  .investor-metric-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
  }

  .investor-metric-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
  }

  .investor-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 4rem;
    text-align: left;
  }

  .investor-principle {
    padding: 2rem;
    background: rgba(255,255,255,0.03);
  }

  .investor-principle h4 {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.75rem;
  }

  .investor-principle p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 300;
  }

  /* CONTACT SECTION */
  .contact { background: var(--off-white); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    margin-top: 4rem;
  }

  .contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
  }

  .contact-info p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 400;
  }

  .contact-detail-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 400;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy-light);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-submit {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    align-self: flex-start;
  }

  .form-submit:hover { background: var(--navy-light); }

  .form-note {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
  }

  /* FOOTER */
  footer {
    background: var(--navy);
    padding: 3rem 2rem;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-logo { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }

  .footer-tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
  }

  .footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em;
  }

  /* DIVIDER LINE MOTIF */
  .meridian-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .meridian-divider::before,
  .meridian-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .meridian-divider span {
    width: 1px;
    height: 32px;
    background: var(--gold);
    opacity: 0.7;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero > * {
    animation: fadeUp 0.8s ease both;
  }

  .hero > *:nth-child(1) { animation-delay: 0.1s; }
  .hero > *:nth-child(2) { animation-delay: 0.2s; }
  .hero > *:nth-child(3) { animation-delay: 0.3s; }
  .hero > *:nth-child(4) { animation-delay: 0.4s; }
  .hero > *:nth-child(5) { animation-delay: 0.5s; }
  .hero > *:nth-child(6) { animation-delay: 0.6s; }
  .hero > *:nth-child(7) { animation-delay: 0.7s; }

  /* MOBILE */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { padding: 7rem 1.5rem 4rem; }
    .hero-logo { width: min(340px, 90vw); }
    .hero-values { gap: 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .solution-grid { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr; }
    .team-content { grid-template-columns: 1fr; gap: 3rem; }
    .book-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .book-cover-shadow { width: 160px; }
    .investor-metrics { gap: 2.5rem; }
    .investor-principles { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-tagline { font-size: 1rem; }
  }


/* Checkbox reset */
.form-group input[type="checkbox"] {
  -webkit-appearance: auto;
  appearance: auto;
  padding: 0;
  width: auto;
  border: none;
  background: transparent;
}
.form-group input[type="checkbox"]:focus {
  outline: 2px solid var(--gold);
}
