:root {
  --purple: #6c47ff;
  --purple-dark: #5130dc;
  --ink: #10163f;
  --muted: #4d5575;
  --soft: #fbfaff;
  --lavender: #f1ecff;
  --line: rgba(20, 18, 62, 0.09);
  --shadow: 0 24px 70px rgba(42, 26, 96, 0.11);
}

/* Interactive capabilities section */
.capabilities-section {
  position: relative;
  padding: 48px 32px 96px;
  overflow: hidden;
  isolation: isolate;
  background: #fbfaff;
}

.capabilities-section::before,
.capabilities-section::after {
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  content: "";
  border-radius: 50%;
  opacity: 0.7;
}

.capabilities-section::before {
  top: 100px;
  left: -280px;
  background: radial-gradient(circle, rgba(207, 188, 255, 0.58), rgba(207, 188, 255, 0));
}

.capabilities-section::after {
  right: -260px;
  bottom: 100px;
  background: radial-gradient(circle, rgba(169, 241, 211, 0.48), rgba(169, 241, 211, 0));
}

.capabilities-inner {
  width: min(1220px, 100%);
  margin-inline: auto;
}

.capabilities-head {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.capabilities-head .eyebrow {
  margin-bottom: 16px;
}

.capabilities-head h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.capabilities-head > p:last-child {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

.capabilities-experience {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(520px, 1.75fr) minmax(220px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.capabilities-column {
  display: grid;
  gap: 12px;
  align-content: center;
}

.capability-feature {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 16px;
  overflow: hidden;
  color: var(--ink);
  font: inherit;
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(57, 37, 102, 0.055);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.capability-feature:hover,
.capability-feature:focus-visible {
  z-index: 1;
  transform: translateY(-2px);
  border-color: rgba(108, 71, 255, 0.32);
  box-shadow: 0 14px 32px rgba(42, 26, 96, 0.12);
  outline: 0;
}

.capability-feature[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(145deg, var(--purple-dark), #8054ef);
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(89, 53, 190, 0.24);
}

.capability-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--purple);
  background: var(--lavender);
  border-radius: 14px;
}

.capability-feature[aria-pressed="true"] .capability-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.capability-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.capability-icon img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.capability-copy strong,
.capability-copy span {
  display: block;
}

.capability-copy strong {
  font-size: 16px;
  line-height: 1.2;
}

.capability-copy span:not([hidden]) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.capability-copy [hidden] {
  display: none;
}

.capability-feature[aria-pressed="true"] .capability-copy span {
  color: rgba(255, 255, 255, 0.78);
}

.capability-arrow {
  display: none;
  color: #aaa4b8;
  font-size: 18px;
  transition: transform 180ms ease;
}

.capability-feature:hover .capability-arrow,
.capability-feature[aria-pressed="true"] .capability-arrow {
  transform: translateX(3px);
}

.capability-feature[aria-pressed="true"] .capability-arrow {
  color: #fff;
}

.capabilities-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 47%;
  gap: 24px;
  min-height: 628px;
  padding: 34px 22px 34px 36px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #3f2495 0%, #6c3fe0 54%, #8b5df0 100%);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.capabilities-stage::after {
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 350px;
  height: 350px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.045), 0 0 0 108px rgba(255, 255, 255, 0.025);
}

.capabilities-stage-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-bottom: 40px;
}

.capabilities-index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.capabilities-stage-copy h3 {
  margin: 0;
  font-size: clamp(29px, 2.8vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.capabilities-stage-copy > p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.capabilities-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.capabilities-proof svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.capabilities-screen {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  overflow: visible;
  background: #fff;
  border: 8px solid #17151d;
  border-radius: 46px;
  box-shadow: 0 16px 50px rgba(25, 11, 65, 0.34);
}

.capabilities-screen::before {
  position: absolute;
  z-index: 4;
  top: 11px;
  left: 50%;
  width: 76px;
  height: 22px;
  content: "";
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transform: translateX(-50%);
}

.capabilities-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 37px;
  opacity: 1;
  transition: none;
}

.capabilities-screen img.is-food-screen {
  transform: translateY(10px);
}

.capabilities-phone-button {
  position: absolute;
  z-index: 1;
  display: block;
  width: 4px;
  background: #17151d;
  border-radius: 4px;
}

.capabilities-phone-button-power {
  top: 116px;
  right: -12px;
  height: 76px;
}

.capabilities-phone-button-volume {
  top: 106px;
  left: -12px;
  height: 58px;
  box-shadow: 0 72px 0 #17151d;
}

.capabilities-mobile-nav {
  display: none;
}

.capabilities-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 42px;
}

.capabilities-cta .text-link {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .capabilities-experience {
    grid-template-columns: minmax(205px, 0.8fr) minmax(470px, 1.8fr) minmax(205px, 0.8fr);
    gap: 12px;
  }

  .capability-feature {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
  }

  .capability-icon {
    width: 38px;
    height: 38px;
  }

  .capability-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .capabilities-section {
    padding: 48px 18px 80px;
  }

  .capabilities-head {
    margin-bottom: 32px;
  }

  .capabilities-experience {
    display: block;
  }

  .capabilities-column {
    display: none;
  }

  .capabilities-mobile-nav {
    display: flex;
    gap: 9px;
    margin: 0 -18px 18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .capabilities-mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .capabilities-mobile-nav button {
    flex: 0 0 auto;
    padding: 11px 14px;
    color: var(--purple-dark);
    font: 700 14px/1.2 "DM Sans", sans-serif;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
  }

  .capabilities-mobile-nav button[aria-pressed="true"] {
    color: #fff;
    background: var(--purple);
    border-color: var(--purple);
  }

  .capabilities-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 24px 28px;
    border-radius: 28px;
  }

  .capabilities-stage-copy {
    padding-bottom: 0;
  }

  .capabilities-stage-copy h3 {
    font-size: 34px;
  }

  .capabilities-screen {
    width: min(276px, 88%);
    height: auto;
    margin: 16px auto 0;
  }
}

@media (max-width: 560px) {
  .capabilities-section {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .capabilities-head {
    text-align: left;
  }

  .capabilities-head h2 {
    font-size: 39px;
  }

  .capabilities-head > p:last-child {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .capabilities-stage {
    padding-inline: 20px;
  }

  .capabilities-index {
    margin-bottom: 18px;
  }

  .capabilities-stage-copy h3 {
    font-size: 30px;
  }

  .capabilities-screen {
    width: min(268px, 94%);
    height: auto;
  }

  .capabilities-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 26px;
    text-align: center;
  }

  .capabilities-cta .button-primary {
    display: inline-flex;
  }

  .capabilities-cta .text-link {
    justify-content: center;
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability-feature,
  .capability-arrow,
  .capabilities-screen img {
    transition-duration: 0.01ms;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}

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

.site-header,
.hero,
.problem-intro,
.problem-strip,
.timeline-section,
.ai-section,
.trust-strip,
.cta,
.feature-links,
.product-page,
.learn-hero,
.learn-category-nav,
.learn-section,
.learn-grid,
.article-page,
.footer {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 31px;
  letter-spacing: 0;
}

.brand-word,
.footer-brand-word {
  font-family: "Nunito", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-pet { color: #000; }
.brand-nid { color: var(--purple); }

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(108, 71, 255, 0.16);
}

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

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-switcher select {
  height: 42px;
  min-width: 64px;
  padding: 0 28px 0 12px;
  border: 1px solid rgba(95, 73, 165, 0.16);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher select:focus-visible {
  outline: 3px solid rgba(108, 71, 255, 0.2);
  outline-offset: 2px;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 38px;
  font-size: 15px;
  font-weight: 700;
  transform: translateX(-50%);
}

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

@media (min-width: 1001px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: min(1256px, calc(100% - 32px));
    height: 76px;
    padding-inline: 18px;
    border: 1px solid rgba(20, 18, 62, 0.07);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 34px rgba(42, 26, 96, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .hero-art img {
    transform: scale(1.28);
    transform-origin: right center;
  }
}

.button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
}

.button-primary {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  color: white;
  background: linear-gradient(135deg, var(--purple), #825bff);
  box-shadow: 0 16px 34px rgba(108, 71, 255, 0.26);
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.hero-badge {
  width: max-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  color: var(--purple);
  background: var(--lavender);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero h1 span { color: var(--purple); }

.hero-copy > p:not(.hero-badge) {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

.store-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.store-badge {
  width: 184px;
  height: 64px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  background: #050505;
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.store-badge svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.store-badge small {
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.86;
}

.store-badge strong {
  font-size: 18px;
  line-height: 1.04;
  white-space: nowrap;
}

.rating {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.avatars { display: flex; }
.avatars span {
  width: 40px;
  height: 40px;
  margin-right: -10px;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: #f4edff;
  box-shadow: 0 8px 18px rgba(18, 20, 50, 0.1);
  font-size: 22px;
  line-height: 1;
}

.stars { color: #ffb51f; letter-spacing: 2px; font-size: 19px; }
.rating p { margin: 4px 0 0; color: var(--muted); font-weight: 700; font-size: 13px; }

.hero-art {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.hero-art::before {
  content: none;
  position: absolute;
  inset: 16% 4% 5%;
  z-index: -1;
  border-radius: 46% 54% 50% 50%;
  background: radial-gradient(circle at 48% 52%, rgba(108, 71, 255, 0.15), rgba(108, 71, 255, 0) 68%);
}

.hero-art img {
  width: min(620px, 112%);
  max-height: 650px;
  height: auto;
  object-fit: contain;
  margin: -55px -20px -45px 0;
  filter: drop-shadow(0 28px 45px rgba(32, 20, 74, 0.06));
}

.problem-intro {
  padding: 22px 0 18px;
  text-align: center;
}

.problem-intro h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.problem-intro span { color: var(--purple); }

.problem-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 4px 0 44px;
}

.problem-strip article {
  min-height: 0;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: start;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(241, 236, 255, 0.7), #fff);
  box-shadow: 0 16px 44px rgba(42, 26, 96, 0.07);
}

.problem-strip img {
  width: 84px;
  height: auto;
  justify-self: center;
  object-fit: contain;
}

.problem-strip article > div {
  align-self: start;
}

.problem-strip h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.16; letter-spacing: -0.04em; }
.problem-strip p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; font-weight: 600; }

.timeline-section {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 54px;
  align-items: center;
  padding: 22px 0 62px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-copy > p:not(.eyebrow) {
  max-width: 340px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--purple);
  font-weight: 800;
}

.learn-hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: center;
  padding: 52px 0 36px;
}

.learn-hero h1,
.article-hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.8vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.learn-hero h1 span,
.article-hero h1 span {
  color: var(--purple);
}

.learn-hero p,
.article-hero p {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.learn-preview {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(241, 236, 255, 0.74), white);
  box-shadow: var(--shadow);
}

.learn-preview-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.learn-preview-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--lavender);
}

.learn-preview-item h2 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.learn-preview-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.learn-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 8px 0 18px;
}

.learn-tools {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px 16px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(42, 26, 96, 0.08);
}

.learn-tools label {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.learn-tools input {
  min-width: 0;
  height: 46px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfaff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.learn-tools input:focus {
  border-color: rgba(108, 71, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(108, 71, 255, 0.1);
}

.learn-filter-buttons {
  display: flex;
  gap: 6px;
}

.learn-filter-buttons button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.learn-filter-buttons button[aria-pressed="true"] {
  border-color: var(--purple);
  background: var(--purple);
  color: white;
}

.learn-results-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.learn-category-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: white;
  box-shadow: 0 10px 24px rgba(42, 26, 96, 0.06);
  font-size: 14px;
  font-weight: 800;
}

.learn-category-nav a:hover {
  color: var(--purple);
  border-color: rgba(108, 71, 255, 0.28);
}

.learn-section {
  padding: 28px 0 26px;
  scroll-margin-top: 24px;
}

.learn-section + .learn-section {
  padding-top: 18px;
}

.learn-section-heading {
  display: grid;
  gap: 14px;
  max-width: 680px;
  margin-bottom: 22px;
}

.learn-section-heading .eyebrow {
  margin-bottom: 0;
}

.learn-section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.learn-section-heading p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

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

.learn-section .learn-grid {
  width: 100%;
}

.learn-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(241, 236, 255, 0.64), #fff);
  box-shadow: 0 16px 44px rgba(42, 26, 96, 0.07);
}

.learn-card-care {
  background: linear-gradient(135deg, rgba(223, 248, 235, 0.48), #fff);
}

.learn-card-interactive {
  border-color: rgba(108, 71, 255, 0.24);
  background:
    radial-gradient(circle at 92% 12%, rgba(34, 197, 94, 0.13), transparent 26%),
    linear-gradient(135deg, rgba(231, 223, 255, 0.92), #fff 70%);
  box-shadow: 0 18px 48px rgba(108, 71, 255, 0.12);
}

.learn-card-interactive .learn-card-label {
  color: #fff;
  background: var(--purple);
}

.learn-card-label {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.learn-card-care .learn-card-label {
  color: #208357;
  background: #dff8eb;
}

.learn-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 22px rgba(108, 71, 255, 0.1);
}

.learn-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.learn-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.learn-card .text-link {
  margin-top: 0;
}

.article-page {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 56px;
  align-items: start;
  padding: 42px 0 64px;
}

.article-hero {
  grid-column: 1 / -1;
  max-width: 860px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-body {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.article-body p {
  margin: 0 0 20px;
}

.article-body ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.article-body li {
  margin: 10px 0;
}

.article-callout {
  margin: 32px 0;
  padding: 24px;
  border: 1px solid rgba(108, 71, 255, 0.13);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(241, 236, 255, 0.8), #fff);
  color: var(--muted);
  font-weight: 700;
}

.article-aside {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 16px 44px rgba(42, 26, 96, 0.07);
}

.article-aside h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.article-aside a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.article-aside .button-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  color: white;
  text-align: center;
  line-height: 1.1;
}

.explorer-image {
  display: block;
  width: min(360px, 100%);
  margin-top: 44px;
  mix-blend-mode: multiply;
}

.timeline-card {
  position: relative;
  padding: 18px 26px 28px 72px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(241, 236, 255, 0.62), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow);
}

.timeline-line {
  position: absolute;
  top: 70px;
  bottom: 74px;
  left: 37px;
  width: 2px;
  background: linear-gradient(var(--purple), rgba(108, 71, 255, 0.14));
}

.timeline-event {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px 14px 26px;
  margin: 10px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 28px rgba(42, 26, 96, 0.08);
}

.timeline-icon {
  position: absolute;
  left: -59px;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  display: block;
  border-radius: 50%;
  overflow: hidden;
  background: #f4efff;
  box-shadow: 0 10px 22px rgba(108, 71, 255, 0.16);
  z-index: 1;
}

.timeline-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-event h3 { margin: 0 0 5px; font-size: 16px; }
.timeline-event p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; }

.status {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
}

.status.good { color: #208357; background: #dff8eb; }

.more-pill {
  width: min(260px, 80%);
  min-height: 42px;
  display: grid;
  place-items: center;
  margin: 18px auto 0;
  border-radius: 999px;
  color: var(--purple);
  background: white;
  border: 1px solid var(--line);
  font-weight: 800;
}

.ai-section {
  padding: 28px 0 38px;
  text-align: center;
}

.ai-row-image {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  border-radius: 20px;
  filter: drop-shadow(0 18px 44px rgba(42, 26, 96, 0.08));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 22px 14px;
  border: 1px solid rgba(108, 71, 255, 0.11);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(241, 236, 255, 0.88), white);
}

.trust-strip div {
  min-height: 70px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child { border-right: 0; }
.trust-strip img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.trust-strip strong { font-size: 17px; line-height: 1.1; }
.trust-strip p { margin: 0; color: var(--muted); font-weight: 700; line-height: 1.15; }

.cta {
  width: min(1220px, calc(100% - 64px));
  height: 250px;
  margin-top: 32px;
  margin-bottom: 42px;
  min-height: 188px;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.75fr;
  align-items: center;
  gap: 24px;
  padding: 24px 30px;
  border-radius: 22px;
  border: 1px solid rgba(108, 71, 255, 0.12);
  background: linear-gradient(135deg, rgba(241, 236, 255, 0.9), white);
  overflow: hidden;
}

.cta h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.cta p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.cta > div:first-child {
  transform: translateY(-42px);
}

.cta img {
  width: min(430px, 100%);
  height: auto;
  justify-self: center;
  mix-blend-mode: multiply;
  transform: scale(1.5) translateY(-60px);
}

.cta .store-row {
  margin-top: 0;
  justify-content: flex-end;
  transform: translateY(-38px);
}
.cta .store-badge { width: 164px; height: 54px; }

.feature-links {
  padding: 6px 0 46px;
}

.feature-links h2 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
}

.feature-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-link-grid a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.product-page {
  padding: 42px 0 64px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.6fr);
  gap: 52px;
  align-items: center;
  padding-bottom: 46px;
}

.product-hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.product-hero h1 span {
  color: var(--purple);
}

.product-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 600;
}

.product-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(241, 236, 255, 0.78), #fff);
  box-shadow: var(--shadow);
}

.product-panel h2,
.product-section h2,
.product-links h2,
.product-faq h2 {
  margin: 0;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.product-panel ul,
.benefit-grid {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-panel li {
  margin: 12px 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

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

.benefit-grid li,
.product-help-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 36px rgba(42, 26, 96, 0.06);
}

.benefit-grid li {
  padding: 24px;
}

.benefit-grid h3,
.product-help-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.benefit-grid p,
.product-help-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.product-section,
.product-links,
.product-faq {
  padding: 34px 0;
}

.product-links {
  padding: 18px 0 30px;
  border-top: 1px solid var(--line);
}

.product-links h2 {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
}

.product-help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.product-help-card {
  padding: 24px;
}

.product-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-link-grid a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.faq-item {
  padding: 22px;
}

.product-page .cta {
  width: 100%;
  margin-inline: auto;
  margin-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 30px;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
}

.footer .brand { font-size: 26px; }
.footer .brand img { width: 34px; height: 34px; border-radius: 9px; }
.footer p { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.footer h4 { margin: 0 0 14px; font-size: 14px; }
.footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.footer a.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 24px;
  line-height: 24px;
}

.footer a.social-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: block;
  transform: none;
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header,
  .hero,
  .problem-intro,
  .problem-strip,
  .timeline-section,
  .ai-section,
  .trust-strip,
  .cta,
  .feature-links,
  .product-page,
  .learn-hero,
  .learn-category-nav,
  .learn-tools,
  .learn-section,
  .learn-grid,
  .article-page,
  .footer {
    width: min(100% - 36px, 760px);
  }

  .hero,
  .timeline-section,
  .cta,
  .product-hero,
  .learn-hero,
  .article-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
    text-align: center;
  }

  .hero-copy,
  .hero-copy > *,
  .product-hero > *,
  .product-panel {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1,
  .product-hero h1,
  .hero-badge {
    overflow-wrap: anywhere;
  }

  .hero-badge,
  .product-hero .hero-badge {
    max-width: calc(100vw - 36px);
  }

  .hero-badge,
  .hero-copy > p:not(.hero-badge) {
    margin-left: auto;
    margin-right: auto;
  }

  .store-row,
  .rating {
    justify-content: center;
  }

  .hero-art { min-height: auto; }

  .problem-strip,
  .feature-link-grid,
  .benefit-grid,
  .product-help-grid,
  .product-link-grid,
  .learn-grid,
  .trust-strip,
  .footer {
    grid-template-columns: 1fr;
  }

  .learn-hero {
    padding-top: 30px;
    text-align: center;
  }

  .learn-category-nav {
    justify-content: center;
  }

  .learn-section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .product-hero {
    text-align: center;
    gap: 28px;
  }

  .product-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .learn-hero p,
  .article-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .article-page {
    gap: 28px;
  }

  .article-aside {
    position: static;
  }

  .problem-strip article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .timeline-card { padding-left: 64px; }
  .timeline-line { left: 29px; }
  .cta { text-align: center; }
  .cta { height: auto; }
  .cta > div:first-child { transform: none; }
  .cta .store-row { justify-content: center; }
  .cta .store-row { transform: none; }
  .cta img { transform: none; }
  .trust-strip {
    padding: 8px 28px;
  }
  .trust-strip div {
    min-height: 156px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 10px;
    padding: 24px 0;
  }
  .trust-strip img {
    width: 38px;
    height: 38px;
    margin-bottom: 2px;
  }
  .trust-strip strong {
    font-size: 18px;
    line-height: 1.1;
  }
  .trust-strip p {
    font-size: 17px;
    line-height: 1.25;
  }
  .trust-strip div:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .header-actions > .button-primary { display: none; }
  .language-switcher select {
    min-width: 58px;
    height: 40px;
    padding-left: 10px;
    padding-right: 24px;
  }

  .site-header {
    height: 72px;
  }

  .brand { font-size: 24px; }
  .brand img { width: 36px; height: 36px; }
  .button-primary { display: none; }

  .hero h1 { font-size: 45px; }
  .learn-hero h1,
  .product-hero h1,
  .article-hero h1 { font-size: 42px; }
  .hero-copy > p:not(.hero-badge) { font-size: 16px; }
  .store-badge {
    width: 166px;
    height: 58px;
    gap: 8px;
    padding-inline: 12px;
  }
  .store-badge svg { width: 22px; height: 22px; }
  .store-badge strong { font-size: 16px; }
  .hero-art img {
    width: min(108%, 500px);
    max-height: 610px;
    margin: -36px auto -30px;
  }

  .problem-intro { padding: 16px 0 12px; }
  .problem-intro h2 { font-size: 25px; }
  .problem-strip { gap: 10px; padding-bottom: 28px; }
  .problem-strip article {
    min-height: 0;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    gap: 14px;
    padding: 16px;
    text-align: left;
  }
  .problem-strip img { width: 72px; height: 72px; }
  .problem-strip h3 { margin-bottom: 6px; font-size: 18px; }
  .problem-strip p { font-size: 13px; line-height: 1.4; }

  .timeline-section { gap: 24px; }
  .timeline-card {
    padding: 12px 14px 22px 58px;
    border-radius: 22px;
  }
  .timeline-line { left: 23px; }

  .timeline-event {
    grid-template-columns: 1fr;
    padding: 14px 12px 14px 18px;
  }

  .status { justify-self: start; }

  .ai-section { width: min(100% - 20px, 760px); }
  .ai-row-image { border-radius: 14px; }
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }
  .trust-strip div {
    min-height: 116px;
    gap: 5px;
    padding: 14px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .trust-strip div:nth-child(2n) { border-right: 0; }
  .trust-strip div:nth-child(n + 3) { border-bottom: 0; }
  .trust-strip img { width: 30px; height: 30px; }
  .trust-strip strong { font-size: 15px; }
  .trust-strip p { font-size: 14px; line-height: 1.15; }

  .cta {
    grid-template-columns: minmax(0, 1fr) 170px;
    height: 270px;
    min-height: 270px;
    gap: 8px 10px;
    padding: 16px;
    overflow: hidden;
  }
  .cta > div:first-child { text-align: left; }
  .cta h2 { font-size: 24px; }
  .cta p { margin-top: 7px; font-size: 12px; line-height: 1.3; }
  .cta img {
    grid-column: 2;
    grid-row: 1;
    width: 210px;
    max-width: none;
  }
  .cta .store-row {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .cta .store-badge {
    width: 142px;
    height: 50px;
    padding-inline: 9px;
  }
  .cta .store-badge strong { font-size: 14px; }
  .cta .store-badge small { font-size: 7px; }

  .learn-hero {
    gap: 18px;
    padding: 24px 0 18px;
  }
  .learn-hero h1 { font-size: 34px; }
  .learn-hero p { margin-top: 14px; font-size: 15px; line-height: 1.5; }
  .learn-preview { display: none; }
  .learn-tools {
    position: static;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }
  .learn-tools label { display: none; }
  .learn-tools input { height: 42px; }
  .learn-filter-buttons { justify-content: stretch; }
  .learn-filter-buttons button { flex: 1; min-height: 38px; padding-inline: 8px; }
  .learn-results-status { padding-left: 4px; }
  .learn-section { padding: 20px 0 14px; }
  .learn-section-heading { gap: 7px; margin-bottom: 12px; text-align: left; }
  .learn-section-heading h2 { font-size: 27px; }
  .learn-section-heading p:not(.eyebrow) { display: none; }
  .learn-grid { gap: 10px; }
  .learn-card {
    min-height: 0;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 6px 12px;
    padding: 14px;
  }
  .learn-card img {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: center;
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }
  .learn-card-label { grid-column: 2; grid-row: 1; padding: 4px 7px; font-size: 9px; }
  .learn-card h2 { grid-column: 2; grid-row: 2; font-size: 18px; line-height: 1.15; }
  .learn-card p { display: none; }
  .learn-card .text-link { grid-column: 2; grid-row: 3; font-size: 13px; }
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 24px 0 30px;
  }
  .footer > div:first-child { grid-column: 1 / -1; }
  .footer .brand { font-size: 22px; }
  .footer .brand img { width: 30px; height: 30px; }
  .footer p { margin-top: 10px; font-size: 12px; }
  .footer h4 { margin-bottom: 9px; font-size: 12px; }
  .footer a:not(.brand) { margin: 6px 0; font-size: 13px; }
  .learn-preview,
  .product-panel,
  .benefit-grid li,
  .product-help-card,
  .faq-item,
  .article-callout,
  .article-aside {
    padding: 20px;
  }
  .learn-preview-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .learn-preview-item img {
    justify-self: center;
  }
  .article-body {
    font-size: 16px;
    line-height: 1.72;
  }
}
