:root {
  --bg: #f6f2ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #241734;
  --muted: #6a5a7d;
  --line: rgba(101, 54, 165, 0.14);
  --accent: #cb11ab;
  --accent-strong: #8f1fff;
  --accent-soft: #ffe0f7;
  --success: #1f9d62;
  --shadow: 0 28px 70px rgba(120, 27, 172, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(203, 17, 171, 0.18), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(143, 31, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #fdf9ff 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  width: 280px;
  height: 280px;
  top: 80px;
  right: -110px;
  background: rgba(203, 17, 171, 0.22);
}

.page-shell::after {
  width: 220px;
  height: 220px;
  bottom: 80px;
  left: -90px;
  background: rgba(143, 31, 255, 0.18);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 26px 0 10px;
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 0 0 8px rgba(203, 17, 171, 0.08);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(203, 17, 171, 0.18);
  box-shadow: 0 14px 30px rgba(62, 23, 108, 0.08);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.phone-link:hover,
.phone-link:focus-visible,
.store-link:hover,
.store-link:focus-visible,
.copy-button:hover,
.copy-button:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  transform: translateY(-2px);
}

.hero {
  padding: 28px 0 54px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.93) 0%, rgba(250, 243, 255, 0.86) 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-heading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

.hero-title {
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-title span {
  color: var(--accent);
}

.hero-text,
.section-note,
.legal-intro,
.legal p,
.legal li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.promo-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  color: #fff;
  position: relative;
  min-width: 0;
}

.promo-panel::before,
.promo-panel::after {
  display: none;
}

.promo-panel > * {
  position: relative;
  z-index: 1;
}

.promo-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
  min-height: 100%;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #2e163e 0%, #69137f 52%, #cb11ab 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  text-align: center;
}

.promo-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.82;
}

.promo-code {
  font-size: clamp(1.25rem, 1.75vw, 1.82rem);
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.copy-button,
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.copy-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  width: 100%;
}

.copy-button.is-copied {
  background: rgba(31, 157, 98, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.copy-hint {
  font-size: 0.84rem;
  line-height: 1.3;
  opacity: 0.84;
}

.promo-date-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.promo-date {
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.1;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #241734;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  overflow-wrap: anywhere;
}

.promo-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fact-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(203, 17, 171, 0.12);
  min-width: 0;
}

.fact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.fact-card span {
  color: var(--muted);
  line-height: 1.55;
}

.brands-section,
.legal-section {
  padding: 0 0 78px;
}

.section-heading {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}

.brands-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brand-chip {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(203, 17, 171, 0.12);
  box-shadow: 0 16px 28px rgba(62, 23, 108, 0.06);
}

.store-link {
  margin-top: 12px;
  width: fit-content;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 34px rgba(143, 31, 255, 0.24);
}

.promo-panel .store-link {
  width: 100%;
  margin-top: 0;
}

.section-note {
  max-width: 780px;
}

.site-footer {
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  align-items: flex-start;
}

.footer-note {
  max-width: 320px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(203, 17, 171, 0.14);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.legal-hero {
  padding: 28px 0 18px;
}

.legal-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  letter-spacing: -0.04em;
}

.legal {
  padding: 0 0 66px;
}

.legal article {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(203, 17, 171, 0.1);
}

.legal h2 {
  margin: 28px 0 14px;
  font-size: 1.35rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal ul {
  margin: 0;
  padding-left: 20px;
}

.legal li + li,
.legal p + p {
  margin-top: 10px;
}

@media (max-width: 960px) {
  .hero-card,
  .promo-facts,
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .promo-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero-card,
  .legal-card,
  .legal article {
    padding: 24px;
  }

  .site-header__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 18px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero-card,
  .legal-card,
  .legal article {
    padding: 22px 18px;
  }

  .hero-text,
  .section-note,
  .legal-intro,
  .legal p,
  .legal li {
    font-size: 1rem;
  }

  .phone-link,
  .copy-button,
  .store-link,
  .footer-nav a {
    width: 100%;
  }

  .promo-code {
    font-size: 2rem;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .promo-panel {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .promo-card {
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
}
