:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #637088;
  --line: #dce3ee;
  --soft: #f3f7fb;
  --panel: #ffffff;
  --blue: #1769e0;
  --blue-dark: #104fa8;
  --green: #12886f;
  --gold: #e8ad3f;
  --shadow: 0 22px 60px rgba(23, 32, 51, 0.12);
}

* {
  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(--ink);
  background: #fbfcfe;
  line-height: 1.6;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 227, 238, 0.8);
  background: rgba(251, 252, 254, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 10px 26px rgba(18, 136, 111, 0.22);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.96rem;
  font-weight: 700;
}

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(23, 105, 224, 0.22);
}

.nav-cta:hover,
.button:hover {
  background: var(--blue-dark);
  color: white;
  text-decoration: none;
}

.button.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

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

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 16%, rgba(232, 173, 63, 0.25) 0 12%, transparent 13%),
    radial-gradient(circle at 74% 78%, rgba(18, 136, 111, 0.14) 0 13%, transparent 14%),
    linear-gradient(135deg, #ffffff 0%, #f5f8fc 55%, #eef5ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: center;
  padding: 76px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 780px;
  font-size: clamp(3.1rem, 6.4vw, 6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.lead {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.lead.compact {
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.signal-panel {
  border: 1px solid rgba(220, 227, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  padding: 22px;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.status-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.status-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.status-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.12rem;
}

.status-card.strong {
  margin-bottom: 14px;
  color: white;
  background: linear-gradient(135deg, var(--ink), #244a6f);
  border-color: transparent;
}

.status-card.strong span {
  color: rgba(255, 255, 255, 0.72);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.section {
  padding: 82px 0;
}

.section.muted {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-intro {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.principle,
.project-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
}

.service-card p,
.principle p,
.project-card p,
.contact-card span {
  color: var(--muted);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #e9f2ff;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.principles {
  display: grid;
  gap: 14px;
}

.project-section {
  background: #ffffff;
}

.project-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.project-card p {
  max-width: 670px;
}

.contact-section {
  background: linear-gradient(135deg, #f8fbff, #eef7f4);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.placeholder {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 6px;
  background: #fff4d7;
  color: #7a5200;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  background: #111827;
  color: #d9e2f0;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

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

.site-footer a {
  color: white;
}

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

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

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.9rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 52px;
  }

  .hero-actions,
  .project-card {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }
}
