:root {
  --page-background: #ffffff;
  --card-border: #d7e0e7;
  --card-shadow: 0 18px 48px rgba(32, 143, 213, 0.12);
  --primary-blue: #0aa9ee;
  --primary-text: #223d61;
  --secondary-text: #6f7e92;
  --line: #e2e8ee;
  --button-border: #cfd6df;
  --button-shadow: 0 6px 14px rgba(29, 65, 109, 0.08);
  --orb-blue: rgba(20, 184, 238, 0.18);
  --orb-line: rgba(20, 184, 238, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at center, #ffffff 0%, #fbfdff 72%, #f7fbff 100%);
  color: var(--primary-text);
}

body {
  min-height: 100vh;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px 28px;
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  text-align: center;
  margin-bottom: 54px;
}

.brand-logo {
  display: block;
  width: 255px;
  height: auto;
}

.login-card {
  width: min(100%, 534px);
  border: 2px solid var(--card-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
}

.card-inner {
  padding: 68px 50px 62px;
}

.hero-copy {
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 8px 0 0;
  font-size: clamp(24px, 2.8vw, 31px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary-blue);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 34px 0 36px;
}

.google-button {
  width: 100%;
  min-height: 66px;
  border: 2px solid var(--button-border);
  border-radius: 22px;
  background: #ffffff;
  color: var(--primary-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 700;
  box-shadow: var(--button-shadow);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.google-button:hover {
  transform: translateY(-1px);
  border-color: #9dcde9;
  box-shadow: 0 10px 20px rgba(29, 65, 109, 0.12);
}

.google-button:active {
  transform: translateY(0);
}

.google-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.employee-note {
  margin-top: 38px;
  text-align: center;
  color: var(--secondary-text);
}

.employee-note p {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.42;
  font-weight: 700;
}

.employee-note .email {
  color: var(--primary-blue);
  margin-top: 2px;
}

.footer-note {
  margin-top: 50px;
  text-align: center;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 700;
  color: var(--secondary-text);
}

.awareness-body {
  min-height: 100vh;
}

.awareness-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awareness-card {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  padding: 44px 42px 40px;
  border: 2px solid var(--card-border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
}

.awareness-logo {
  margin-bottom: 18px;
}

.awareness-badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e9f7ff;
  color: #0b89c6;
  font-weight: 700;
}

.awareness-title {
  margin: 0;
  max-width: 720px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.awareness-lead {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--secondary-text);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  font-weight: 500;
}

.awareness-section {
  margin-top: 30px;
  padding: 24px 24px 22px;
  border: 1px solid #dbe6ee;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.awareness-section h2 {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--primary-text);
}

.awareness-list {
  margin: 0;
  padding-left: 24px;
  color: #47607f;
  font-size: 17px;
  line-height: 1.7;
}

.awareness-actions {
  margin-top: 28px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid #bcd7e6;
  border-radius: 999px;
  color: var(--primary-text);
  background: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: border-color 180ms ease, transform 180ms ease;
}

.secondary-link:hover {
  border-color: #86c8e8;
  transform: translateY(-1px);
}

.background-orb {
  position: absolute;
  pointer-events: none;
}

.orb-top-right {
  top: -34px;
  right: -36px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 5px solid var(--orb-line);
  opacity: 0.9;
}

.orb-top-right::before,
.orb-top-right::after,
.orb-bottom-right::before,
.orb-bottom-right::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 2px solid var(--orb-line);
}

.orb-top-right::after {
  inset: 58px;
}

.orb-bottom-left {
  left: -130px;
  bottom: -150px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 36px solid var(--orb-blue);
}

.orb-bottom-right {
  right: -18px;
  bottom: -12px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid var(--orb-line);
}

.orb-bottom-right::before {
  inset: 16px;
}

.orb-bottom-right::after {
  inset: 32px;
}

@media (max-width: 768px) {
  .page-shell {
    padding-top: 28px;
  }

  .brand {
    margin-bottom: 38px;
  }

  .brand-logo {
    width: 210px;
  }

  .awareness-card {
    padding: 28px 20px 26px;
    border-radius: 24px;
  }

  .awareness-list {
    font-size: 16px;
    padding-left: 20px;
  }

  .card-inner {
    padding: 44px 24px 40px;
  }

  .google-button {
    min-height: 60px;
    border-radius: 18px;
    gap: 12px;
    font-size: 18px;
  }

  .employee-note {
    margin-top: 38px;
  }

  .employee-note p,
  .footer-note {
    font-size: 17px;
  }

  .orb-top-right {
    width: 220px;
    height: 220px;
  }

  .orb-bottom-left {
    width: 210px;
    height: 210px;
    border-width: 28px;
  }

  .orb-bottom-right {
    width: 108px;
    height: 108px;
  }
}
