html, body {
  height: 100%;
  min-height: 100vh;
  overflow-y: auto; /* allows vertical scrolling */
}

body {
    font-family: 'Space Mono', monospace;
    background: #ede8e4;
    margin: 0;
    padding: 0;
    color: #222;
}

/* === Overlay background === */
#indicator-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 24px; /* reduced padding for mobile */
  z-index: 9999;
}

/* Hidden by default */
.hidden {
  display: none !important;
}

/* === Main indicator box === */
.download-indicator {
  position: absolute;
  top: 80px;
  right: 37%;
  max-width: 60%;
  background: var(--white, #F5F4F2);
  border-radius: 12px;
  outline: 3px solid var(--blue, #166874);
  padding: 24px;
  font-family: 'IBM Plex Mono', monospace;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-start;
  animation: moveLeftRight 2s linear infinite;
}

@keyframes moveLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}


/* === Top row with title and arrow === */
.indicator-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}

/* === Title text === */
.indicator-title {
  flex:auto;
  min-width: 0;
  color: var(--blue, #166874);
  font-size: 2rem;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
}

/* === Arrow icon === */
.indicator-arrow-wrapper {
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Subtext below title === */
.indicator-subtext {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 1rem;
  font-family: Helvetica, sans-serif;
  font-weight: 400;
  color: var(--blue, #166874);
  word-wrap: break-word;
}

.indicator-subtext a {
  color: var(--blue, #166874);
  font-weight: 500;
  margin-right: 4px;
}

/* === Responsive adjustments === */
@media (max-width: 768px) {
  .download-indicator {
    box-shadow: none !important;
    top: auto;
    right: 16px;
    bottom: 24px;
    left: 16px;
    max-width: unset;
    width: auto;
    padding: 16px;
    gap: 8px;
    animation: moveUpDown 2s linear infinite;
  }

  .indicator-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .indicator-subtext {
    font-size: 0.95rem;
    flex-direction: column;
    gap: 4px;
  }

  .indicator-arrow-wrapper {
    margin-top: 16px;
    margin-left: 0;
    justify-content: flex-start;
    transform: rotate(-90deg);
  }
}

/* Header styles update */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FCFAFF;
    padding: 0 120px;
    height: 72px;
    border: none;
    box-shadow: none;
}
.logo {
    font-size: 2.2rem;
    font-family: 'Space Mono', monospace;
    font-weight: 500;
    color: #222;
    letter-spacing: 1px;
    margin-right: 32px;
}
.logo-x {
    color: #2b7a78;
    font-weight: bold;
}
.nav {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 48px;
}
.nav a {
    text-decoration: none;
    color: #2b7a78;
    font-size: 1rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.nav a:hover {
    color: #17252a;
}
.start-btn {
    background: #2b7a78;
    color: #fff;
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
    border: none;
    margin-left: 32px;
    cursor: pointer;
}
.start-btn:hover {
    background: var(--dark-blue, #00183D);
}

/* Hero section update */
.hero {
    background: #f3eded;
    text-align: center;
    padding: 64px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-title {
    font-size: 6rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 700;
    color: #21717b;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: 2px;
}
.hero-subtitle {
    font-size: 1.5rem;
    color: #0a2342;
    margin-bottom: 56px;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
}
.hero-download {
    border-radius: 12px;
    background: var(--dark-blue, #00183D);
    color: #fff;
    border: none;
    width: 554.29px;
    height: 97px;
    padding: 45.35px 60.47px;
    font-size: 2.5rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 33.28px;
    margin: 0 auto;
}
.hero-download:hover {
    background: #2b7a78;
}
.agreement-text {
  width: 100%;
  height: 100%;
  text-align: center;
}
.text-muted {
  color: rgba(75, 85, 99, 0.5);
  font-size: 12px;
  font-family: Helvetica, sans-serif;
  font-weight: 400;
  line-height: 18px;
  word-wrap: break-word;
}
.text-link {
  color: rgba(38, 101, 243, 0.5);
  font-size: 12px;
  font-family: Helvetica, sans-serif;
  font-weight: 400;
  line-height: 18px;
  word-wrap: break-word;
  text-decoration: underline;
}

@media (max-width: 1400px) {
    .hero {
        padding: 16px;
    }
    .hero-title {
        font-size: 4rem;
    }
    .hero-download {
        width: 90vw;
        max-width: 540px;
        font-size: 2rem;
        padding: 18px 0;
    }
}

@media (max-width: 900px) {
    .header {
        flex-direction: column;
        gap: 12px;
        padding: 8px;
        height: auto;
    }
    .nav {
        gap: 20px;
    }
    .logo {
        margin-right: 0;
    }
    .hero {
        padding: 16px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-download {
        width: 90vw;
        max-width: 540px;
        font-size: 1.2rem;
        padding: 18px 0;
    }
}

/* Features section */
.features {
    padding: 80px 48px;
    background: #fff;
    text-align: center;
}
.features h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
}
.features-list {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.feature-item {
    background: #f5f8ff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 32px 24px;
    width: 260px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.feature-item:hover {
    box-shadow: 0 6px 24px rgba(0,123,255,0.08);
}
.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #007bff;
}
.feature-item p {
    color: #555;
    font-size: 1rem;
}

@media (max-width: 1400px) {
    .features {
        padding: 64px 32px;
    }
    .features-list {
        gap: 32px;
    }
    .feature-item {
        width: 220px;
        padding: 28px 20px;
    }
    .feature-item img {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;
    }
    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .feature-item p {
        font-size: 0.95rem;
    }
}

/* Download section */
.download {
    padding: 80px 48px;
    background: #f5f8ff;
    text-align: center;
}
.download h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}
.download p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #555;
}
.download-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.download-btn:hover {
    background: #0056b3;
}

/* Contact section */
.contact {
    padding: 80px 48px;
    background: #fff;
    text-align: center;
}
.contact h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: #222;
}
.contact-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: none;
}
.contact-form button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 14px 0;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #0056b3;
}

@media (max-width: 900px) {
    .features-list {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .features, .download, .contact {
        padding: 48px 16px;
    }
    .why-cards, .how-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 24px;
    }
}

.mission-bg {
    background: #ede7e6;
    height: 100px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.mission-section {
    background: #a3a9c9;
    width: 100%;
    padding: 64px 0 64px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mission-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 8vw;
}
.mission-label {
    color: #2b7a78;
    font-size: 2rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 24px;
}
.mission-text {
    color: #0a2342;
    font-size: 3.2rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 2px;
}
@media (max-width: 1400px) {
    .mission-inner {
        margin-left: 4vw;
        padding: 0 24px;
        max-width: 900px;
    }

    .mission-label {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .mission-text {
        font-size: 2.4rem;
        letter-spacing: 1.2px;
    }
}
@media (max-width: 900px) {
    .mission-inner {
        margin-left: 0;
        align-items: center;
        text-align: center;
    }
    .mission-label {
        font-size: 1.2rem;
    }
    .mission-text {
        font-size: 1.5rem;
    }
}

.why-section {
    background: #fafafa;
    padding: 64px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-title {
    color: #0a2342;
    font-size: 3rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.why-subtitle {
    color: #0a2342;
    font-size: 1.25rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 48px;
}

.why-cards-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap; /* NEW: allows cards to wrap on smaller screens */
    gap: 32px;
    width: 100%;
    max-width: 1600px;
    margin: 48px auto 0 auto;
}

.why-card {
    display: flex;
    width: 600px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.why-card-dark {
    background-color: #0a2342;
    color: white;
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-card-img {
    background-color: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.why-card-label {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 32px;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
}

.why-card-headline {
    font-size: 2.1rem;
    color: #fff;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.why-card-desc {
    font-size: 1.15rem;
    color: #fff;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.3;
}

@media (max-width: 1280px) {
  .why-card {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .why-card {
    flex-direction: column;
    height: auto;
  }

  .why-card-img img {
    height: auto;
  }
}


.how-section {
    background: #21717b;
    width: 100%;
    padding: 64px 0 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-title {
    color: #fff;
    font-size: 3rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 2px;
}
.how-steps-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 120px;
    width: 90%;
    max-width: 1400px;
}
.how-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 340px;
}
.how-step-circle {
    width: 36px;
    height: 36px;
    background: #f76c4e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 24px;
}
.how-step-title {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.how-step-desc {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.3;
}
@media (max-width: 1200px) {
    .how-steps-flex {
        gap: 32px;
        max-width: 98vw;
    }
    .how-step {
        width: 90vw;
        max-width: 340px;
    }
}
@media (max-width: 900px) {
    .how-steps-flex {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .how-step {
        width: 90vw;
        max-width: 340px;
        align-items: center;
        text-align: center;
    }
}

.newsletter-section {
  background: #f3eded;
  width: 100%;
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.newsletter-title {
    color: #21717b;
    font-size: 3rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.newsletter-subtitle {
    color: #0a2342;
    font-size: 1.25rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 48px;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 700px;
    margin: 0 auto 18px auto;
}
.newsletter-input {
    padding: 24px;
    border: 1.5px solid #bfc6d1;
    border-radius: 8px 0 0 8px;
    font-size: 1.3rem;
    width: 400px;
    outline: none;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    background: #fff;
    color: #bfc6d1;
}
.newsletter-btn {
    background: #00163a;
    color: #fff;
    border: none;
    padding: 0 48px;
    border-radius: 0 12px 12px 0;
    font-size: 2rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-btn:hover {
    background: #2b7a78;
}
.newsletter-btn:disabled {
    background: #bfc6d1;
}
.newsletter-icon {
    font-size: 1.5rem;
    margin-left: 16px;
    display: inline-block;
    transform: rotate(-30deg);
}
.newsletter-note {
    color: #888;
    font-size: 1.1rem;
    font-family: 'IBM Plex Mono', monospace, Arial, sans-serif;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.newsletter-lock {
    font-size: 1.2rem;
    margin-right: 4px;
}
@media (max-width: 900px) {
    .newsletter-section {
        width: 100%;
        padding: 48px 16px;
    }

    .newsletter-title {
        font-size: 2rem;
    }
    .newsletter-input {
        width: 70%;
        font-size: 1rem;
        padding: 16px;
    }
    .newsletter-btn {
        font-size: 1.2rem;
        padding: 0 24px;
        height: 48px;
    }
}

