* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f9fc;
  color: #1f2937;
  line-height: 1.6;
}

/* HEADER */

.site-header {
  background: linear-gradient(135deg, #173b7a 0%, #2458a6 100%);
  color: white;
  padding: 0 24px 90px;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #eaf1ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover {
  color: white;
}

.hero {
  max-width: 900px;
  margin: 80px auto 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4f7fc7;
}

.site-header .eyebrow,
.beta-section .eyebrow {
  color: #b9d3ff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.hero-text {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 19px;
  color: #dce8fb;
}

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

.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.primary-button {
  background: white;
  color: #173b7a;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
}

/* MAIN SECTIONS */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
  color: #173b7a;
  letter-spacing: -1px;
}

.section-heading p:last-child {
  font-size: 18px;
  color: #5d6878;
}

/* TOOL CARDS */

.tools-section {
  padding-top: 30px;
}

.card-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(20, 45, 85, 0.08);
  border: 1px solid #e7ecf3;
}

.feature-number {
  font-size: 13px;
  font-weight: 700;
  color: #4f7fc7;
  letter-spacing: 1px;
}

.feature-card h3 {
  margin: 14px 0 12px;
  font-size: 23px;
  color: #173b7a;
}

.feature-card p {
  margin: 0;
  color: #667085;
}

/* BETA SECTION */

.beta-section {
  margin-top: 40px;
  background: #173b7a;
  color: white;
  padding: 80px 24px;
}

.beta-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.beta-content h2 {
  margin: 0;
  font-size: 42px;
}

.beta-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 26px;
  color: #dce8fb;
  font-size: 18px;
}

.status-badge {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-weight: 700;
}

/* FOOTER */

footer {
  background: #0f274f;
  color: #d6e1f3;
  padding: 34px 24px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-content strong {
  color: white;
  font-size: 20px;
}

.footer-content p {
  margin: 4px 0 0;
  font-size: 14px;
}

/* MOBILE */

@media (max-width: 760px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    margin-top: 50px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
.homepage-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}
.homepage-image {
  margin-bottom: 0;
}

.section:first-of-type {
  padding-top: 55px;
}

.section {
  padding-bottom: 65px;
}
.homepage-hero {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero-click {
  position: absolute;
  display: block;
  z-index: 5;
  cursor: pointer;
}

/* "Get Started Free" button */
.hero-tools {
  left: 4.1%;
  top: 49.8%;
  width: 14.2%;
  height: 6.2%;
}

/* "See How It Works" button */
.hero-learn {
  left: 19.7%;
  top: 49.8%;
  width: 13.7%;
  height: 6.2%;
}
