/* =========================
   BASE RESET
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: #0f0f0f;
  color: #f2f2f2;
  overflow-x: hidden;
}

/* =========================
   BACKGROUND
   ========================= */
.stars-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.12) 0, transparent 60%);
  opacity: 0.35;
  z-index: -2;
}

/* =========================
   LAYOUT
   ========================= */
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 7rem 1.25rem 4rem;
}

.section {
  margin-top: 4rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  text-align: center;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0.5rem auto 2rem;
  color: #b8b8b8;
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .two-cols,
  .three-cols {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================
   HEADER / NAV
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1120px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  backdrop-filter: blur(22px) saturate(140%);
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.logo-img--mono {
  filter: grayscale(1) brightness(1.4);
  transition: filter 0.2s ease;
}

.site-header:hover .logo-img--mono {
  filter: grayscale(0.5) brightness(1.1);
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav-link {
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #d0d0d0;
  transition: 0.2s;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.nav-link.active {
  color: #ffffff;
  background: #a855f7;
}

.nav-cta {
  text-decoration: none;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: 10px;
  background: #a855f7;
  color: #ffffff;
  font-weight: 600;
}

/* =========================
   HERO
   ========================= */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-inner {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  color: #cfcfcf;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-tags span {
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 240px;
}

.hero-logo {
  display: block;
  height: 80px;
  width: auto;
  margin-bottom: 1.25rem;
}

/* Orbs – subtle, no glow */
.orb {
  position: absolute;
  border-radius: 999px;
  opacity: 0.45;
}

.orb-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 65%);
  top: 5%;
  left: 5%;
}

.orb-2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent 65%);
  right: 0;
  bottom: 10%;
}

.orb-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(120, 120, 120, 0.4), transparent 65%);
  left: 40%;
  bottom: -5%;
}

.floating-card {
  position: relative;
  max-width: 260px;
  z-index: 1;
  font-size: 0.9rem;
}

.floating-card h3 {
  margin-bottom: 0.5rem;
}

/* =========================
   GLASS CARD
   ========================= */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(140%);
  border-radius: 16px;
  padding: 1.5rem;
}

/* =========================
   3D TILT (no glow)
   ========================= */
.tilt-card {
  transition: transform 0.2s ease;
}

.tilt-card:hover {
  transform: translateY(-3px);
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  padding: 0.6rem 1.3rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.btn.primary {
  background: #a855f7;
  color: #ffffff;
}

.btn.primary:hover {
  background: #9333ea;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* =========================
   ACCENT TEXT
   ========================= */
.neon-accent {
  color: #a855f7;
  font-weight: 700;
}

/* =========================
   SPLIT / ICON / STATS / STEPS
   ========================= */
.section-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

.split-card h2,
.split-card h3 {
  margin-bottom: 0.6rem;
}

.split-card p {
  font-size: 0.9rem;
  color: #c8c8c8;
  margin-bottom: 0.75rem;
}

.icon-list {
  list-style: none;
  font-size: 0.9rem;
  color: #dfdfdf;
}

.icon-list li + li {
  margin-top: 0.35rem;
}

/* Steps */
.step-card {
  position: relative;
  padding-top: 2.2rem;
  font-size: 0.9rem;
}

.step-number {
  position: absolute;
  top: 0.4rem;
  right: 0.8rem;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333333;
}

/* Stats */
.stats-grid .stat-card {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: #b5b5b5;
  margin-bottom: 0.35rem;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Deals */
.deal-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deal-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.deal-location {
  font-size: 0.85rem;
  color: #c1c1c1;
}

.deal-metrics {
  list-style: none;
  font-size: 0.85rem;
}

.deal-metrics li {
  display: flex;
  justify-content: space-between;
}

.deal-spread {
  font-size: 0.8rem;
  color: #bcbcbc;
}

/* =========================
   FORMS
   ========================= */
.form-card {
  margin-top: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

label {
  font-size: 0.8rem;
  color: #dcdcdc;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  color: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: #8d8d8d;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #a855f7;
  outline: none;
}

textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
  margin-top: 1rem;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #a5a5a5;
}

/* =========================
   PRELOADER
   ========================= */
#preloader {
  position: fixed;
  inset: 0;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  height: 80px;
  width: auto;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  text-align: center;
  padding: 2.5rem 0;
  font-size: 0.85rem;
  color: #9d9d9d;
}
