/* 96M Official — Fresh Design v2 */
/* Palette: White, Blue (#0a2e5c), Orange (#ff8c00) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --blue: #0a2e5c;
  --blue-mid: #15447a;
  --blue-light: #edf2f9;
  --blue-glow: rgba(10, 46, 92, 0.08);
  --orange: #ff8c00;
  --orange-light: #fff4e5;
  --orange-hover: #e67e00;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ed;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --text: #222831;
  --text-muted: #5a6577;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1160px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--orange); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════
   HEADER
   ══════════════════════════════════ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 36px;
  width: auto;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 4px;
  transition: var(--transition);
}

/* Nav */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: -0.01em;
}

.main-nav a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.main-nav a.active {
  color: var(--blue);
  font-weight: 600;
  background: var(--blue-light);
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(255,140,0,0.3);
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background: var(--orange-hover);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,140,0,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--white) !important;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white) !important;
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  background: var(--blue);
  background: linear-gradient(160deg, #0a2e5c 0%, #0f3a72 40%, #15447a 100%);
  color: var(--white);
  padding: 70px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,140,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-logo {
  height: 50px;
  margin: 0 auto 28px;
}

.hero h1 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 32px;
  opacity: 0.88;
  line-height: 1.65;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════
   TRUST BAR
   ══════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.trust-item .icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   SECTIONS
   ══════════════════════════════════ */
.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ══════════════════════════════════
   CARDS
   ══════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all var(--transition);
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 14px;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 8px;
  color: var(--orange-hover);
}

/* ══════════════════════════════════
   AMBASSADOR
   ══════════════════════════════════ */
.ambassador-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.ambassador-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition);
}

.ambassador-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ambassador-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.ambassador-card h3 {
  color: var(--blue);
  margin-bottom: 2px;
  font-size: 1.1rem;
  font-weight: 700;
}

.ambassador-card .role {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.ambassador-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ══════════════════════════════════
   CONTENT PAGES
   ══════════════════════════════════ */
.page-content {
  padding: 48px 0 64px;
}

.page-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.page-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.page-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: 28px;
  margin-bottom: 10px;
}

.page-content p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.75;
}

.page-content ul,
.page-content ol {
  margin: 0 0 18px 24px;
  color: var(--text);
}

.page-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.page-content a {
  color: var(--blue-mid);
  text-decoration: underline;
  text-decoration-color: rgba(21,68,122,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}

.page-content a:hover {
  text-decoration-color: var(--orange);
  color: var(--orange);
}

/* Callout boxes */
.highlight-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}

.highlight-box p { margin: 0; color: var(--blue); font-weight: 500; }

.warning-box {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}

.warning-box p { margin: 0; color: #7a5000; font-weight: 500; }

/* CTA Box */
.cta-box {
  background: var(--blue);
  background: linear-gradient(135deg, #0a2e5c 0%, #15447a 100%);
  color: var(--white);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,140,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box h2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.5rem;
  position: relative;
}

.cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  position: relative;
}

/* ══════════════════════════════════
   TABLE
   ══════════════════════════════════ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.93rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  text-align: left;
}

.info-table th {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.info-table td {
  border-bottom: 1px solid var(--gray-200);
}

.info-table tr:nth-child(even) td {
  background: var(--off-white);
}

.info-table tr:last-child td {
  border-bottom: none;
}

/* ══════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════ */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--blue-mid);
  font-weight: 500;
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--gray-400);
}

/* ══════════════════════════════════
   CHECK LIST
   ══════════════════════════════════ */
.check-list {
  list-style: none;
  margin-left: 0 !important;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.site-footer {
  background: var(--blue);
  color: rgba(255,255,255,0.75);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 14px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom p { margin-bottom: 4px; }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (min-width: 600px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .ambassador-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.5rem; }
  .trust-items { gap: 40px; }
}

@media (min-width: 900px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }

  .hero {
    padding: 90px 24px 100px;
  }

  .hero h1 { font-size: 3rem; }
  .hero-logo { height: 56px; }

  .section { padding: 80px 0; }
  .page-content { padding: 56px 0 80px; }

  .page-content h1 { font-size: 2.3rem; }
  .section-title { font-size: 2.1rem; }
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 2px;
  }

  .main-nav a {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .main-nav .btn-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .trust-items {
    gap: 20px;
  }

  .trust-item {
    font-size: 0.82rem;
  }
}

/* ══════════════════════════════════
   SCROLL ANIMATIONS (subtle)
   ══════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .card,
  .ambassador-card {
    opacity: 1;
  }
}
