:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --primary: #153b7a;
  --primary-2: #1e5ac6;
  --gold: #caa74a;
  --soft: #f8fafc;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226,232,240,.8);
}
.nav-wrap { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding: .9rem 0; }
.brand { display:flex; align-items:center; gap: .85rem; min-width:0; }
.brand-logo { width: 64px; height: 64px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.brand-name { font-weight: 800; font-size: .87rem; line-height: 1.3; display:block; max-width: 550px; }
.nav { display:flex; gap:1.1rem; align-items:center; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--primary); }
.menu-btn { display:none; border:1px solid var(--line); background:#fff; border-radius:12px; padding:.55rem .8rem; font-size:1.1rem; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(30,90,198,.12), transparent 24%),
    radial-gradient(circle at left center, rgba(202,167,74,.10), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hero::before {
  content:""; position:absolute; inset:auto -10% -120px auto; width:320px; height:320px; border-radius:50%;
  background: rgba(21,59,122,.06); filter: blur(10px);
}
.hero-grid, .split-grid, .two-col, .footer-grid, .profile-box { display:grid; gap:2rem; }
.hero-grid { grid-template-columns: 1.25fr .9fr; align-items:center; }
.eyebrow, .section-tag {
  display:inline-block; font-weight:700; color:var(--primary-2);
  background:#eaf1ff; padding:.45rem .8rem; border-radius:999px; margin-bottom:1rem; font-size:.9rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.04; margin:0 0 1rem; }
.lead { color: var(--muted); font-size: 1.08rem; line-height: 1.8; max-width: 62ch; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.6rem; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding:.95rem 1.2rem; border-radius:14px; font-weight:700; transition:.25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color:#fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { border:1px solid var(--line); background:#fff; color:var(--text); }
.hero-card {
  background: linear-gradient(160deg, #113168 0%, #1d4a97 55%, #163f80 100%);
  border-radius: 30px; padding: 2rem; box-shadow: var(--shadow); position: relative;
}
.hero-card::after {
  content:""; position:absolute; inset:18px; border:1px solid rgba(255,255,255,.12); border-radius:24px;
}
.hero-logo { width:100%; border-radius: 20px; position:relative; z-index:1; }
.section { padding: 4.5rem 0; }
.split-grid { grid-template-columns: 1fr 1fr; align-items:center; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin:0 0 1rem; }
.section p { color: var(--muted); line-height: 1.85; font-size: 1.04rem; }
.image-frame {
  background:#fff; border:1px solid var(--line); border-radius: 28px; padding: .9rem; box-shadow: var(--shadow);
}
.image-frame img { border-radius: 22px; width:100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.section-head { text-align:center; margin-bottom:2rem; }
.cards {
  display:grid; grid-template-columns: repeat(3, 1fr); gap:1.2rem;
}
.card {
  border:1px solid var(--line); background:#fff; border-radius:22px; padding:1.4rem;
  min-height:160px; box-shadow: var(--shadow);
  position:relative; overflow:hidden;
}
.card::before {
  content:""; position:absolute; inset:0 auto auto 0; width:100%; height:5px;
  background: linear-gradient(90deg, var(--gold), var(--primary-2));
}
.card h3 { margin: 1rem 0 0; font-size:1.08rem; line-height:1.5; }
.profile-box {
  grid-template-columns: 1fr auto; align-items:center; padding:2rem;
  background: linear-gradient(135deg, #fbfdff, #f2f7ff); border:1px solid var(--line); border-radius:30px; box-shadow: var(--shadow);
}
.role { font-weight:700; color: var(--primary); }
.two-col { grid-template-columns: 1fr 1fr; }
.contact-panel {
  padding: 2rem; background: var(--soft); border:1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow);
}
.contact-list { list-style:none; padding:0; margin:1rem 0 0; }
.contact-list li { padding:.5rem 0; color:var(--muted); }
.footer { background:#0f172a; color:#e2e8f0; padding:2rem 0; }
.footer-grid { grid-template-columns: 1.3fr 1fr; align-items:center; }
.footer-title { font-weight:800; color:#fff; margin:0 0 .4rem; }
.footer a { color:#fff; }
.reveal { opacity:0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }
@media (max-width: 980px) {
  .hero-grid, .split-grid, .cards, .two-col, .footer-grid, .profile-box { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .brand-name { max-width: 340px; font-size: .8rem; }
}
@media (max-width: 760px) {
  .menu-btn { display:block; }
  .nav {
    position:absolute; top:100%; left:0; right:0; background:#fff; border-bottom:1px solid var(--line);
    flex-direction:column; padding:1rem; display:none;
  }
  .nav.open { display:flex; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  .hero-card { order:-1; }
  .brand-logo { width:54px; height:54px; }
  .brand-name { max-width: 220px; font-size: .74rem; }
}
