:root {
  --blue: #00a7ff;
  --deep-blue: #06152f;
  --orange: #ff8a00;
  --gold: #ffd166;
  --white: #ffffff;
  --light: #eef7ff;
  --muted: #b9c7d8;
  --card: rgba(255,255,255,.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: #07162d;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: rgba(4, 13, 31, .75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 700;
  font-size: .95rem;
}
.nav-links a:hover { color: var(--orange); }

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 6% 80px;
  background-image: url('images/ainow321-ai-hero.png');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 8, 25, .92) 0%, rgba(1, 8, 25, .67) 45%, rgba(1, 8, 25, .25) 100%);
}
.hero-content {
  position: relative;
  max-width: 760px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  font-size: .85rem;
}
.hero h1 {
  margin: 10px 0 0;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: .9;
  color: var(--white);
  text-shadow: 0 0 28px rgba(0,167,255,.5);
}
.hero h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin: 20px 0;
  color: var(--orange);
}
.hero-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #dcecff;
  max-width: 680px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.btn-orange { background: linear-gradient(135deg, #ff7a00, #ffc14d); color: #07162d; }
.btn-blue { background: linear-gradient(135deg, #009dff, #41e4ff); color: #07162d; }
.btn-white { background: linear-gradient(135deg, #ffffff, #000000); color: #07162d; }

.section {
  padding: 80px 6%;
  background: var(--light);
  color: #10223d;
}
.section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0 0 12px;
  color: #07162d;
}
.section-subtitle {
  max-width: 820px;
  color: #53657b;
  font-size: 1.15rem;
  line-height: 1.6;
}
.offer-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(240px, 1fr) );
  gap: 22px;
  margin-top: 35px;
}
.offer-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #d8e8f7;
  box-shadow: 0 18px 40px rgba(15, 65, 120, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(15, 65, 120, .2); }
.offer-card .icon { font-size: 2rem; }
.offer-card h3 { font-size: 1.35rem; color: #07162d; }
.offer-card p { color: #53657b; line-height: 1.55; }
.faith-card { border: 2px solid var(--orange); }

.dark-section {
  background: radial-gradient(circle at top left, #123a78, #06152f 55%, #020715);
  color: var(--white);
}
.dark-section h2 { color: var(--white); }
.dark-section .section-subtitle { color: var(--muted); }
.section-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.small-link { color: var(--gold); font-weight: 900; }
.product-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 26px;
}
.product-card h3 { color: var(--gold); margin-top: 0; }
.product-card p { color: #d4e4f6; line-height: 1.55; }
.product-card button {
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  background: var(--orange);
  color: #07162d;
  cursor: pointer;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.split-text p { line-height: 1.7; color: #53657b; font-size: 1.1rem; }
.dashboard-panel {
  background: #07162d;
  border-radius: 28px;
  padding: 26px;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.panel-row strong { color: var(--orange); }

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.challenge-grid div {
  padding: 24px;
  border-radius: 20px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, #00a7ff, #ff8a00);
  text-align: center;
}

.community-section {
  background: linear-gradient(135deg, #fff8e8, #eaf7ff);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.community-copy p { line-height: 1.7; color: #53657b; font-size: 1.1rem; }
.community-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.community-cards div {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(15,65,120,.12);
}
.community-cards h3 { color: #07162d; margin-top: 0; }
.community-cards p { color: #53657b; }

.store-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}
.store-banner h3 { color: var(--gold); font-size: 1.7rem; }
.store-banner p { color: #d4e4f6; }

.about-section p {
  max-width: 900px;
  line-height: 1.7;
  color: #53657b;
  font-size: 1.1rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.about-tags span {
  background: #07162d;
  color: var(--white);
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 800;
}
.footer {
  text-align: center;
  padding: 46px 6%;
  background: #020715;
  color: var(--muted);
}

@media (max-width: 850px) {
  .site-header { position: absolute; align-items: flex-start; flex-direction: column; gap: 12px; }
  .nav-links { flex-wrap: wrap; gap: 12px; font-size: .85rem; }
  .hero { min-height: 820px; background-position: center top; }
  .split-section, .community-section { grid-template-columns: 1fr; }
  .section-heading-row, .store-banner { flex-direction: column; align-items: flex-start; }
}
