:root {
  --brand-maroon: #741515;
  --brand-burgundy: #b72b31;
  --brand-red: #c83a3f;
  --brand-gold: #f5b83d;
  --brand-coral: #ffb6a6;
  --brand-off-white: #fff8ec;
  --brand-peach: #ffebdd;
  --brand-pink-surface: #fff1f2;
  --brand-brown: #6e5a5a;
  --brand-burgundy-rgb: 183 43 49;
  --brand-red-rgb: 200 58 63;
  --brand-gold-rgb: 245 184 61;
  --brand-coral-rgb: 255 182 166;
  --brand-off-white-rgb: 255 248 236;
  --brand-peach-rgb: 255 235 221;
  --brand-pink-surface-rgb: 255 241 242;
  --font-sans: "Plus Jakarta Sans", Inter, system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --shadow-soft: 0 16px 38px rgb(var(--brand-burgundy-rgb) / 0.06);
  --shadow-brand: 0 24px 56px rgb(var(--brand-burgundy-rgb) / 0.14);
  --shadow-elevated: 0 24px 58px rgb(var(--brand-burgundy-rgb) / 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--brand-brown);
  background-image:
    radial-gradient(circle at top left, rgb(var(--brand-gold-rgb) / 0.12), transparent 26%),
    radial-gradient(circle at top right, rgb(var(--brand-coral-rgb) / 0.16), transparent 28%),
    linear-gradient(
      180deg,
      rgb(255 255 255 / 0.98),
      rgb(var(--brand-off-white-rgb) / 0.98) 48%,
      rgb(var(--brand-pink-surface-rgb) / 0.92) 100%
    );
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
  background: url("./images/texture-background.jpg") center / cover no-repeat;
}

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

.coming-soon-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.4rem, 2vw, 2rem) 1rem;
}

.coming-soon-shell {
  position: relative;
  isolation: isolate;
  width: 80%;
  margin: 0 auto;
  padding: clamp(1.4rem, 2vw, 2.1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  border: 1px solid rgb(var(--brand-burgundy-rgb) / 0.08);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.94), rgb(var(--brand-off-white-rgb) / 0.84)),
    linear-gradient(135deg, rgb(var(--brand-gold-rgb) / 0.1), rgb(var(--brand-coral-rgb) / 0.08));
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgb(255 255 255 / 0.62);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.coming-soon-shell::before,
.coming-soon-shell::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  filter: blur(54px);
  z-index: -1;
}

.coming-soon-shell::before {
  top: 1.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgb(var(--brand-gold-rgb) / 0.16);
}

.coming-soon-shell::after {
  right: -2rem;
  bottom: 1.2rem;
  width: 12rem;
  height: 12rem;
  background: rgb(var(--brand-coral-rgb) / 0.16);
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.15rem;
}

.hero-logo {
  width: clamp(102px, 12vw, 142px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgb(var(--brand-burgundy-rgb) / 0.22));
}

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

.hero-title {
  margin: 0;
  font-size: clamp(2.65rem, 5.5vw, 4.55rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--brand-maroon);
}

.hero-subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.18;
  font-weight: 700;
  color: var(--brand-burgundy);
}

.hero-tagline {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  color: var(--brand-brown);
}

.hero-description {
  max-width: 1020px;
  margin: 1rem auto 0;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.85;
  color: rgb(110 90 90 / 0.96);
}

.benefit-grid {
  width: 100%;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-box {
  position: relative;
  overflow: hidden;
  min-height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.45rem 1rem;
  border: 1px solid rgb(var(--brand-burgundy-rgb) / 0.08);
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.95), rgb(var(--brand-off-white-rgb) / 0.88)),
    linear-gradient(135deg, rgb(var(--brand-peach-rgb) / 0.18), rgb(var(--brand-pink-surface-rgb) / 0.12));
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgb(255 255 255 / 0.62);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.benefit-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #b72b31 0%, #c83a3f 62%, #f5b83d 100%);
}

.benefit-box:nth-child(2)::before {
  background: linear-gradient(90deg, #ffb6a6 0%, #b72b31 52%, #c83a3f 100%);
}

.benefit-box:nth-child(3)::before {
  background: linear-gradient(90deg, #f5b83d 0%, #c83a3f 55%, #741515 100%);
}

.benefit-box:nth-child(4)::before {
  background: linear-gradient(90deg, #b72b31 0%, #f5b83d 48%, #c83a3f 100%);
}

.benefit-box::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: -1rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgb(var(--brand-coral-rgb) / 0.18) 0%, transparent 72%);
  filter: blur(14px);
}

.benefit-box p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 240px;
  font-size: clamp(1.02rem, 1.9vw, 1.28rem);
  line-height: 1.28;
  font-weight: 600;
  color: var(--brand-maroon);
}

.launch-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  padding-top: 0.45rem;
}

.launch-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.9vw, 4.35rem);
  line-height: 0.96;
  font-style: italic;
  font-weight: 700;
  color: var(--brand-maroon);
}

.testimonial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 220px;
  min-height: 56px;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgb(var(--brand-burgundy-rgb) / 0.16);
  border-radius: 9999px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.94), rgb(var(--brand-off-white-rgb) / 0.9)),
    linear-gradient(135deg, rgb(var(--brand-peach-rgb) / 0.14), rgb(var(--brand-pink-surface-rgb) / 0.12));
  box-shadow: 0 18px 40px rgb(var(--brand-burgundy-rgb) / 0.12);
  color: var(--brand-burgundy);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.testimonial-button-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.testimonial-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgb(var(--brand-burgundy-rgb) / 0.16);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(var(--brand-pink-surface-rgb) / 0.94)),
    linear-gradient(135deg, rgb(var(--brand-peach-rgb) / 0.16), rgb(var(--brand-pink-surface-rgb) / 0.16));
  color: var(--brand-maroon);
}

.footer-note {
  margin: 0;
  padding-top: 0.1rem;
  font-size: clamp(1.15rem, 2.2vw, 1.95rem);
  line-height: 1.2;
  font-style: italic;
  font-weight: 700;
  color: var(--brand-brown);
}

@media (max-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) and (max-height: 980px) {
  .coming-soon-page {
    padding: 0.85rem 1rem;
  }

  .coming-soon-shell {
    gap: 1.1rem;
    padding: 1.1rem 1.45rem 1.25rem;
  }

  .hero-logo {
    width: clamp(92px, 8.5vw, 126px);
  }

  .hero-subtitle {
    margin-top: 0.75rem;
  }

  .hero-tagline {
    margin-top: 0.45rem;
  }

  .hero-description {
    margin-top: 0.75rem;
    line-height: 1.68;
  }

  .benefit-grid {
    gap: 0.8rem;
  }

  .benefit-box {
    min-height: 132px;
    padding: 1.15rem 0.9rem;
  }

  .launch-block {
    gap: 0.9rem;
    padding-top: 0.15rem;
  }

  .launch-title {
    font-size: clamp(2.05rem, 4.4vw, 3.85rem);
  }

  .testimonial-button {
    min-height: 52px;
    padding: 0.8rem 1.45rem;
  }

  .footer-note {
    font-size: clamp(1.05rem, 1.9vw, 1.7rem);
  }
}

@media (max-width: 640px) {
  .coming-soon-page {
    display: block;
    padding: 1rem 0.85rem 1.6rem;
  }

  .coming-soon-shell {
    width: 100%;
    gap: 1.3rem;
    border-radius: 1.65rem;
    padding: 1.15rem 1rem 1.45rem;
  }

  .hero-title {
    letter-spacing: 0.04em;
  }

  .hero-description {
    line-height: 1.72;
  }

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

  .benefit-box {
    min-height: 128px;
    border-radius: 1.4rem;
  }

  .launch-block {
    gap: 1rem;
  }

  .testimonial-button {
    width: 100%;
    max-width: 280px;
  }
}
