:root {
  --orange-dark: #d14913;
  --orange-mid: #e05511;
  --orange-light: #e96c0f;
  --yellow: #f39c10;
  --brown: #5d2a0c;
  --white: #ffffff;
  --ink: #111111;
  --shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  background-color: var(--orange-mid);
  background-image: url("../img/bg_mobile.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 166, 34, 0.08) 0%, rgba(255, 166, 34, 0) 45%),
    linear-gradient(90deg, rgba(55, 14, 0, 0.18), rgba(55, 14, 0, 0.04) 28%, rgba(55, 14, 0, 0.04) 72%, rgba(55, 14, 0, 0.18));
}

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

img {
  display: block;
  max-width: 100%;
}

.script {
  font-family: "Dancing Script", cursive;
}

.coming-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 44px 20px;
}

.hero-card {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.logo-frame {
  width: min(330px, 74vw);
  padding: 12px;
  border: 4px solid var(--white);
  border-radius: 34px;
  background: repeating-linear-gradient(-45deg, var(--orange-dark), var(--orange-mid) 18px, var(--orange-light) 36px);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  animation: floating 6s ease-in-out infinite;
}

.logo-inner {
  display: grid;
  place-items: center;
  min-height: min(270px, 61vw);
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
}

.logo-inner img {
  width: min(230px, 52vw);
}

.eyebrow {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.28);
}

h1 {
  margin: 4px 0 -2px;
  color: var(--white);
  font-size: clamp(38px, 8vw, 66px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.28);
}

.hero-quote {
  max-width: 430px;
  margin: 0;
  font-size: clamp(31px, 7vw, 48px);
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
}

.intro {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.info-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.info-pill {
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 34px rgba(0, 0, 0, 0.16);
  text-align: left;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-pill small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--white);
  background: var(--yellow);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  font-size: 24px;
}

.primary-action {
  width: 100%;
  min-height: 86px;
  display: grid;
  place-items: center;
  margin-top: 8px;
  border-radius: 34px;
  color: var(--orange-dark);
  background: var(--white);
  border-bottom: 8px solid #cbd5e1;
  box-shadow: var(--shadow);
  font-size: clamp(17px, 4vw, 22px);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-bottom-width 180ms ease;
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
}

.primary-action:active {
  transform: translateY(2px);
  border-bottom-width: 3px;
}

@keyframes floating {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-12px); }
}

@media (min-width: 768px) {
  body {
    background-image: url("../img/bg_desktop.jpg");
    background-position: center center;
  }
}

@media (max-width: 520px) {
  .coming-shell {
    padding: 34px 18px;
  }

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

  .info-pill {
    min-height: 78px;
  }
}
