/* Usha Resources - shared site styles */
:root {
  --bg: #030F27;
  --bg2: #0A1A3D;
  --bg3: #1E2D3B;
  --accent: #EDCD1F;
  --accent-dark: #9E8915;
  --text: #FAF9F5;
  --text-muted: #C8D0DC;
  --text-subtle: #7A8499;
  --border: rgba(237,205,31,0.18);
  --border-soft: rgba(255,255,255,0.06);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.serif { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }
.brand-font { font-family: 'Belleza', 'Inter', sans-serif; letter-spacing: 0.02em; }

/* Nav */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; background: rgba(3,15,39,0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: background .25s, padding .25s;
}
nav.top.scrolled { background: rgba(3,15,39,0.92); padding: 10px 0; }
nav.top .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-row { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-row img { height: 44px; width: auto; }
.logo-row .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-row .brand-text .name { font-family: 'Belleza', 'Inter', sans-serif; font-size: 17px; color: var(--text); letter-spacing: 0.04em; text-transform: uppercase; }
.logo-row .brand-text .ticker { font-family: 'Inter', monospace; font-size: 10px; color: var(--accent); letter-spacing: 0.16em; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 13px; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* Properties dropdown - click-toggle for reliable interaction */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: '▾'; margin-left: 5px; font-size: 9px; opacity: 0.7; transition: transform .2s; display: inline-block; }
.nav-links .has-dropdown.open > a, .nav-links .has-dropdown:hover > a { color: var(--accent); }
.nav-links .has-dropdown.open > a::after { transform: rotate(180deg); }
.nav-links .dropdown {
  position: absolute; top: calc(100% + 14px); left: -16px;
  background: rgba(3,15,39,0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 6px 0;
  min-width: 240px;
  list-style: none;
  opacity: 0; transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .18s ease-out, transform .18s ease-out;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  z-index: 110;
}
/* Bridge the gap between trigger and menu so cursor doesn't lose hover */
.nav-links .has-dropdown::before {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px;
  display: none;
}
.nav-links .has-dropdown.open::before,
.nav-links .has-dropdown:hover::before { display: block; }
.nav-links .has-dropdown.open .dropdown,
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-links .dropdown li { padding: 0; }
.nav-links .dropdown a {
  display: block; padding: 12px 20px;
  color: var(--text-muted); font-size: 13px;
  text-transform: none; letter-spacing: 0; font-weight: 500;
  border-left: 2px solid transparent;
}
.nav-links .dropdown a:hover { color: var(--accent); background: rgba(237,205,31,0.04); border-left-color: var(--accent); }
.nav-links .dropdown a .meta { display: block; font-family: 'Inter', monospace; font-size: 9px; letter-spacing: 0.12em; color: var(--text-subtle); text-transform: uppercase; margin-top: 3px; }
.nav-cta {
  padding: 9px 18px; background: var(--accent); color: var(--bg);
  border-radius: 3px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-cta:hover { opacity: 0.9; background: #FFD500; }

/* Hamburger button + mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 0 8px;
  cursor: pointer;
  margin-left: 12px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(3,15,39,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  padding: 90px 32px 32px;
  z-index: 90;
  transform: translateY(-110%);
  transition: transform .3s ease-out;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active, .mobile-menu a:hover { color: var(--accent); opacity: 1; }
.mobile-menu .mm-cta {
  margin-top: 18px;
  padding: 14px 0;
  text-align: center;
  background: var(--accent);
  color: var(--bg);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: none;
}
.mobile-menu .mm-cta:hover { color: var(--bg); background: #FFD500; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  nav.top .nav-cta { display: none; }
}

/* Page header (smaller hero on inner pages) */
section.page-header {
  position: relative; padding: 180px 0 80px;
  overflow: hidden;
}
section.page-header.with-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.4) saturate(0.85);
}
section.page-header.with-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(3,15,39,0.55) 0%, rgba(3,15,39,0.95) 100%);
}
section.page-header .container { position: relative; z-index: 2; }

/* Video page header */
section.page-header.with-video { padding: 200px 0 100px; overflow: hidden; }
section.page-header.with-video > video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
}
section.page-header.with-video > .ph-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(3,15,39,0.5) 0%, rgba(3,15,39,0.85) 65%, rgba(3,15,39,0.97) 100%);
}
@media (prefers-reduced-motion: reduce) {
  section.page-header.with-video > video { display: none; }
}
.page-eyebrow {
  display: inline-block;
  font-family: 'Inter', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(237,205,31,0.35);
  border-radius: 2px;
  background: rgba(237,205,31,0.05);
  margin-bottom: 24px;
}
.page-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
  max-width: 880px;
}
.page-h1 em { font-style: italic; color: var(--accent); }
.page-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.65;
}

/* Sections */
section { padding: 80px 0; }
.section-eyebrow {
  font-family: 'Inter', monospace; font-size: 11px;
  letter-spacing: 0.32em; color: var(--accent);
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 14px;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.section-lead {
  font-size: 16px; color: var(--text-muted); max-width: 760px;
  line-height: 1.65; margin-bottom: 48px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 14px 26px; background: var(--accent); color: var(--bg);
  border-radius: 3px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all .2s;
}
.btn-primary:hover { background: #FFD500; transform: translateY(-1px); opacity: 1; }
.btn-secondary {
  display: inline-block;
  padding: 14px 26px; background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 3px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all .2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Stat grid */
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-soft);
  border: 1px solid var(--border-soft); border-radius: 4px;
  overflow: hidden;
}
.stat-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.stat-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .stat-grid, .stat-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .stat-grid, .stat-grid.cols-4 { grid-template-columns: 1fr; }
}
.stat-cell {
  padding: 26px 22px; background: var(--bg2);
}
.stat-cell .v {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px; font-weight: 700;
  color: var(--accent); line-height: 1.1;
  margin-bottom: 6px;
}
.stat-cell .l {
  font-family: 'Inter', monospace; font-size: 11px;
  letter-spacing: 0.16em; color: var(--text-subtle);
  text-transform: uppercase;
}

/* Two-col image+text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
@media (max-width: 880px) { .split, .split.flip { grid-template-columns: 1fr; gap: 32px; } }
.split img { border-radius: 6px; border: 1px solid var(--border-soft); }
.split-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.split-body p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }

/* Compliance footer */
footer {
  background: #02091A;
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 40px;
}
footer .footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
@media (max-width: 880px) { footer .footer-top { grid-template-columns: 1fr; gap: 32px; } }
footer .footer-col h4 {
  font-family: 'Inter', monospace; font-size: 10px;
  letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase;
  margin-bottom: 16px;
}
footer .footer-col p, footer .footer-col li {
  font-size: 13px; color: var(--text-muted); line-height: 1.7;
}
footer .footer-col ul { list-style: none; }
footer .footer-col ul li a { color: var(--text-muted); }
footer .footer-col ul li a:hover { color: var(--accent); }
.legal {
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
  font-size: 11px; color: var(--text-subtle);
  line-height: 1.7;
}
.legal p { margin-bottom: 14px; }
.legal .copyright {
  display: flex; justify-content: space-between;
  margin-top: 18px; font-size: 11px;
}
@media (max-width: 700px) { .legal .copyright { flex-direction: column; gap: 6px; } }

/* Press release article */
.pr-article { max-width: 780px; }
.pr-meta { font-family: 'Inter', monospace; font-size: 11px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.pr-headline { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; letter-spacing: -0.018em; margin-bottom: 24px; }
.pr-lede { font-size: 16px; color: var(--text); line-height: 1.7; padding: 18px 22px; background: rgba(237,205,31,0.05); border-left: 3px solid var(--accent); border-radius: 4px; margin-bottom: 28px; }
.pr-body p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.pr-body h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 600; margin: 32px 0 14px; }
.pr-body ul { list-style: none; padding-left: 0; margin: 18px 0; }
.pr-body ul li { padding: 8px 0 8px 22px; position: relative; color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.pr-body ul li::before { content: ''; position: absolute; left: 0; top: 18px; width: 8px; height: 2px; background: var(--accent); }
.pr-back { display: inline-block; margin-bottom: 32px; font-family: 'Inter', monospace; font-size: 11px; letter-spacing: 0.16em; color: var(--text-subtle); text-transform: uppercase; }
.pr-back:hover { color: var(--accent); }
.pr-disclaimer { margin-top: 48px; padding: 22px 26px; background: var(--bg2); border: 1px solid var(--border-soft); border-radius: 4px; font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.pr-disclaimer strong { color: var(--text); display: block; margin-bottom: 6px; font-family: 'Inter', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .8s ease-out, transform .8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
