.welcome {
    padding-top: 50px;
    text-align: center;
}
.welcome h1 {
    font-size: 70px;
}
.welcome p {
    font-size: 40px;
}
.welcome h1, p {
        margin: 5px;
}

.l2buttons {
  display: flex;
  gap: 20px;
  justify-content: center; /* keeps the row centered */
  padding-top: 20px;
}

.l2buttons a {
  display: inline-block;    /* ensures width fits content */
  padding: 10px 40px;       /* bigger button */
  font-size: 20px;          /* you already have this */
  line-height: 26px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.l2buttons a:hover {
background-color: #ddd;
}
.l2buttons a.getStarted {
background-color: #e2a45a;
color: #f7f7f5;
}
.l2buttons a.viewActivity {
background-color: #f7f7f5;
color: #4a90e2;
border: 1px solid #4a90e2;
}
.analytics {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  flex-wrap: wrap;
  gap: 25px;
}

/* The anchor *is* the card */
.analytics .card {
  width: 200px;
  height: 200px;
  background: #fff;
  color: #000;
  text-decoration: none;               /* remove underline */
  
  display: flex;                       /* center contents */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 12px;                 /* optional styling */
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}

/* Image constraints */
.analytics .card img {
  height: 125px;
  width: auto;
}

/* Text under the image */
.analytics .card span {
  font-size: 20px;
  text-align: center;
}

/* Hover/active/focus states for good UX and accessibility */
.analytics .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.analytics .card:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.analytics .card:focus-visible {
  outline: 3px solid #2563eb;         /* visible keyboard focus */
  outline-offset: 3px;
}
.line {
  width: calc(100% - 100px); /* 50px + 50px accounted for */
  margin: 0 50px;
  height: 3px;
  background-color: #e2a45a;
  box-sizing: border-box;     /* optional but safe */
}
.news {
    padding-bottom: 50px;
}
.news h1 {
    padding-top: 25px;
    margin-left: 50px;
    margin-right: 50px;
    font-size: 40px;
}
.news p {
    padding-top: 10px;
    margin-left: 50px;
    margin-right: 50px;
    font-size: 20px;
}

/* ── Getting Started Card ── */
.setup-banner {
    max-width: 680px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    padding: 36px 40px;
    width: calc(100% - 40px);
}

.setup-banner h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.setup-banner .setup-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.setup-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.step-icon.done {
    background: #fdf0e0;
    color: #e2a45a;
}

.step-icon.pending {
    background: #f0f0ee;
    color: #aaa;
}

.step-icon.done svg { stroke: #e2a45a; }
.step-icon.pending svg { stroke: #bbb; }

.step-text { flex: 1; }

.step-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.step-text.muted strong { color: #aaa; }

.step-text p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

.setup-cta {
    display: inline-block;
    background: #e2a45a;
    color: #fff;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.15s;
}

.setup-cta:hover { background: #c98c3e; }

.setup-step-divider {
    width: 1px;
    height: 12px;
    background: #e8e8e6;
    margin-left: 15px;
}

@media (max-width: 480px) {
.setup-banner { padding: 28px 20px; }
.setup-banner h2 { font-size: 18px; }
}

@media (max-width: 480px) {
.welcome h1 {
        font-size: 42px;
    }

.welcome p {
        font-size: 24px;
    }

.l2buttons {
        flex-direction: column;
        gap: 12px;
    }

.l2buttons a {
        width: 90%;
        padding: 12px 0;
        font-size: 18px;
    }

.analytics .card {
        width: 150px;
        height: 150px;
        gap: 6px;
    }

.analytics .card img {
        height: 90px;
    }

.analytics .card span {
        font-size: 16px;
    }

.line {
        width: 80%;
        margin: 0 auto;
    }

.news h1 {
        font-size: 28px;
        margin-left: 20px;
        margin-right: 20px;
    }

.news p {
        font-size: 16px;
        margin-left: 20px;
        margin-right: 20px;
    }
}