:root {
  --navy: #061b46;
  --navy-2: #082a68;
  --blue: #0b63f6;
  --blue-2: #1f8cff;
  --text: #0b1736;
  --muted: #5d6a82;
  --white: #ffffff;
  --soft: #f5f8fc;
  --line: #dbe4f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

.site-header {
  height: 92px;
  background: var(--white);
  border-bottom: 1px solid rgba(8, 31, 75, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand img {
  height: 48px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: auto;
}

.main-nav a {
  text-decoration: none;
  color: #071735;
  font-weight: 700;
  font-size: 14px;
}

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

.header-button {
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #0b63f6, #0050c8);
  padding: 16px 26px;
  border-radius: 7px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(11, 99, 246, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(28, 122, 255, 0.42), transparent 34%),
    linear-gradient(110deg, #041638 0%, #071f52 48%, #073f91 100%);
}

.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 50%, rgba(30, 130, 255, 0.25), transparent 26%),
    linear-gradient(90deg, rgba(4, 18, 48, 0.82), rgba(4, 18, 48, 0.08));
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: 430px;
  padding-top: 34px;
  padding-bottom: 30px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.hero-copy h1 span {
  display: block !important;
  white-space: nowrap;
}

.blue-rule {
  width: 72px;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  margin: 28px 0;
}

.hero-lead {
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  max-width: 560px;
}

.hero-text {
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.7;
  max-width: 590px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 127, 255, 0.38), transparent 65%);
  filter: blur(12px);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  filter: drop-shadow(0 32px 44px rgba(0,0,0,0.36));
  animation: floatHero 6s ease-in-out infinite;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.promise-section {
  padding: 72px 0 78px;
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
}

.section-heading {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.section-heading span {
  display: block;
  color: var(--blue);
}

.feature-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.feature-card {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.feature-card:last-child {
  border-right: none;
}

.feature-icon {
  color: var(--blue);
  font-size: 42px;
  height: 58px;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: #34435c;
  font-size: 15px;
  line-height: 1.65;
}

.industries-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.industries-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.industries-copy p {
  color: #34435c;
  font-size: 17px;
  line-height: 1.7;
  max-width: 680px;
}

.industry-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-grid div {
  padding: 22px 14px;
  color: #063b91;
  font-weight: 800;
  font-size: 14px;
}

.ownership-card {
  background:
    radial-gradient(circle at 25% 12%, rgba(20, 110, 255, 0.45), transparent 30%),
    linear-gradient(145deg, #06183c, #082f78);
  color: var(--white);
  border-radius: 10px;
  padding: 46px 42px;
  box-shadow: 0 28px 60px rgba(5, 23, 59, 0.26);
}

.ownership-logo {
    width: 140px;
    height: auto;
    display: block;
    margin: 0 0 28px 4px;
}

.ownership-card h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.ownership-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ownership-card li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.35;
}

.ownership-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  text-align: center;
  line-height: 24px;
  font-weight: 900;
}

.cta-section {
  background:
    radial-gradient(circle at 80% 40%, rgba(10, 91, 220, 0.38), transparent 34%),
    linear-gradient(115deg, #06183c, #083985);
  color: var(--white);
}

.cta-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-inner h2 {
  margin: 0 0 14px;
  font-size: 34px;
  letter-spacing: -0.035em;
}

.cta-inner p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.6;
}

.cta-inner a {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 7px;
  padding: 18px 46px;
  font-weight: 900;
  margin-bottom: 16px;
}

.site-footer {
  background: #04112b;
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 24px;
  font-size: 14px;
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 70px 0;
  }

  .hero-visual img {
    width: min(460px, 100%);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }

  .feature-card {
    border-right: none;
  }

  .industries-section {
    grid-template-columns: 1fr;
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: auto;
  }

  .header-inner {
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .header-button {
    margin-left: 0;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

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

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

.will-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

#features,
#industries,
#why,
#security {
  scroll-margin-top: 120px;
}