/* ==========================================================================
   Innovior Advisory — brand tokens sourced from moneybloom.in
   Primary #0A80A0 · Secondary #012F3C · Accent #22B398
   Headings: Lexend Deca · Body: Hind
   ========================================================================== */

:root {
  --primary: #0A80A0;
  --secondary: #012F3C;
  --accent: #22B398;
  --heading: #011E27;
  --body: #39557E;
  --surface: #FFFFFF;
  --tint: #F2F8FA;
  --line: #DCE9EE;
  --font-heading: 'Lexend Deca', sans-serif;
  --font-body: 'Hind', sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(1, 47, 60, 0.08);
  --shadow-lg: 0 18px 44px rgba(1, 47, 60, 0.14);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(10, 128, 160, 0.35); }
.btn-primary:hover { background: #096e8a; color: #fff; }

.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(34, 179, 152, 0.4); }
.btn-accent:hover { background: #1c9d85; color: #fff; }

.btn-ghost { border: 1.5px solid rgba(255, 255, 255, 0.5); color: #fff; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 20px rgba(1, 47, 60, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark img { width: 40px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--heading);
}
.brand-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a:not(.btn) {
  font-family: var(--font-heading);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--heading);
}
.main-nav a:not(.btn):hover { color: var(--primary); }
.nav-cta { margin-left: 0.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--secondary) 0%, #06465c 55%, var(--primary) 120%);
  color: #fff;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 85% 15%, rgba(34, 179, 152, 0.22), transparent 70%),
    radial-gradient(500px 320px at 10% 90%, rgba(10, 128, 160, 0.35), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr);
  gap: 3rem;
  align-items: center;
}
.hero-copy { max-width: 680px; }

.hero-art { display: flex; justify-content: center; }
.hero-art svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-art .orbit-spin {
  animation: orbitSpin 48s linear infinite;
  transform-origin: 240px 240px;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--accent); }

.hero h1 { color: #fff; margin-bottom: 1.3rem; }
.hero .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 2.2rem;
}
.hero-sub strong { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.6rem;
}
.hero-trust li {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 500;
  color: #fff;
}
.hero-trust li span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.15rem;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.8rem, 8vw, 6.5rem) 0; }
.section-tint { background: var(--tint); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: 1rem; }
.lead { font-size: 1.1rem; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.98rem; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(10, 128, 160, 0.12), rgba(34, 179, 152, 0.14));
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.7;
}

/* ---------- Dark / flagship section ---------- */
.section-dark {
  background: linear-gradient(140deg, var(--secondary) 0%, #043c4d 100%);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark h2 { color: #fff; margin-bottom: 1.1rem; }

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.split-copy > p { margin-bottom: 1.4rem; }

.chip-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.chip-list li {
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
}

.note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1.8rem;
}

.mb-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.mb-card-head {
  display: flex;
  gap: 6px;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mb-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); }
.mb-card-body { padding: 2rem 1.6rem 2.2rem; text-align: center; }
.mb-brand {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.mb-brand::first-letter { color: var(--accent); }
.mb-line {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0.3rem 0 1.8rem;
}
.mb-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.mb-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
}
.mb-stats span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--tint);
  border-block: 1px solid var(--line);
  padding: 2.6rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}
.stat span { font-size: 0.92rem; }

/* ---------- Corporate table ---------- */
.corp-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.corp-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-bottom: 1px solid var(--line);
}
.corp-row:last-child { border-bottom: 0; }
.corp-row:nth-child(odd) { background: var(--tint); }
.corp-row > div { padding: 1.05rem 1.4rem; font-size: 0.98rem; }
.corp-key {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--heading);
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--heading);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.faq-item[open] summary { color: var(--primary); }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--primary); }
.faq-answer {
  padding: 1rem 1.4rem 1.3rem;
  font-size: 0.98rem;
  border-top: 1px solid var(--line);
}

/* ---------- Contact ---------- */
.contact-grid { align-items: stretch; }
.contact-card { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
.contact-card .btn { margin-top: auto; }
.contact-list { display: flex; flex-direction: column; gap: 0.4rem; font-size: 1rem; }
.contact-list a { font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.9fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}
.footer-cin {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 0.3rem 0 1rem;
}
.footer-desc { font-size: 0.95rem; max-width: 340px; }

.footer-head {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--accent); }

.footer-legal { padding-top: 1.8rem; }
.disclaimer {
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}
.disclaimer a { color: rgba(255, 255, 255, 0.75); text-decoration: underline; }
.copyright { font-size: 0.85rem; }

/* ---------- Legal pages ---------- */
.legal-page { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem); }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.4rem; }
.legal-updated {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 2.2rem;
}
.legal-page h2 {
  font-size: 1.25rem;
  margin: 2.1rem 0 0.7rem;
}
.legal-page p { margin-bottom: 0.9rem; font-size: 1rem; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-art svg { animation: none; }
  .hero-art .orbit-spin { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-panel { max-width: 460px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(1, 47, 60, 0.12);
    padding: 0.5rem 1.25rem 1.25rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a:not(.btn) {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--tint);
    font-size: 1rem;
  }
  .nav-cta { margin: 1rem 0 0; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .corp-row { grid-template-columns: 1fr; }
  .corp-row .corp-key { padding-bottom: 0.15rem; }
  .corp-row > div:last-child { padding-top: 0.15rem; }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.2rem 2rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .brand-tag { display: none; }
}
