:root {
  --bg: #09111f;
  --bg-soft: #101a2d;
  --bg-card: rgba(12, 22, 40, 0.82);
  --line: rgba(136, 170, 255, 0.18);
  --text: #f4f7ff;
  --muted: #9fb0d2;
  --accent: #6aa9ff;
  --accent-strong: #2c6dff;
  --accent-soft: rgba(106, 169, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(44, 109, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 85% 25%, rgba(80, 149, 255, 0.15), transparent 24rem),
    linear-gradient(180deg, #07101d 0%, #0a1424 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 186, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 186, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
  opacity: 0.35;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 30px rgba(44, 109, 255, 0.36);
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.mail-link {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  border-radius: 999px;
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  min-height: 72vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--accent);
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.lead {
  margin: 24px 0 0;
  max-width: 720px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(106, 169, 255, 0.24);
  color: #dfeaff;
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 18px 40px rgba(44, 109, 255, 0.28);
}

.button.secondary {
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
  color: var(--text);
  box-shadow: none;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  position: relative;
  width: min(100%, 520px);
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(17, 30, 54, 0.92), rgba(10, 19, 36, 0.88));
  border: 1px solid rgba(129, 168, 255, 0.18);
  box-shadow: var(--shadow);
}

.hero-svg {
  display: block;
  width: 100%;
  height: auto;
}

.visual-badge {
  position: absolute;
  border: 1px solid rgba(138, 177, 255, 0.18);
  background: rgba(7, 14, 29, 0.8);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.visual-badge-top {
  top: 28px;
  right: -18px;
}

.visual-badge-bottom {
  left: -18px;
  bottom: 28px;
}

.badge-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 3px;
}

.info-grid,
.contact-grid,
.grid {
  display: grid;
  gap: 18px;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.card {
  margin-top: 18px;
  padding: 30px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.section-head {
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

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

.grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tile {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(138, 177, 255, 0.12);
}

.tile-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(106, 169, 255, 0.18), rgba(44, 109, 255, 0.34));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border: 1px solid rgba(135, 175, 255, 0.24);
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-box {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(138, 177, 255, 0.12);
}

strong {
  color: var(--text);
}

a {
  color: #bdd4ff;
}

@media (max-width: 920px) {
  .hero,
  .info-grid,
  .grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 16px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .visual-badge-top,
  .visual-badge-bottom {
    position: static;
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .page {
    padding-bottom: 44px;
  }

  .card {
    padding: 22px;
    border-radius: 22px;
  }

  .visual-card {
    border-radius: 24px;
  }
}
