
:root {
  --bg: #07111f;
  --bg-soft: #0d1831;
  --card: rgba(14, 26, 53, 0.72);
  --card-strong: rgba(11, 21, 41, 0.92);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --text: #f4f7ff;
  --muted: #a8b7d7;
  --muted-strong: #c8d4ef;
  --blue: #4a78ff;
  --blue-2: #7ba1ff;
  --blue-3: #c9d9ff;
  --shadow: 0 24px 80px rgba(0,0,0,0.34);
  --shadow-soft: 0 16px 44px rgba(0,0,0,0.20);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(74,120,255,0.18), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(123,161,255,0.16), transparent 24%),
    linear-gradient(180deg, #081120 0%, #06101d 55%, #050d18 100%);
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: .18;
}
.page-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  opacity: .16;
  z-index: 0;
  pointer-events: none;
}
.page-glow-1 {
  width: 340px; height: 340px;
  top: 120px; left: -80px;
  background: #4a78ff;
}
.page-glow-2 {
  width: 260px; height: 260px;
  right: 4%; top: 460px;
  background: #7ba1ff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(7,17,31,0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #8db0ff);
  box-shadow: 0 12px 28px rgba(74,120,255,0.28);
}
.brand-text { font-size: 16px; letter-spacing: -0.02em; }
.nav nav { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
.nav nav a { transition: color .18s ease; }
.nav nav a:hover { color: var(--text); }

.hero { padding: 78px 0 34px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 800;
}
.hero h1, .section h2 {
  margin: 0;
  font-family: 'Manrope', 'Inter', sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero h1 { font-size: clamp(40px, 6vw, 72px); max-width: 800px; }
.hero-text, .section-subtext {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.hero-text {
  max-width: 670px;
  margin: 20px 0 28px;
}
.hero-actions, .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 22px;
  border-radius: 16px; font-weight: 700;
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}
.btn:hover { transform: translateY(-2px); opacity: .98; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #6b97ff);
  box-shadow: 0 16px 36px rgba(74,120,255,0.30);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.hero-stats > div,
.card,
.process-card,
.cta-box,
.hero-card,
.about-copy,
.gallery-card,
.gallery-hero {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.hero-stats > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
}
.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.hero-card {
  position: relative;
  border-radius: 30px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(123,161,255,0.18), transparent 34%),
    linear-gradient(180deg, rgba(17,31,61,0.92), rgba(9,18,35,0.94));
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto auto -80px -60px;
  width: 220px; height: 220px;
  border-radius: 999px;
  background: rgba(74,120,255,0.18);
  filter: blur(20px);
}
.hero-card-top {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; position: relative; z-index: 1;
}
.mini-badge {
  display: inline-flex; align-items: center;
  padding: 8px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.07);
}
.mini-badge.muted { color: var(--muted-strong); }
.mini-flow {
  display: flex; flex-direction: column; gap: 8px;
  position: relative; z-index: 1;
}
.flow-step {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
}
.flow-step span {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}
.flow-step small { color: var(--muted); }
.flow-arrow {
  color: var(--blue-2);
  text-align: center;
  font-size: 20px;
}
.green { border-left: 4px solid #46d390; }
.blue { border-left: 4px solid #59a7ff; }
.purple { border-left: 4px solid #9a7dff; }
.orange { border-left: 4px solid #ffb35b; }

.section { padding: 72px 0; }
.section-heading { margin-bottom: 28px; }
.section-heading.narrow { max-width: 860px; }
.section h2 {
  font-size: clamp(30px, 4vw, 52px);
  max-width: 900px;
}
.section-subtext {
  margin-top: 16px;
  max-width: 720px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card {
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(123,161,255,0.08), transparent 34%),
    rgba(255,255,255,0.035);
}
.card-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  color: #fff; font-size: 13px; font-weight: 800;
  letter-spacing: .04em;
  background: linear-gradient(135deg, var(--blue), #83a8ff);
  box-shadow: 0 10px 24px rgba(74,120,255,.22);
}
.card h3, .process-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: -0.03em;
}
.card p, .process-card p, .cta-box p, .about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px;
  align-items: start;
}
.about-copy {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(123,161,255,0.10), transparent 28%),
    rgba(255,255,255,0.035);
}
.about-copy p { margin-bottom: 15px; font-size: 17px; }
.about-copy strong { color: var(--text); }
.intro-chip {
  display: inline-flex; align-items: center;
  min-height: 40px; padding: 0 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.05);
  color: var(--blue-3);
  font-weight: 700; font-size: 13px;
}
.founder-points {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.founder-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  font-size: 14px;
}
.founder-note {
  margin-top: 22px;
  padding: 18px 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(123,161,255,0.18);
  background: linear-gradient(135deg, rgba(74,120,255,0.13), rgba(255,255,255,0.03));
}
.founder-note p { margin: 0; color: var(--muted-strong); font-size: 16px; }

.about-visual {
  display: grid;
  gap: 16px;
}
.gallery-hero,
.gallery-card {
  position: relative;
  overflow: hidden;
}
.gallery-hero {
  min-height: 460px;
  border-radius: 30px;
  background: var(--card-strong);
}
.gallery-hero img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-hero img { min-height: 460px; }
.gallery-overlay {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7,17,31,0.1), rgba(7,17,31,0.78));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.overlay-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-2);
  font-weight: 800;
  margin-bottom: 8px;
}
.overlay-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.overlay-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-strong);
}
.gallery-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-card {
  height: 265px;
  border-radius: 24px;
  background: var(--card-strong);
}
.gallery-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 48px 16px 14px;
  font-size: 13px; font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(7,17,31,0.88));
}
.gallery-card:hover,
.gallery-hero:hover {
  transform: translateY(-2px);
  transition: transform .18s ease;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-card {
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(123,161,255,0.08), transparent 34%),
    rgba(255,255,255,0.035);
}
.process-card span {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: rgba(74,120,255,0.18);
  color: var(--blue-2);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box {
  padding: 30px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background:
    radial-gradient(circle at top right, rgba(123,161,255,0.16), transparent 34%),
    linear-gradient(135deg, rgba(17,31,61,0.92), rgba(10,19,36,0.95));
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
  color: var(--muted);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .hero-grid, .about-grid, .process-grid, .cards, .hero-stats, .cta-box {
    grid-template-columns: 1fr;
  }
  .cta-box { display: grid; }
}
@media (max-width: 720px) {
  .nav { gap: 16px; }
  .nav nav { display: none; }
  .hero { padding-top: 48px; }
  .section { padding: 56px 0; }
  .about-copy { padding: 22px; }
  .gallery-hero { min-height: 360px; }
  .gallery-hero img { min-height: 360px; }
  .gallery-stack { grid-template-columns: 1fr; }
  .gallery-card { height: 250px; }
  .footer-row { flex-direction: column; }
}
