:root {
  color-scheme: light;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111214;
  background: #f6f7fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100svh;
  background: linear-gradient(180deg, #f7faff 0%, #eef2fb 55%, #f9f9fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px 24px;
}

.page-shell {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1180px;
  max-height: calc(100svh - 24px);
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  padding-bottom: 10px;
}

.logo {
  height: 150px;
  width: auto;
  max-width: 580px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  flex: 1 1 auto;
  gap: 28px;
  align-items: center;
  min-height: 0;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  color: #5f6b89;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.du {
  color: #111214;
}

.bidly {
  color: #C9183A;
}

.hero-copy p {
  margin: 14px 0 0;
  max-width: 36rem;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.55;
  color: #4b5568;
}

.launch-note {
  position: relative;
  display: grid;
  gap: 5px;
  max-width: 420px;
  margin-top: 22px;
  padding: 18px 20px 18px 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 24, 58, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 248, 0.92)),
    #ffffff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.launch-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #C9183A, #ff8a98);
}

.launch-kicker {
  color: #8d1730;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-title {
  color: #111214;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
}

.launch-copy {
  max-width: 32rem;
  color: #596176;
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  width: 100%;
  max-width: 520px;
  max-height: 42svh;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.site-footer {
  flex: 0 0 auto;
  margin-top: 10px;
  text-align: center;
  color: #5f6b89;
  font-size: 0.9rem;
  line-height: 1.25;
}

.site-footer p {
  margin: 0;
}

.owner-credit {
  margin: 6px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1f4f8b;
  text-decoration: none;
  font-weight: 600;
}

.footer-link svg {
  display: block;
  color: #0a66c2;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .hero-media img {
    max-height: 28svh;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 680px) {
  body {
    padding: 8px 12px;
  }

  .hero {
    padding: 16px;
    gap: 12px;
    border-radius: 22px;
  }

  .site-header {
    justify-content: center;
    padding-bottom: 6px;
  }

  .hero-media img {
    max-height: 20svh;
  }

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

  .launch-note {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
}
