.intro {
  max-width: 520px;
  margin-top: 8px;
  animation: fade-up 720ms ease 120ms both;
}

.intro-kicker {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a9c7e8;
  font-size: clamp(13px, 2.2cqi, 17px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.cursor {
  width: 2px;
  height: 1em;
  display: inline-block;
  background: #8f96a0;
  margin-bottom: -0.08em;
  animation: blink 1.1s steps(1, end) infinite;
}

.intro h1 {
  margin: 0;
  color: #f7f8fa;
  font-size: clamp(27px, 4.8cqi, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.intro p {
  margin: 12px 0 0;
  max-width: 490px;
  color: var(--color-text-secondary);
  font-size: clamp(15px, 2.6cqi, 21px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.tiles {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  row-gap: 20px;
  column-gap: 16px;
  justify-items: center;
  animation: fade-up 720ms ease 260ms both;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #f3f5f8;
  text-decoration: none;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

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

.tile svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile span {
  color: #f4f6f8;
  white-space: nowrap;
  text-align: center;
  font-size: clamp(14px, 2.4cqi, 19px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.home-access-alert[hidden] {
  display: none;
}

.home-access-alert {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.home-access-alert-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.06), transparent 34%),
    radial-gradient(circle at 92% 94%, rgba(255, 255, 255, 0.04), transparent 32%),
    rgba(6, 8, 12, 0.64);
  backdrop-filter: blur(2px);
}

.home-access-alert-modal {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100vw - 40px));
  border: 0;
  border-radius: 12px;
  background: none;
  box-shadow: none;
  padding: 18px 18px 16px;
  display: grid;
  gap: 10px;
  outline: none;
}

.home-access-alert-kicker {
  margin: 0;
  color: #a9c7e8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-access-alert-modal h2 {
  margin: 0;
  color: #f7f8fa;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.home-access-alert-modal p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.42;
}

.home-access-alert-body {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 12px;
}

.home-access-alert-copy {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.home-access-alert-body .duration-icon {
  order: -1;
  width: 48px;
  height: 48px;
  display: block;
  fill: #ffffff;
  stroke: none;
  transform: none;
}

.home-access-alert-body .duration-icon .ghost-eye {
  fill: #151820;
  opacity: 0.98;
}

.home-access-alert-body .duration-icon .ghost-face {
  fill: none;
  stroke: #151820;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-access-alert-btn {
  justify-self: center;
  margin-top: 4px;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(110, 178, 255, 0.36);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(110, 178, 255, 0.14) 0%, rgba(16, 20, 27, 0.24) 100%);
  color: #c7ddf5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
}

.home-access-alert-btn:hover {
  border-color: rgba(110, 178, 255, 0.62);
  color: #e3effc;
}
