
/* ---------- COLOR SYSTEM / TOKENS ---------- */

:root {
  --navy-bg: #0b1321;
  --navy-bg-alt: #121a2c;
  --panel-bg: #1a253d;
  --border-color: #23324f;
  --text-main: #ffffff;
  --text-dim: #cbd5e1;
  --text-muted: #64748b;
  --accent: #0ea5e9;
  --accent-hover: #36b9f4;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-card: 0 30px 80px rgba(0,0,0,0.8);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--navy-bg);
  color: var(--text-main);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  color: var(--text-main);
  margin-top: 0;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

h2.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  text-align: center;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.1rem;
}

.process-head {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1.2rem;
  font-size: 1rem;
  color: var(--text-dim);
}

strong {
  color: var(--text-main);
  font-weight: 600;
}

/* ---------- LAYOUT HELPERS ---------- */

.section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 780px;
}

/* ---------- HEADER / NAV ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 19, 33, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-color);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-name {
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

/* ---------- HERO / ABOVE THE FOLD ---------- */

.hero {
  min-height: 90vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(14,165,233,0.22) 0%, rgba(11,19,33,0) 60%),
    var(--navy-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 4rem;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-main);
  line-height: 1.2;
  text-wrap: balance;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

/* CTA buttons */

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- BUTTONS ---------- */

.btn-primary,
.btn-secondary,
.btn-full {
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: 0.25s ease;
  display: inline-block;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-full {
  width: 100%;
}

/* ---------- PROBLEM SECTION ---------- */

.problem {
  background-color: var(--navy-bg);
  text-align: center;
}

.problem p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- FEATURES SECTION (3 CARDS) ---------- */

.features-section {
  background-color: var(--navy-bg);
  border-top: 1px solid rgba(255,255,255,0.02);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background-color: var(--panel-bg);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  padding: 1.35rem 1.35rem 1.1rem;
  min-height: 150px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ---------- PROCESS SECTION ---------- */

.process-section {
  background-color: var(--navy-bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .process-cards {
    grid-template-columns: 1fr;
  }
}

.process-card {
  background-color: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  text-align: left;
  position: relative;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 220px;
}

.process-num {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(14,165,233,0.4);
}

.process-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- HELPING YOU LEAD SECTION ---------- */

.helping-section {
  background-color: var(--navy-bg);
  border-top: 1px solid var(--border-color);
}

.content-block {
  margin-bottom: 3rem;
}

.content-subtitle {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.principle-item,
.partnership-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.principle-title,
.partnership-title {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.principle-item p,
.partnership-item p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.closing-statement {
  text-align: center;
  font-size: 1.1rem;
  padding: 2rem;
  background-color: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.closing-statement p {
  margin: 0;
  color: var(--text-main);
}

/* ---------- CASE STUDIES SECTION ---------- */

.case-studies-section {
  background-color: var(--navy-bg-alt);
  border-top: 1px solid var(--border-color);
}

.case-studies-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  .case-studies-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .case-studies-gallery {
    grid-template-columns: 1fr;
  }
}

.case-study-card {
  background-color: var(--panel-bg);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(14,165,233,0.3);
  transform: translateY(-4px);
}

.case-study-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  text-align: center;
  height: 100%;
  min-height: 200px;
}

.case-study-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.case-study-card h3 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.case-study-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.4;
}

/* ---------- COMING SOON SECTION ---------- */

.coming-soon-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.coming-soon-card {
  background-color: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  padding: 3rem 2rem;
  max-width: 500px;
  text-align: center;
}

.coming-soon-title {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.coming-soon-text {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* ---------- CONTACT SECTION ---------- */

.contact-section {
  background-color: var(--navy-bg);
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  max-width: 1100px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-copy .contact-blurb {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.5;
}

.email-inline {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.email-inline:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ---------- CONTACT FORM CARD ---------- */

.contact-card {
  background-color: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}

@media (max-width: 900px) {
  .contact-card {
    margin-left: 0;
  }
}

.form-outer {
  display: block;
}

.form-label {
  display: block;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  background-color: var(--navy-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: inset 0 16px 32px rgba(0,0,0,0.8);
  margin-top: 0.4rem;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

/* ---------- FOOTER ---------- */

.site-footer {
  background-color: var(--navy-bg);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-legal p {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---------- DISCLOSURES ---------- */

.disclosures-section {
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.disclosures-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: decimal;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.disclosures-list li {
  margin-bottom: 0.75rem;
}

/* ---------- RESPONSIVE TWEAKS ---------- */

@media (max-width: 900px) {
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .nav-links {
    margin-left: auto;
    gap: 1rem;
  }

  .hero {
    min-height: 80vh;
  }

  h1 {
    font-size: 2rem;
  }

  h2.section-title {
    font-size: 1.5rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .process-card {
    min-height: 0;
  }

  .content-subtitle {
    font-size: 1.2rem;
  }
}
