* {
  box-sizing: border-box;
}

:root {
  --blue: #075fc8;
  --blue-dark: #0757ba;
  --pink: #ff0087;
  --white: #fff;
  --black: #050505;
  --card: rgba(30, 117, 211, .72);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--blue);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.hero {
  min-height: 650px;
  padding: 58px 36px 56px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(18px, 4vw, 25px);
  font-weight: 700;
  letter-spacing: .3px;
}

.logo {
  display: block;
  object-fit: contain;
}

.logo-hero {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  border-radius: 50%;
}

.auth-buttons {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.btn {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 5px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover, .pill-btn:hover, .newsletter button:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: #1760bd;
  min-width: 104px;
  height: 31px;
  font-size: 10px;
  box-shadow: 0 2px 7px rgba(0,0,0,.08);
}

.hero-copy {
  max-width: 620px;
  margin: 70px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  line-height: 1.5;
  color: #e9f2ff;
}

.video-card {
  margin: 0 20px;
  min-height: 245px;
  border-radius: 16px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 28px rgba(0,0,0,.13);
}

.logo-video {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin-bottom: 13px;
}

.video-card h2 {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.22;
  font-weight: 800;
}

.pill-btn {
  border: 0;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease;
}

.content {
  padding: 62px 20px 42px;
}

.pink-title {
  margin: 0 0 11px;
  color: var(--pink);
  font-size: 21px;
  line-height: 1.1;
}

.intro, article p, .join-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  line-height: 1.55;
}

.intro {
  margin: 0 0 28px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

article h3 {
  margin: 0 0 9px;
  color: var(--pink);
  font-size: 12px;
  line-height: 1.3;
}

article p {
  margin: 0;
}

.join-card {
  margin-top: 28px;
  padding: 23px 22px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(36, 124, 218, .75), rgba(9, 91, 194, .68));
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.join-card h3 {
  margin: 0 0 9px;
  color: var(--pink);
  font-size: 13px;
}

.join-card p {
  margin: 0 0 17px;
  max-width: 570px;
}

.join-btn {
  min-width: 120px;
  height: 31px;
  font-size: 9px;
}

.footer-area {
  padding: 35px 10px 25px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.newsletter h2, .find-me h2 {
  margin: 0 0 11px;
  font-size: 15px;
}

.newsletter form {
  display: flex;
  gap: 6px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 29px;
  border: 0;
  border-radius: 6px;
  padding: 0 11px;
  outline: none;
  font-size: 9px;
}

.newsletter button {
  width: 58px;
  border: 0;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease;
}

.newsletter small {
  display: block;
  margin-top: 7px;
  font-family: Georgia, serif;
  font-size: 7px;
  opacity: .85;
}

.find-me {
  margin-top: 38px;
}

.link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.social-card {
  min-height: 62px;
  border: 0;
  border-radius: 7px;
  background: #191d22;
  color: #fff;
  cursor: pointer;
  font-size: 8px;
  transition: transform .2s ease, background .2s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  background: #101317;
}

.social-card span {
  display: block;
  color: var(--pink);
  font-size: 17px;
  line-height: 1;
  margin-bottom: 6px;
}

footer {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.logo-footer {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  border-radius: 50%;
}

footer p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 7px;
  opacity: .8;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 20px);
  padding: 11px 17px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 10;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 761px) {
  body {
    padding: 20px 0;
    background: #e9edf2;
  }

  main {
    box-shadow: 0 10px 45px rgba(0,0,0,.18);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 610px;
    padding-top: 30px;
  }

  .two-col {
    gap: 20px;
  }

  .video-card {
    margin: 0 20px;
  }
}
