.color-dark-blue{
  color: darkblue;
}


:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-strong: #0f2744;
  --primary: #12395f;
  --accent: #11a7b8;
  --accent-soft: #d7f5f7;
  --text: #18304a;
  --text-soft: #5a6d82;
  --line: rgba(18, 57, 95, 0.12);
  --shadow: 0 24px 60px rgba(16, 43, 73, 0.12);
  --radius: 24px;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-heading: "Space Grotesk", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(17, 167, 184, 0.18), transparent 36%),
    radial-gradient(circle at top right, rgba(18, 57, 95, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f9 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(10, 31, 54, 0.78);
  border-bottom: 1px solid rgba(131, 216, 255, 0.16);
  box-shadow: 0 18px 44px rgba(10, 31, 54, 0.18);
}

.nav-wrap,
.hero-grid,
.spotlight-grid,
.split,
.contact-panel {
  display: grid;
  gap: 32px;
}

.nav-wrap {
  grid-template-columns: auto auto 1fr;
  align-items: center;
  min-height: 78px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  color: #f3fbff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-shadow: 0 1px 14px rgba(131, 216, 255, 0.16);
}

.brand::after {
  content: "";
  width: 38px;
  height: 2px;
  margin-left: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(131, 216, 255, 0.88), rgba(17, 167, 184, 0.85));
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: 10px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(243, 251, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(131, 216, 255, 0.92), rgba(17, 167, 184, 0.88));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f3fbff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(17, 167, 184, 0.18);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:last-child {
  color: #f3fbff;
  background: linear-gradient(135deg, rgba(131, 216, 255, 0.22), rgba(17, 167, 184, 0.22));
  border: 1px solid rgba(131, 216, 255, 0.2);
  box-shadow: 0 10px 26px rgba(7, 26, 44, 0.18);
}

.site-nav a:last-child::after {
  transform: scaleX(1);
}

.contact-links a {
  color: var(--text);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(131, 216, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #f3fbff;
}

.hero {
  padding: 96px 0 70px;
}

.hero-grid,
.spotlight-grid,
.split,
.contact-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(620px, 1.1fr);
  gap: 40px;
}

.hero-copy {
  max-width: 680px;
  padding-right: 0;
}

.hero-visual {
  position: relative;
  justify-self: stretch;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 22px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16385d;
  border: 1px solid rgba(21, 74, 120, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 237, 246, 0.95), rgba(233, 245, 250, 0.92));
  box-shadow: 0 12px 28px rgba(18, 57, 95, 0.08);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.9rem, 5.3vw, 5.4rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  /* max-width: 8.9ch; */
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  max-width: max-content;
}

.hero-text,
.section p,
.feature-list,
.client-card {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-text {
  max-width: 46rem;
  color: darkblue;
}

.about-copy p {
  color: var(--primary);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #0b5b81);
  box-shadow: var(--shadow);
}

.button-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.hero-visual img,
.spotlight-visual img,
.detail-panel img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  min-height: 380px;
}

.section {
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 247, 251, 0.88));
}

.section-industries {
  color: #ecf7fb;
  background: linear-gradient(135deg, #102b48 0%, #154a78 100%);
  background:
    radial-gradient(circle at top left, rgba(17, 167, 184, 0.2), transparent 28%),
    radial-gradient(circle at bottom right, rgba(131, 216, 255, 0.14), transparent 32%),
    linear-gradient(135deg, #102b48 0%, #154a78 100%);
}

.section-industries .section-label {
  color: #0c0530;
}

.section-industries h2 {
  color: #f3fbff;
}

.industries-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: end;
}

.section-industries .industries-intro p:last-child {
  margin: 0;
  color: rgba(236, 247, 251, 0.82);
}

.section-dark {
  color: #ecf7fb;
  background:
    radial-gradient(circle at top right, rgba(17, 167, 184, 0.25), transparent 28%),
    linear-gradient(135deg, #0d243e 0%, #12395f 100%);
}

.section-dark .section-label,
.section-dark h2,
.section-dark .client-card {
  color: inherit;
}

.section-dark .section-label {
  color: #0c0530;
}

.spotlight .section-label {
  color: #0c0530;
}

.section-dark h2 {
  color: #83d8ff;
}

.card-grid,
.client-grid,
.tag-grid,
.stack-grid {
  display: grid;
  gap: 20px;
}

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

.card,
.client-card,
.detail-panel {
  padding: 28px;
  border: 1px solid rgba(18, 57, 95, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 253, 0.9));
  box-shadow: 0 18px 42px rgba(16, 43, 73, 0.08);
}

.spotlight {
  color: #eff7fb;
  background:
    radial-gradient(circle at bottom left, rgba(17, 167, 184, 0.18), transparent 32%),
    linear-gradient(135deg, #0f2744 0%, #11385b 100%);
}

.spotlight p,
.spotlight li {
  color: rgba(239, 247, 251, 0.82);
}

.feature-list {
  padding-left: 20px;
  margin: 24px 0 0;
}

.spotlight-grid {
  grid-template-columns: minmax(0, 1fr) minmax(560px, 0.96fr);
  gap: 50px;
}

.spotlight-visual img,
.detail-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.split {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  gap: 44px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.industry-card {
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(190, 232, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 20px 44px rgba(8, 24, 40, 0.18);
}

.industry-card h3 {
  margin-top: 18px;
  color: #f3fbff;
  font-size: 1.18rem;
  line-height: 1.28;
}

.industry-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0f2744;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, rgba(215, 245, 247, 0.96), rgba(131, 216, 255, 0.92));
}

.detail-panel {
  gap: 24px;
}

.tag-grid,
.stack-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 30px;
}

.tag-grid span,
.stack-grid span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 600;
}

.client-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.client-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-section {
  padding-bottom: 110px;
}

.contact-panel {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(215, 245, 247, 0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-links {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.site-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(18, 57, 95, 0.1);
  background: linear-gradient(180deg, rgba(239, 246, 250, 0.86), rgba(229, 239, 246, 0.94));
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .spotlight-grid,
  .split,
  .contact-panel,
  .industries-intro {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    max-width: none;
    padding-right: 0;
  }

  .hero-visual {
    max-width: 860px;
  }
}

@media (max-width: 860px) {
  .nav-wrap,
  .hero-grid,
  .spotlight-grid,
  .split,
  .contact-panel,
  .card-grid,
  .client-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(131, 216, 255, 0.14);
    border-radius: 24px;
    background: rgba(10, 31, 54, 0.92);
    box-shadow: 0 20px 42px rgba(8, 24, 40, 0.22);
  }

  .site-nav.is-open {
    display: flex;
  }

  h1,
  h2 {
    max-width: none;
  }

  
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 20px);
  }

  .hero {
    padding: 82px 0 52px;
  }

  .eyebrow,
  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    padding: 8px 14px;
  }

  h1 {
    font-size: clamp(2.85rem, 12vw, 4.25rem);
  }

  .hero-visual img,
  .spotlight-visual img,
  .detail-panel img {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .button {
    width: 100%;
  }
}
