:root {
  --navy: #071a58;
  --deep: #020722;
  --royal: #c99626;
  --gold: #d9aa3d;
  --gold-dark: #9f6f13;
  --sky: #fff4d7;
  --soft: #fbf8f1;
  --ink: #15204b;
  --muted: rgba(21, 32, 75, 0.68);
  --line: rgba(201, 150, 38, 0.24);
  --shadow: 0 18px 48px rgba(7, 26, 88, 0.12);
  --glow: 0 24px 80px rgba(201, 150, 38, 0.22);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: #fff;
  background-image:
    linear-gradient(to right, #f3f0e7 1px, transparent 1px),
    linear-gradient(to right, rgba(201,150,38,.045) 1px, transparent 1px),
    linear-gradient(to bottom, #f3f0e7 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201,150,38,.045) 1px, transparent 1px);
  background-size: 100px 100px, 20px 20px, 100px 100px, 20px 20px;
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 72px 0; }
.section-soft { background: var(--soft); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(201, 150, 38, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 32px rgba(7, 26, 88, 0.08);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 190px; }
.brand img { width: 52px; height: 58px; object-fit: contain; object-position: center; background: transparent; }
.brand span, .brand strong, .brand small { display: block; }
.brand strong { color: var(--navy); font-size: 1.02rem; line-height: 1; font-weight: 950; }
.brand small { margin-top: 4px; color: var(--gold-dark); font-size: .67rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 22px; font-size: 0.93rem; font-weight: 800; color: rgba(5, 10, 79, 0.82); }
.desktop-nav > a, .nav-dropdown > a { padding: 28px 0; border-bottom: 3px solid transparent; }
.desktop-nav a:hover, .desktop-nav .active { color: var(--gold-dark); border-color: var(--royal); }
.nav-dropdown { position: relative; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  width: min(760px, calc(100vw - 40px));
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: 180ms ease;
}
.nav-dropdown:hover .mega-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-copy { border-radius: var(--radius); background: linear-gradient(145deg, var(--navy), var(--deep)); color: #fff; padding: 22px; }
.mega-copy span, .kicker, .section-heading span { color: var(--royal); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.mega-copy span { color: rgba(255,244,215,.72); }
.mega-copy strong { display: block; margin-top: 12px; font-size: 1.25rem; line-height: 1.25; }
.mega-copy p { color: rgba(255,255,255,.68); line-height: 1.65; }
.mega-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mega-links a { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; font-weight: 850; }
.mega-links a:hover { background: var(--soft); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  transition: 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--deep); box-shadow: var(--glow); }
.btn-primary:hover { background: linear-gradient(135deg, var(--navy), var(--deep)); color: #fff; }
.btn-outline { border-color: var(--line); background: #fff; color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy); }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; padding: 12px 16px 18px; }
.mobile-menu a { display: block; border-radius: var(--radius); padding: 13px 14px; font-weight: 850; }
.mobile-menu a:hover { background: var(--soft); }
.home-hero, .page-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(217,170,61,.2), transparent 34%),
    linear-gradient(180deg, rgba(255,248,232,.92) 0%, rgba(255,255,255,.86) 100%);
  padding: 72px 0;
}
.home-hero { padding: 76px 0 68px; }
.page-hero.compact { padding: 44px 0 24px; text-align: left; }
.page-hero.compact + .section { padding-top: 22px; }
.split-hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr); gap: 44px; align-items: center; }
.split-hero > *, .compact-hero-grid > *, .two-col > *, .why-grid > *, .contact-grid > *, .ceo-layout > * { min-width: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 16px 0 20px;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 950;
}
.page-hero:not(.compact) h1 { max-width: 780px; }
.page-hero.compact h1 { max-width: 760px; margin-inline: 0; font-size: clamp(2.2rem, 3.6vw, 3.55rem); }
.home-hero p, .page-hero p { max-width: 760px; color: var(--muted); font-size: 1.12rem; line-height: 1.78; }
.page-hero.compact p { margin-inline: 0; }
.compact-hero-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(360px, .86fr); gap: 34px; align-items: center; }
.compact-hero-art {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow);
}
.compact-hero-art img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  background: var(--sky);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note {
  display: inline-flex;
  margin-top: 24px;
  border-left: 4px solid var(--royal);
  background: var(--sky);
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 850;
}
.hero-showcase, .product-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  color: var(--navy);
  padding: 18px;
  box-shadow: var(--glow);
}
.hero-showcase { align-self: stretch; }
.hero-art, .visual-art {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sky);
}
.hero-art { aspect-ratio: 2.05 / 1; margin-bottom: 16px; }
.reward-wallet {
  border: 1px solid rgba(217,170,61,.25);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--deep) 0%, var(--navy) 64%, #182e75 100%);
  color: #fff;
  padding: 28px;
}
.hero-showcase .reward-wallet { padding: 22px; }
.hero-showcase .reward-wallet > strong { font-size: 1.72rem; }
.hero-showcase .wallet-card { gap: 10px; margin-top: 20px; }
.hero-showcase .wallet-card div { padding: 13px; }
.hero-showcase .progress-block { margin-top: 18px; padding: 16px; }
.hero-showcase .progress-block p { margin: 10px 0 6px; font-size: .92rem; }
.product-visual {
  display: grid;
  gap: 16px;
  align-self: stretch;
}
.visual-card {
  border: 1px solid rgba(217,170,61,.25);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--deep) 0%, var(--navy) 64%, #182e75 100%);
  color: #fff;
  padding: 24px;
}
.reward-wallet > span, .visual-header span {
  color: rgba(255,255,255,.58);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.reward-wallet > strong, .visual-header strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1.1;
}
.wallet-card, .visual-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.wallet-card div, .visual-metrics div {
  border: 1px solid rgba(217,170,61,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  padding: 16px;
}
.wallet-card span, .visual-metrics span { display: block; color: rgba(255,255,255,.58); font-size: .82rem; font-weight: 850; }
.wallet-card strong, .visual-metrics strong { display: block; margin-top: 8px; font-size: 1.18rem; }
.progress-block { margin-top: 24px; border-radius: var(--radius); background: #fff; color: var(--navy); padding: 20px; }
.progress-block p { display: flex; justify-content: space-between; gap: 16px; margin: 16px 0 8px; font-weight: 850; color: rgba(5,10,79,.65); }
.progress-block strong { color: var(--navy); }
.progress-block i { display: block; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--royal) var(--w), rgba(201,150,38,.16) var(--w)); }
.visual-list { margin-top: 22px; display: grid; gap: 12px; }
.visual-list p { display: flex; align-items: center; gap: 10px; margin: 0; color: rgba(255,255,255,.74); font-weight: 780; }
.visual-list span, .benefit-list span { display: inline-flex; flex: 0 0 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--royal); }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .two-col h2, .why-grid h2, .ceo-preview h2 {
  margin: 12px 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 950;
}
.section-heading p, .two-col p, .why-grid p, .ceo-preview p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.audience-grid, .solution-directory, .resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card, .directory-card, .resource-grid article {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 180ms ease;
}
.audience-card:hover, .directory-card:hover { transform: translateY(-4px); border-color: rgba(201,150,38,.5); }
.audience-card span, .directory-card span, .resource-grid span { color: var(--royal); font-size: .8rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.audience-card h3, .directory-card h2, .resource-grid h2 { margin: 14px 0 12px; color: var(--navy); font-size: 1.45rem; line-height: 1.2; }
.audience-card p, .directory-card p, .resource-grid p { color: var(--muted); line-height: 1.7; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card, .process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  padding: 24px;
  box-shadow: var(--shadow);
}
.mini-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--royal);
  font-weight: 950;
}
.feature-card h3, .process-card h3 { margin: 18px 0 10px; color: var(--navy); font-size: 1.18rem; }
.feature-card p, .process-card p { color: var(--muted); line-height: 1.68; }
.solution-stories { display: grid; gap: 28px; }
.solution-stories article {
  display: grid;
  grid-template-columns: .8fr 1fr .55fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}
.solution-stories span { color: var(--royal); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; }
.solution-stories h2 { color: var(--navy); font-size: 1.65rem; line-height: 1.18; }
.solution-stories ul { margin: 0; color: var(--muted); line-height: 1.8; }
.solution-stories a, .directory-card strong { color: var(--royal); font-weight: 950; }
.numbers-band { background: linear-gradient(145deg, var(--deep), var(--navy)); color: #fff; padding: 58px 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.numbers-grid div { border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.08); padding: 24px; text-align: center; }
.numbers-grid strong { display: block; font-size: 2.35rem; }
.numbers-grid span { display: block; margin-top: 8px; color: rgba(255,255,255,.64); font-weight: 800; font-size: .86rem; }
.why-grid, .two-col, .ceo-preview { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.check-grid, .benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.check-grid div, .benefit-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(5,10,79,.07);
}
.ceo-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}
.ceo-preview img { width: min(360px, 100%); aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: var(--radius); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card span { color: var(--royal); font-size: 1.7rem; font-weight: 950; }
.ceo-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 40px; align-items: start; }
.ceo-photo-card, .ceo-message-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}
.ceo-photo-card img { aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: var(--radius); }
.ceo-photo-card div { margin-top: 18px; border-radius: var(--radius); background: var(--navy); color: #fff; padding: 18px; }
.ceo-photo-card strong, .ceo-photo-card span { display: block; }
.ceo-photo-card span { margin-top: 6px; color: rgba(255,255,255,.65); }
.ceo-message-card h2 { margin: 12px 0 16px; color: var(--navy); font-size: 2.4rem; }
.ceo-message-card p { color: var(--muted); font-size: 1.05rem; line-height: 1.82; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.pill-row span { border-radius: 999px; background: var(--sky); color: var(--royal); padding: 9px 14px; font-weight: 900; font-size: .86rem; }
.signature { display: block; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--navy); font-size: 1.1rem; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 30px; }
.contact-panel { border-radius: var(--radius); background: var(--navy); color: #fff; padding: 34px; box-shadow: var(--glow); }
.contact-panel h2 { font-size: 2rem; line-height: 1.1; }
.contact-panel p { color: rgba(255,255,255,.68); line-height: 1.72; }
.contact-panel div { margin-top: 22px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; }
.contact-panel span, .contact-panel strong { display: block; }
.contact-panel span { color: rgba(255,255,255,.5); font-size: .8rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-panel strong { margin-top: 8px; line-height: 1.6; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; color: rgba(5,10,79,.72); font-weight: 850; }
.contact-form .full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 15px;
  color: var(--navy);
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.form-success { display: none; grid-column: 1 / -1; margin: 0; color: var(--royal); font-weight: 900; }
.form-success.show { display: block; }
.cta-band { padding: 72px 0; background: linear-gradient(145deg, var(--deep), var(--navy)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner span { color: rgba(255,255,255,.56); font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.cta-inner h2 { margin: 12px 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.04; }
.cta-inner p { max-width: 740px; color: rgba(255,255,255,.68); line-height: 1.75; }
.site-footer { background: linear-gradient(145deg, #020722, #071a58); color: #fff; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr 1.15fr; gap: 34px; }
.footer-logo { width: 220px; border-radius: var(--radius); background: #fff; padding: 8px; }
.footer-tagline { display: block; margin-top: 18px; font-size: 1.12rem; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.6); line-height: 1.7; }
.site-footer a { display: block; margin-top: 12px; }
.site-footer a:hover { color: #fff; }
.site-footer h4 { margin: 0 0 16px; }
.legal-strip {
  display: grid;
  grid-template-columns: .9fr .65fr 1.45fr;
  gap: 20px;
  margin-top: 38px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  padding: 22px;
}
.legal-strip span { display: block; color: rgba(255,255,255,.42); font-size: .74rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.legal-strip strong { display: block; margin-top: 8px; color: #fff; line-height: 1.55; }
.copyright { margin-top: 26px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; color: rgba(255,255,255,.48); text-align: center; font-size: .9rem; }
.reveal { opacity: 0; transform: translateY(18px); animation: fadeUp 700ms ease var(--delay, 0ms) both; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu.open { display: block; }
  .split-hero, .compact-hero-grid, .why-grid, .two-col, .ceo-preview, .ceo-layout, .contact-grid { grid-template-columns: 1fr; }
  .audience-grid, .solution-directory, .resource-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-strip { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 56px 0; }
  .home-hero, .page-hero { padding: 56px 0; }
  .page-hero.compact { padding: 38px 0 18px; }
  .page-hero.compact + .section { padding-top: 18px; }
  .brand { min-width: 0; }
  .brand img { width: 45px; height: 50px; }
  .brand strong { font-size: .95rem; }
  .brand small { font-size: .58rem; letter-spacing: .08em; }
  h1, .page-hero.compact h1 { max-width: 100%; font-size: clamp(2.05rem, 10vw, 2.4rem); line-height: 1.08; overflow-wrap: break-word; }
  .home-hero p, .page-hero p { max-width: 100%; font-size: 1rem; line-height: 1.7; overflow-wrap: break-word; }
  .hero-actions, .cta-inner { flex-direction: column; align-items: stretch; }
  .hero-actions { width: 100%; }
  .btn { width: 100%; max-width: 100%; min-width: 0; padding-inline: 18px; }
  .hero-showcase, .product-visual, .compact-hero-art { padding: 12px; }
  .reward-wallet, .visual-card { padding: 18px; }
  .wallet-card, .visual-metrics, .audience-grid, .solution-directory, .resource-grid, .card-grid, .numbers-grid, .check-grid, .benefit-list, .process-grid, .contact-form, .footer-grid { grid-template-columns: 1fr; }
  .solution-stories article { grid-template-columns: 1fr; }
  .ceo-preview img { width: 100%; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 24px, 366px); }
  .header-inner { min-height: 74px; }
  .home-hero, .page-hero { padding: 46px 0; }
  h1, .page-hero.compact h1 { font-size: clamp(1.9rem, 8vw, 2.15rem); }
  .section-heading h2, .two-col h2, .why-grid h2, .ceo-preview h2 { font-size: clamp(1.8rem, 8vw, 2.25rem); }
}
