:root {
  --deep: #0B1D33;
  --navy: #0F2847;
  --slate: #1A3A5C;
  --ocean: #1B6B9A;
  --teal: #1A8A7D;
  --salmon: #E86A3A;
  --salmon-light: #F08A5E;
  --salmon-pale: #FDEEE7;
  --warm: #FFF8F4;
  --sage: #D6DFD0;
  --ice: #E8F1F8;
  --white: #FFFFFF;
  --text: #1C2A3A;
  --muted: #5A6B7E;
  --light-text: #8A95A3;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(27,107,154,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(26,138,125,0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--deep) 0%, #0A1828 100%);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: url('../assets/photo-1574781330855-d0db8cc6a79c.jpeg') center/cover;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 120px 40px 80px;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  max-width: 800px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--salmon);
}
.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.pill {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.pill:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  transform: translateY(-2px);
}
.pill.accent {
  background: var(--salmon);
  border-color: var(--salmon);
  color: var(--white);
  font-weight: 600;
}
.pill.accent:hover {
  background: var(--salmon-light);
  border-color: var(--salmon-light);
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none;
}
.hero-scroll::after {
  content: '↓'; font-size: 20px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(11,29,51,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.nav-brand span { color: var(--salmon); }
.nav-cta {
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--salmon);
  color: var(--white);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}
.nav-cta:hover { transform: scale(1.03); }

/* ═══ SECTION SHARED ═══ */
section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.sec-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--salmon);
  margin-bottom: 16px;
}
.sec-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.sec-heading.light { color: var(--white); }

/* ═══ VISION ═══ */
.vision { background: var(--warm); }
.vision-intro {
  font-size: 20px; font-weight: 300; color: var(--muted);
  max-width: 720px; margin-bottom: 60px; line-height: 1.7;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.vision-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.vision-icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision-icon i {
  font-size: 40px;
}
.vision-icon svg {
  width: 56px; height: 56px;
}
.vision-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  margin-bottom: 10px; color: var(--text);
}
.vision-card p {
  font-size: 15px; color: var(--muted); line-height: 1.65;
}

/* ═══ OPPORTUNITY ═══ */
.opportunity {
  background: var(--deep);
  color: var(--white);
  position: relative; overflow: hidden;
}
.opportunity::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(232,106,58,0.08) 0%, transparent 50%);
}
.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
.opp-stats { display: flex; flex-direction: column; gap: 32px; }
.opp-stat { display: flex; gap: 20px; align-items: flex-start; }
.opp-num {
  font-family: 'Fraunces', serif;
  font-size: 44px; font-weight: 800;
  color: var(--salmon);
  line-height: 1;
  min-width: 140px;
}
.opp-num .unit {
  font-size: 16px; font-weight: 400;
  color: var(--salmon-light);
  display: block;
}
.opp-desc h4 {
  font-size: 17px; font-weight: 600; color: var(--white);
  margin-bottom: 4px;
}
.opp-desc p {
  font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6;
}
.opp-text p {
  font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 20px;
}
.opp-text p strong { color: var(--white); font-weight: 600; }

/* ═══ PILLARS ═══ */
.pillars { background: var(--white); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pillar-card {
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.pillar-card.p1 { background: linear-gradient(135deg, var(--navy), var(--slate)); color: var(--white); }
.pillar-card.p2 { background: linear-gradient(135deg, #1A5C4A, var(--teal)); color: var(--white); }
.pillar-card.p3 { background: linear-gradient(135deg, #7A3B1E, var(--salmon)); color: var(--white); }
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 64px; font-weight: 800;
  opacity: 0.12; position: absolute;
  top: -8px; right: 16px; line-height: 1;
}
.pillar-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  margin-bottom: 16px;
}
.pillar-card ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.pillar-card li {
  font-size: 14px; line-height: 1.5;
  padding-left: 18px; position: relative;
  opacity: 0.9;
}
.pillar-card li::before {
  content: '→'; position: absolute; left: 0;
  font-weight: 700; opacity: 0.6;
}

/* ═══ CTA / FORM ═══ */
.cta-section {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,106,58,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(26,138,125,0.1) 0%, transparent 50%);
}
.cta-section > .container { position: relative; z-index: 2; }
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-left .sec-heading { max-width: 500px; }
.cta-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 460px;
  line-height: 1.7;
}
.cta-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--salmon);
  background: rgba(255,255,255,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}
.form-toggle input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--salmon);
  cursor: pointer;
}
.form-toggle span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.form-submit {
  width: 100%;
  padding: 14px 24px;
  border-radius: 100px;
  background: var(--salmon);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(232,106,58,0.35);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand span { color: var(--salmon); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .opp-grid, .cta-layout { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  section { padding: 72px 24px; }
  .nav { padding: 16px 24px; }
  .hero-content { padding: 100px 24px 60px; }
}
@media (max-width: 600px) {
  .vision-grid { grid-template-columns: 1fr; }
  .hero-pills { flex-direction: column; align-items: flex-start; }
}
