:root {
  color-scheme: light;
  --dark: #080807;
  --ink: #17131f;
  --muted: rgba(23, 19, 31, 0.58);
  --cream: #f7f1e8;
  --gold: #ffc600;
  --violet: #a78bfa;
  --pink: #f0abfc;
  --green: #63b35a;
  --paper: #fbfaff;
  --line: rgba(23, 19, 31, 0.1);
  --glass: rgba(255, 255, 255, 0.05);
  --card-shadow: rgba(0, 0, 0, 0.12) 0 16px 38px;
  --button-shadow: rgba(0, 0, 0, 0.2) 0 5px 15px;
  --radius-card: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--dark) 0 610px, var(--paper) 610px 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

img {
  max-width: 100%;
}

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

.site-header,
.site-footer,
.home-hero,
.section,
.use-case-band,
.subscribe-band {
  width: min(100% - 72px, 1240px);
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 20px 0 12px;
  color: #fff;
}

.brand,
.footer-brand,
.nav a,
.footer-links a,
.mobile-menu-panel a {
  text-decoration: none;
}

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

.brand-logo {
  display: block;
  width: auto;
  height: 38px;
}

.brand-mark {
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.02;
}

.brand-copy strong {
  font-size: 12px;
  font-weight: 900;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
}

.nav a,
.login-link,
.mobile-menu-panel a {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover,
.mobile-menu-panel a:hover {
  color: var(--violet);
}

.header-actions {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.language-switcher {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.language-switcher summary {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  list-style: none;
  backdrop-filter: blur(12px);
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "⌄";
  font-size: 12px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 150px;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(8, 8, 7, 0.94);
  box-shadow: rgba(0, 0, 0, 0.35) 0 18px 46px;
  backdrop-filter: blur(12px);
}

.language-menu a {
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.login-link {
  display: inline-flex;
  min-width: 76px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: var(--button-shadow);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: rgba(255, 198, 0, 0.28) 0 10px 28px, rgba(0, 0, 0, 0.18) 0 12px 30px;
  filter: saturate(1.08);
}

.button-primary,
.button-upgrade {
  background: linear-gradient(135deg, var(--cream), var(--gold));
  color: #16110b;
}

.button-secondary {
  background: transparent;
  color: #ffd35a;
  box-shadow: none;
}

.button-upgrade {
  min-height: 38px;
  padding: 9px 18px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 42px;
  height: 42px;
  gap: 4px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 220px;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(8, 8, 7, 0.92);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0 18px 46px;
  backdrop-filter: blur(12px);
}

.mobile-menu-panel .language-switcher {
  width: 100%;
}

.mobile-menu-panel .language-switcher summary {
  width: 100%;
  justify-content: space-between;
}

.mobile-menu-panel .language-menu {
  position: static;
  margin-top: 8px;
}

.mobile-dots {
  display: none;
}

.home-shell {
  position: relative;
  padding-bottom: 0;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(560px, 1.14fr);
  gap: 54px;
  align-items: center;
  min-height: 520px;
  padding: 58px 0 96px;
  color: #fff;
}

.home-hero::before {
  position: absolute;
  inset: -120px -120px 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 48% 18%, rgba(167, 139, 250, 0.2), transparent 32%),
    radial-gradient(circle at 74% 44%, rgba(255, 198, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #050505, #0b0b0a 78%, rgba(8, 8, 7, 0));
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 54px;
  line-height: 1.14;
  font-weight: 950;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 490px;
  margin: 24px 0 0;
  color: rgba(247, 241, 232, 0.82);
  font-size: 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.trust-strip span {
  display: grid;
  grid-template-columns: 34px auto;
  gap: 9px;
  align-items: center;
  min-width: 128px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.trust-strip strong {
  display: grid;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.18);
  color: #fff;
  font-size: 16px;
}

.trust-strip b {
  color: #fff;
  font-size: 12px;
}

.trust-strip small {
  color: rgba(247, 241, 232, 0.64);
  font-size: 11px;
}

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

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  perspective: 1000px;
}

.hero-tool {
  position: relative;
  display: flex;
  min-height: 350px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: rgba(0, 0, 0, 0.38) 0 28px 70px;
  text-decoration: none;
  transform-origin: center bottom;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  isolation: isolate;
}

.hero-tool::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78));
}

.hero-tool:hover {
  border-color: rgba(240, 171, 252, 0.54);
  transform: translateY(-8px) scale(1.02);
}

.hero-tool-1 {
  transform: rotate(-7deg) translateY(10px);
}

.hero-tool-2 {
  transform: rotate(-2deg) translateY(-8px);
}

.hero-tool-3 {
  transform: rotate(-4deg) translateY(6px);
}

.hero-tool img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tool-copy,
.round-action {
  position: relative;
  z-index: 2;
}

.hero-tool-copy {
  display: grid;
  gap: 2px;
  padding: 22px;
  padding-right: 58px;
}

.hero-tool-copy strong {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.hero-tool-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.round-action {
  position: absolute;
  right: 18px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.tone-purple .round-action {
  background: linear-gradient(135deg, #7c3aed, var(--violet));
}

.tone-pink .round-action {
  background: linear-gradient(135deg, #fb7185, #f472b6);
}

.tone-green .round-action {
  background: linear-gradient(135deg, #8fd36f, #49aa44);
}

.section {
  padding: 62px 0 0;
  scroll-margin-top: 84px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: 24px;
}

.section-heading > div {
  min-width: 0;
}

.centered-heading {
  display: block;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.compact-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.compact-heading a {
  color: rgba(23, 19, 31, 0.68);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.22;
  font-weight: 950;
  text-wrap: balance;
}

.section-heading p {
  margin-bottom: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.product-section {
  margin-top: 36px;
  padding-top: 18px;
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.78fr);
  gap: 18px;
  min-height: 294px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.showcase-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.17) 0 18px 42px;
}

.product-image {
  background: linear-gradient(135deg, #f2ecff, #ffffff);
}

.product-baby {
  background: linear-gradient(135deg, #fff3f8, #ffffff);
}

.product-badge {
  background: linear-gradient(135deg, #effbf1, #ffffff);
}

.product-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.product-image .product-icon,
.product-image .product-button {
  background: linear-gradient(135deg, var(--violet), #8b5cf6);
}

.product-baby .product-icon,
.product-baby .product-button {
  background: linear-gradient(135deg, #fb7fb6, #f9a8d4);
}

.product-badge .product-icon,
.product-badge .product-button {
  background: linear-gradient(135deg, #6fc66a, #a7e7a1);
}

.product-card h3 {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 950;
}

.product-card strong {
  margin-bottom: 12px;
  color: #151515;
  font-size: 14px;
  font-weight: 950;
}

.product-card p {
  margin-bottom: 18px;
  color: rgba(23, 19, 31, 0.64);
  font-size: 14px;
}

.product-button {
  min-height: 38px;
  margin-top: auto;
  padding: 8px 18px;
  color: #fff;
}

.product-visual {
  display: grid;
  gap: 10px;
  align-content: center;
}

.product-visual img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 12px 28px;
}

.product-image .product-visual {
  grid-template-columns: 1fr;
}

.product-image .product-visual img {
  aspect-ratio: 16 / 9;
}

.product-baby,
.product-badge {
  grid-template-columns: minmax(0, 0.84fr) minmax(160px, 0.92fr);
}

.product-baby .product-visual img,
.product-badge .product-visual img {
  align-self: end;
}

.entry-point-section {
  padding-top: 42px;
}

.entry-point-section .section-heading,
.resources-section .section-heading {
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.entry-point-section .section-heading p,
.resources-section .section-heading p {
  max-width: 960px;
}

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

.entry-card {
  display: grid;
  gap: 9px;
  min-height: 168px;
  padding: 18px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: rgba(38, 28, 84, 0.08) 0 14px 32px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.entry-card:hover {
  border-color: rgba(167, 139, 250, 0.34);
  transform: translateY(-4px);
  box-shadow: rgba(38, 28, 84, 0.14) 0 18px 38px;
}

.entry-card span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.entry-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.entry-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-section {
  padding-top: 42px;
}

.workflow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 16px 0 6px;
  list-style: none;
}

.workflow-steps::before {
  position: absolute;
  top: 47px;
  right: 11%;
  left: 11%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(23, 19, 31, 0.16), transparent);
}

.workflow-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.step-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  box-shadow: rgba(167, 139, 250, 0.24) 0 12px 28px;
  font-size: 22px;
  font-weight: 950;
}

.workflow-steps li:nth-child(2) .step-number {
  background: linear-gradient(135deg, #fb7fb6, #f472b6);
}

.workflow-steps li:nth-child(3) .step-number {
  background: linear-gradient(135deg, #f6b73c, #ffc600);
}

.workflow-steps li:nth-child(4) .step-number {
  background: linear-gradient(135deg, #70c56c, #4caf50);
}

.workflow-steps h3 {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 950;
}

.workflow-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.showcase-section {
  padding-top: 44px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.showcase-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1.28;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 8px 20px;
}

.showcase-card span {
  font-size: 13px;
  font-weight: 950;
}

.showcase-card p {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.use-case-band {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 22px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1c1930, #141522);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0 16px 38px;
}

.band-label {
  font-size: 14px;
  font-weight: 950;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.use-case-grid article {
  min-height: 124px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.use-case-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.28);
  color: var(--pink);
}

.use-case-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.use-case-grid h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.use-case-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

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

.testimonial-card {
  position: relative;
  min-height: 164px;
  padding: 24px;
  border: 1px solid rgba(23, 19, 31, 0.06);
  border-radius: 12px;
  background: #fff;
  box-shadow: rgba(38, 28, 84, 0.08) 0 18px 40px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quote {
  position: absolute;
  top: 12px;
  right: 22px;
  color: rgba(167, 139, 250, 0.18);
  font-size: 48px;
  font-weight: 950;
}

.testimonial-card p {
  max-width: 84%;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 850;
}

.testimonial-card div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: rgba(38, 28, 84, 0.18) 0 8px 18px;
}

.testimonial-card small,
.site-footer small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.resources-section {
  padding-top: 44px;
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.article-link span {
  font-weight: 900;
}

.article-link time,
.article-meta {
  color: var(--muted);
  font-size: 13px;
}

.subscribe-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 10px;
  background: #151521;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.18) 0 18px 40px;
}

.subscribe-band h2 {
  margin-bottom: 4px;
  font-size: 20px;
}

.subscribe-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.subscribe-form {
  display: flex;
  justify-content: flex-end;
}

.subscribe-form .button {
  min-height: 42px;
  min-width: 78px;
}

.landing-shell {
  width: min(100% - 72px, 1180px);
  margin: 0 auto;
  padding: 56px 0 82px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: 44px;
  align-items: center;
  color: #fff;
}

.landing-copy {
  max-width: 610px;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.keyword-pills span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.landing-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.landing-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: rgba(0, 0, 0, 0.36) 0 28px 70px;
}

.landing-media img {
  width: 100%;
  aspect-ratio: 1.35;
  display: block;
  object-fit: cover;
}

.landing-media figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
}

.landing-grid,
.landing-process,
.landing-faq,
.landing-related {
  margin-top: 42px;
}

.landing-conversion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(39, 30, 69, 0.96), rgba(18, 15, 27, 0.98));
  box-shadow: rgba(38, 28, 84, 0.18) 0 20px 48px;
  color: #fff;
}

.landing-conversion h2 {
  max-width: 720px;
  margin: 8px 0 8px;
  font-size: 26px;
  line-height: 1.18;
}

.landing-conversion p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.landing-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.landing-conversion .button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

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

.landing-grid article,
.landing-process,
.landing-faq details,
.landing-related {
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: rgba(38, 28, 84, 0.08) 0 16px 36px;
}

.landing-grid article {
  padding: 20px;
}

.landing-grid h2 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.landing-grid p,
.landing-process p,
.landing-faq p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.landing-process {
  padding: 24px;
}

.landing-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-process li {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 16px;
  border-radius: 10px;
  background: #f5f2ff;
}

.landing-process li span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-weight: 950;
}

.landing-faq {
  display: grid;
  gap: 12px;
}

.landing-faq details {
  padding: 18px 20px;
}

.landing-faq summary {
  cursor: pointer;
  font-weight: 950;
}

.landing-faq p {
  margin-top: 12px;
}

.landing-related {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 20px;
  align-items: center;
  padding: 22px;
}

.landing-related h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.landing-related nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.landing-related a {
  padding: 9px 12px;
  border-radius: 999px;
  background: #f5f2ff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.article-shell {
  width: min(100% - 48px, 860px);
  max-width: none;
  margin: 0 auto;
  padding: 62px 0 82px;
}

.article {
  padding: 38px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: rgba(38, 28, 84, 0.08) 0 18px 40px;
}

.article h1 {
  margin-bottom: 24px;
  font-size: 44px;
  line-height: 1.16;
  font-weight: 950;
}

.article h2 {
  margin: 38px 0 12px;
  font-size: 26px;
}

.article p {
  margin-bottom: 18px;
  color: rgba(23, 19, 31, 0.7);
  font-size: 17px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  margin-top: 0;
  padding: 36px 0 46px;
  color: rgba(23, 19, 31, 0.68);
}

.footer-brand {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 950;
}

.site-footer p {
  max-width: 310px;
  margin-bottom: 18px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 850;
}

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

@media (prefers-reduced-motion: no-preference) {
  .product-card,
  .showcase-card,
  .testimonial-card,
  .button {
    will-change: transform;
  }
}

@media (max-width: 1120px) {
  body {
    background: linear-gradient(180deg, var(--dark) 0 960px, var(--paper) 960px 100%);
  }

  .site-header,
  .site-footer,
  .home-hero,
  .landing-shell,
  .section,
  .use-case-band,
  .subscribe-band {
    width: min(100% - 40px, 100%);
  }

  .nav {
    gap: 22px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .landing-hero,
  .landing-related {
    grid-template-columns: 1fr;
  }

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

  .hero-gallery {
    max-width: 840px;
  }

  .product-grid,
  .entry-point-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .use-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body {
    background: linear-gradient(180deg, var(--dark) 0 700px, var(--paper) 700px 100%);
  }

  .site-header {
    position: relative;
    top: auto;
    z-index: 30;
    display: block;
    min-height: 42px;
    padding: 20px 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    top: 18px;
    right: 0;
    display: block;
  }

  .login-link {
    min-width: 54px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .button-upgrade {
    min-width: 76px;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .home-hero {
    min-height: 0;
    gap: 22px;
    padding: 34px 0 38px;
  }

  .landing-shell {
    padding: 34px 0 54px;
  }

  .landing-hero {
    gap: 22px;
  }

  .home-hero::before {
    inset: -120px 0 0;
  }

  h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .lead {
    max-width: 100%;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
    width: 100%;
    min-width: 0;
  }

  .trust-strip span {
    min-width: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    justify-items: start;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
  }

  .trust-strip strong {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .trust-strip b {
    font-size: 12px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .trust-strip small {
    font-size: 10px;
    line-height: 1.2;
  }

  .hero-actions {
    display: none;
  }

  .button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-gallery {
    display: flex;
    gap: 14px;
    width: calc(100% + 40px);
    max-width: none;
    margin-inline: -20px;
    padding: 8px 20px 18px;
    overflow-x: auto;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .hero-gallery::-webkit-scrollbar {
    display: none;
  }

  .hero-tool,
  .hero-tool-1,
  .hero-tool-2,
  .hero-tool-3 {
    flex: 0 0 min(64vw, 270px);
    min-height: 220px;
    transform: none;
    scroll-snap-align: start;
    border-radius: 18px;
  }

  .hero-tool-copy {
    padding: 16px;
    padding-right: 58px;
  }

  .hero-tool-copy strong {
    font-size: 20px;
    line-height: 1.18;
  }

  .hero-tool-copy small {
    font-size: 12px;
    line-height: 1.45;
  }

  .round-action {
    right: 16px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .mobile-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 0;
  }

  .mobile-dots span,
  .mobile-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
  }

  .mobile-dots span:first-child,
  .mobile-dots button.is-active {
    background: rgba(255, 255, 255, 0.7);
  }

  .light-dots span {
    background: rgba(23, 19, 31, 0.18);
  }

  .light-dots span:first-child {
    background: rgba(23, 19, 31, 0.36);
  }

  .section {
    padding-top: 34px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .section-heading p {
    max-width: 100%;
  }

  .product-section {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 34px;
  }

  .product-section::before {
    position: absolute;
    inset: 0 -20px -28px;
    z-index: -1;
    content: "";
    border-radius: 24px 24px 0 0;
    background: var(--paper);
  }

  .product-grid,
  .entry-point-grid,
  .landing-grid,
  .landing-conversion,
  .landing-process ol,
  .testimonial-grid,
  .workflow-steps,
  .subscribe-band,
  .landing-related,
  .subscribe-form,
  .article-link {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
  }

  .entry-point-section {
    padding-top: 30px;
  }

  .entry-card,
  .landing-grid article,
  .landing-conversion,
  .landing-process,
  .landing-faq details,
  .landing-related {
    border-radius: 10px;
  }

  .entry-card {
    min-height: 0;
    padding: 16px;
  }

  .entry-card strong {
    font-size: 16px;
  }

  .landing-media img {
    aspect-ratio: 1.12;
  }

  .keyword-pills {
    gap: 7px;
  }

  .keyword-pills span {
    font-size: 11px;
  }

  .landing-process li {
    min-height: 0;
  }

  .landing-conversion-actions {
    justify-content: flex-start;
  }

  .landing-conversion .button {
    justify-content: center;
    width: 100%;
  }

  .landing-related nav {
    justify-content: flex-start;
  }

  .product-section .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    text-align: left;
  }

  .product-section .section-kicker {
    display: none;
  }

  .product-section .section-heading h2 {
    font-size: 0;
  }

  .product-section .section-heading h2::after {
    content: "Popular Tools";
    font-size: 22px;
  }

  .product-section .section-heading::after {
    content: "All >";
    color: rgba(23, 19, 31, 0.48);
    font-size: 13px;
    font-weight: 900;
  }

  .product-card,
  .product-baby,
  .product-badge {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    min-width: 0;
    padding: 18px 8px;
    border-radius: 12px;
    text-align: center;
  }

  .product-copy {
    align-items: center;
  }

  .product-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .product-card h3 {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .product-card strong {
    margin-bottom: 0;
    color: rgba(23, 19, 31, 0.58);
    font-size: 11px;
  }

  .product-card p,
  .product-visual {
    display: none;
  }

  .product-button {
    min-height: 44px;
    margin-top: 10px;
    padding: 10px 12px;
    box-shadow: none;
    font-size: 12px;
  }

  .workflow-section {
    padding-top: 22px;
  }

  .workflow-section .section-heading {
    display: block;
    margin-bottom: 14px;
    text-align: left;
  }

  .workflow-section .section-kicker {
    display: none;
  }

  .workflow-section .section-heading h2 {
    font-size: 0;
  }

  .workflow-section .section-heading h2::after {
    content: "Quick Workflow";
    font-size: 22px;
  }

  .workflow-steps::before {
    display: block;
    top: 19px;
    right: 12%;
    left: 12%;
  }

  .workflow-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding-top: 0;
    min-width: 0;
  }

  .workflow-steps li {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 34px 30px 34px;
    gap: 4px;
    justify-items: center;
    align-items: start;
    padding: 0;
    min-width: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .step-number {
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    justify-self: center;
    font-size: 13px;
  }

  .workflow-steps h3,
  .workflow-steps p {
    grid-column: auto;
  }

  .workflow-steps h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .workflow-steps p {
    min-height: 34px;
    margin-bottom: 0;
    font-size: 10px;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    overflow: visible;
  }

  .showcase-card {
    min-width: 0;
  }

  .showcase-card img {
    aspect-ratio: 1;
    border-radius: 10px;
  }

  .showcase-card span {
    text-align: center;
    font-size: 11px;
  }

  .showcase-card p {
    display: none;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case-band {
    display: none;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    overflow: visible;
  }

  .testimonial-card {
    min-height: 138px;
    padding: 14px;
    border-radius: 10px;
  }

  .testimonial-card p {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .compact-heading {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: 22px;
  }

  .resources-section .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .resources-section .section-kicker,
  .resources-section .section-heading p {
    display: none;
  }

  .resources-section .section-heading h2 {
    font-size: 0;
  }

  .resources-section .section-heading h2::after {
    content: "Blog Resources";
    font-size: 22px;
  }

  .resources-section .section-heading::after {
    content: "More >";
    color: rgba(23, 19, 31, 0.48);
    font-size: 13px;
    font-weight: 900;
  }

  .article-link {
    padding: 13px 14px;
    border-radius: 9px;
  }

  .article-link span {
    font-size: 13px;
  }

  .article-link time {
    font-size: 11px;
  }

  .subscribe-band {
    gap: 14px;
    padding: 18px;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
  }

  .subscribe-band .section-kicker {
    display: none;
  }

  .subscribe-band h2 {
    font-size: 18px;
  }

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

  .subscribe-form {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
    width: 100%;
    padding: 30px 28px max(36px, env(safe-area-inset-bottom));
    background: #12131c;
    color: rgba(255, 255, 255, 0.62);
  }

  .footer-brand {
    color: #fff;
  }

  .site-footer p,
  .site-footer small {
    color: rgba(255, 255, 255, 0.62);
  }

  .footer-links {
    color: rgba(255, 255, 255, 0.88);
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  .home-hero,
  .landing-shell,
  .section,
  .use-case-band,
  .subscribe-band {
    width: min(100% - 28px, 100%);
  }

  .brand-logo {
    height: 32px;
  }

  h1 {
    font-size: 32px;
  }

  .product-card,
  .article {
    padding: 16px;
  }

  .testimonial-card {
    padding: 14px;
  }

  .product-card,
  .product-baby,
  .product-badge {
    padding: 16px 6px;
  }

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