:root {
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --sage: #8faea3;
  --gold: #d6b783;
  --cream: #fafaf8;
  --soft: #f3f6f8;
  --text: #1f2937;
  --muted: #64748b;
  --white: #ffffff;
  --border: #e6e8ec;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 232, 236, 0.8);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 900;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: .95rem;
}

.nav-button {
  background: var(--navy);
  color: white !important;
  padding: .75rem 1rem;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.7rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 120px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(96,165,250,.35), transparent 24%),
    radial-gradient(circle at 15% 85%, rgba(143,174,163,.28), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.hero::before {
  content: "✦";
  position: absolute;
  right: 8%;
  top: 18%;
  color: rgba(214, 183, 131, .5);
  font-size: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 68px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
  font-size: .83rem;
}

.center { text-align: center; }

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: .92;
  margin: .25rem 0 1.25rem;
  letter-spacing: -0.06em;
}

.hero-text {
  color: #dbeafe;
  font-size: 1.22rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.2rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 1rem 1.3rem;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, .22);
}

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

.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.7);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.hero-badges span {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #eff6ff;
  border-radius: 999px;
  padding: .5rem .8rem;
  font-weight: 800;
  font-size: .9rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.browser-card {
  background: rgba(255,255,255,.96);
  border-radius: 28px;
  padding: 1.1rem;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  transform: rotate(2deg);
}

.browser-top {
  display: flex;
  gap: .45rem;
  padding: .35rem .2rem 1rem;
}

.browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mock-hero {
  height: 210px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(37,99,235,.88), rgba(15,23,42,.95)),
    linear-gradient(45deg, var(--sage), var(--gold));
}

.mock-lines {
  display: grid;
  gap: .7rem;
  margin: 1rem 0;
}

.mock-lines span {
  display: block;
  height: 14px;
  background: #e2e8f0;
  border-radius: 999px;
}

.mock-lines span:nth-child(1) { width: 80%; }
.mock-lines span:nth-child(2) { width: 66%; }
.mock-lines span:nth-child(3) { width: 45%; }

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.mock-grid div {
  height: 90px;
  border-radius: 16px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

.floating-card {
  position: absolute;
  background: white;
  color: var(--text);
  border-radius: 20px;
  padding: 1rem;
  width: 190px;
  box-shadow: var(--shadow);
}

.floating-card p { margin: .2rem 0 0; color: var(--muted); font-size: .9rem; }

.card-one { left: -18px; bottom: 58px; }
.card-two { right: -18px; top: 66px; }

.trust-strip {
  background: var(--sage);
  color: white;
  text-align: center;
  font-weight: 900;
  padding: 1.1rem 0;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.2rem;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.four { grid-template-columns: repeat(4, 1fr); }
.three { grid-template-columns: repeat(3, 1fr); }

.feature-card,
.project-card,
.process-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover,
.project-card:hover,
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--blue);
  font-size: 1.3rem;
}

.soft {
  background: var(--soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.project-preview {
  height: 220px;
  border-radius: 22px;
  margin-bottom: 1.2rem;
}

.preview-one {
  background:
    linear-gradient(135deg, rgba(15,23,42,.1), rgba(37,99,235,.1)),
    linear-gradient(135deg, #dbeafe, #ffffff);
}

.preview-two {
  background:
    radial-gradient(circle at 30% 30%, rgba(214,183,131,.7), transparent 18%),
    linear-gradient(135deg, #f8fafc, #e0f2fe);
}

.preview-three {
  background:
    radial-gradient(circle at 70% 30%, rgba(143,174,163,.7), transparent 20%),
    linear-gradient(135deg, #ffffff, #f1f5f9);
}

.project-type {
  color: var(--sage);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}

.project-card span {
  color: var(--blue);
  font-weight: 900;
  font-size: .9rem;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}

.industry-grid span {
  background: white;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 18px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-step strong {
  color: var(--blue);
  font-size: 1.8rem;
}

.about-band {
  background:
    linear-gradient(135deg, rgba(143,174,163,.16), rgba(214,183,131,.16));
}

.final-cta {
  text-align: center;
  background: var(--navy);
  color: white;
}

.final-cta p {
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.footer {
  background: #08111f;
  color: #cbd5e1;
  padding: 1.5rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

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

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

  .hero-visual {
    min-height: 430px;
  }

  .four,
  .three,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .menu-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1rem 4%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu.open { display: flex; }

  .hero { padding: 82px 0; }

  .hero-visual { min-height: auto; }

  .floating-card { display: none; }

  .browser-card { transform: none; }

  .four,
  .three,
  .process-line,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}
