:root {
  --bg: #05070d;
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7f8fc;
  --muted: #a9b3c7;
  --soft: #d9deea;
  --blue: #2f6df6;
  --blue-dark: #194fce;
  --red: #df2e32;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(115deg, rgba(223, 46, 50, 0.2), transparent 34%),
    linear-gradient(245deg, rgba(47, 109, 246, 0.25), transparent 35%),
    radial-gradient(circle at 50% 0%, #172035 0, #05070d 48%, #030409 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 92px);
  pointer-events: none;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 58px) 18px;
}

.hero {
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.brand,
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.brand {
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
  margin-bottom: 18px;
}

.brand span {
  color: var(--blue);
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}

h1 {
  max-width: 690px;
  margin: 0 0 24px;
  font-size: clamp(48px, 7.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

h1 span {
  display: block;
  background: linear-gradient(90deg, #ffffff, #e7edff 58%, #ffd7d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 610px;
  margin: 0 0 30px;
  color: var(--soft);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.5;
}

.lead strong {
  color: #ffffff;
}

.fee-callout {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(223, 46, 50, 0.98), rgba(168, 20, 26, 0.98));
  color: #ffffff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(223, 46, 50, 0.28);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: #ffffff;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.offer-list strong,
.offer-list span {
  display: block;
}

.offer-list strong {
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.offer-list span {
  margin-top: 6px;
  color: #cbd4e7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.button,
.phone {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 260px);
  min-height: 58px;
  border-radius: 8px;
  padding: 16px 22px;
  background: linear-gradient(180deg, #3e7cff, var(--blue-dark));
  box-shadow: 0 20px 46px rgba(47, 109, 246, 0.36), inset 0 1px rgba(255, 255, 255, 0.25);
}

.button:focus-visible,
.phone:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

.phone {
  color: #d7deec;
}

.hours {
  display: grid;
  gap: 5px;
  max-width: 660px;
  margin: 0;
  color: #8f9ab0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hours p {
  margin: 0 0 2px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.22em;
}

.hours span {
  display: block;
}

.fine-print {
  max-width: 760px;
  margin: 24px 0 0;
  color: #778197;
  font-size: 11px;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 16px;
}

.hero-visual::before {
  position: absolute;
  inset: 9% -5% -8% 10%;
  z-index: -1;
  content: "";
  background: rgba(47, 109, 246, 0.28);
  filter: blur(44px);
}

.visual-brand {
  justify-self: center;
  margin: 0;
  color: #cfd7e8;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.52);
}

.visual-brand span {
  color: var(--blue);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.5), 0 0 0 12px rgba(255, 255, 255, 0.055);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 34%, rgba(47, 109, 246, 0.12));
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.event-plate {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 18px 20px;
  background:
    linear-gradient(90deg, rgba(223, 46, 50, 0.92), rgba(223, 46, 50, 0.18) 38%, rgba(7, 11, 22, 0.92)),
    rgba(7, 11, 22, 0.88);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.event-plate p,
.event-plate strong,
.event-plate span {
  display: block;
  margin: 0;
}

.event-plate p {
  grid-column: 1 / -1;
  color: #ffdfe0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.event-plate strong {
  font-size: clamp(52px, 7vw, 82px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.event-plate span {
  color: #eef3ff;
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .page-shell {
    place-items: start center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-visual {
    order: -1;
    max-width: 660px;
    width: 100%;
    margin-inline: auto;
  }

  .visual-brand {
    font-size: clamp(22px, 7vw, 34px);
    letter-spacing: 0.22em;
  }

  .hero-copy {
    text-align: center;
  }

  .offer-list,
  .actions {
    justify-content: center;
  }

  .lead,
  .fee-callout,
  .hours,
  .fine-print {
    margin-inline: auto;
  }

  .brand,
  .eyebrow {
    letter-spacing: 0.18em;
  }

  .hours {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 14px 16px 30px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-copy {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  h1 {
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .lead {
    font-size: 14px;
  }

  .fee-callout {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    text-align: center;
  }

  .offer-list {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .photo-frame {
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48), 0 0 0 7px rgba(255, 255, 255, 0.055);
  }

  .hero-visual img {
    aspect-ratio: 1.15 / 1;
  }

  .visual-brand {
    font-size: 22px;
    letter-spacing: 0.18em;
  }

  .offer-list li {
    width: 100%;
    max-width: 100%;
    padding: 14px 13px;
  }

  .offer-list strong {
    font-size: 20px;
  }

  .offer-list span {
    font-size: 11px;
  }

  .event-plate {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 16px;
    text-align: center;
  }

  .event-plate strong {
    font-size: 52px;
  }

  .event-plate span {
    width: min(100%, 235px);
    font-size: 14px;
    line-height: 1.12;
    white-space: normal;
  }

  .button {
    min-width: 0;
    width: 100%;
  }
}
