:root {
  --cream: #fff8ef;
  --cream-2: #fff1df;
  --blush: #f4c7d5;
  --lavender: #d9c7ff;
  --purple: #8a4fd3;
  --purple-dark: #56317f;
  --gold: #d9a84f;
  --charcoal: #27212d;
  --muted: #6f6278;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(69, 38, 96, 0.15);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 0% 8%, rgba(244,199,213,.65) 0 180px, transparent 181px),
    radial-gradient(circle at 97% 18%, rgba(217,199,255,.74) 0 260px, transparent 261px),
    linear-gradient(180deg, var(--cream), #fffdf9 40%, var(--cream-2));
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 239, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(138,79,211,.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 1.18rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blush));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(138,79,211,.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: .94rem;
  color: var(--purple-dark);
}

.nav-links a {
  padding: 9px 7px;
  border-radius: 999px;
}

.nav-links a:hover { background: rgba(217,199,255,.36); }

.menu-toggle {
  display: none;
  border: 0;
  background: var(--purple);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.hero {
  padding: 34px 0 64px;
  min-height: 760px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .82fr);
  gap: 58px;
  align-items: start;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(138,79,211,.18);
  color: var(--purple-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: .84rem;
  box-shadow: 0 8px 26px rgba(69,38,96,.08);
}

.spark { color: var(--gold); }

h1, h2, h3 {
  line-height: 1.05;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(3.1rem, 6.2vw, 5.75rem);
  letter-spacing: -.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  letter-spacing: -.04em;
}

h3 { font-size: 1.55rem; }

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  border: 2px solid transparent;
  transition: .2s ease;
}

.button.primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 16px 30px rgba(138,79,211,.25);
}

.button.secondary {
  background: rgba(255,255,255,.75);
  border-color: rgba(138,79,211,.22);
  color: var(--purple-dark);
}

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

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  background: rgba(217,199,255,.45);
  color: var(--purple-dark);
  border: 1px solid rgba(138,79,211,.14);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: .86rem;
}

.signup-top-card {
  width: 100%;
  max-width: 500px;
  justify-self: end;
  margin-top: 84px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(138,79,211,.16);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: visible;
}

.signup-top-card:before {
  content: '';
  position: absolute;
  inset: -62px -62px auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,199,255,.48), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.signup-top-card:after {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  width: 24px;
  height: 14px;
  border: 1px solid rgba(138,79,211,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  z-index: 2;
  pointer-events: none;
}

.brevo-signup-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 620px;
  max-width: 100%;
  border: 0;
  border-radius: 26px;
  background: transparent;
}

.section { padding: 72px 0; }

.section.alt { background: rgba(255,255,255,.42); }

.section-header {
  max-width: 770px;
  margin-bottom: 32px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.panel {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(138,79,211,.15);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
}

.list li:before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(138,79,211,.14);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 35px rgba(69,38,96,.09);
  min-height: 100%;
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(138,79,211,.16), rgba(244,199,213,.5));
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

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

.card-link {
  color: var(--purple-dark);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-preview {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}

.thumb {
  min-height: 102px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(244,199,213,.82), rgba(217,199,255,.9));
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.tag {
  font-family: Arial, sans-serif;
  font-size: .76rem;
  font-weight: 800;
  color: var(--purple-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer {
  padding: 48px 0;
  background: rgba(39,33,45,.96);
  color: rgba(255,255,255,.83);
  font-family: Arial, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}

.footer a {
  color: #fff;
  display: block;
  margin: 8px 0;
}

.footer small { color: rgba(255,255,255,.62); }

.page-hero {
  padding: 66px 0 34px;
}

.page-hero .lead { max-width: 760px; }

.contact-form {
  display: grid;
  gap: 14px;
}

.email-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(138,79,211,.2);
  border-radius: 18px;
  padding: 14px 15px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  background: rgba(255,255,255,.92);
}

.email-form button,
.contact-form button {
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .signup-top-card {
    justify-self: stretch;
    max-width: 680px;
    margin-top: 8px;
  }

  .brevo-signup-frame {
    height: 640px;
  }
}

@media (max-width: 880px) {
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    background: #fff;
    border: 1px solid rgba(138,79,211,.15);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open { display: flex; }

  .menu-toggle { display: inline-flex; }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1120px);
  }

  .hero {
    padding-top: 36px;
    min-height: auto;
  }

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

  .post-preview {
    grid-template-columns: 1fr;
  }

  .signup-top-card {
    padding: 12px;
    border-radius: 28px;
  }

  .brevo-signup-frame {
    height: 670px;
  }
}
.article-panel {
  max-width: 760px;
  padding: 36px;
}

.article-panel p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-panel h2 {
  margin-top: 34px;
}

@media (min-width: 881px) {
  .article-panel {
    width: 100%;
  }

  .article-panel + .panel {
    align-self: start;
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 880px) {
  .article-panel {
    max-width: 100%;
  }
}

/* Product mockup section */

.product-feature-copy {
  align-self: stretch;
}

.product-mockup-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(138,79,211,.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 14px;
  overflow: hidden;
  align-self: stretch;
}

.product-mockup-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(69,38,96,.08);
}

@media (max-width: 880px) {
  .product-mockup-card img {
    min-height: auto;
    object-fit: contain;
  }
}

/* Homepage featured product block */

.featured-product-section {
  padding-top: 24px;
}

.featured-product {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(138,79,211,.14);
  border-radius: 38px;
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.featured-product:after {
  content: '';
  position: absolute;
  right: -70px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,199,255,.55), transparent 70%);
  pointer-events: none;
}

.featured-product-copy,
.featured-product-image {
  position: relative;
  z-index: 1;
}

.featured-product-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.featured-product-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(69,38,96,.12);
  border: 1px solid rgba(138,79,211,.12);
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

@media (max-width: 880px) {
  .featured-product {
    grid-template-columns: 1fr;
  }

  .featured-product-image img {
    min-height: auto;
    object-fit: contain;
  }
}

@media (max-width: 620px) {
  .featured-product {
    padding: 18px;
    border-radius: 30px;
  }
}

/* Product mockup section */

.product-feature-copy {
  align-self: stretch;
}

.product-mockup-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(138,79,211,.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 14px;
  overflow: hidden;
  align-self: stretch;
}

.product-mockup-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(69,38,96,.08);
}

@media (max-width: 880px) {
  .product-mockup-card img {
    min-height: auto;
    object-fit: contain;
  }
}
