:root {
  --bg: #f8fcff;
  --bg-accent: #d9f5f5;
  --surface: #ffffff;
  --surface-border: rgba(21, 82, 166, 0.1);
  --text: #0d4aa0;
  --muted: #276b95;
  --accent: #11b7bf;
  --accent-deep: #0b57ad;
  --shadow: 0 28px 80px rgba(16, 86, 159, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(17, 183, 191, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(11, 87, 173, 0.12), transparent 28%),
    linear-gradient(160deg, var(--bg) 0%, #eef9ff 46%, var(--bg-accent) 100%);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(760px, 100%);
  padding: 40px 28px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.subtitle {
  width: min(520px, 100%);
  margin: 18px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.image-wrap {
  margin: 36px auto 28px;
  display: flex;
  justify-content: center;
}

.brand-image {
  width: min(320px, 72vw);
  height: auto;
  display: block;
  filter: none;
}

.counter {
  width: min(320px, 100%);
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(228, 248, 250, 0.9));
  border: 1px solid rgba(17, 183, 191, 0.16);
}

.counter.is-hidden {
  display: none;
}

.counter-label,
.counter-note {
  margin: 0;
}

.counter-label {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.counter-value {
  margin: 10px 0 6px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--accent-deep);
}

.counter-note {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 640px) {
  .card {
    padding: 32px 20px;
    border-radius: 22px;
  }

  .subtitle {
    font-size: 0.98rem;
  }
}
