:root {
  --bg: #08111f;
  --bg-soft: #0d1a2d;
  --bg-muted: #f5f7fb;
  --text: #102033;
  --text-soft: #506176;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: #dbe2ec;
  --accent: #4f7cff;
  --accent-dark: #315bdc;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 17, 31, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #84a1ff);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(79, 124, 255, 0.35);
}

.brand-text {
  font-size: 1.08rem;
}

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

.nav a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(79, 124, 255, 0.35), transparent 34%),
    radial-gradient(circle at bottom right, rgba(132, 161, 255, 0.22), transparent 36%),
    linear-gradient(135deg, #08111f 0%, #0b1730 58%, #101f3b 100%);
  padding: 118px 0 108px;
}

.hero-simple {
  max-width: 900px;
}

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

.hero .eyebrow {
  color: #9fb5ff;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.availability-note {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.96rem;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--bg-muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.section-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.section-copy p,
.section-copy + p {
  margin-top: 0;
}

.section-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 14px 40px rgba(8, 17, 31, 0.07);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #eaf0ff;
  color: var(--accent-dark);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.card p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text-soft);
  font-size: 1.07rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eaf0ff;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: start;
}

.email-line {
  margin-top: 28px;
  font-weight: 750;
}

.email-line a {
  color: var(--accent-dark);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 750;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd8e6;
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(79, 124, 255, 0.18);
  border-color: var(--accent);
}

.hidden {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.form-note a {
  color: var(--accent-dark);
}

.site-footer {
  color: var(--white);
  background: var(--bg);
  padding: 34px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-inner p,
.footer-bottom p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 20px;
  font-size: 0.9rem;
}

.simple-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.simple-page main {
  flex: 1;
}

.page-hero {
  padding: 82px 0;
  color: var(--white);
  background: linear-gradient(135deg, #08111f 0%, #101f3b 100%);
}

.page-content {
  padding: 72px 0;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 34px;
  font-size: 1.65rem;
}

.prose p,
.prose li {
  color: var(--text-soft);
}

.prose a {
  color: var(--accent-dark);
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .hero {
    padding: 72px 0;
  }

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

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-form,
  .card {
    padding: 22px;
  }
}