:root {
  --color-page: #f2f6fc;
  --color-surface: #ffffff;
  --color-surface-blue: #edf5ff;
  --color-primary: #1768e5;
  --color-primary-hover: #0f59ca;
  --color-ink: #182033;
  --color-muted: #667085;
  --color-subtle: #8b95a7;
  --color-border: rgba(61, 83, 120, 0.12);
  --color-border-hover: rgba(23, 104, 229, 0.28);
  --space-page: 32px;
  --radius-card: 28px;
  --radius-control: 999px;
  --shadow-card: 0 12px 34px rgba(49, 72, 112, 0.07), 0 2px 5px rgba(49, 72, 112, 0.03);
  --shadow-hover: 0 20px 46px rgba(49, 72, 112, 0.12), 0 3px 8px rgba(49, 72, 112, 0.04);
  --content-width: 1080px;
  --transition: 200ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(82, 151, 242, 0.08), transparent 34rem),
    var(--color-page);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 11px 16px;
  border-radius: var(--radius-control);
  color: #fff;
  background: var(--color-primary);
  box-shadow: var(--shadow-card);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(calc(100% - (var(--space-page) * 2)), var(--content-width));
  margin: 0 auto;
}

.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 5px 13px rgba(23, 104, 229, 0.2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.header-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(23, 104, 229, 0.1);
}

.hero {
  min-height: 340px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.hero-content {
  max-width: 710px;
  padding: 68px 0 72px;
}

.eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  margin-top: 17px;
  font-size: clamp(3.35rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
}

.hero-intro {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  font-weight: 450;
  line-height: 1.6;
  letter-spacing: -0.012em;
}

.destinations {
  padding: 58px 0 92px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 27px;
}

.section-heading h2 {
  order: -1;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
  font-weight: 680;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.destination-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  animation: card-in 350ms calc(var(--card-index) * 70ms) both ease-out;
  -webkit-tap-highlight-color: transparent;
}

.destination-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 143, 241, 0.065), transparent 68%);
  content: "";
  pointer-events: none;
}

.destination-card:focus-visible {
  outline: 3px solid rgba(23, 104, 229, 0.3);
  outline-offset: 4px;
}

.destination-card:active {
  border-color: var(--color-border-hover);
  background: #fbfdff;
  transform: scale(0.99);
}

.card-number {
  position: absolute;
  top: 35px;
  right: 32px;
  color: var(--color-subtle);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.card-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(23, 104, 229, 0.09);
  border-radius: 18px;
  color: var(--color-primary);
  background: var(--color-surface-blue);
}

.card-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-content {
  display: block;
  margin-top: auto;
  padding-top: 48px;
}

.card-title {
  display: block;
  max-width: 420px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 680;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.card-description {
  display: block;
  max-width: 400px;
  margin-top: 13px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.58;
}

.card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 650;
}

.action-label {
  display: inline-flex;
  min-width: 66px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-control);
  background: var(--color-surface-blue);
}

.arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 5px 12px rgba(23, 104, 229, 0.18);
  transition: transform var(--transition), background-color var(--transition);
}

.arrow svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) and (pointer: fine) {
  .destination-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }

  .destination-card:hover .arrow {
    background: var(--color-primary-hover);
    transform: translateX(2px);
  }
}

.noscript-message {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  color: var(--color-muted);
  background: var(--color-surface);
}

.site-footer {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  color: var(--color-subtle);
}

.brand-footer {
  color: var(--color-ink);
}

.brand-footer .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
}

.footer-separator {
  margin: 0 7px;
  color: #b6bfcd;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  :root {
    --space-page: 18px;
    --radius-card: 25px;
  }

  .site-header {
    height: 70px;
  }

  .header-label {
    padding: 6px 9px;
    font-size: 9px;
  }

  .hero {
    min-height: 300px;
  }

  .hero-content {
    padding: 52px 0 58px;
  }

  h1 {
    margin-top: 14px;
    font-size: clamp(2.75rem, 13.5vw, 4.4rem);
  }

  .hero-intro {
    max-width: 370px;
    margin-top: 18px;
    font-size: 15px;
  }

  .destinations {
    padding: 48px 0 70px;
  }

  .section-heading {
    display: block;
    margin-bottom: 23px;
  }

  .section-heading .eyebrow {
    margin-bottom: 11px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .destination-card {
    min-height: 326px;
    padding: 26px;
  }

  .card-number {
    top: 31px;
    right: 28px;
  }

  .card-content {
    padding-top: 42px;
  }

  .card-title {
    font-size: 1.8rem;
  }

  .card-description {
    max-width: 340px;
  }

  .site-footer {
    min-height: 138px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 390px) {
  .brand {
    gap: 8px;
  }

  .header-label {
    letter-spacing: 0.035em;
  }

  .destination-card {
    min-height: 338px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
