:root {
  --bg: #08090d;
  --bg-soft: #0e1016;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #a5adbf;
  --muted-2: #7b8394;
  --accent: #c9a35f;
  --accent-2: #7f5eff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(127, 94, 255, 0.14), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(201, 163, 95, 0.16), transparent 22%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); line-height: 1.7; }
img { max-width: 100%; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

.orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.18;
}
.orb-1 { top: 80px; left: -120px; background: var(--accent-2); }
.orb-2 { right: -120px; bottom: 80px; background: var(--accent); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section { padding: 96px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: #d3d9e7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.04em; }
h1 { font-size: clamp(3rem, 7vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.lead { font-size: 1.06rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgb(8 9 13 / 0%);
    border-bottom: 1px solid rgb(255 255 255 / 0%);
}

.nav-wrap {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
}

.brand {
    width: 220px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-logo:hover {
    transform: scale(1.03);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
}

.hero { padding-top: 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}
.hero-copy h1 span {
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #ead8ae 55%, #b9a7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-copy p {
  max-width: 720px;
  font-size: 1.05rem;
  margin-top: 22px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, rgba(201,163,95,0.95), rgba(127,94,255,0.95));
  color: #0a0a0a;
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.hero-metrics article,
.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-metrics article {
  padding: 22px;
}
.hero-metrics strong,
.stat-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.hero-metrics span,
.stat-card span {
  color: var(--muted);
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  backdrop-filter: blur(18px);
}
.hero-panel {
  padding: 26px;
}
.panel-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d8dfef;
  font-size: 0.9rem;
  margin-bottom: 22px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6eff96;
  box-shadow: 0 0 18px #6eff96;
}
.stack-list {
  display: grid;
  gap: 14px;
}
.stack-item {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.stack-item small {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 10px;
}
.stack-item strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.section-grid,
.section-heading,
.footer-grid {
  display: grid;
  gap: 24px;
}
.about-grid,
.footer-grid {
  grid-template-columns: 1fr 1fr;
}
.section-heading {
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  margin-bottom: 28px;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.company-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.company-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}
.company-card-top { display: grid; gap: 18px; }
.company-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  color: #dde3f1;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.company-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.company-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: #d5dcec;
}
.company-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-weight: 700;
}
.company-link:hover { background: rgba(255,255,255,0.08); }

.vision-wrap {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}
.vision-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vision-points article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
}
.vision-points strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 24px;
}
.footer {
  padding: 60px 0 24px;
  border-top: 1px solid rgb(255 255 255 / 0%);
}
.footer-actions {
  display: grid;
  gap: 14px;
  align-content: start;
}
.contact-link {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-weight: 700;
}
.contact-link:hover { background: rgba(255,255,255,0.08); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .section-heading,
  .vision-wrap,
  .footer-grid,
  .companies-grid,
  .stats-grid,
  .vision-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    background: rgba(10,12,18,0.96);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .hero-metrics { grid-template-columns: 1fr; }
  .section { padding: 82px 0; }
  .hero { padding-top: 36px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  .btn, .contact-link { width: 100%; }
  .hero-panel, .vision-wrap, .company-card, .stat-card { padding: 22px; }
}

.company-image {
    width: 100%;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 22px;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.company-card:hover .company-image img {
    transform: scale(1.05);
}

.social-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.company-socials {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.company-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.company-socials a:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.marquee-section {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    white-space: nowrap;
    position: relative;
}

.marquee-track span::after {
    content: "•";
    margin-left: 40px;
    color: rgba(255,255,255,0.35);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}