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

:root {
  --bg:#000515;
  --card-bg:#07102f;
  --text:#00D1E2;
  --text-muted:#FF2E01;
  --accent:#070e25;
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:18px;
  --shadow-sm:0 2px 4px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --shadow-md:0 4px 16px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.04);
  --max-width:1180px;
}

* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body {
  font-family: 'Roboto', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

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

.container {
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 1.5rem;
}

.site-header {
  padding:1rem 0 .5rem;
  background:var(--bg);
}

.brand {
  font-family: 'Montserrat', sans-serif;
  font-size:1.15rem;
  font-weight:700;
  letter-spacing:.5px;
}

.nav {
  display:flex;
  gap:1.5rem;
  margin-top:.5rem;
  font-size:.95rem;
  flex-wrap:wrap;
}

.nav a {
  text-decoration:none;
  color:var(--text-muted);
  font-weight:500;
  position:relative;
  padding:.25rem .4rem;
  border-radius:8px;
  transition:background .25s,color .25s;
}

.nav a:hover {
  background:rgba(27,94,61,.08);
  color:var(--text);
}

.hero {
  padding:1.5rem 0 3rem;
  text-align:center;
}

.hero-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size:clamp(2.3rem,5vw,3.8rem);
  line-height:1.07;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:1.1rem;
}

.tagline {
  font-size:1.15rem;
  max-width:820px;
  margin:0 auto 2rem;
  font-weight:500;
  color:var(--text-muted);
}

.hero-image-wrapper {
  border-radius:var(--radius-xl);
  overflow:hidden;
  margin:0 auto 2.4rem;
  box-shadow:var(--shadow-md);
  /* aspect-ratio: 16 / 9.2; */
  display:flex;
}

.hero-image {
  width:100%;
  height:100%;
  /* object-fit:cover;
  margin-top: -50px; */
}

/* .hero-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 6.3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin: 0 auto 2.4rem;
}

.hero-image {
  width: 80%;
  height: auto;
  object-fit: cover;
} */


.feature-grid {
  display:grid;
  gap:1.6rem;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  margin-top:.5rem;
}

.feature-card {
  background:var(--card-bg);
  border-radius:var(--radius-lg);
  padding:1.6rem 1.4rem 1.8rem;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  box-shadow:var(--shadow-sm);
  position:relative;
  isolation:isolate;
  transition:transform .4s cubic-bezier(.16,.8,.24,1),box-shadow .35s,background .35s;
}

.feature-card:hover {
  transform:translateY(-6px);
  box-shadow:0 8px 28px -6px rgba(0,0,0,.16),0 4px 12px -4px rgba(0,0,0,.08);
}

.icon-wrapper {
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  margin-bottom:1.2rem;
  /* background:linear-gradient(135deg,#173c2f,#1c5c3b); */
}

.icon-wrapper img {
  width:32px;
  height:32px;
  filter:invert(100%) brightness(180%);
}

.feature-card h3 {
  font-size:1.15rem;
  margin-bottom:.55rem;
  font-weight:600;
  line-height:1.25;
}

.feature-card p {
  font-size:.95rem;
  color:var(--text-muted);
}

.cta {
  padding:3.5rem 0 4rem;
  text-align:center;
}

.cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size:clamp(1.9rem,4vw,2.7rem);
  max-width:780px;
  margin:0 auto 1.5rem;
  line-height:1.1;
}

.btn {
  display:inline-block;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:1rem;
  padding:1rem 1.65rem 1.05rem;
  border-radius:999px;
  letter-spacing:.5px;
  box-shadow:0 6px 18px -6px rgba(8,61,36,.55);
  transition:background .3s,transform .4s cubic-bezier(.16,.8,.24,1),box-shadow .35s;
}

.btn:hover {
  background:#13442e;
  transform:translateY(-4px);
  box-shadow:0 14px 32px -8px rgba(8,61,36,.55);
}

.btn:active {
  transform:translateY(-1px);
}

.site-footer {
  padding:2.5rem 0 3rem;
  text-align:center;
  font-size:.85rem;
  color:var(--text-muted);
}

@media (min-width:820px) {
  .site-header .container {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
  }
  .nav {
    margin-top:0;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}
