:root {
  --bg: #07101d;
  --bg2: #0b1728;
  --card: rgba(14, 28, 48, 0.72);

  --text: #edf3ff;
  --muted: #c1cce0;

  --brand: #1ec0d8;
  --brand2: #67a8ff;
  --gold: #e4c15f;

  --line: rgba(255, 255, 255, 0.10);

  --radius: 18px;
  --max: 1200px;

  --shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.20);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background:
          radial-gradient(1200px 800px at 10% 10%, rgba(30, 192, 216, 0.08), transparent 60%),
          radial-gradient(900px 700px at 90% 10%, rgba(103, 168, 255, 0.10), transparent 55%),
          linear-gradient(180deg, var(--bg2), var(--bg));
}

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

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

a:hover {
  opacity: 0.95;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 9999;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 16, 29, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text);
  min-width: 0;
}

.brand span:last-child {
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.1px;
}

.brand-badge {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex: 0 0 auto;
}

.brand-badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

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

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 4px;
}

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

.lang {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}

.lang a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.lang .active {
  background: var(--gold);
  color: #07101d;
  border-color: transparent;
}

/* HERO */
.hero {
  padding: 0;
}

.hero-bleed {
  position: relative;
  width: 100%;
  min-height: 78vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
          linear-gradient(
                  90deg,
                  rgba(4, 10, 18, 0.84) 0%,
                  rgba(4, 10, 18, 0.72) 18%,
                  rgba(4, 10, 18, 0.46) 42%,
                  rgba(4, 10, 18, 0.20) 68%,
                  rgba(4, 10, 18, 0.10) 100%
          ),
          linear-gradient(
                  180deg,
                  rgba(5, 10, 18, 0.12) 0%,
                  rgba(5, 10, 18, 0.40) 100%
          );
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-copy {
  width: 72%;
  max-width: 1100px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 13px;
  color: #dce8ff;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex: 0 0 auto;
}

.hero-copy h1 {
  margin: 0 0 22px 0;
  font-size: clamp(44px, 5.2vw, 84px);
  line-height: 1.03;
  letter-spacing: -1.5px;
  max-width: none;
  width: 100%;
}

.hero-copy p {
  margin: 0 0 30px 0;
  font-size: 19px;
  line-height: 1.75;
  color: #d9e4f7;
  max-width: 720px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #07101d;
  border-color: transparent;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  backdrop-filter: blur(6px);
}

/* SECTIONS */
.section {
  padding: 64px 0;
}

.section h2 {
  margin: 0 0 12px 0;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.lead {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 20px 0;
  max-width: 76ch;
}

/* CARDS */
.card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.card h3,
.contact-card h3 {
  margin: 0 0 12px 0;
  font-size: 17px;
  line-height: 1.35;
}

.card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* LAYOUT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0a1220;
  min-height: 280px;
}

.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.pill {
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  line-height: 1.65;
}

.pill b {
  color: var(--text);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.list-item {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.list-item b {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.list-item span {
  color: var(--muted);
  line-height: 1.7;
}

/* PROCESS */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #07101d;
  font-weight: 700;
  margin-bottom: 10px;
}

.step b {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* CONTACT */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.kv {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  min-width: 0;
}

.kv small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.kv a {
  display: block;
  color: var(--text);
  font-weight: 600;
  line-height: 1.65;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-card .list {
  margin-top: 0;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  font-size: 13px;
  color: var(--muted);
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

/* TABLET */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

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

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

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

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

  .hero-bleed,
  .hero-content {
    min-height: 68vh;
  }

  .hero-copy {
    width: 85%;
    max-width: 900px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 6vw, 62px);
  }

  .hero-copy p {
    font-size: 17px;
    max-width: 560px;
  }
}

/* MOBILE */
@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero-bleed,
  .hero-content {
    min-height: 520px;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 70px;
    padding-bottom: 30px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.7px;
    margin-bottom: 14px;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 100%;
  }

  .kicker {
    font-size: 12px;
    padding: 7px 12px;
    margin-bottom: 14px;
  }

  .btn {
    min-width: 140px;
    padding: 12px 16px;
  }

  .section {
    padding: 44px 0;
  }

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

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

  .brand span:last-child {
    font-size: 14px;
    white-space: normal;
  }
}