:root {
  --bg: #f5f1e8;
  --bg-2: #ece4d5;
  --text: #13231e;
  --muted: #42534b;
  --accent: #b36b00;
  --accent-dark: #6b3f00;
  --card: rgba(255, 255, 255, 0.72);
  --border: rgba(19, 35, 30, 0.1);
  --shadow: 0 18px 40px rgba(30, 45, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #041a3a 0%, #0a2b5e 55%, #0f3878 100%);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
}

.bg-glow {
  position: fixed;
  z-index: -1;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

.bg-glow-1 {
  width: 300px;
  height: 300px;
  background: #d6b278;
  top: -80px;
  left: -120px;
}

.bg-glow-2 {
  width: 360px;
  height: 360px;
  background: #98afa2;
  right: -160px;
  bottom: 10%;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header .container {
  width: min(1680px, 95vw);
}

.site-header {
  position: sticky;
  top: 0;
  background: #031a3c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.nav-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 88px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #ffffff;
}

.brand-mark {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0;
  background: #f8fbff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    #c9ab2b 0deg 178deg,
    #23295f 178deg 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);
}

.brand-mark::after {
  content: "Advanced\A Equities";
  white-space: pre;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.02;
  color: #23295f;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.brand-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 1.55rem;
  word-spacing: -0.18em;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 1.04rem;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: #f8aa14;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: lowercase;
}

body.home-page {
  background: linear-gradient(180deg, #041a3a 0%, #0a2b5e 55%, #0f3878 100%);
  color: #f3f7ff;
}

body:not(.home-page) {
  color: #e8eefb;
}

body:not(.home-page) .hero-copy,
body:not(.home-page) .section > p {
  color: rgba(232, 238, 251, 0.9);
}

body:not(.home-page) .section-head h2 {
  color: #f3f7ff;
}

body:not(.home-page) h1,
body:not(.home-page) h2,
body:not(.home-page) h3 {
  color: #f8fcff;
}

body:not(.home-page) .eyebrow {
  color: #ffd27a;
}

body.home-page .hero-copy,
body.home-page .section p,
body.home-page .hero-stats p,
body.home-page .site-footer {
  color: rgba(243, 247, 255, 0.88);
}

body.home-page .hero-stats article,
body.home-page .card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

body.home-page .eyebrow {
  color: #ffd27a;
}

body.home-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero {
  padding: 90px 0 60px;
}

.home-page {
  background:
    radial-gradient(circle at 50% 44%, rgba(62, 109, 170, 0.35) 0%, rgba(4, 10, 28, 0.9) 34%, #040915 75%),
    #040915;
  color: #e8eefb;
}

.home-page .bg-glow-1 {
  background: #2f79da;
  opacity: 0.38;
}

.home-page .bg-glow-2 {
  background: #ffba42;
  opacity: 0.28;
}

.home-page .site-footer {
  border-color: rgba(130, 164, 228, 0.25);
  color: #b7c9ed;
}

.home-page .hero-showcase {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 72px 0 90px;
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 12% 20%;
  border-radius: 50%;
  border: 1px solid rgba(111, 173, 242, 0.27);
  box-shadow: 0 0 120px rgba(46, 140, 243, 0.3);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  width: 88%;
  height: 3px;
  top: 52%;
  left: 6%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255, 192, 73, 0), rgba(255, 192, 73, 0.9), rgba(109, 191, 251, 0.9), rgba(255, 192, 73, 0));
  filter: blur(0.2px);
  opacity: 0.9;
}

.hero-ambient-line {
  position: absolute;
  top: 52%;
  width: 40vw;
  height: 2px;
  background: linear-gradient(90deg, rgba(84, 176, 255, 0), rgba(255, 185, 66, 0.92));
}

.hero-ambient-line-left {
  left: -2vw;
  transform: translateY(-50%) rotate(7deg);
}

.hero-ambient-line-right {
  right: -2vw;
  transform: translateY(-50%) rotate(-7deg);
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
  padding: clamp(2.2rem, 4.8vw, 4.8rem);
  border-radius: 28px;
  border: 2px solid rgba(255, 190, 76, 0.9);
  box-shadow:
    0 0 0 1px rgba(81, 180, 255, 0.65) inset,
    0 0 48px rgba(255, 190, 76, 0.35),
    0 0 84px rgba(67, 154, 255, 0.22);
  background: linear-gradient(160deg, rgba(8, 20, 49, 0.9), rgba(7, 25, 62, 0.68));
  text-align: center;
}

.hero-chip {
  display: inline-block;
  margin: 0 0 20px;
  padding: 8px 20px;
  border-radius: 999px;
  color: #f3b548;
  border: 1px solid rgba(243, 181, 72, 0.45);
  background: rgba(7, 19, 40, 0.75);
  font-weight: 700;
}

.home-page h1 {
  font-size: clamp(2.8rem, 7vw, 7rem);
  letter-spacing: -0.03em;
  margin: 0 auto 18px;
  max-width: 12ch;
  line-height: 0.94;
  color: #f2f7ff;
}

.home-page h1 span {
  color: #f7ab1f;
}

.home-page .hero-copy {
  color: #a9bde1;
  font-size: clamp(1rem, 1.8vw, 1.95rem);
  max-width: 50ch;
  margin: 0 auto;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-btn {
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.08rem;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  color: #19170c;
  background: linear-gradient(140deg, #ffbe2f, #f5a305);
  box-shadow: 0 0 24px rgba(249, 177, 46, 0.45);
}

.hero-btn-secondary {
  color: #f1f7ff;
  background: linear-gradient(145deg, #3f8df6, #5bb3ff);
  box-shadow: 0 0 22px rgba(87, 172, 255, 0.4);
}

.hero-btn-ghost {
  color: #d8ebff;
  background: rgba(11, 34, 68, 0.78);
  border-color: rgba(141, 198, 255, 0.62);
  box-shadow: 0 0 20px rgba(96, 170, 255, 0.25);
}

.hero-panel {
  position: absolute;
  z-index: 0;
  width: min(260px, 32vw);
  min-height: 165px;
  padding: 16px;
  border: 1px solid rgba(123, 194, 255, 0.5);
  background: rgba(6, 20, 49, 0.72);
  border-radius: 14px;
  box-shadow: 0 0 35px rgba(94, 176, 254, 0.15);
}

.hero-panel h3 {
  color: #89cdfd;
  margin-bottom: 6px;
}

.hero-panel p {
  margin: 0 0 14px;
  color: #9cb4db;
  font-size: 0.9rem;
}

.panel-left {
  left: 3%;
  top: 18%;
  padding: 10px;
}

.panel-right {
  right: 3%;
  bottom: 14%;
  padding: 10px;
}

.analytics-graph {
  position: relative;
  height: 100%;
  min-height: 145px;
  border-radius: 10px;
  border: 1px solid rgba(133, 212, 255, 0.35);
  background: rgba(82, 176, 255, 0.05);
  overflow: hidden;
}

.graph-only .analytics-graph {
  border-radius: 12px;
}

.graph-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(136, 212, 255, 0.14) 1px, transparent 1px) 0 0 / 100% 24px,
    linear-gradient(90deg, rgba(136, 212, 255, 0.12) 1px, transparent 1px) 0 0 / 28px 100%;
}

.graph-line {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 12px;
  bottom: 10px;
  border: 2px solid rgba(137, 221, 255, 0.95);
  border-color: transparent transparent rgba(137, 221, 255, 0.95) transparent;
  transform: skewX(-30deg) rotate(-7deg);
  filter: drop-shadow(0 0 5px rgba(137, 221, 255, 0.6));
}

.graph-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fe2ff;
  box-shadow: 0 0 10px rgba(143, 226, 255, 0.9);
}

.dot-1 {
  left: 14px;
  bottom: 20px;
}

.dot-2 {
  left: 44px;
  bottom: 35px;
}

.dot-3 {
  left: 78px;
  bottom: 28px;
}

.dot-4 {
  right: 14px;
  bottom: 56px;
}

.zigzag-graph {
  position: relative;
  height: 100%;
  min-height: 145px;
  border-radius: 12px;
  border: 1px solid rgba(133, 212, 255, 0.35);
  background: rgba(82, 176, 255, 0.05);
  overflow: hidden;
}

.zigzag-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(136, 212, 255, 0.14) 1px, transparent 1px) 0 0 / 100% 24px,
    linear-gradient(90deg, rgba(136, 212, 255, 0.12) 1px, transparent 1px) 0 0 / 28px 100%;
}

.zigzag-line {
  position: absolute;
  left: 7%;
  width: 86%;
  height: 56px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 0 7px rgba(143, 226, 255, 0.75));
}

.zigzag-line-a {
  bottom: 26%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 56' preserveAspectRatio='none'%3E%3Cpolyline points='0,46 34,40 68,42 102,31 136,34 170,24 204,28 238,17 272,21 300,10' fill='none' stroke='%238fe2ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.zigzag-line-b {
  bottom: 26%;
  opacity: 0.95;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 56' preserveAspectRatio='none'%3E%3Cpolyline points='0,30 34,28 68,24 102,36 136,18 170,20 204,12 238,15 272,8 300,7' fill='none' stroke='%238fe2ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.74rem;
  color: var(--accent-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 18ch;
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 70ch;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-stats h2 {
  margin-bottom: 6px;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.hero-stats p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 56px 0;
}

.holo-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  perspective: 1200px;
  padding-top: 12px;
}

.glass-card {
  position: relative;
  min-height: 245px;
  padding: 34px 28px;
  border-radius: 28px;
  overflow: hidden;
  transform-style: preserve-3d;
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 24px 40px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset -8px -10px 24px rgba(0, 0, 0, 0.14);
}

.glass-card::before,
.glass-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  pointer-events: none;
}

.glass-card::before {
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.glass-card::after {
  inset: -12px;
  border-radius: 34px;
  filter: blur(9px);
  opacity: 0.68;
}

.glass-inner {
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.015)),
    linear-gradient(to bottom right, rgba(255, 255, 255, 0.06), transparent 52%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -16px 24px rgba(0, 0, 0, 0.12);
}

.orbit-ring {
  position: absolute;
  width: 126%;
  height: 180%;
  left: -14%;
  top: -42%;
  border-radius: 50%;
  border: 2px solid transparent;
  mix-blend-mode: screen;
  pointer-events: none;
}

.metric-value,
.metric-label {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0;
}

.metric-value {
  margin-top: 62px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(255, 199, 88, 0.45);
  transform: translateZ(0);
  transition: transform 180ms ease, text-shadow 180ms ease;
}

.metric-label {
  margin-top: 12px;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  color: rgba(240, 247, 255, 0.94);
  text-shadow: 0 0 10px rgba(146, 191, 255, 0.28);
}

.glass-gold {
  transform-origin: right center;
  transform: translateX(-6px) rotateY(-14deg) rotateX(1deg);
}

.glass-gold::before {
  border-color: rgba(255, 213, 129, 0.85);
}

.glass-gold::after {
  border: 3px solid rgba(255, 184, 68, 0.44);
  box-shadow: 0 0 44px rgba(255, 184, 68, 0.52);
}

.glass-gold .orbit-gold {
  border-color: rgba(255, 194, 84, 0.84);
  box-shadow: 0 0 34px rgba(255, 194, 84, 0.45);
}

.glass-gold .spark-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 210, 120, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 31%, rgba(255, 193, 85, 0.82) 0 1px, transparent 2px),
    radial-gradient(circle at 63% 73%, rgba(255, 218, 136, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 35% 66%, rgba(255, 198, 95, 0.8) 0 1px, transparent 2px);
  opacity: 0.75;
  pointer-events: none;
}

.glass-gold .metric-value {
  color: #ffbc36;
}

.glass-blue {
  transform-origin: left center;
  transform: translateX(6px) rotateY(14deg) rotateX(1deg);
}

.glass-blue::before {
  border-color: rgba(149, 216, 255, 0.84);
}

.glass-blue::after {
  border: 3px solid rgba(96, 189, 255, 0.4);
  box-shadow: 0 0 42px rgba(96, 189, 255, 0.48);
}

.glass-blue .orbit-blue {
  border-color: rgba(141, 210, 255, 0.82);
  box-shadow: 0 0 34px rgba(91, 177, 255, 0.42);
}

.glass-blue .metric-value {
  color: #ffbc36;
  text-shadow: 0 0 18px rgba(255, 192, 74, 0.38), 0 0 22px rgba(120, 192, 255, 0.32);
}

.glass-card:hover .metric-value {
  transform: translateZ(20px) scale(1.06);
  text-shadow: 0 0 26px rgba(255, 202, 105, 0.75), 0 0 34px rgba(120, 192, 255, 0.45);
}

.section-head {
  max-width: 70ch;
  margin-bottom: 20px;
}

.section p {
  color: var(--muted);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  margin: 0;
}

.card .btn {
  margin-top: 14px;
}

.internship-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.internship-visual-card {
  border-radius: 30px;
  padding: 22px;
  border: 1px solid rgba(202, 229, 255, 0.44);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -18px 34px rgba(34, 50, 84, 0.18);
  backdrop-filter: blur(8px);
}

.report-frame {
  border-radius: 22px;
  min-height: 560px;
  padding: 24px 20px;
  border: 1px solid rgba(198, 227, 255, 0.44);
  background: linear-gradient(160deg, rgba(19, 45, 84, 0.6), rgba(13, 34, 67, 0.36));
}

.report-chip-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.report-chip-row span {
  border-radius: 999px;
  border: 1px solid rgba(179, 216, 250, 0.5);
  background: rgba(215, 236, 255, 0.1);
  color: rgba(229, 242, 255, 0.95);
  font-size: 0.77rem;
  font-weight: 700;
  padding: 4px 10px;
}

.report-frame h3 {
  margin: 0 0 14px;
  color: #eff8ff;
  font-size: clamp(1.24rem, 2.2vw, 1.8rem);
  max-width: 20ch;
}

.report-chart {
  position: relative;
  height: 190px;
  border-radius: 18px;
  border: 1px solid rgba(188, 222, 255, 0.4);
  background:
    linear-gradient(rgba(164, 215, 255, 0.12) 1px, transparent 1px) 0 0 / 100% 32px,
    linear-gradient(90deg, rgba(164, 215, 255, 0.12) 1px, transparent 1px) 0 0 / 36px 100%,
    rgba(12, 32, 62, 0.3);
  overflow: hidden;
}

.chart-line {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 100px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 0 8px rgba(145, 213, 255, 0.6));
}

.chart-line-a {
  bottom: 28%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 100' preserveAspectRatio='none'%3E%3Cpolyline points='0,90 35,86 70,74 105,78 140,56 175,60 210,38 245,47 280,26 300,18' fill='none' stroke='%2399d4ff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.chart-line-b {
  bottom: 22%;
  opacity: 0.9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 100' preserveAspectRatio='none'%3E%3Cpolyline points='0,74 35,66 70,63 105,52 140,49 175,43 210,39 245,35 280,30 300,26' fill='none' stroke='%23ffbe4f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.chart-dot-a,
.chart-dot-b,
.chart-dot-c {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b2e5ff;
  box-shadow: 0 0 10px rgba(179, 229, 255, 0.92);
}

.chart-dot-a {
  right: 22%;
  bottom: 45%;
}

.chart-dot-b {
  right: 12%;
  bottom: 34%;
}

.chart-dot-c {
  right: 6%;
  bottom: 30%;
}

.report-columns {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.report-columns p {
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(184, 219, 252, 0.34);
  background: rgba(204, 231, 255, 0.08);
  color: rgba(231, 244, 255, 0.94);
  font-size: 0.92rem;
  padding: 10px 12px;
}

.internship-details {
  border-radius: 30px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(202, 229, 255, 0.44);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -18px 34px rgba(34, 50, 84, 0.18);
  backdrop-filter: blur(8px);
}

.internship-ad h2 {
  margin: 0;
  color: #f5fbff;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.internship-points {
  margin-top: 8px;
}

.internship-point {
  padding: 18px 0;
  border-top: 1px solid rgba(184, 220, 252, 0.28);
}

.internship-point h3 {
  margin: 0 0 8px;
  color: #eff8ff;
  font-size: 1.5rem;
}

.internship-point p {
  margin: 0;
  color: rgba(219, 236, 251, 0.9);
  font-size: 1.06rem;
}

.internship-details .btn {
  margin-top: 12px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sector-card {
  border-radius: 24px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(202, 229, 255, 0.42);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -18px 34px rgba(34, 50, 84, 0.16);
  backdrop-filter: blur(8px);
}

.sector-icon-wrap {
  min-height: 110px;
  display: grid;
  place-items: center;
}

.sector-icon {
  width: 86px;
  height: 86px;
  fill: none;
  stroke: rgba(214, 236, 255, 0.96);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(147, 205, 255, 0.26));
}

.sector-card h3 {
  margin: 0 0 8px;
  color: #f6fbff;
  font-size: 1.28rem;
}

.sector-card p {
  margin: 0;
  color: rgba(220, 236, 251, 0.9);
}

.sector-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: #beddff;
}

.sector-link span {
  transition: transform 160ms ease;
}

.sector-link:hover span {
  transform: translateX(3px);
}

.research-card {
  border-radius: 24px;
  border: 1px solid rgba(202, 229, 255, 0.42);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -18px 34px rgba(34, 50, 84, 0.16);
  backdrop-filter: blur(8px);
}

.research-card h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  color: #f5fbff;
}

.research-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.research-list li {
  color: rgba(219, 236, 251, 0.92);
}

.research-list a {
  color: #e4f2ff;
  text-decoration: none;
  font-weight: 600;
}

.research-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.research-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #cfe7ff;
  text-decoration: none;
  font-weight: 700;
}

.research-back:hover {
  color: #ffffff;
}

.leadership-stack {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  padding: 24px;
}

.leadership-stack article h3 {
  margin-bottom: 8px;
}

.leadership-stack article p {
  margin: 0;
  color: rgba(247, 252, 255, 0.96);
}

.leader-cards {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.leader-row {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.profile-card {
  width: min(220px, 30%);
  min-width: 165px;
  border-radius: 22px;
  border: 1px solid rgba(151, 210, 255, 0.46);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  padding: 12px;
}

.profile-card.sector-head-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.profile-card.sector-head-link:focus-visible {
  outline: 2px solid #ffd27a;
  outline-offset: 2px;
}

.profile-ph {
  min-height: 140px;
  border-radius: 16px;
  border: 1px dashed rgba(168, 219, 255, 0.65);
  background:
    linear-gradient(150deg, rgba(74, 150, 214, 0.24), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(
      45deg,
      rgba(173, 221, 255, 0.16),
      rgba(173, 221, 255, 0.16) 8px,
      rgba(173, 221, 255, 0.06) 8px,
      rgba(173, 221, 255, 0.06) 16px
    );
  color: rgba(240, 248, 255, 0.9);
  font-size: 0.86rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.profile-media {
  position: relative;
}

.profile-img {
  width: 100%;
  min-height: 140px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(168, 219, 255, 0.42);
  display: block;
}

.profile-media .profile-ph {
  position: absolute;
  inset: 0;
}

.profile-img[src]:not([src=""]) + .profile-ph {
  display: none;
}

.profile-name,
.profile-role {
  margin: 8px 0 0;
  padding: 6px 8px;
  border-radius: 10px;
  border: none;
  color: rgba(240, 248, 255, 0.92);
  text-align: center;
  font-size: 0.8rem;
}

.profile-role {
  margin-top: 6px;
  color: rgba(219, 236, 255, 0.9);
}

.tracker-chart-card {
  border-radius: 26px;
  padding: 20px 20px 22px;
  border: 1px solid rgba(210, 231, 255, 0.45);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -18px 34px rgba(34, 50, 84, 0.2);
  backdrop-filter: blur(8px);
}

.tracker-chart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.tracker-kicker {
  margin: 0 0 4px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(224, 239, 255, 0.9);
}

.tracker-value {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #f4fbff;
}

.tracker-range {
  display: inline-flex;
  gap: 8px;
}

.range-btn {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(188, 221, 255, 0.5);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  color: #eef7ff;
  font-weight: 700;
  cursor: pointer;
}

.range-btn.active {
  color: #072247;
  background: linear-gradient(145deg, rgba(210, 239, 255, 0.95), rgba(158, 214, 255, 0.95));
  border-color: rgba(227, 246, 255, 0.95);
}

.tracker-chart-wrap {
  position: relative;
  height: 390px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(199, 229, 255, 0.36);
  background: linear-gradient(160deg, rgba(16, 35, 66, 0.52), rgba(15, 29, 52, 0.2));
}

#portfolioChart {
  width: 100%;
  height: 100%;
  display: block;
}

.chart-crosshair {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(231, 245, 255, 0.86);
  opacity: 0;
  pointer-events: none;
}

.chart-tooltip {
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(206, 232, 255, 0.7);
  background: rgba(10, 27, 53, 0.82);
  color: #f3fbff;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.tracker-ledger-card {
  margin-top: 22px;
  border-radius: 26px;
  padding: 20px;
  min-height: 500px;
  border: 1px solid rgba(210, 231, 255, 0.45);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -18px 34px rgba(34, 50, 84, 0.2);
  backdrop-filter: blur(8px);
}

.tracker-ledger-top {
  margin-bottom: 12px;
}

.intelligence-card {
  min-height: 420px;
}

.intelligence-controls {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  margin-bottom: 14px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(198, 227, 255, 0.45);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  padding: 0 14px;
  min-height: 52px;
}

.search-icon {
  color: rgba(223, 239, 255, 0.9);
  font-size: 1.1rem;
}

.search-wrap input,
.glass-select-trigger {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #eef7ff;
  font-size: 1rem;
}

.search-wrap input::placeholder {
  color: rgba(210, 230, 250, 0.74);
}

.glass-select {
  position: relative;
}

.glass-select-trigger {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(198, 227, 255, 0.45);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.25L6 6.25L11 1.25' stroke='%23d6ebff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
      no-repeat calc(100% - 24px) center,
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  padding: 0 50px 0 14px;
  min-height: 52px;
  cursor: pointer;
}

.glass-select-trigger:focus {
  border-color: rgba(228, 245, 255, 0.88);
  box-shadow: 0 0 0 2px rgba(165, 214, 255, 0.2);
}

.glass-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  border-radius: 16px;
  border: 1px solid rgba(198, 227, 255, 0.48);
  background: linear-gradient(168deg, rgba(34, 64, 108, 0.9), rgba(25, 49, 86, 0.88));
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  padding: 6px;
  display: none;
}

.glass-select.open .glass-select-menu {
  display: grid;
  gap: 4px;
}

.sector-option {
  border: none;
  background: transparent;
  color: rgba(228, 241, 255, 0.95);
  border-radius: 12px;
  min-height: 36px;
  text-align: left;
  padding: 0 10px;
  cursor: pointer;
  font-size: 0.95rem;
}

.sector-option:hover,
.sector-option.active {
  background: rgba(188, 222, 255, 0.2);
  color: #f6fbff;
}

.case-study-list {
  display: grid;
  gap: 10px;
}

.case-study-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(188, 222, 255, 0.32);
  background: rgba(12, 30, 56, 0.28);
  padding: 14px 16px;
  color: #eaf6ff;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.case-study-item:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 240, 255, 0.7);
  background: rgba(15, 37, 66, 0.45);
}

.case-title {
  font-weight: 700;
}

.case-meta {
  font-size: 0.85rem;
  color: rgba(213, 231, 248, 0.92);
  border: 1px solid rgba(177, 213, 247, 0.52);
  border-radius: 999px;
  padding: 5px 10px;
}

.tracker-range-wide {
  flex-wrap: wrap;
}

.ledger-tab {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(188, 221, 255, 0.5);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  color: #eef7ff;
  font-weight: 700;
  cursor: pointer;
}

.ledger-tab.active {
  color: #072247;
  background: linear-gradient(145deg, rgba(210, 239, 255, 0.95), rgba(158, 214, 255, 0.95));
  border-color: rgba(227, 246, 255, 0.95);
}

.ledger-panel {
  display: none;
  border-radius: 18px;
  border: 1px solid rgba(191, 223, 255, 0.3);
  background: rgba(13, 31, 57, 0.26);
  overflow: hidden;
}

.ledger-panel.active {
  display: block;
}

.ledger-head,
.ledger-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  justify-items: center;
  padding: 14px 16px;
}

.ledger-panel[data-ledger-panel="holdings"] .ledger-head,
.ledger-panel[data-ledger-panel="holdings"] .ledger-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
}

.ledger-panel[data-ledger-panel="holdings"] .ledger-head span,
.ledger-panel[data-ledger-panel="holdings"] .ledger-row > span {
  text-align: center;
}

.ledger-panel .ledger-head span,
.ledger-panel .ledger-row > span {
  text-align: center;
}

.ledger-panel .value,
.ledger-panel .change {
  justify-self: center;
}

.ledger-panel[data-ledger-panel="holdings"] .value,
.ledger-panel[data-ledger-panel="holdings"] .change {
  justify-self: center;
}

.ledger-head {
  color: rgba(214, 235, 255, 0.95);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(194, 224, 255, 0.24);
}

.ledger-row {
  border-bottom: 1px solid rgba(194, 224, 255, 0.14);
  color: rgba(239, 248, 255, 0.96);
}

.ledger-row:last-child {
  border-bottom: none;
}

.ticker {
  font-weight: 700;
}

.shares {
  color: rgba(221, 236, 251, 0.9);
}

.value {
  justify-self: start;
  min-width: 130px;
  text-align: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.change {
  justify-self: start;
  min-width: 88px;
  text-align: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.change.positive {
  color: #dafee6;
  background: linear-gradient(155deg, rgba(37, 152, 89, 0.44), rgba(19, 112, 68, 0.3));
  border-color: rgba(131, 237, 180, 0.5);
}

.change.negative {
  color: #ffe1e4;
  background: linear-gradient(155deg, rgba(163, 57, 74, 0.46), rgba(120, 35, 53, 0.28));
  border-color: rgba(245, 153, 168, 0.46);
}

.value.positive {
  color: #dafee6;
  background: linear-gradient(155deg, rgba(37, 152, 89, 0.44), rgba(19, 112, 68, 0.3));
  border-color: rgba(131, 237, 180, 0.5);
  box-shadow: inset 0 1px 0 rgba(189, 255, 219, 0.28);
}

.value.negative {
  color: #ffe1e4;
  background: linear-gradient(155deg, rgba(163, 57, 74, 0.46), rgba(120, 35, 53, 0.28));
  border-color: rgba(245, 153, 168, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 204, 213, 0.24);
}

.fade-dash {
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(153, 206, 255, 0.78), rgba(255, 255, 255, 0));
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.timeline li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--accent-dark), var(--accent));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.timeline h3 {
  margin-bottom: 6px;
}

.timeline p {
  margin: 0;
}

.cta {
  text-align: center;
  padding-bottom: 84px;
}

.btn {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-dark), var(--accent));
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 12px 24px rgba(107, 63, 0, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(107, 63, 0, 0.28);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 0 30px;
  color: var(--muted);
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rp-watermark {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 30;
  color: #ffffff;
  text-decoration: none;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0.78;
  text-shadow: 0 3px 12px rgba(5, 16, 38, 0.6);
  transition: opacity 180ms ease;
  user-select: none;
}

.rp-watermark:hover,
.rp-watermark:focus-visible {
  opacity: 1;
}

@media (max-width: 860px) {
  .home-page .hero-showcase {
    min-height: auto;
  }

  .hero-panel {
    display: none;
  }

  .home-page h1 {
    max-width: 15ch;
  }

  .hero-stats,
  .grid-cards,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .internship-layout {
    grid-template-columns: 1fr;
  }

  .report-frame {
    min-height: 500px;
  }

  .holo-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tracker-chart-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .intelligence-controls {
    grid-template-columns: 1fr;
  }

  .tracker-chart-wrap {
    height: 320px;
  }

  .tracker-ledger-card {
    min-height: 420px;
  }

  .ledger-head,
  .ledger-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .value {
    justify-self: start;
  }

  .leader-row {
    flex-wrap: wrap;
  }

  .profile-card {
    width: min(250px, 100%);
  }

  .glass-gold,
  .glass-blue {
    transform: none;
  }

  .nav-wrap {
    min-height: 70px;
    gap: 16px;
  }

  .brand-text {
    font-size: 1.08rem;
  }

  .header-right {
    gap: 12px;
  }

  .nav-links {
    gap: 12px;
    overflow-x: auto;
    max-width: 56vw;
    scrollbar-width: thin;
  }

  .nav-links a {
    font-size: 0.83rem;
  }

  .social-links a {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }
}

@media (max-width: 580px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-frame {
    border-radius: 20px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .nav-links {
    max-width: 48vw;
  }

  .hero {
    padding-top: 74px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }
}
