@font-face {
  font-family: 'Lora';
  src: url('../content/Lora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito-Sans';
  src: url('../content/NunitoSans.ttf') format('truetype');
  font-weight: 700;
  font-style: bold;
}
@font-face {
  font-family: 'Fields';
  src: url('../content/Fields-SemiBold.otf') format('opentype');
  font-weight: 600; /* semibold */
  font-style: normal;
}



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

  :root {
    --blue: #5985C4;
    --sky: #9BB6DC;
    --sky-light: #B8CDE6;
    --linen: #F7F1E4;
    --olive: #68672B;
    --sage: #BAAF69;
    --blush: #F4C5B4;
    --clay: #C6803D;
    --blue-dark: #1F3656;
    --blue-mid: #2C4870;
    --blue-text: #4A6B95;
    --blue-muted: #6B7B95;
    --cream-border: #E8DFC8;
    --cream-soft: #DCE6F1;
  }

  body {
    font-family: 'Lora';
    color: var(--blue-dark);
    line-height: 1.6;
    background: var(--linen);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
  }

  /* ============ HERO SECTION ============ */
  .hero {
    background: var(--blue);
    padding: 5rem 3rem;
    border-radius: 12px;
    color: var(--linen);
    margin-bottom: 1rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 360px;
  }

  .hero-eyebrow {
      font-family: 'Nunito-Sans';
    font-size: 16px;
    letter-spacing: 0.18em;
    color: var(--blush);
    margin-bottom: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
  }

  .hero-title {
    font-family: 'Nunito-Sans';
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--linen);
    font-weight: 400;
    letter-spacing: -0.01em;
  }

  .hero-description {
      font-family: 'Lora';
    font-size: 17px;
    line-height: 1.6;
    color: var(--linen);
    margin-bottom: 2rem;
    max-width: 460px;
    opacity: 0.92;
  }

  .hero-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-family: 'Nunito-Sans';
    display: inline-block;
    background: var(--clay);
    color: var(--linen);
    padding: 14px 28px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.15em;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    border: none;
    transition: background 0.2s ease;
  }

  .btn-primary:hover {
    background: #b06f30;
  }

  .btn-secondary {
      font-family: 'Nunito-Sans';
    display: inline-block;
    color: var(--linen);
    padding: 14px 8px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.15em;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid var(--blush);
    text-transform: uppercase;
    transition: opacity 0.2s ease;
  }

  .btn-secondary:hover {
    opacity: 0.8;
  }

  .glance-card {
    background: var(--sky);
    border-radius: 8px;
    padding: 1.75rem;
    border: 2px solid #FFFFFF;
    position: relative;
    box-shadow: 8px 8px 0 0 var(--clay);
  }

  .glance-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--blush);
    border-radius: 12px;
    pointer-events: none;
    opacity: 0.6;
  }

  .glance-eyebrow {
      font-family: 'Nunito-Sans';
    font-size: 15px;
    letter-spacing: 0.18em;
    color: var(--blue-mid);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .glance-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .glance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--sky-light);
    padding-bottom: 12px;
  }

  .glance-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .glance-label {
      font-family: 'Nunito-Sans';
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .glance-value {
      font-family: 'Nunito-Sans';
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 500;
  }

  /* ============ DETAILS SECTION ============ */
  .details {
    background: var(--linen);
    padding: 5rem 3rem;
    border-radius: 12px;
    color: var(--blue-mid);
  }

  .details-header {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  .details-eyebrow {
      font-family: 'Nunito-Sans';
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--clay);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
  }

  .details-title {
    font-family: 'Nunito-Sans';
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--blue-dark);
    font-weight: 400;
  }

  .details-intro {
      font-family: 'Lora';
    font-size: 16px;
    line-height: 1.7;
    color: var(--blue-text);
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .feature-card {
    background: #FFFFFF;
    padding: 1.75rem;
    border-radius: 8px;
    border: 1px solid var(--cream-border);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--linen);
  }

  .feature-title {
    font-family: 'Nunito-Sans';
    font-size: 21px;
    margin-bottom: 0.5rem;
    color: var(--blue-dark);
    font-weight: 500;
  }

  .feature-text {
      font-family: 'Lora';
    font-size: 14px;
    line-height: 1.6;
    color: var(--blue-text);
  }

  /* Sign up steps - connected circles */
  .steps-section {
    background: var(--blue);
    padding: 4rem 3rem 4.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
  }

  .steps-eyebrow {
      font-family: 'Nunito-Sans';
    font-size: 15px;
    letter-spacing: 0.18em;
    color: var(--blush);
    margin-bottom: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
  }

  .steps-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  /* The connecting line behind the circles */
  .steps-track::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--linen);
    opacity: 0.5;
    z-index: 0;
  }

  .step {
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .step-circle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--linen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--blue);
    font-family: 'Nunito-Sans';
    font-style: italic;
    font-size: 18px;
    color: var(--linen);
    font-weight: 400;
  }

  .step-title {
    font-family: 'Nunito-Sans';
    color: var(--linen);
    font-size: 22px;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .step-text {
      font-family: 'Lora';
    color: var(--linen);
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 240px;
    margin: 0 auto;
  }
  
  .step-circle:hover {
    background-color: var(--linen);   /* or any of your palette colors */
    color:var(--blue);                          /* optional: makes the number readable */
    cursor: pointer;                       /* optional: gives a nice hover feel */
}

  /* Final CTA */
  .final-cta {
    text-align: center;
    padding-top: 1rem;
  }

  .final-cta-text {
      font-family: 'Lora';
    font-size: 14px;
    color: var(--blue-text);
    margin-bottom: 1.25rem;
  }

  .final-cta-btn {
    padding: 16px 36px;
    font-size: 13px;
  }

  .final-cta-email {
    font-size: 13px;
    color: var(--blue-muted);
    margin-top: 1.25rem;
  }

  .final-cta-email a {
    color: var(--clay);
    font-weight: 500;
    text-decoration: none;
  }

  .final-cta-email a:hover {
    text-decoration: underline;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }

    .hero,
    .details {
      padding: 3rem 1.5rem;
    }

    .hero-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .hero-title {
      font-size: 44px;
    }

    .details-title {
      font-size: 30px;
    }

    .feature-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .steps-track {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .steps-track::before {
      display: none;
    }

    .steps-section {
      padding: 2.5rem 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 38px;
    }

    .hero-cta-group {
      flex-direction: column;
      align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
      text-align: center;
    }
  }