@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg: #070c14;
  --bg-soft: #0e1726;
  --panel: rgba(15, 24, 39, 0.84);
  --line: rgba(255, 255, 255, 0.14);
  --text: #ecf1ff;
  --muted: #b7c4dd;
  --gold: #d9ac5a;
  --accent: #e43f53;
  --max: 1160px;
  --radius: 18px;
  --stagger-step: 60ms;
  --section-reveal-y: 28px;
  --item-reveal-y: 16px;
  --section-reveal-duration: 680ms;
  --item-reveal-duration: 560ms;
  --logo-float-duration: 7.5s;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: radial-gradient(circle at 12% 0%, #1b2840, var(--bg) 46%);
  font-family: "Manrope", "Inter", "Segoe UI", "Arial", sans-serif;
  scroll-behavior: smooth;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 172, 90, 0.34) rgba(8, 13, 22, 0.72);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(8, 13, 22, 0.72);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(217, 172, 90, 0.42), rgba(217, 172, 90, 0.24));
  border-radius: 999px;
  border: 2px solid rgba(8, 13, 22, 0.72);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(217, 172, 90, 0.56), rgba(217, 172, 90, 0.36));
}

body {
  opacity: 1;
  transition: opacity 0.35s ease;
}

body.is-leaving {
  opacity: 0.2;
}

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

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

.page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  z-index: -1;
  filter: blur(70px);
  pointer-events: none;
}

.page::before {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 16vh;
  background: rgba(217, 172, 90, 0.24);
}

.page::after {
  width: 320px;
  height: 320px;
  right: -90px;
  top: 56vh;
  background: rgba(228, 63, 83, 0.18);
}

.site-nav {
  position: sticky;
  top: 8px;
  z-index: 30;
  width: min(96vw, var(--max));
  margin: 12px auto 0;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 9, 17, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.brand img {
  width: 32px;
  height: 32px;
}

.site-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #d8e1f3;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav nav a {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav nav a.active,
.site-nav nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.site-nav nav a.nav-cta {
  border: 1px solid rgba(242, 202, 133, 0.55);
  color: #f8d89f;
  background: rgba(217, 172, 90, 0.14);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 600;
}

.site-nav nav a.nav-cta:hover {
  color: #ffe8be;
  background: rgba(217, 172, 90, 0.24);
}

.wrap {
  width: min(96vw, var(--max));
  margin: 16px auto 82px;
}

.hero {
  min-height: clamp(620px, 76vh, 920px);
  border-radius: 28px;
  border: 1px solid var(--line);
  padding: clamp(30px, 5vw, 56px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(120deg, rgba(4, 8, 15, 0.92) 26%, rgba(4, 8, 15, 0.3) 74%),
    url("./assets/media/image6.jpeg") center/cover no-repeat;
  box-shadow: 0 30px 48px rgba(0, 0, 0, 0.32);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 18%, rgba(217, 172, 90, 0.18), transparent 42%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: clamp(84px, 13vh, 132px);
}

.hero-center-logo {
  position: absolute;
  left: 50%;
  top: 23%;
  transform: translate(-50%, -50%);
  width: clamp(110px, 14vw, 190px);
  opacity: 0.95;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(4, 8, 15, 0.48);
  backdrop-filter: blur(2px);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
  z-index: 1;
  pointer-events: none;
  animation: hero-float var(--logo-float-duration) ease-in-out infinite;
}

.hero h1,
h1.page-title,
.section h2 {
  margin: 0;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 7.2vw, 5.4rem);
}

.eyebrow {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f3d59f;
  font-size: 0.8rem;
}

.hero p,
.section p,
.lead {
  color: var(--muted);
  max-width: 64ch;
}

.hero .actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), #f1d6a5);
  color: #141414;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
}

.grid {
  display: grid;
  gap: 14px;
}

.metrics {
  margin-top: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card,
.section,
.metric,
.link-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.metric {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.metric p {
  margin: 8px 0 0;
}

.metric .value {
  display: block;
  color: #f2ca85;
  font-size: 1.9rem;
  font-weight: 700;
}

.section {
  margin-top: 18px;
  padding: clamp(20px, 3.8vw, 34px);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.7rem);
}

.section::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 172, 90, 0.42), transparent);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.feature-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.feature-card .content {
  padding: 14px;
}

.feature-card h3,
.link-card h3 {
  margin: 0;
  text-transform: uppercase;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.feature-card p,
.link-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.link-grid {
  margin-top: 14px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.link-card {
  padding: 16px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.link-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 202, 133, 0.45);
  background: rgba(217, 172, 90, 0.14);
  color: #f8d89f;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.link-card a:hover {
  transform: translateY(-1px);
  background: rgba(217, 172, 90, 0.24);
  border-color: rgba(242, 202, 133, 0.7);
}

.feature-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 202, 133, 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li + li {
  margin-top: 9px;
}

.page-head {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(7, 14, 24, 0.94), rgba(7, 14, 24, 0.48)),
    url("./assets/media/image10.jpeg") center/cover no-repeat;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.25);
}

.page-title {
  font-size: clamp(2rem, 5.6vw, 4rem);
}

.solus-hero {
  padding: clamp(20px, 3.6vw, 34px);
}

.solus-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}

.solus-hero-media {
  margin: 0;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.solus-hero-media img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
}

.chip-row {
  margin-top: 18px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.82rem;
  color: #dbe4f7;
}

.spec-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.spec-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 27, 42, 0.82);
  padding: 14px;
}

.spec-item .value {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #f2ca85;
}

.spec-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.solus-visual-grid {
  margin-top: 10px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1.15fr 1fr;
}

.visual-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.visual-main {
  grid-row: span 2;
}

.visual-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.visual-main img {
  height: 100%;
  min-height: 420px;
}

.visual-card .content {
  padding: 14px;
}

.visual-card h3 {
  margin: 0;
  text-transform: uppercase;
}

.visual-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.solus-cta .actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.investor-contact-banner {
  border-color: rgba(242, 202, 133, 0.5);
  background:
    linear-gradient(120deg, rgba(217, 172, 90, 0.16), rgba(15, 24, 39, 0.92)),
    var(--panel);
}

.investor-email-row {
  margin: 12px 0 0;
}

.investor-email-link {
  display: inline-block;
  font-size: clamp(1.2rem, 3.6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffe2af;
  padding: 10px 14px;
  border: 1px solid rgba(242, 202, 133, 0.45);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
}

.footer {
  margin-top: 22px;
  color: #9fb0cf;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(var(--section-reveal-y)) scale(0.99);
  transition:
    opacity var(--section-reveal-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--section-reveal-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal .reveal-item {
  opacity: 0;
  transform: translateY(var(--item-reveal-y));
  transition:
    opacity var(--item-reveal-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--item-reveal-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger, 0ms);
}

.reveal.in-view .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

body.motion-minimal {
  --stagger-step: 25ms;
  --section-reveal-y: 14px;
  --item-reveal-y: 8px;
  --section-reveal-duration: 360ms;
  --item-reveal-duration: 280ms;
  --logo-float-duration: 11s;
}

@keyframes hero-float {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -53%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal .reveal-item,
  .btn,
  .feature-card,
  .link-card,
  body {
    transition: none !important;
    animation: none !important;
  }

  .reveal,
  .reveal .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 860px) {
  .brand span {
    display: none;
  }

  .site-nav {
    position: sticky;
    top: 6px;
    padding: 10px;
    gap: 10px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav nav {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px;
    background: rgba(7, 13, 23, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.nav-open nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav nav a,
  .site-nav nav a.nav-cta {
    font-size: 0.92rem;
    padding: 10px 12px;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: clamp(560px, 64vh, 760px);
    padding: 24px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 3.1rem);
    max-width: 10.5ch;
  }

  .hero-center-logo {
    top: 19%;
    width: clamp(88px, 24vw, 132px);
    transform: translate(-50%, -50%);
    border-radius: 14px;
    padding: 6px;
  }

  .solus-hero-grid,
  .solus-visual-grid,
  .metrics,
  .spec-strip {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 20px;
  }

  .page-head {
    padding: 22px;
  }

  .feature-card img,
  .visual-card img {
    height: 200px;
  }

  .visual-main {
    grid-row: auto;
  }

  .visual-main img {
    min-height: 0;
    height: 230px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: clamp(520px, 62vh, 680px);
  }

  .wrap {
    width: min(97vw, var(--max));
    margin: 12px auto 72px;
  }

  .hero .actions,
  .solus-cta .actions {
    flex-direction: column;
  }

  .hero .btn,
  .solus-cta .btn {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-height: 760px) {
  .hero-content {
    padding-top: 72px;
  }
}
