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

:root {
  --brand: #03219C;
  --brand-light: #3154d8;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);

  --glass: rgba(255, 255, 255, 0.075);
  --glass-border: rgba(255, 255, 255, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  font-family:
    iransans,
    vazirmatn,
    sans-serif;

  color: var(--text);

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(3, 33, 156, 0.38),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(49, 84, 216, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(3, 33, 156, 0.20),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #03050c 0%,
      #070b18 55%,
      #02040a 100%
    );

  overflow-x: hidden;
  position: relative;
}

/* Subtle grid */

body::before {
  content: "";

  position: fixed;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent
    );

  pointer-events: none;
}

/* Background orbs */

.background-orb {
  position: fixed;

  border-radius: 50%;

  filter: blur(15px);

  pointer-events: none;

  animation: floating 9s ease-in-out infinite;
}

.orb-one {
  width: 300px;
  height: 300px;

  top: -100px;
  left: -80px;

  background: rgba(3, 33, 156, 0.25);
}

.orb-two {
  width: 360px;
  height: 360px;

  right: -120px;
  bottom: -120px;

  background: rgba(49, 84, 216, 0.18);

  animation-delay: -4s;
}

@keyframes floating {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 25px, 0);
  }
}

/* Page */

.page {
  width: min(1180px, calc(100% - 30px));

  min-height: 100vh;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px 0;

  position: relative;
  z-index: 2;
}

/* Glass card */

.glass-card {
  width: 100%;
  max-width: 950px;

  padding:
    clamp(30px, 6vw, 65px);

  border: 1px solid var(--glass-border);

  border-radius: 34px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.105),
      rgba(255, 255, 255, 0.035)
    );

  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);

  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);

  position: relative;

  overflow: hidden;

  text-align: center;
}

/* Glass glow */

.glass-card::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -240px;
  right: -120px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(3, 33, 156, 0.25),
      transparent 68%
    );

  pointer-events: none;
}

/* Shine */

.shine {
  position: absolute;

  top: 0;
  left: -150%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.045),
      transparent
    );

  transform: skewX(-15deg);

  animation: shine 9s infinite;

  pointer-events: none;
}

@keyframes shine {
  0%,
  70% {
    left: -150%;
  }

  100% {
    left: 170%;
  }
}

/* Logo */

.logo-wrapper {
  width: 115px;
  height: 115px;

  margin: 0 auto 25px;

  padding: 6px;

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0.04)
    );

  border: 1px solid rgba(255, 255, 255, 0.16);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.30),
    0 0 45px rgba(3, 33, 156, 0.22);

  position: relative;
  z-index: 2;
}

.logo {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 22px;

  display: block;
}

/* Badge */

.badge {
  display: inline-flex;

  align-items: center;
  gap: 9px;

  padding: 9px 15px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.055);

  border: 1px solid rgba(255, 255, 255, 0.11);

  color: rgba(255, 255, 255, 0.72);

  font-size: 13px;

  margin-bottom: 25px;
}

.status-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #5ee7b2;

  box-shadow:
    0 0 18px rgba(94, 231, 178, 0.85);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

/* Brand */

.brand {
  font-size: clamp(43px, 8vw, 82px);

  font-weight: 900;

  line-height: 2.05;

  letter-spacing: -3px;

  margin-bottom: 24px;

  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #ffffff 35%,
      #b8c7ff 65%,
      #6e8cff 100%
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/* Heading */

h1 {
  font-size: clamp(24px, 4vw, 40px);

  line-height: 1.6;

  font-weight: 800;

  margin-bottom: 17px;
}

h1 span {
  display: inline;

  background:
    linear-gradient(
      90deg,
      #ffffff,
      #7e9aff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/* Description */

.description {
  max-width: 730px;

  margin: 0 auto 38px;

  color: var(--muted);

  font-size: clamp(15px, 2vw, 18px);

  line-height: 2.1;
}

/* Social */

.social-section {
  margin-top: 5px;
}

.social-title {
  color: rgba(255, 255, 255, 0.48);

  font-size: 13px;

  margin-bottom: 15px;
}

.social-links {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  flex-wrap: wrap;
}

.social-link {
  min-width: 125px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 12px 17px;

  border-radius: 15px;

  color: #fff;

  text-decoration: none;

  font-size: 14px;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid rgba(255, 255, 255, 0.11);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.social-link i {
  font-size: 18px;
}

.social-link:hover {
  transform: translateY(-4px);

  background:
    rgba(3, 33, 156, 0.30);

  border-color:
    rgba(100, 130, 255, 0.45);

  box-shadow:
    0 12px 30px rgba(3, 33, 156, 0.20);
}

/* Footer */

.footer {
  margin-top: 42px;

  padding-top: 22px;

  border-top:
    1px solid rgba(255, 255, 255, 0.08);
}

/* Trustseal */

.trustseal {
  min-height: 35px;

  display: flex;

  justify-content: center;
  align-items: center;

  margin-bottom: 18px;

  opacity: 0.75;

  transform: scale(0.85);
  transform-origin: center;
}

/* Footer bottom */

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  color: rgba(255, 255, 255, 0.40);

  font-size: 12px;
}

.footer-brand {
  font-weight: 600;
}

.copyright {
  direction: ltr;
}

/* Mobile */

@media (max-width: 700px) {

  .page {
    width: calc(100% - 18px);

    padding: 9px 0;
  }

  .glass-card {
    border-radius: 25px;

    padding:
      35px 20px 25px;
  }

  .logo-wrapper {
    width: 95px;
    height: 95px;

    border-radius: 23px;
  }

  .logo {
    border-radius: 17px;
  }

  .brand {
    letter-spacing: -2px;
  }

  h1 {
    line-height: 1.65;
  }

  h1 span {
    display: block;
  }

  .description {
    line-height: 2;
  }

  .social-link {
    flex: 1;

    min-width: 105px;
  }

  .footer-bottom {
    flex-direction: column;

    justify-content: center;

    text-align: center;

    gap: 9px;
  }
}

/* Small phones */

@media (max-width: 400px) {

  .brand {
    font-size: 40px;
  }

  h1 {
    font-size: 22px;
  }

  .social-link {
    width: 100%;
  }
}