:root {
  --bg: #414953;
  --button: #f2a93d;
  --text: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  background-image: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.06), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(255, 255, 255, 0.05), transparent 42%);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 52px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px 20px;
}

.header {
  display: flex;
  justify-content: center;
}

.main-logo {
  width: min(420px, 88vw);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
  animation: fadeSlideIn 520ms ease-out both;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.option-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 18px 14px;
  display: grid;
  gap: 12px;
  justify-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.option-card > .property-logo {
  margin: 0 auto;
}

.option-card .logo-frame {
  width: min(340px, 80%);
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.property-logo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 320px;
  border-radius: 0;
  padding: 0 24px;
  background: #ffffff;
  color: #173f86;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 300;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid rgba(23, 63, 134, 0.14);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.45) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 380ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  border-color: rgba(23, 63, 134, 0.35);
}

.cta-button:hover::after,
.cta-button:focus-visible::after {
  transform: translateX(130%);
}

.cta-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.footer {
  background: #363d46;
  border-radius: 0;
  padding: 16px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-line {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: clamp(12px, 1.1vw, 18px);
  font-weight: 300;
}

.footer-label {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0.92;
}

.footer-icon svg {
  width: 16px;
  height: 16px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  transition: opacity 160ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  opacity: 0.82;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .options {
    grid-template-columns: 1fr;
  }

  .page {
    gap: 30px;
    padding: 28px 14px;
  }

  .option-card .logo-frame {
    width: min(340px, 92%);
    height: 170px;
  }

  .cta-button {
    width: min(320px, 92%);
  }

  .footer-line {
    flex-wrap: wrap;
    white-space: normal;
    gap: 8px 14px;
  }

  .footer {
    border-radius: 10px;
  }
}
