@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy-950: #050816;
  --navy-925: #070c1f;
  --navy-900: #08112a;
  --navy-850: #0c1838;
  --navy-800: #10214a;

  --brand-blue: #2f9bff;
  --brand-blue-soft: #5bb8ff;
  --cyan: #85ecff;

  --text-main: #0d1326;
  --text-muted: #5f6980;
  --text-soft: #d7deea;

  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --border: #e3e9f3;

  --shadow-soft: 0 24px 80px rgba(10, 16, 35, 0.10);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.32);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;

  --max-width: 1180px;
}

* {
  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-main);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 14, 28, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, #7bdcff, transparent 38%),
    linear-gradient(135deg, var(--brand-blue-soft), #1f6fff);
  box-shadow: 0 0 20px rgba(47, 155, 255, 0.42);
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.02em;
}

.brand-white {
  color: #ffffff;
}

.brand-blue {
  color: var(--brand-blue);
  -webkit-text-fill-color: var(--brand-blue);
}

.inline-brand {
  display: inline-flex;
  align-items: baseline;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Hero */

.hero {
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(circle at 60% 0%, rgba(47, 155, 255, 0.20), transparent 32%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 52%, var(--navy-850));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  min-height: 720px;
  margin: 0 auto;
  padding: 96px 28px 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: #9cd8ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.hero-subtitle {
  margin: 28px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.85;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.18s ease;
}

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

.button.primary {
  background: #ffffff;
  color: var(--navy-950);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.12);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.trust-strip {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 12px;
  font-weight: 500;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-height: 470px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-dark);
}

/* Split visual sections */

.split-section {
  padding: 92px 28px;
}

.split-light {
  background: #ffffff;
}

.solution-section {
  padding: 96px 28px 104px;
  background:
    radial-gradient(circle at 80% 0%, rgba(47, 155, 255, 0.18), transparent 30%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.split-card {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-925);
  box-shadow: var(--shadow-soft);
}

.solution-card-large {
  background: rgba(5, 8, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

.split-copy {
  padding: 64px;
  align-self: center;
  color: #ffffff;
}

.split-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.split-copy p {
  margin: 22px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.9;
}

.split-image-wrap {
  min-height: 520px;
  overflow: hidden;
}

.split-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Solution cards */

.solution-cards {
  max-width: var(--max-width);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mini-card {
  min-height: 250px;
  padding: 34px 30px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-dark);
  color: #ffffff;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(126, 231, 255, 0.11);
  border: 1px solid rgba(126, 231, 255, 0.14);
  font-weight: 700;
  font-size: 12px;
}

.mini-card h3 {
  margin: 24px 0 12px;
  font-size: 25px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.9;
}

/* Standard sections */

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 104px 28px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.dark-label {
  color: #61708e;
}

.section h2,
.company-panel h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 700;
}

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

.industry-item {
  padding: 20px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--navy-800);
  font-weight: 600;
  font-size: 15px;
}

.company-section {
  padding-top: 44px;
}

.company-panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: 58px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff, #f4f8fd);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.company-panel p {
  max-width: 800px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.9;
}

/* Contact */

.contact-section {
  padding-top: 40px;
}

.contact-card {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: center;
  padding: 54px 58px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 0%, rgba(126, 231, 255, 0.20), transparent 34%),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  box-shadow: var(--shadow-soft);
}

.contact-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.85;
}

.email-link {
  justify-self: end;
  display: inline-flex;
  padding: 16px 22px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
  font-size: 15px;
}

/* Footer */

.footer {
  padding: 30px 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}

.footer div,
.footer p {
  margin: 0;
}

.footer strong {
  color: #ffffff;
  font-size: 14px;
}

.footer div p {
  margin-top: 6px;
  font-size: 14px;
}

.footer > p {
  font-size: 14px;
}

/* Responsive */

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-inner,
  .split-card,
  .solution-card-large,
  .solution-cards,
  .industry-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-image {
    max-height: 420px;
  }

  .split-section,
  .solution-section,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .split-copy {
    padding: 42px;
  }

  .split-image-wrap {
    min-height: 360px;
  }

  .email-link {
    justify-self: start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 14px 18px;
  }

  .nav-links {
    font-size: 12px;
    gap: 12px;
  }

  .hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.85;
  }

  .hero-image {
    max-height: 320px;
    border-radius: 22px;
  }

  .split-section,
  .solution-section,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .split-copy {
    padding: 30px;
  }

  .split-copy h2,
  .section h2,
  .company-panel h2,
  .contact-card h2 {
    font-size: 30px;
  }

  .split-image-wrap {
    min-height: 260px;
  }

  .company-panel,
  .contact-card {
    padding: 30px;
  }

  .mini-card {
    padding: 28px;
  }
}
