:root {
  --bg: #f6f9ff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbe7f5;
  --blue: #2563eb;
  --blue-dark: #123c7c;
  --orange: #f97316;
  --shadow: 0 28px 90px rgba(15, 23, 42, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 99, 235, .18), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(249, 115, 22, .13), transparent 26%),
    linear-gradient(180deg, #eff6ff 0%, #f8fbff 48%, #ffffff 100%);
  color: var(--ink);
}

.event-page {
  display: grid;
  align-content: center;
  gap: clamp(24px, 5vw, 46px);
  min-height: 100vh;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0;
}

.hero {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  animation: riseIn .7s ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #0b1b3a;
  font-size: clamp(46px, 8vw, 96px);
  line-height: .95;
  letter-spacing: 0;
}

.lead {
  margin: 18px 0 0;
  color: var(--blue-dark);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 850;
}

.intro {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  animation: riseIn .8s ease both;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:nth-child(2) {
  animation-delay: .08s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, .34);
  box-shadow: 0 34px 100px rgba(37, 99, 235, .22);
}

.service-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbeafe;
}

.service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-copy {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
}

.service-copy span:first-child {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 6px 10px;
  background: #dbeafe;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.is-soon .service-copy span:first-child {
  background: #fff7ed;
  color: #9a3412;
}

h2 {
  margin: 0;
  color: #0b1b3a;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.service-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 46px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(37, 99, 235, .22);
}

.button.disabled {
  border-color: rgba(249, 115, 22, .34);
  background: #fff7ed;
  color: #9a3412;
  box-shadow: none;
}

.ai-label {
  display: grid;
  place-items: center;
  justify-self: center;
  margin: -18px 0 0;
  width: min(142px, 36vw);
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .1);
}

.ai-label img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.maintenance-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  width: min(100% - 32px, 520px);
  margin: 0 auto;
  padding: 32px 0;
}

.maintenance-panel {
  display: grid;
  gap: 14px;
  width: 100%;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 34px);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}

.maintenance-panel h1 {
  font-size: clamp(38px, 8vw, 66px);
}

.maintenance-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.maintenance-panel input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

.maintenance-panel .button {
  width: 100%;
  cursor: pointer;
}

.maintenance-error {
  margin: 0;
  border-left: 4px solid var(--orange);
  padding: 10px 12px;
  background: #fff7ed;
  color: #9a3412;
  line-height: 1.4;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .event-page {
    width: min(100% - 24px, 1180px);
    align-content: start;
    padding-top: 34px;
  }

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

  .hero {
    text-align: left;
  }

  .intro {
    margin-left: 0;
  }

  .button {
    width: 100%;
  }

  .ai-label {
    justify-self: center;
    width: min(126px, 42vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
