:root {
  --navy: #0f2742;
  --blue: #184d7a;
  --gold: #d6a43a;
  --gold-light: #f0be55;
  --light: #f4f7fb;
  --white: #ffffff;
  --text: #1d2a36;
  --muted: #5d6a75;
  --border: #dbe4ee;
  --shadow: 0 10px 30px rgba(10, 30, 60, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; line-height: 1.6; color: var(--text); background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(92%, var(--max)); margin: 0 auto; }

header { background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); padding-bottom: 50px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 70px; height: 70px; object-fit: contain; flex-shrink: 0; }
.brand-text h1 { font-size: 1.15rem; line-height: 1.2; margin-bottom: 2px; }
.brand-text p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); }
nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
nav a { color: rgba(255, 255, 255, 0.95); font-weight: 600; font-size: 0.96rem; }
nav a:hover, nav a.active { color: #ffd77a; }

.hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 42px; align-items: center; padding: 54px 0 30px; }
.hero-centered { grid-template-columns: 1fr; text-align: center; max-width: 920px; margin: 0 auto; }
.hero h2 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; margin-bottom: 18px; }
.hero p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); max-width: 760px; margin-bottom: 24px; }
.hero-centered p { margin-left: auto; margin-right: auto; }
.hero-buttons, .cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-centered .hero-buttons, .cta-buttons { justify-content: center; }
.hero-list { list-style: none; color: rgba(255, 255, 255, 0.92); margin-top: 10px; }
.hero-list li { margin-bottom: 8px; font-size: 1rem; }
.hero-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; min-height: 360px; }
.hero-card img { max-width: 280px; width: 100%; height: auto; object-fit: contain; }

.btn { display: inline-block; padding: 14px 24px; border-radius: 999px; font-weight: 700; transition: 0.2s ease; border: 2px solid transparent; }
.btn-primary { background: var(--gold); color: #1e1e1e; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; border-color: var(--white); color: var(--white); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

section { padding: 75px 0; }
.section-heading { text-align: center; margin-bottom: 36px; }
.section-heading h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 10px; }
.section-heading p { max-width: 840px; margin: 0 auto; color: var(--muted); font-size: 1.04rem; }
.highlight { background: var(--light); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-four { grid-template-columns: repeat(4, 1fr); }
.panel, .card, .founder-card, .founder-text { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: 0 8px 24px rgba(13, 31, 56, 0.05); }
.card h4, .panel h4 { color: var(--navy); margin-bottom: 12px; }
.card h4 { font-size: 1.2rem; }
.panel h4 { font-size: 1.4rem; }
.card p, .panel p, .founder-text p { color: var(--muted); margin-bottom: 14px; }
.panel ul, .card ul { padding-left: 20px; color: var(--muted); }
.panel li + li, .card li + li { margin-top: 10px; }
.card a { color: var(--blue); font-weight: 700; display: inline-block; margin-top: 10px; }
.badge { display: inline-block; background: rgba(214,164,58,.18); color: #6f4d09; font-weight: 700; border: 1px solid rgba(214,164,58,.5); border-radius: 999px; padding: 6px 12px; margin-bottom: 14px; font-size: .9rem; }
.path { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: 0 8px 24px rgba(13,31,56,.05); }
.step strong { color: var(--gold); display: block; margin-bottom: 8px; }
.step h4 { color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); }
.founder { display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: center; }
.founder-card { display: flex; justify-content: center; align-items: center; min-height: 300px; }
.founder-card img { max-width: 220px; }
.cta { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1d1d1d; border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow); }
.cta h3 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 12px; }
.cta p { max-width: 800px; margin: 0 auto 22px; font-size: 1.03rem; }
footer { background: #0c1f34; color: rgba(255,255,255,.86); padding: 28px 0; margin-top: 70px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.small { font-size: .92rem; }

@media (max-width: 980px) {
  .hero, .split, .cards, .cards-four, .founder, .path { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; align-items: flex-start; }
  .hero-card { min-height: 260px; }
}
@media (max-width: 640px) {
  .brand img { width: 60px; height: 60px; }
  .panel, .card, .founder-card, .founder-text, .hero-card, .cta, .step { padding: 22px; }
  .hero-card img { max-width: 220px; }
  .hero h2 { font-size: 2.2rem; }
}
