:root {
  color-scheme: light;
  --bg: #f3f4f6;
  --text: #111318;
  --muted: #68707d;
  --line: rgba(17, 19, 24, 0.12);
  --line-soft: rgba(17, 19, 24, 0.07);
  --card: rgba(255, 255, 255, 0.8);
  --card-deep: rgba(247, 248, 250, 0.86);
  --shadow: 0 30px 90px rgba(15, 23, 42, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --primary: #111318;
  --primary-text: #ffffff;
  --accent: #6547f5;
  --accent-rgb: 101, 71, 245;
}

:root[data-product="lumus"] {
  --accent: #6547f5;
  --accent-rgb: 101, 71, 245;
}

:root[data-product="ecoss"] {
  --accent: #087f58;
  --accent-rgb: 8, 127, 88;
}

:root[data-product="uynis"] {
  --accent: #1267d6;
  --accent-rgb: 18, 103, 214;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  display: grid;
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  padding: clamp(12px, 3vw, 34px);
  place-items: center;
  background:
    linear-gradient(rgba(17, 19, 24, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 24, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(var(--accent-rgb), 0.1), transparent 32rem),
    var(--bg);
  background-size: 56px 56px, 56px 56px, auto, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.42);
  outline-offset: 4px;
}

.coming-card {
  position: relative;
  display: grid;
  width: min(100%, 760px);
  min-height: min(610px, calc(100svh - clamp(24px, 6vw, 68px)));
  padding: clamp(42px, 7vw, 74px) clamp(24px, 7vw, 76px);
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(145deg, var(--card), var(--card-deep));
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(26px) saturate(1.05);
  -webkit-backdrop-filter: blur(26px) saturate(1.05);
}

.coming-card::before {
  position: absolute;
  inset: 11px;
  border: 1px solid var(--line-soft);
  border-radius: 23px;
  content: "";
  pointer-events: none;
}

.coming-card::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(44%, 240px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.72), transparent);
  content: "";
  transform: translateX(-50%);
}

.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 590px);
  align-items: center;
  flex-direction: column;
}

.cooking-art {
  width: clamp(112px, 17vw, 148px);
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 20px 26px rgba(15, 23, 42, 0.15));
  animation: cook 3.2s cubic-bezier(.22, 1, .36, 1) infinite;
}

.product-label {
  display: inline-flex;
  margin: 0 0 17px;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 830;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.1);
  content: "";
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 690;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.description {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.66;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1), border-color 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-text);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.36);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(var(--accent-rgb), 0.36);
  background: rgba(var(--accent-rgb), 0.06);
}

.button span {
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.button:hover span {
  transform: translateX(3px);
}

.availability {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

@keyframes cook {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  46% { transform: translateY(-8px) rotate(1deg); }
  62% { transform: translateY(-6px) rotate(-0.4deg); }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #08090b;
    --text: #f4f5f7;
    --muted: #a7adb7;
    --line: rgba(255, 255, 255, 0.15);
    --line-soft: rgba(255, 255, 255, 0.075);
    --card: rgba(31, 31, 32, 0.93);
    --card-deep: rgba(15, 15, 16, 0.93);
    --shadow: 0 32px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.11);
    --primary: #f4f5f7;
    --primary-text: #111318;
  }

  :root[data-product="lumus"] { --accent: #ac9aff; }
  :root[data-product="ecoss"] { --accent: #63d6ad; }
  :root[data-product="uynis"] { --accent: #83baff; }

  body {
    background:
      linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
      radial-gradient(circle at 50% 38%, rgba(var(--accent-rgb), 0.13), transparent 32rem),
      var(--bg);
    background-size: 56px 56px, 56px 56px, auto, auto;
  }

  .cooking-art {
    filter: invert(1) drop-shadow(0 20px 28px rgba(var(--accent-rgb), 0.18));
  }

  .button-secondary {
    background: rgba(255, 255, 255, 0.055);
  }

  .button-secondary:hover {
    background: rgba(var(--accent-rgb), 0.1);
  }
}

@media (max-width: 600px) {
  .coming-card {
    min-height: calc(100svh - 24px);
    padding: 48px 22px 42px;
    border-radius: 25px;
  }

  .coming-card::before {
    inset: 8px;
    border-radius: 18px;
  }

  .cooking-art {
    margin-bottom: 22px;
  }

  .actions,
  .button {
    width: 100%;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 38px;
  }

  .description {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@supports not (backdrop-filter: blur(20px)) {
  .coming-card {
    background: var(--bg);
  }
}
