:root {
  --bg: #f5f7fb;
  --text: #1a1d2c;
  --muted: #5e6478;
  --accent: #ff5c8d;
  --accent-dark: #d73f6e;
  --card: #ffffff;
  --border: #e5e9f5;
  --shadow: 0 24px 48px rgba(26, 29, 44, 0.08);
  font-size: clamp(15px, 1.05vw + 12px, 17px);
}

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(245, 247, 251, 0.8);
  border-bottom: 1px solid rgba(229, 233, 245, 0.7);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.1rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  padding: clamp(3rem, 10vw, 6rem) 0;
}

.hero-content {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 8vw, 3.2rem);
  line-height: 1.1;
}

.lead {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.cta-btn {
  appearance: none;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(255, 92, 141, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 24px 40px rgba(215, 63, 110, 0.4);
}

.hero-visual {
  justify-self: end;
}

.pill-pack {
  display: grid;
  grid-template-columns: repeat(3, 80px);
  gap: 0.9rem;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #eef2ff);
  box-shadow: var(--shadow);
}

.pill-pack span {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 92, 141, 0.35), rgba(111, 136, 255, 0.6));
  position: relative;
  overflow: hidden;
}

.pill-pack span::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(2px);
}

.section-header {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.section-header h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
}

.section-header p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 580px;
}

.gallery {
  padding: 2rem 0 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.2rem);
  padding-bottom: 3rem;
}

.graphic-card {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.graphic-card.highlight {
  outline: 3px solid var(--accent);
  transform: translateY(-6px);
}

.graphic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 48px rgba(26, 29, 44, 0.12);
}

.graphic-figure {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(130deg, rgba(255, 92, 141, 0.18), rgba(111, 136, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.graphic-figure img {
  border-radius: 18px;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.graphic-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.graphic-body h3 {
  margin: 0;
  font-size: 1.25rem;
}

.graphic-copy {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.share-btn {
  align-self: flex-start;
  appearance: none;
  border: none;
  border-radius: 14px;
  padding: 0.65rem 1.2rem;
  background: rgba(255, 92, 141, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.share-btn:hover,
.share-btn:focus-visible {
  background: rgba(255, 92, 141, 0.22);
  transform: translateY(-1px);
}

.share-feedback {
  font-size: 0.85rem;
  color: var(--muted);
  min-height: 1em;
}

.feature-strip {
  background: #fff;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-strip article h3 {
  margin: 0 0 0.6rem;
}

.feature-strip article p {
  color: var(--muted);
  margin: 0;
}

.ads-placeholder {
  padding: 4rem 0;
}

.ads-note {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.ads-frame {
  border: 2px dashed var(--border);
  border-radius: 18px;
  height: 160px;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
}

.suggestion-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(255, 92, 141, 0.08), rgba(111, 136, 255, 0.08));
}

.suggestion-form {
  margin: 0 auto;
  width: min(620px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.8rem, 5vw, 2.6rem);
  box-shadow: 0 24px 48px rgba(26, 29, 44, 0.08);
  border: 1px solid rgba(229, 233, 245, 0.8);
  display: grid;
  gap: 1.5rem;
}

.form-field {
  display: grid;
  gap: 0.6rem;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  border-radius: 16px;
  border: 1px solid rgba(26, 29, 44, 0.12);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #f9fafd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 92, 141, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 92, 141, 0.2);
  background: #fff;
}

.form-submit {
  justify-self: start;
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(255, 92, 141, 0.32);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 24px 40px rgba(215, 63, 110, 0.35);
}

.recaptcha-wrapper {
  display: flex;
  justify-content: center;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.share-body {
  background: var(--bg);
}

.share-main {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.share-section .container {
  display: grid;
  place-items: center;
}

.share-card {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 6vw, 3rem);
  background: #fff;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(229, 233, 245, 0.9);
  box-shadow: 0 32px 64px rgba(26, 29, 44, 0.12);
}

.share-card.is-visible {
  display: grid;
}

.share-preview figure {
  margin: 0;
  background: linear-gradient(135deg, rgba(255, 92, 141, 0.18), rgba(111, 136, 255, 0.16));
  border-radius: 26px;
  padding: 1.5rem;
  display: grid;
  place-items: center;
}

.share-preview img {
  width: 100%;
  height: auto;
  max-height: 420px;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 18px 34px rgba(26, 29, 44, 0.12);
  background: rgba(255, 255, 255, 0.65);
}

.share-panel {
  display: grid;
  gap: 1.5rem;
}

.share-tag {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0;
}

.share-copy {
  margin: 0;
  color: var(--muted);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-btn,
.share-btn:visited {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  border-radius: 14px;
  padding: 0.75rem 1.4rem;
  background: rgba(255, 92, 141, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}

.share-btn:hover,
.share-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 92, 141, 0.2);
}

.share-btn.ghost {
  background: transparent;
  border: 1px dashed rgba(255, 92, 141, 0.35);
}

.share-btn.ghost:hover,
.share-btn.ghost:focus-visible {
  background: rgba(255, 92, 141, 0.08);
}

.share-email-form {
  display: grid;
  gap: 1.25rem;
}

.form-feedback {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-feedback[data-state="success"] {
  color: #228b5f;
}

.form-feedback[data-state="error"] {
  color: #d73f6e;
}

.share-empty {
  display: none;
  text-align: center;
  background: #fff;
  padding: clamp(2.5rem, 6vw, 3.5rem);
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 28px 54px rgba(26, 29, 44, 0.1);
  gap: 1rem;
  justify-items: center;
}

.share-empty.is-visible {
  display: grid;
}

.share-empty h1 {
  margin: 0;
}

.share-empty p {
  margin: 0;
  color: var(--muted);
}

.share-empty .cta-btn {
  margin-top: 0.5rem;
}

.page-hero {
  padding: clamp(3rem, 9vw, 5rem) 0;
  background: linear-gradient(135deg, rgba(255, 92, 141, 0.12), rgba(111, 136, 255, 0.1));
}

.page-hero .container {
  width: min(900px, 92vw);
  display: grid;
  gap: 1.5rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 3.2rem);
  line-height: 1.15;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
}

.page-content {
  padding: clamp(2.5rem, 7vw, 4rem) 0;
}

.page-content .container {
  width: min(900px, 92vw);
  display: grid;
  gap: clamp(1.8rem, 4vw, 2.6rem);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.2rem);
}

.info-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(229, 233, 245, 0.8);
  padding: 1.6rem;
  box-shadow: 0 18px 36px rgba(26, 29, 44, 0.08);
}

.info-card h3 {
  margin: 0 0 0.6rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.8rem, 5vw, 2.6rem);
  align-items: start;
}

.contact-details {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(229, 233, 245, 0.8);
  padding: 1.8rem;
  box-shadow: 0 18px 32px rgba(26, 29, 44, 0.08);
  display: grid;
  gap: 0.9rem;
}

.contact-details h2 {
  margin: 0;
}

.contact-details p {
  margin: 0;
  color: var(--muted);
}

.contact-details a {
  color: var(--accent-dark);
  font-weight: 600;
}

.policy-content {
  background: #fff;
  border-radius: 26px;
  border: 1px solid rgba(229, 233, 245, 0.9);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 22px 40px rgba(26, 29, 44, 0.08);
  display: grid;
  gap: 1.5rem;
  line-height: 1.7;
  color: var(--muted);
}

.policy-content h2 {
  margin: 0;
  color: var(--text);
}

.policy-content ul {
  margin: 0;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.5rem;
}

.policy-content li {
  margin: 0;
}

.site-footer {
  padding: 2rem 0;
  background: #131524;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: min(640px, calc(100vw - 2rem));
  background: rgba(19, 21, 36, 0.96);
  color: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 24px 58px rgba(12, 14, 26, 0.4);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-accept,
.cookie-more {
  appearance: none;
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.2s ease, opacity 0.2s ease;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 36px rgba(255, 92, 141, 0.32);
}

.cookie-accept:hover,
.cookie-accept:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.cookie-more {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cookie-more:hover,
.cookie-more:focus-visible {
  transform: translateY(-2px);
  opacity: 0.85;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 1rem;
    padding: 1.1rem 1.2rem;
    border-radius: 16px;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-accept,
  .cookie-more {
    width: 100%;
    justify-content: center;
  }
}

.footer-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

@media (max-width: 720px) {
  .site-header .container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    justify-self: center;
  }
}

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

