@font-face {
  font-family: "museo-sans";
  src: url("https://assets.lulu.com/media/fonts/MuseoSans/woff2/MuseoSans_500.woff2")
    format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
}

@font-face {
  font-family: "museo-sans";
  src: url("https://assets.lulu.com/media/fonts/MuseoSans/woff2/MuseoSans_700.woff2")
    format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}

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

:root {
  --color-primary: #303a4d;
  --color-muted: #5d6a75;
  --color-dimmed: #6d7880;
  --color-brand: #564fd0;
  --color-brand-light: #e8e7f4;
  --color-surface-base: #f5f4f2;
  --color-surface-light: #fafafa;
  --color-surface-elevated: #fafaf9;
  --color-border-subtle: #f5f4f2;
  --color-footer-bg: #192229;
  --color-footer-text: #fbfbfc;
  --color-footer-muted: #a7adb2;
  --font-heading: "Calistoga", cursive;
  --font-body: "museo-sans", system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── Nav ── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 12px 0 16px;
}

.nav-logo svg {
  display: block;
  height: 31px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-muted);
}

.nav-divider {
  width: 2px;
  height: 22px;
  background: var(--color-border-subtle);
  align-self: center;
}

.nav-links a {
  color: var(--color-brand);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  background: var(--color-brand);
  color: #fbfbfc;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* ── Hero ── */

.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 551px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 400;
  line-height: 76px;
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.2px;
  color: var(--color-primary);
}

.hero-hint {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-muted);
}

.hero-stats {
  display: flex;
  gap: 12px;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  border-radius: 8px;
  text-align: center;
}

.stat--highlight {
  background: var(--color-surface-elevated);
  color: var(--color-brand);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 50px;
  font-weight: 400;
}

.stat-label {
  font-size: 18px;
  line-height: 24px;
}

/* ── Customization bar ── */

.customization-bar {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 120px;
  border-top: 1px solid var(--color-border-subtle);
  font-size: 16px;
  line-height: 22px;
}

.customization-bar strong {
  font-weight: 700;
}

/* ── Sections ── */

.sections {
  background: var(--color-surface-base);
}

/* ── Section: Button Only (desc left, widgets right) ── */

.section-button-only {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 120px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ── Section: Product Preview (widgets left, desc right) ── */

.section-product-preview {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 120px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ── Section: Product Showcase (desc top, widgets below) ── */

.section-product-showcase {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Use-case description card ── */

.use-case-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px;
  border-radius: 24px;
  flex-shrink: 0;
}

.section-button-only .use-case-card,
.section-product-preview .use-case-card {
  width: 440px;
}

.section-product-showcase .use-case-card {
  width: 570px;
  padding-right: 0;
}

.use-case-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.use-case-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.use-case-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: var(--color-primary);
  color: #fbfbfc;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}

.use-case-category {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.use-case-title {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 50px;
  font-weight: 400;
  color: var(--color-primary);
}

.use-case-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.use-case-desc {
  font-size: 16px;
  line-height: 22px;
  color: var(--color-primary);
}

.use-case-tags {
  display: flex;
  align-items: center;
  gap: 12px;
}

.use-case-tags-label {
  font-size: 12px;
  line-height: 16px;
  color: var(--color-dimmed);
  white-space: nowrap;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--color-brand-light);
  color: var(--color-brand);
  font-size: 12px;
  line-height: 16px;
}

/* ── Widget container ── */

.widget-container {
  width: 100%;
  background: var(--color-surface-light);
  border-radius: 12px;
  padding: 32px;
}

.widget-slot + .widget-slot {
  margin-top: 48px;
}

.section-button-only .widget-slot + .widget-slot {
  margin-top: 20px;
}

.section-button-only .widget-slot {
  text-align: center;
}

/* ── Footer ── */

.footer {
  background: var(--color-footer-bg);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px 40px;
  border-top: 1px solid #2a3640;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 48px;
}

.footer-logos a {
  display: flex;
  align-items: center;
}

.footer-logo-lulu svg {
  height: 26px;
  width: auto;
}

.footer-logo-api svg {
  height: 32px;
  width: auto;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links-copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--color-footer-text);
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-size: 12px;
  line-height: 16px;
  color: var(--color-footer-muted);
  text-align: right;
}

.footer-bcorp a {
  display: flex;
}

.footer-bcorp svg {
  width: 32px;
  height: 55px;
}

/* ── Tablet ── */

@media (max-width: 1440px) {
  .hero {
    flex-direction: column;
    padding: 60px 40px 40px;
    gap: 32px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-stats {
    width: 100%;
    justify-content: center;
  }

  .customization-bar {
    padding: 20px 40px;
  }

  .section-button-only,
  .section-product-preview,
  .section-product-showcase {
    flex-direction: column;
    padding: 40px;
  }

  .section-button-only .use-case-card,
  .section-product-preview .use-case-card,
  .section-product-showcase .use-case-card {
    width: 100%;
    padding-right: 32px;
  }

  .section-button-only .widget-container {
    max-width: 600px;
    margin: 0 auto;
  }

  .section-product-preview .widget-container {
    order: 1;
  }

  .section-product-preview .use-case-card {
    order: 0;
  }
}

/* ── Mobile ── */

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
  }

  .nav-left {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column;
    padding: 40px 24px 32px;
    gap: 32px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 22px;
  }

  .hero-stats {
    width: 100%;
    justify-content: center;
  }

  .stat {
    padding: 24px 16px;
    flex: 1;
  }

  .stat-number {
    font-size: 32px;
    line-height: 40px;
  }

  .stat-label {
    font-size: 14px;
    line-height: 20px;
  }

  .customization-bar {
    padding: 16px 24px;
    font-size: 14px;
    line-height: 20px;
  }

  .section-button-only,
  .section-product-preview,
  .section-product-showcase {
    flex-direction: column;
    padding: 24px 16px;
  }

  .section-button-only .use-case-card,
  .section-product-preview .use-case-card,
  .section-product-showcase .use-case-card {
    width: 100%;
    padding: 24px 16px;
  }

  .section-product-preview .widget-container {
    order: 1;
  }

  .section-product-preview .use-case-card {
    order: 0;
  }

  .use-case-title {
    font-size: 28px;
    line-height: 36px;
  }

  .widget-container {
    padding: 16px;
  }

  .section-button-only .widget-slot {
    padding: 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px 16px 40px;
  }

  .footer-logos {
    justify-content: center;
  }

  .footer-right {
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
  }

  .footer-links-copyright {
    flex: 1;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-copyright {
    text-align: left;
  }
}
