:root {
  --epic: #073070;
  --text: #ffffff;
  --border: #0a3f9a;
  --shadow: 0 8px 30px rgba(0,0,0,0.35);
  --radius: 16px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: #020617;
  color: var(--text);
  line-height: 1.6;
}


.hero {
  display: grid;
  gap: 24px;
}

/* CTA buttons under the overview */
.cta-row {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.video-container {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
  flex: 0 0 auto;
}

.video-container iframe {
  width: 1000px !important;
  height: 600px !important;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* If you have any global rules like img,video,iframe { max-width:100%; height:auto; } 
   this neutralizes them for this embed */
.overview iframe {
  max-width: none !important;
  height: 600px !important;
}


.btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.btn-primary {
  color: var(--text);
  background: var(--epic);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* make sure the link text wraps nicely on mobile */
@media (max-width: 520px) {
  .btn span { white-space: normal; }
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-logo {
  width: clamp(64px, 8vw, 100px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.brand-text h1 {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.overview {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.wrap {
  width: min(1600px, 92vw);
  margin: 0 auto;
}


/* Header */
.site-header {
  padding: 48px 0 24px;
  text-align: center;
}
.site-header h1 {
  margin-bottom: 10px;
  font-weight: 700;
}
.subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  padding: 40px 0 60px;
}

/* Card */
.card {
  background: var(--epic);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
}
.icon svg {
  width: 22px;
  height: 22px;
  /* fill: #fff; */
}

/* Feature list */
.feat-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.feat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 10px 12px;
}
.feat-title {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1rem;
}
.feat-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

/* Footer */
.site-footer {
  text-align: center;
  color: rgba(255,255,255,0.6);
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
