:root {
  --orange: #d06b00;
  --orange-dark: #8f3900;
  --gold: #f2b02d;
  --cream: #fff7e8;
  --ink: #111111;
  --muted: #5c5148;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(99, 47, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(242, 176, 45, 0.28),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(208, 107, 0, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #fff 0%, var(--cream) 48%, #f7d8a2 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
}

body::before {
  left: -250px;
  bottom: -260px;
  background: linear-gradient(45deg, var(--orange), var(--gold));
  opacity: 0.35;
}

body::after {
  right: -290px;
  top: -290px;
  border: 46px solid rgba(208, 107, 0, 0.16);
}

.coming-soon {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.card {
  width: min(920px, 100%);
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
  border: 1px solid rgba(208, 107, 0, 0.18);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(
    90deg,
    var(--orange-dark),
    var(--orange),
    var(--gold)
  );
}

.logo-wrap {
  width: clamp(120px, 18vw, 170px);
  height: clamp(120px, 18vw, 170px);
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 4px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(208, 107, 0, 0.18);
}

.logo-wrap img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.tagline {
  margin: 24px 0 14px;
  color: var(--orange-dark);
  font-family: "Noto Sans Devanagari", Inter, sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 800;
}

.tagline span {
  color: var(--gold);
  margin: 0 10px;
}

.intro {
  max-width: 660px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  min-width: 160px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 2px solid var(--orange);
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(180deg, #e58205, #bd5900);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(208, 107, 0, 0.2);
}

.btn-outline {
  color: var(--orange-dark);
  background: var(--white);
  box-shadow: none;
}

.contact-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.contact-line a {
  color: inherit;
  text-decoration: none;
}

.contact-line span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

@media (max-width: 560px) {
  .coming-soon {
    padding: 16px;
  }
  .card {
    border-radius: 22px;
  }
  .btn {
    width: 100%;
  }
  .contact-line {
    font-size: 0.9rem;
  }
  .contact-line span {
    display: none;
  }
}
