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

:root {
  --red: #e50914;
  --red-dark: #b90009;
  --text: #151515;
  --muted: #6c717a;
  --white: #ffffff;
  --line: rgba(229, 9, 20, 0.16);
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.12);
}

body {
  min-height: 100vh;
  font-family: "Noto Sans Bengali", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(229, 9, 20, 0.12), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08), transparent 26%),
    linear-gradient(135deg, #fff 0%, #fff7f7 48%, #ffffff 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 440px;
  height: 440px;
  right: -180px;
  top: -160px;
  background: rgba(229, 9, 20, 0.11);
}

body::after {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -120px;
  background: rgba(229, 9, 20, 0.08);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.hero {
  width: min(100%, 980px);
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 42px 28px 28px;
}

.logo-card {
  width: min(330px, 82vw);
  margin: 0 auto 22px;
  background: #fff;
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 16px 50px rgba(229, 9, 20, 0.12);
  border: 1px solid var(--line);
}

.logo-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
  }

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(229, 9, 20, 0.12);
}

h1 {
  max-width: 760px;
  margin: 22px auto 16px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px auto 28px;
  max-width: 800px;
}

.services span {
  background: #fff;
  color: #2c2c2c;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

.notify-card {
  width: min(100%, 680px);
  margin: 0 auto;
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 20px 45px rgba(229, 9, 20, 0.24);
}

.notify-card h2 {
  font-size: clamp(22px, 4vw, 34px);
  margin-bottom: 8px;
}

.notify-card p {
  opacity: 0.88;
  line-height: 1.6;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--red);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.btn.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

footer {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

footer a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 560px) {
  .page {
    padding: 16px;
  }

  .hero {
    border-radius: 26px;
    padding: 28px 16px 22px;
  }

  .logo-card {
    padding: 14px;
  }

  .services span {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
