:root {
  --surface: rgba(255, 250, 242, 0.55);
  --surface-strong: rgba(255, 250, 242, 0.78);
  --surface-soft: rgba(255, 255, 255, 0.35);
  --text: #2f2623;
  --muted: #6d625c;
  --gold: #d3a133;
  --purple: #7c4d9b;
  --shadow: 0 24px 60px rgba(110, 80, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 77, 155, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(211, 161, 51, 0.12), transparent 24%),
    linear-gradient(180deg, #faf5ee 0%, #f6efe6 48%, #f2e8dd 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: -10%;
  right: -10%;
  height: 240px;
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
}

body::before {
  bottom: 14%;
  background: rgba(232, 218, 198, 0.55);
  filter: blur(8px);
}

body::after {
  bottom: 8%;
  background: rgba(216, 197, 212, 0.42);
  filter: blur(10px);
}

.page-wash {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

.page-wash-top {
  top: -120px;
  left: -80px;
  background: rgba(124, 77, 155, 0.12);
}

.page-wash-bottom {
  right: -100px;
  bottom: 40px;
  background: rgba(211, 161, 51, 0.14);
}

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

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 14px;
}

.brand,
.nav a,
h1,
h2,
h3 {
  text-decoration: none;
}

.brand,
h1,
h2 {
  font-family: "Fraunces", serif;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 230px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.75);
  box-shadow: 0 10px 24px rgba(124, 77, 155, 0.08);
}

.brand-hero {
  padding: 14px 0 14px;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 20px 8px 8px;
}

.intro-strip-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  min-height: 430px;
  padding: 72px 58px 78px;
  border-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 239, 228, 0.92), rgba(244, 237, 229, 0.86)),
    radial-gradient(circle at 15% 16%, rgba(124, 77, 155, 0.08), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(211, 161, 51, 0.16), transparent 24%);
  box-shadow: var(--shadow);
}

.intro-strip-hero::before,
.intro-strip-hero::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  border-radius: 50%;
  pointer-events: none;
}

.intro-strip-hero::before {
  bottom: 44px;
  height: 100px;
  background: rgba(245, 231, 198, 0.62);
}

.intro-strip-hero::after {
  bottom: -10px;
  height: 138px;
  background: rgba(214, 195, 213, 0.52);
}

.intro-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  max-width: 100%;
  text-align: center;
}

.eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--purple);
}

h1 {
  margin: 0 auto;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.98;
  color: #3c2e35;
  font-style: italic;
  text-align: center;
  max-width: none;
}

.hero-text,
.section-heading p,
.panel p,
.feature-card p,
.carousel-copy p,
.faq-item p,
.signup-note p,
.logo-band p,
.site-footer {
  color: var(--muted);
}

.hero-text {
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 62ch;
  align-self: center;
  text-align: center;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-actions-stack {
  align-self: center;
  justify-self: center;
  margin-top: 2.8rem;
}

.button,
.carousel-button,
.carousel-dot {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.button:focus-visible,
.carousel-button:hover,
.carousel-button:focus-visible,
.carousel-dot:hover,
.carousel-dot:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #7c4d9b, #d3a133);
  box-shadow: 0 14px 28px rgba(124, 77, 155, 0.18);
}

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

.logo-band {
  margin: 18px auto 0;
  padding: 20px 22px 8px;
  text-align: center;
  font-size: 1rem;
}

.section {
  position: relative;
  padding: 84px 0 0;
}

.section-flow::before {
  content: "";
  position: absolute;
  left: 1%;
  right: 1%;
  top: 36px;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.34), rgba(255, 250, 242, 0.18));
  border-radius: 48% 52% 46% 54% / 10% 10% 14% 14%;
  z-index: -1;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.section-heading p:last-child {
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.carousel,
.steps,
.feature-grid,
.faq-list {
  margin: 30px auto 0;
}

.steps,
.feature-grid,
.faq-list {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.steps,
.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.current-features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.premium-groups {
  display: grid;
  gap: 28px;
  max-width: 980px;
  margin: 30px auto 0;
}

.premium-group {
  display: grid;
  gap: 14px;
}

.premium-grid {
  align-items: start;
  margin-top: 0;
}


.premium-grid > .feature-card {
  height: 100%;
}

.premium-grid-addons {
  align-items: stretch;
}

.premium-group .premium-grid-addons {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-grid-addons > .feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.premium-divider {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 0;
  margin-top: 10px;
  margin-bottom: -4px;
}

.premium-label {
  margin: 0;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(124, 77, 155, 0.1);
  color: #5f377c;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.premium-theme-pack {
  grid-column: 1 / -1;
}

.carousel,
.panel,
.feature-card,
.faq-item,
.quote-card,
.signup-layout {
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.carousel,
.panel,
.feature-card,
.faq-item {
  border-radius: 32px;
}

.carousel {
  padding: 24px;
}

.carousel-stage {
  position: relative;
  min-height: 620px;
}

.carousel-slide {
  display: none;
  gap: 18px;
}

.carousel-slide.is-active {
  display: grid;
}

.carousel-image {
  width: 100%;
  aspect-ratio: 1920 / 1006;
  object-fit: contain;
  border-radius: 24px;
  background: #efe7da;
  box-shadow: inset 0 0 0 1px rgba(130, 103, 86, 0.08);
}

.carousel-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 10px 4px 0;
  text-align: center;
}

.carousel-copy h3 {
  margin: 0;
}

.carousel-copy p {
  margin: 0 auto;
  max-width: 52ch;
  line-height: 1.7;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.carousel-button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(124, 77, 155, 0.2);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c4d9b, #d3a133);
}

.step-number {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: #5f377c;
}

.panel,
.feature-card,
.faq-item {
  padding: 22px;
  text-align: center;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.panel p,
.feature-card p,
.faq-item p,
.signup-note p {
  margin: 0;
  line-height: 1.75;
}

.section-accent::before {
  background: linear-gradient(180deg, rgba(249, 240, 226, 0.42), rgba(241, 229, 240, 0.26));
}

.future-store-announcement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  grid-column: 1 / -1;
  text-align: center;
}

.future-store-announcement h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.future-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.future-store-badge {
  width: 190px;
  height: auto;
}
.future-card {
  background: rgba(244, 236, 247, 0.38);
}

.quote-section {
  padding-top: 68px;
}

.quote-card {
  padding: 38px 42px;
  border-radius: 44px;
  text-align: center;
}

blockquote {
  margin: 0 auto;
  max-width: 38ch;
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.signup-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin: 28px auto 0;
  max-width: 980px;
  padding: 22px;
  border-radius: 36px;
  justify-items: center;
}

.signup-form,
.signup-note {
  padding: 24px;
  border-radius: 28px;
  background: var(--surface-strong);
}

.signup-form {
  display: flex;
  align-items: center;
  gap: 14px;
}

.signup-form input {
  flex: 1;
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font: inherit;
  box-shadow: inset 0 0 0 1px rgba(130, 103, 86, 0.12);
}

.signup-form button {
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #5f377c;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.signup-note code {
  font-family: Consolas, monospace;
}

.signup-layout-simple {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-direct-button {
  min-width: 220px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 72px 0 36px;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--purple);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 920px) {
  .current-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .premium-group .premium-grid-addons {
    grid-template-columns: 1fr 1fr;
  }

  .intro-copy {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .eyebrow {
    text-align: center;
  }
  .site-header,
  .intro-strip,
  .steps,
  .feature-grid,
  .signup-layout,
  .faq-list,
  .carousel-copy,
  .carousel-controls {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions,
  .carousel-copy,
  .carousel-controls {
    justify-content: center;
  }

  .carousel-stage {
    min-height: 0;
  }

  .carousel-copy {
    display: grid;
  }

  .carousel-controls {
    display: grid;
  }

  .carousel-dots {
    justify-content: center;
  }

  .signup-form {
    flex-direction: column;
    align-items: stretch;
  }

  .signup-form button,
  .signup-form input {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .current-features-grid {
    grid-template-columns: 1fr;
  }

  .premium-group .premium-grid-addons {
    grid-template-columns: 1fr;
  }

  .site-header,
  main,
  .site-footer {
    width: min(100% - 20px, 1120px);
  }

  .brand-logo {
    width: 180px;
  }

  .intro-strip-hero,
  .carousel,
  .panel,
  .feature-card,
  .faq-item,
  .quote-card,
  .signup-layout,
  .signup-form,
  .signup-note {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro-strip-hero,
  .carousel,
  .quote-card,
  .signup-layout,
  .panel,
  .feature-card,
  .faq-item {
    border-radius: 26px;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


















