:root {
  --navy-deep:   #0D1F3C;
  --navy:        #1A3A6B;
  --navy-mid:    #1E4080;
  --blue:        #2E6DB4;
  --blue-light:  #5B9BD5;
  --sky:         #A8CCEC;
  --gold:        #D4A843;
  --off-white:   #F5F5F0;
  --text-muted:  rgba(245, 245, 240, 0.68);
  --card-bg:     rgba(91, 155, 213, 0.08);
  --card-border: rgba(91, 155, 213, 0.2);
  --dark-text:   #1a2a3a;
  --mid-text:    #4a5a6a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--navy-deep); color: var(--off-white); overflow-x: hidden; }
.mauticform_wrapper  {text-align: left;}
/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,1);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,58,107,0.08);
  transition: background 0.3s;
}
nav.dark-nav {
  background: rgba(10, 22, 40, 0.92);
  border-bottom: 1px solid rgba(91, 155, 213, 0.1);
}

.nav-brand {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-text);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  flex-shrink: 0;
}
nav.dark-nav .nav-brand { color: var(--off-white); }
.nav-brand span {
  font-style: italic;
  color: var(--blue);
}
nav.dark-nav .nav-brand span { color: var(--sky); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 16px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark-text);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(46, 109, 180, 0.09);
  color: var(--blue);
}
.nav-link-active {
  color: var(--blue);
  font-weight: 600;
}
nav.dark-nav .nav-link       { color: rgba(245,245,240,0.8); }
nav.dark-nav .nav-link:hover { background: rgba(255,255,255,0.08); color: var(--off-white); }
nav.dark-nav .nav-link-active { color: var(--sky); }

.nav-cta {
  display: inline-block;
  padding: 9px 26px;
  border: 1.5px solid var(--blue);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--blue);
  color: white;
}
nav.dark-nav .nav-cta {
  border-color: rgba(91, 155, 213, 0.5);
  color: var(--sky);
}
nav.dark-nav .nav-cta:hover {
  background: rgba(91, 155, 213, 0.12);
  border-color: var(--sky);
  color: var(--off-white);
}

.nav-cta-desktop { display: inline-block; }
.nav-cta-inline  { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  border-radius: 6px;
  color: var(--dark-text);
}
nav.dark-nav .nav-hamburger { color: var(--off-white); }
.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-image: url('woman-at-the-lake.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 840px;
  padding: 52px 72px;
  background: none;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: -100vh;
  bottom: -100vh;
  left: -140px;
  right: -140px;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.95) 22%, rgba(255,255,255,0.97) 50%, rgba(255,255,255,0.95) 78%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
  padding: 6px 18px;
  background: rgba(46, 109, 180, 0.07);
  border: 1px solid rgba(46, 109, 180, 0.2);
  border-radius: 100px;
}

.hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-text);
  margin-bottom: 22px;
}
.hero-title .word-me {
  font-style: italic;
  color: var(--blue);
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  color: var(--mid-text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(26, 58, 107, 0.25);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 109, 180, 0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--dark-text);
  padding: 15px 40px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid rgba(26,42,58,0.25);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.tagline-trio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(74, 90, 106, 0.7);
}
.tagline-trio span { white-space: nowrap; }
.tagline-divider {
  width: 1px; height: 12px;
  background: rgba(74, 90, 106, 0.3);
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 0.85; }
}
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2.2s ease-in-out infinite;
  cursor: pointer;
  z-index: 5;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 110px 24px;
  background: #0F2040;
  text-align: center;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
  display: block;
}

.section-headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 670px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1050px;
  margin: 0 auto;
}
.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 40px 30px 36px;
  text-align: left;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.step-card:hover {
  background: rgba(91, 155, 213, 0.13);
  border-color: rgba(91, 155, 213, 0.35);
  transform: translateY(-5px);
}
.step-number {
  font-family: 'Lora', serif;
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  color: rgba(91, 155, 213, 0.35);
  line-height: 1;
}
.step-icon { margin-bottom: 20px; margin-left: 50%; }
.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section {
  position: relative;
  padding: 110px 24px;
  background: #ffffff;
  overflow: hidden;
}

.feat-photo-left,
.feat-photo-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 30%;
  overflow: hidden;
  pointer-events: none;
}
.feat-photo-left  { left: 0; }
.feat-photo-right { right: 0; }

.feat-photo-left img,
.feat-photo-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.feat-photo-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.3) 55%, rgba(255,255,255,0.88) 80%, #ffffff 100%);
}
.feat-photo-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 0%, rgba(255,255,255,0.3) 55%, rgba(255,255,255,0.88) 80%, #ffffff 100%);
}

.feat-photo-left::before,
.feat-photo-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.feat-fog-bottom-left,
.feat-fog-bottom-right {
  position: absolute;
  bottom: 0;
  width: 30%;
  height: 40%;
  background: linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.feat-fog-bottom-left  { left: 0; }
.feat-fog-bottom-right { right: 0; }

.features-inner {
  position: relative;
  z-index: 5;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.features-section .section-eyebrow { color: var(--blue); }
.features-section .section-headline { color: var(--dark-text); }
.features-section .section-sub { color: var(--mid-text); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(46, 109, 180, 0.04);
  border: 1px solid rgba(46, 109, 180, 0.14);
  border-radius: 12px;
  padding: 34px 26px 30px;
  text-align: left;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  background: rgba(46, 109, 180, 0.08);
  border-color: rgba(46, 109, 180, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(26, 58, 107, 0.1);
}

.card-icon { margin-bottom: 18px; display: block; }
.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 9px;
  line-height: 1.3;
}
.card-desc {
  font-size: 14px;
  color: var(--mid-text);
  line-height: 1.7;
}

/* ===== CALLOUT ===== */
.callout-section {
  padding-top: 90px;
  padding-left: 24px;
  padding-right: 24px;
  background: #0F2040;
    text-align: center;
  position: relative;
  overflow: hidden;
}
.callout-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91, 155, 213, 0.3), transparent);
}

.callout-quote {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 400;
  color: var(--off-white);
  max-width: 800px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.callout-ref {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  opacity: 0.75;
}
.callout-divider {
  width: 48px; height: 2px;
  background: rgba(91, 155, 213, 0.4);
  margin: 32px auto;
}
.callout-body {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== TYPES ===== */
.types-section {
  padding: 110px 24px;
  background: #0F2040;
  text-align: center;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  max-width: 1000px;
  margin: 48px auto 24px;
  width: 100%;
}

.type-btn {
  padding: 10px 0;
  width: 100%;
  min-width: 0;
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: #ffffff;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  font-family: 'Inter', sans-serif;
}
.type-btn:hover,
.type-btn.active {
  background: var(--blue);
  color: #ffffff;
}

.type-detail {
  display: none;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  max-width: 1000px;
  margin: 0 auto 32px;
  text-align: left;
  border: 1.5px solid var(--blue);
}
.type-detail.visible {
  display: block;
}
.type-detail-type {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.type-detail-nick {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}
.type-detail-desc {
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.75;
  margin: 0;
}

.type-badge {
  padding: 10px 0;
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(91, 155, 213, 0.35);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sky);
  background: rgba(46, 109, 180, 0.12);
  transition: all 0.2s;
  cursor: default;
}
.type-badge:hover {
  background: rgba(46, 109, 180, 0.28);
  border-color: rgba(91, 155, 213, 0.65);
  color: var(--off-white);
}



/* ===== CLOSING ===== */
.closing-section {
  padding: 130px 24px;
  text-align: center;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 60%, rgba(46, 109, 180, 0.13), transparent 70%);
  pointer-events: none;
}
.closing-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.7;
}
.closing-section .btn-primary {
  background: var(--blue);
  box-shadow: 0 4px 24px rgba(46, 109, 180, 0.35);
}
.closing-section .btn-primary:hover {
  background: var(--navy-mid);
}

/* added for form */
.signup-form {
  margin-top: 36px;
  width: 100%;
}
 
.signup-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
 
.signup-input,
.signup-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(91, 155, 213, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
 
.signup-input::placeholder {
  color: rgba(245, 245, 240, 0.4);
}
 
.signup-input:focus,
.signup-select:focus {
  border-color: var(--sky);
  background: rgba(255, 255, 255, 0.1);
}
 
.signup-select option {
  background: #1A3A6B;
  color: var(--off-white);
}
 
.signup-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}
 
.signup-disclaimer {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.35);
  margin-top: 14px;
  text-align: center;
}
 
@media (max-width: 640px) {
  .signup-fields {
    padding: 0 8px;
  }
}
/* ===== FOOTER ===== */
footer {
  padding: 40px 48px;
  background: #070F1E;
  text-align: center;
  font-size: 13px;
  color: rgba(168, 204, 236, 0.4);
  border-top: 1px solid rgba(91, 155, 213, 0.08);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .feat-photo-left, .feat-photo-right,
  .feat-fog-bottom-left, .feat-fog-bottom-right { width: 28%; }
  .types-grid { grid-template-columns: repeat(8, 1fr); }
}

@media (max-width: 900px) {
  .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: repeat(4, 1fr); }

  nav {
    padding: 16px 24px;
    position: relative;
  }

  .nav-hamburger { display: flex; }
  .nav-cta-desktop { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 2px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 1px solid rgba(0,0,0,0.07);
    margin-right: 0;
    z-index: 200;
  }
  nav.dark-nav .nav-links {
    background: rgba(10, 22, 40, 0.97);
    border-top-color: rgba(91, 155, 213, 0.12);
  }
  .nav-links.nav-open { display: flex; }
  .nav-link { padding: 11px 14px; font-size: 1rem; color: var(--dark-text) !important; }
  nav.dark-nav .nav-link { color: var(--off-white) !important; }
  .nav-link-active { color: var(--blue) !important; }
  .nav-cta-inline {
    display: inline-flex;
    margin-top: 8px;
    justify-content: center;
  }

  .feat-photo-left, .feat-photo-right,
  .feat-fog-bottom-left, .feat-fog-bottom-right { width: 22%; }
}

@media (max-width: 640px) {

  /* NAV */
  nav {
    position: relative;
  }
  .nav-brand img {
    height: 44px;
    width: auto;
  }

  /* HERO — remove background image, go solid dark navy */
  .hero {
  background-color: #ffffff;
}

  .hero {
    background-image: none;
    background-color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
    min-height: 80vh;
  }
  .hero-content {
    padding: 10px 20px;
  }
  .hero-content::before {
    display: none;
  }
 .hero-title {
  color: var(--dark-text);
}
.hero-subtitle {
  color: var(--mid-text);
}
.hero-eyebrow {
  color: var(--blue);
  background: rgba(46, 109, 180, 0.07);
  border-color: rgba(46, 109, 180, 0.2);
}
.tagline-trio {
  color: rgba(74, 90, 106, 0.7);
}
.scroll-indicator path {
  stroke: #2E6DB4;

  }
 
  /* FEATURES — hide side photos */
  .feat-photo-left,
  .feat-photo-right,
  .feat-fog-bottom-left,
  .feat-fog-bottom-right {
    display: none;
  }

  /* GRIDS */
  .features-grid, .steps-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(4, 1fr); }
  .tagline-trio { flex-wrap: wrap; gap: 10px; }
}
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(46, 109, 180, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--navy);
}
