/* =========================
   RESET & TOKENS
   ========================= */

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

:root {
  --bg: #f3f7ff;
  --bg-alt: #eef4ff;
  --bg-elevated: rgba(255, 255, 255, 0.94);
  --glass-border: rgba(148, 163, 184, 0.4);
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --accent-2: #16a34a;
  --accent-2-soft: rgba(22, 163, 74, 0.08);
  --accent-3: #f97316;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius-lg: 18px;
  --radius-xl: 24px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #e0f2fe 0, #eff6ff 40%, #e5e7eb 100%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   SHELL & GLASS
   ========================= */

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 60%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.12), transparent 60%);
}

.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.96));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
}

/* =========================
   LAYOUT
   ========================= */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* =========================
   HEADER & NAV
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  margin-bottom: 0.6rem;
}

.site-header.glass {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.5rem 0.4rem;
}

.logo {
  height: 38px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-meta {
  display: flex;
  flex-direction: column;
}

.brand-kicker {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent-2);
}

.brand-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* Nav items as buttons (React) */

.nav-link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav .nav-link-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.main-nav .nav-link-button:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  padding-bottom: 3.2rem;
  overflow: hidden;
}

.hero-bg-orbit {
  position: absolute;
  inset: -80px 0 0;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.9;
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: -70px;
  left: -40px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.32), transparent 60%);
}

.orb-2 {
  width: 260px;
  height: 260px;
  top: 30%;
  right: -60px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.28), transparent 60%);
}

.orb-3 {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: 40%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25), transparent 60%);
}

.hero-banner {
  position: relative;
  width: min(1120px, 100% - 2.5rem);
  margin: 0.9rem auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.hero-banner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.hero-banner-logo {
  position: absolute;
  width: 72px;
  height: auto;
  top: 1.2rem;
}

.hero-banner-logo-left {
  left: 1.5rem;
}

.hero-banner-logo-right {
  right: 1.5rem;
}

.hero-banner-overlay {
  position: absolute;
  inset: auto 1.2rem 1rem auto;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  color: #e5e7eb;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-inner {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
}

.chip.neon {
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.4);
}

.chip.soft {
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.6);
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.4rem, 3.1vw + 1rem, 3.3rem);
  line-height: 1.05;
}

.hero-year {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  margin-left: 0.4rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.28));
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 1.15rem;
}

.hero-subtitle {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 560px;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.meta-pill {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.98);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease;
}

.btn.primary {
  background: radial-gradient(circle at top left, #38bdf8, #2563eb);
  color: #0b1120;
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.5);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(56, 189, 248, 0.7);
}

.btn.ghost {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
}

.btn.ghost:hover {
  background: #eff6ff;
}

.btn.subtle {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(248, 250, 252, 0.9);
  color: var(--text-muted);
}

.btn.subtle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

.hero-footnote {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-side-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 0.7rem;
  align-items: stretch;
}

.mosaic-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mosaic-column {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 0.7rem;
}

.mosaic-small {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.hero-mini-card {
  border-radius: var(--radius-lg);
  padding: 0.8rem 0.9rem 0.85rem;
  border-style: dashed;
}

.mini-caption {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mini-caption .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-3);
}

.mini-main {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mini-main p {
  margin: 0 0 0.35rem;
}

.mini-meta {
  font-size: 0.82rem;
  opacity: 0.9;
}

/* =========================
   SECTIONS
   ========================= */

.section {
  padding: 3rem 0 3.3rem;
}

.section-alt {
  background: radial-gradient(circle at top, #e5edff, #f8fafc);
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
}

.section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.7rem;
}

.section-intro {
  margin: 0 0 0.8rem;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.section-body {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.1rem;
  align-items: flex-start;
}

.section-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.7rem;
}

.section-cta-inline {
  display: flex;
  align-items: center;
}

/* =========================
   ABOUT
   ========================= */

.about-visual {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 0.7rem;
  align-items: center;
}

.about-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-float-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 0.7rem;
}

.about-float-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* Icon / pill grid */

.pill-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.pill-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.icon-bubble {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, var(--accent-soft), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.pill-item h3 {
  margin: 0 0 0.1rem;
  font-size: 1rem;
}

.pill-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* =========================
   HIGHLIGHTS
   ========================= */

.feature-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 0.9rem 0.9rem 1.1rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.55rem;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  background: radial-gradient(circle at top, var(--accent-soft), var(--accent-2-soft));
}

.feature-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}



/* =========================
   SCHEDULE / TIMELINE
   ========================= */

.timeline-shell {
  margin-top: 1.4rem;
  position: relative;
  padding-top: 0.8rem;
}

.timeline-line {
  position: absolute;
  inset: 1.45rem 0 auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.16), rgba(34, 197, 94, 0.22));
  pointer-events: none;
}

.timeline-track {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  padding: 0.4rem 0 0.6rem;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.timeline-track::-webkit-scrollbar {
  height: 4px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}
.timeline-track::-webkit-scrollbar-track {
  background: transparent;
}

.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 140px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.timeline-node-time {
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
}

.timeline-node-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(59, 130, 246, 0.75);
  background: #e5f0ff;
  position: relative;
  margin: 0.1rem 0 0.15rem;
}

.timeline-node-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(59, 130, 246, 0.4);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.timeline-node-label {
  font-size: 0.8rem;
  color: #111827;
  max-width: 13rem;
}

/* Active / hover states */

.timeline-node.active .timeline-node-dot {
  background: radial-gradient(circle at top left, #38bdf8, #22c55e);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.8);
}

.timeline-node.active .timeline-node-dot::after {
  opacity: 1;
  transform: scale(1);
}

.timeline-node.active .timeline-node-label {
  font-weight: 600;
}

.timeline-node:hover .timeline-node-label {
  color: #1d4ed8;
}

/* Active card stage */

.timeline-card-stage {
  margin-top: 1.2rem;
  display: flex;
  align-items: stretch;
}

.timeline-card {
  border-radius: 20px;
  padding: 1rem 1.1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  max-width: 640px;
  width: 100%;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: timelineCardIn 0.4s ease forwards;
}

.timeline-time {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  padding-left: 0.9rem;
  position: relative;
}

.timeline-time::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.3rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #38bdf8, #22c55e);
}

.timeline-card h3 {
  margin: 0.35rem 0 0.3rem;
  font-size: 1.02rem;
}

.timeline-summary {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.timeline-detail {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
}

/* Card entrance animation */

@keyframes timelineCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 600px) {
  .timeline-node-label {
    max-width: 9rem;
  }
}


/* =========================
   SPONSORSHIP
   ========================= */

.sponsorship-visual {
  margin-top: 1.1rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.switcher {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  margin-top: 1.1rem;
}

.switcher-btn {
  border: none;
  background: transparent;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.switcher-btn.active {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), rgba(255, 255, 255, 0.96));
  color: #0f172a;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.tiers-layout {
  margin-top: 1.4rem;
}

/* For React layout with detail panel */
.tiers-layout--react {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.tiers-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.1rem;
}

.tiers-column {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tier-card {
  border-radius: var(--radius-lg);
  padding: 0.95rem 1rem 1.05rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-elevated);
}

.tier-card.highlight {
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 22px 60px rgba(37, 99, 235, 0.18);
}

.tier-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -70%;
  height: 160px;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateY(10px);
}

.tier-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.tier-card--selected {
  outline: 2px solid rgba(37, 99, 235, 0.85);
}

.tier-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.tier-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-3);
}

.tier-top h3 {
  margin: 0;
  font-size: 1.02rem;
}

.tier-invest {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.tier-intro {
  margin: 0.35rem 0 0.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tier-card ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.tier-card ul li + li {
  margin-top: 0.15rem;
}

.tier-tagline {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Detail panel */

/* Grid-only layout for sponsorship tiers (no snapshot panel) */
.tiers-layout--gridOnly {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

.tier-detail {
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.tier-detail-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-2);
  margin-bottom: 0.25rem;
}

.tier-detail-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tier-detail-invest {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.tier-detail-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tier-detail-list {
  margin: 0.4rem 0 0.4rem;
  padding-left: 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.tier-detail-list li + li {
  margin-top: 0.2rem;
}

.tier-detail-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Shared note */

.tier-note {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem;
  border: 1px dashed var(--glass-border);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.tier-note h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.tier-note ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.tier-note ul li + li {
  margin-top: 0.2rem;
}

/* =========================
   AWARDS
   ========================= */

.awards-visual {
  border-radius: var(--radius-xl);
  padding: 0.8rem 0.8rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.awards-visual img {
  border-radius: 18px;
}

/* =========================
   DIGITAL FOREST
   ========================= */

.digital-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.digital-visual img {
  width: 100%;
  height: auto;
}

.digital-overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  padding: 0.7rem 0.75rem;
  font-size: 0.84rem;
  color: #e5e7eb;
}

.digital-chip {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* =========================
   LISTS, CTA, CONTACT
   ========================= */

.bullet-list {
  margin: 0.3rem 0 0.8rem;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bullet-list li + li {
  margin-top: 0.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.contact-card p {
  margin: 0 0 0.45rem;
  color: var(--text-muted);
}

/* =========================
   GALLERY
   ========================= */

.gallery-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

/* individual tile */
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  background: #ffffff;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* simple hover lift */
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

/* image inside tile */
.gallery-item img {
  width: 100%;
  height: 190px;          /* tweak as you like */
  object-fit: cover;
  display: block;
}

/* optional caption (not used right now but kept) */
.gallery-item figcaption {
  padding: 0.6rem 0.8rem 0.7rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* =========================
   GALLERY MODAL
   ========================= */

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.gallery-modal-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  max-width: 720px;
  width: min(90%, 720px);
  padding: 0.9rem 1rem 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* The image itself */
.gallery-modal-image {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;   /* ⬅️ KEY FIX: show whole image */
  border-radius: 12px;
}

.gallery-modal-inner p {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gallery-modal-close {
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  position: absolute;
  top: 0.4rem;
  right: 0.45rem;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
  margin-top: 0.5rem;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0 -14px 36px rgba(15, 23, 42, 0.12);
}

.footer-inner {
  padding: 1.4rem 0 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-logo {
  height: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.footer-copy {
  margin: 0;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .hero-banner-img {
    height: 220px;
  }

  .hero-banner-logo {
    width: 60px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    max-width: 520px;
  }
}

@media (max-width: 780px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-head-row {
    flex-direction: column;
  }

  .tiers-layout--react {
    grid-template-columns: minmax(0, 1fr);
  }

  .tiers-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    position: absolute;
    inset: 100% 0 auto;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 0.7rem 1.4rem 0.9rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
  }

  .main-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-banner {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .hero-banner-logo {
    width: 50px;
  }

  .tier-note {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 540px) {
  .hero-inner {
    margin-top: 1.7rem;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}


/* =========================
   PARTNERS SECTION
   ========================= */

.partners-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.4rem;
  align-items: center;
  justify-items: center;
}

.partner-logo-item {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

.partner-logo-item img {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: saturate(1.15) contrast(1.05);
}


/* =========================
   3D COVERFLOW GALLERY
   ========================= */

.coverflow-wrapper {
  position: relative;
  width: 100%;
  perspective: 1800px;
  margin: 2.4rem auto 0;
  padding: 1.5rem 0 2.2rem;
  border-radius: 28px;
  background: radial-gradient(circle at top, #020617, #020617 55%, #0b1120 100%);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.45);
  overflow: visible;
}

.coverflow-container {
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
}

/* 16:9 landscape cards */
.coverflow-item {
  width: 360px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
  background: #020617;
  position: absolute;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.coverflow-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* base hidden slide */
.coverflow-item.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateZ(-400px) scale(0.7);
}

/* center card */
.coverflow-item.center {
  transform: translateZ(140px) scale(1.05);
  z-index: 5;
}

/* left side cards */
.coverflow-item.left-1 {
  transform: translateX(-250px) rotateY(-35deg);
  opacity: 0.8;
}

.coverflow-item.left-2 {
  transform: translateX(-430px) rotateY(-55deg) translateZ(-120px) scale(0.95);
  opacity: 0.45;
}

/* right side cards */
.coverflow-item.right-1 {
  transform: translateX(250px) rotateY(35deg);
  opacity: 0.8;
}

.coverflow-item.right-2 {
  transform: translateX(430px) rotateY(55deg) translateZ(-120px) scale(0.95);
  opacity: 0.45;
}

/* arrows */

.coverflow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  width: 40px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.coverflow-left {
  left: 1.3rem;
}

.coverflow-right {
  right: 1.3rem;
}

.coverflow-arrow:hover {
  background: rgba(15, 23, 42, 0.95);
}

/* responsive tweaks */

@media (max-width: 900px) {
  .coverflow-wrapper {
  padding: 1.5rem 0 2rem;
}
  .coverflow-container {
    height: 280px;
  }
  .coverflow-item {
    width: 210px;
    height: 300px;
  }
  .coverflow-item.left-2,
  .coverflow-item.right-2 {
    display: none;
  }
}

@media (max-width: 640px) {
  .coverflow-container {
    height: 280px;
  }
  .coverflow-item {
    width: 190px;
    height: 260px;
  }
  .coverflow-arrow {
    width: 34px;
    height: 50px;
    font-size: 1.7rem;
  }
}




