:root {
  color-scheme: light;
  --bg-a: #edf9d6;
  --bg-b: #e4f2c8;
  --text: #565656;
  --muted: #707070;
  --line: rgba(90, 90, 90, 0.72);
  --pink: #ee8be9;
  --pink-text: #6c4b66;
  --blue: #6cc5ef;
  --shadow: 0 14px 34px rgba(101, 123, 62, 0.08);
  --radius-card: 12px;
  --radius-button: 10px;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.45), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.28), transparent 18%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(180deg, var(--bg-a) 0%, var(--bg-b) 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 46px 16px 56px;
}

.hero {
  width: min(100%, 618px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-shell {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
}

.logo-frame {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 2.5px solid #4b4b4b;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
}

.logo-mark {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  margin-bottom: 2px;
  border-radius: 2px;
  background: #111111;
  color: #ffffff;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 4px;
  color: #111111;
}

.location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 0;
  color: #707070;
  font-size: 14px;
  font-weight: 600;
}

.pin {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-1px);
}

.pin svg {
  width: 100%;
  height: 100%;
  display: block;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 32px 0 32px;
  background: var(--line);
}

.info-card {
  width: 100%;
  padding: 26px 28px 32px;
  border-radius: var(--radius-card);
  background: var(--pink);
  box-shadow: var(--shadow);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--pink-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.info-card h1 {
  margin: 0;
  color: #6c4a67;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.cta-button {
  width: 100%;
  margin-top: 38px;
  display: block;
  text-decoration: none;
  color: #5d5d5d;
  opacity: 1;
  animation: button-double-bounce 5s ease-in-out infinite;
}

.cta-surface {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-radius: var(--radius-button);
  background: var(--blue);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background-color 180ms ease;
}

.cta-button:hover .cta-surface {
  filter: brightness(1.02);
  transform: scale(1.04);
  box-shadow: 0 18px 38px rgba(76, 124, 147, 0.18);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(21, 123, 193, 0.36);
  outline-offset: 3px;
}

.cta-button:active .cta-surface {
  transform: scale(0.992);
  box-shadow: 0 9px 22px rgba(76, 124, 147, 0.14);
  filter: brightness(0.99);
}

.cta-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.cta-icon-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.cta-label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.link-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.link-note code {
  padding: 0 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  font-family: Consolas, "Courier New", monospace;
}

@keyframes button-double-bounce {
  from,
  12% {
    transform: translateY(0);
  }

  18% {
    transform: translateY(-11px);
  }

  26% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  48% {
    transform: translateY(0);
  }

  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-button {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .cta-surface {
    transition: none;
  }

  .cta-button:hover .cta-surface,
  .cta-button:active .cta-surface {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 36px;
  }

  .hero {
    width: min(100%, 560px);
  }

  .brand-name {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .divider {
    margin: 28px 0;
  }

  .info-card {
    padding: 22px 20px 28px;
  }

  .info-card h1 {
    font-size: 16px;
  }

  .cta-button {
    margin-top: 28px;
  }

  .cta-surface {
    min-height: 62px;
    padding-inline: 20px;
  }

  .cta-label {
    font-size: 17px;
  }
}
