﻿:root {
  --ink: #0b1d2c;
  --text: #e7edf7;
  --muted: #9eb2c7;
  --panel: rgba(255, 255, 255, 0.04);
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);
  --accent: #f5b429;
  --accent-2: #3bd3c9;
  --bg: #050c16;
  --shadow: 0 20px 60px rgba(5, 13, 25, 0.4);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(120% 100% at 10% 20%, rgba(59, 211, 201, 0.12), transparent),
              radial-gradient(80% 80% at 80% 0%, rgba(245, 180, 41, 0.12), transparent),
              var(--bg);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(59, 211, 201, 0.14), rgba(245, 180, 41, 0.12));
  opacity: 0.35;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

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

.nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(5, 12, 22, 0.7);
  border-bottom: 1px solid var(--stroke);
  z-index: 10;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}
.logo__mark { width: 150px; height: 88px; object-fit: contain; display: block; }
.logo__mark.solo { transform: scale(1.8); }

.nav__links { display: flex; gap: 18px; align-items: center; }

.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__links a:hover { color: var(--text); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.hero {
  padding: 80px 0 50px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(460px, 1fr);
  gap: 28px;
  align-items: center;
}

.hero__text h1 {
  margin: 10px 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.lead { font-size: 1.05rem; color: var(--muted); max-width: 620px; }

.hero__actions { display: flex; gap: 12px; margin: 22px 0 12px; flex-wrap: wrap; }

.btn {
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid var(--stroke);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary { background: linear-gradient(135deg, #f5b429, #f08700); color: #0b1d2c; border: none; box-shadow: var(--shadow); }
.btn.ghost { background: rgba(255, 255, 255, 0.04); }
.btn:hover { transform: translateY(-1px); }
.btn.full { width: 100%; text-align: center; }

.hero__tags { list-style: none; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 0; }
.hero__tags li { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--stroke); padding: 8px 12px; border-radius: 999px; color: var(--muted); font-size: 0.95rem; }

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px 20px 22px;
  box-shadow: var(--shadow);
}

.hero__panel { align-self: stretch; display: flex; flex-direction: column; gap: 12px; min-width: 520px; }

.card__header { margin-bottom: 8px; }
.card__header h3 { margin: 6px 0; }

.muted { color: var(--muted); }

.pillrow { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 4px; }
.hero__panel .pillrow { justify-content: flex-start; flex-wrap: wrap; gap: 8px; width: 100%; }
.pill.tab { cursor: pointer; border: 1px solid var(--stroke); background: rgba(255,255,255,0.06); transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease; white-space: nowrap; padding: 10px 12px; font-size: 0.95rem; min-width: 0; flex: 1 1 calc(33.333% - 8px); text-align: center; }
.pill.tab.active { background: linear-gradient(135deg, #f5b429, #f08700); color: #0b1d2c; border-color: transparent; box-shadow: var(--shadow); }
.pill { padding: 8px 10px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--stroke); font-weight: 600; color: var(--text); font-size: 0.95rem; }

.timeline { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.timeline__item { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; padding: 10px; border-radius: 12px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05); }
.dot { width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 0 6px rgba(245,180,41,0.1); }
.timeline__title { margin: 0; }
.timeline__text { margin: 2px 0 0; }

.section { padding: 70px 0; }
.section__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }

.card__title { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.badge { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(245, 180, 41, 0.12); border: 1px solid rgba(245, 180, 41, 0.35); color: var(--text); font-weight: 700; }

.card__list { padding-left: 18px; color: var(--text); line-height: 1.6; margin: 10px 0 0; }
.card__list li { margin-bottom: 6px; color: var(--muted); }

.toggle { padding: 0; overflow: hidden; }
.toggle__head { all: unset; width: 100%; padding: 16px 16px 12px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.toggle__head h3 { margin: 0; }
.toggle__body { padding: 0 16px 16px; }
.chevron { transition: transform 0.2s ease; font-size: 1.2rem; color: var(--muted); }
.toggle.open .chevron { transform: rotate(180deg); color: var(--text); }
.toggle.open { border-color: rgba(245, 180, 41, 0.35); box-shadow: 0 10px 40px rgba(0,0,0,0.35); }

.alt { background: rgba(0, 0, 0, 0.2); border-block: 1px solid var(--stroke); }
.dual { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: start; }

.steps { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 12px; border-radius: 14px; border: 1px solid var(--stroke); background: rgba(255,255,255,0.04); }
.step__id { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg, #3bd3c9, #0fb8b0); font-weight: 700; color: #041016; }
.step h4 { margin: 0; }
.step p { margin: 4px 0 0; color: var(--muted); }

.stack { gap: 12px; display: flex; flex-direction: column; }
.stack__list { padding-left: 18px; margin: 8px 0 0; color: var(--muted); }
.stack__list li { margin-bottom: 8px; }
.note { border: 1px dashed var(--stroke); padding: 12px; border-radius: 12px; color: var(--text); background: rgba(255,255,255,0.03); }

.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; align-items: start; }
.contact__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 14px; }
.card.mini { padding: 14px; }

.form form { display: flex; flex-direction: column; gap: 12px; }
.form label { display: flex; flex-direction: column; gap: 6px; color: var(--text); font-weight: 600; font-size: 0.95rem; }
.form input, .form textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
  font-size: 1rem;
}
.form input:focus, .form textarea:focus { outline: 1px solid var(--accent); border-color: var(--accent); }
.tiny { font-size: 0.85rem; }

.footer { padding: 26px 0 40px; border-top: 1px solid var(--stroke); background: rgba(0,0,0,0.3); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: var(--muted); margin: 0; }

.logo-strip { overflow: hidden; border: 1px solid var(--stroke); border-radius: 16px; background: rgba(255,255,255,0.04); margin-top: 16px; }
.logo-strip__track { display: flex; gap: 28px; padding: 20px 24px; width: max-content; animation: marquee 22s linear infinite; }
.logo-chip { padding: 16px 20px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.12); color: var(--ink); font-weight: 700; letter-spacing: 0.01em; white-space: nowrap; display: grid; place-items: center; min-width: 220px; min-height: 96px; box-shadow: 0 10px 40px rgba(0,0,0,0.25); }
.logo-chip img { max-height: 64px; max-width: 90%; width: auto; height: auto; display: block; object-fit: contain; }
.logo-chip.tight { overflow: hidden; }
.logo-chip.tight img { transform: scale(2.1); }
.logo-chip.scale-115 img { transform: scale(1.15); }
.logo-chip.scale-120 img { transform: scale(1.2); }

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

.visuals { margin-top: 18px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.visual { position: relative; border: 1px solid var(--stroke); border-radius: 14px; min-height: 160px; overflow: hidden; background: linear-gradient(135deg, rgba(59,211,201,0.12), rgba(245,180,41,0.08)); display: grid; place-items: center; color: var(--text); font-weight: 600; text-align: center; background-size: cover; background-position: center; }
.visual.placeholder { color: var(--muted); border-style: dashed; }
.visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 45%); pointer-events: none; }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__inner { padding-inline: 0; }
  .hero { padding-top: 40px; }
  .section { padding: 50px 0; }
  .hero__panel .pillrow { flex-wrap: wrap; justify-content: center; }
  .hero__panel { min-width: auto; }
  .pill.tab { min-width: 180px; flex: 1 1 45%; }
}
