:root {
  --ink: #151515;
  --muted: #5d6268;
  --paper: #f6f7f8;
  --surface: #ffffff;
  --line: #dfe4e8;
  --green: #0f766e;
  --coral: #d95d39;
  --gold: #b98511;
  --focus: #101820;
  --shadow: 0 20px 50px rgba(19, 22, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 247, 248, 0.9);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 28px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.language-dropdown {
  position: relative;
}

.language-dropdown summary {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  list-style: none;
}

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

.language-dropdown summary:hover,
.language-dropdown summary:focus-visible,
.language-dropdown[open] summary {
  border-color: #aeb7be;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
  outline: none;
}

.language-chevron {
  transition: transform 160ms ease;
}

.language-dropdown[open] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: max-content;
  min-width: 136px;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(21, 21, 21, 0.16);
}

.language-menu a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 7px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.language-menu a:hover,
.language-menu a:focus-visible {
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.language-menu a[aria-current="page"] {
  background: rgba(15, 118, 110, 0.1);
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #151515;
}

.hero-visual,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.92) 0%, rgba(8, 9, 10, 0.74) 48%, rgba(8, 9, 10, 0.42) 100%),
    linear-gradient(0deg, rgba(8, 9, 10, 0.64), rgba(8, 9, 10, 0.08));
}

.hero-shot {
  position: absolute;
  width: clamp(150px, 21vw, 280px);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  opacity: 0.9;
}

.hero-shot-cooking {
  right: 12%;
  top: 9%;
  transform: rotate(6deg);
}

.hero-shot-quiz {
  right: 33%;
  bottom: 4%;
  transform: rotate(-9deg);
}

.hero-shot-memory {
  right: -3%;
  bottom: -16%;
  transform: rotate(11deg);
}

.hero-icons {
  position: absolute;
  right: 7%;
  top: 48%;
  display: grid;
  grid-template-columns: repeat(5, 54px);
  gap: 0.75rem;
}

.hero-icons img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.hero-content {
  padding: clamp(4rem, 9vw, 8rem) 0;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #83d0bf;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.store-row,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button,
.contact-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
}

.button-primary {
  background: #ffffff;
  color: #111111;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: end;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.apps-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(15, 118, 110, 0.09), transparent 28rem),
    radial-gradient(circle at 92% 88%, rgba(217, 93, 57, 0.08), transparent 26rem),
    #f3f5f4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 2rem;
  align-items: end;
}

.section-heading-split > p {
  max-width: 540px;
  margin: 0 0 0.25rem auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.app-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.app-showcase-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(21, 21, 21, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.app-showcase-card:hover {
  transform: translateY(-4px);
  border-color: #c8d2d2;
  box-shadow: 0 24px 56px rgba(21, 21, 21, 0.12);
}

.app-card-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
}

.app-card-media-screen {
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.76), transparent 9rem),
    linear-gradient(145deg, #dcebe8 0%, #c7d8e8 100%);
}

.app-card-media-screen::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -72px;
  bottom: -92px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
}

.app-card-media-screen > img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 410px;
  max-width: 88%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(25, 52, 50, 0.22);
  transform: rotate(-2deg);
}

.app-card-media-icon {
  display: grid;
  place-items: center;
}

.app-card-media-icon::before,
.app-card-media-icon::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.54;
}

.app-card-media-icon::before {
  left: -72px;
  top: -86px;
  background: rgba(255, 255, 255, 0.55);
}

.app-card-media-icon::after {
  right: -82px;
  bottom: -110px;
  background: rgba(255, 255, 255, 0.42);
}

.app-card-media-icon > img {
  position: relative;
  z-index: 1;
  width: 176px;
  height: 176px;
  border-radius: 34px;
  box-shadow: 0 26px 54px rgba(21, 21, 21, 0.23);
  transform: rotate(-3deg);
}

.app-card-media-bmi {
  background: linear-gradient(135deg, #d7f3ec 0%, #dfe9ff 100%);
}

.app-card-media-shake {
  background: linear-gradient(135deg, #fff0da 0%, #ffdcd4 100%);
}

.app-card-media-shake > img {
  transform: rotate(4deg);
}

.app-card-media-cooking {
  min-height: 520px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.84), transparent 14rem),
    linear-gradient(145deg, #d3eadf 0%, #9cc9b8 100%);
}

.app-phone {
  position: absolute;
  width: min(48%, 230px);
  max-height: 500px;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(25, 57, 48, 0.25);
}

.app-phone-back {
  right: 7%;
  top: 7%;
  transform: rotate(7deg);
}

.app-phone-front {
  left: 8%;
  bottom: -3%;
  z-index: 1;
  transform: rotate(-5deg);
}

.app-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-icon {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.12);
}

.app-meta {
  margin: 0;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-title-row h3 {
  margin-top: 0.28rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.app-title-row h3 a {
  text-decoration: none;
}

.app-title-row h3 a span {
  display: inline-block;
  color: var(--green);
  font-size: 0.72em;
  transition: transform 180ms ease;
}

.app-title-row h3 a:hover span,
.app-title-row h3 a:focus-visible span {
  transform: translateX(3px);
}

.app-description {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-list span {
  padding: 0.35rem 0.55rem;
  border: 1px solid #cfd8dc;
  border-radius: 999px;
  color: #3c4247;
  background: #f8fafb;
  font-size: 0.78rem;
  font-weight: 750;
}

.app-showcase-actions {
  display: grid;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.store-row {
  align-items: center;
}

.store-row a {
  display: inline-flex;
  border-radius: 8px;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-row a:hover,
.store-row a:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 12px rgba(21, 21, 21, 0.14));
}

.store-row img {
  width: auto;
  height: 44px;
}

.app-page-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.app-page-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
}

.app-page-link {
  gap: 0.5rem;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
}

.app-page-link span {
  transition: transform 160ms ease;
}

.app-page-link:hover span,
.app-page-link:focus-visible span {
  transform: translateX(3px);
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: var(--focus);
}

.privacy-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #fff6ee;
  border-top: 1px solid #ead7c6;
  border-bottom: 1px solid #ead7c6;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.policy-grid a {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  min-height: 112px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #ead7c6;
  text-decoration: none;
}

.policy-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-grid strong {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.product-page .policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(330px, 1.45fr);
}

.contact-section {
  display: grid;
  gap: 1.5rem;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.contact-section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.contact-links a {
  width: 100%;
  border-color: var(--line);
  background: #ffffff;
}

.site-footer {
  padding: 2rem 0;
  color: #c9d1d9;
  background: #101820;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-layout p {
  margin: 0;
}

.footer-layout div {
  display: flex;
  gap: 1rem;
}

.footer-layout a {
  color: #ffffff;
  text-decoration: none;
}

.product-page .hero {
  min-height: 760px;
  background:
    radial-gradient(circle at 80% 18%, rgba(122, 200, 178, 0.22), transparent 24rem),
    #101817;
}

.product-page .hero-content {
  max-width: 1180px;
  padding-right: min(46vw, 560px);
}

.product-page .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 13, 12, 0.98) 0%, rgba(7, 13, 12, 0.9) 47%, rgba(7, 13, 12, 0.2) 76%, rgba(7, 13, 12, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 13, 12, 0.55), rgba(7, 13, 12, 0.02));
}

.product-page .hero-visual {
  left: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 22%, rgba(255, 255, 255, 0.18), transparent 16rem),
    linear-gradient(145deg, #8fbfae 0%, #d8e9df 100%);
}

.product-page .hero-shot {
  width: clamp(210px, 23vw, 320px);
  opacity: 1;
  border: 6px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  box-shadow: 0 36px 90px rgba(9, 43, 35, 0.34);
}

.product-page .hero-shot-cooking {
  right: 4%;
  top: 7%;
  transform: rotate(5deg);
}

.product-page .hero-shot-quiz {
  right: 45%;
  bottom: -14%;
  transform: rotate(-7deg);
}

.product-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-label img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.product-label .eyebrow {
  margin: 0;
}

.product-page h1 {
  max-width: 650px;
  font-size: clamp(3.7rem, 8vw, 7.3rem);
}

.hero-tagline {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-page .hero-shot-icon {
  right: 12%;
  top: 22%;
  width: clamp(140px, 20vw, 260px);
  border-radius: 8px;
}

.product-page .content-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.product-page .content-section .section-heading {
  max-width: 800px;
}

.section-copy {
  max-width: 720px;
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-page .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.product-page .feature-card {
  position: relative;
  min-height: 210px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(21, 21, 21, 0.06);
}

.product-page .feature-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 2.6rem;
  border-radius: 999px;
  background: var(--green);
}

.product-page .feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-page .facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.product-page .facts div {
  padding: 1rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.product-page .facts span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-page .facts strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

.store-badges {
  align-items: center;
}

.store-badge-link {
  display: inline-flex;
  border-radius: 9px;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-badge-link:hover,
.store-badge-link:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.24));
}

.store-badge-link img {
  width: auto;
  height: 48px;
}

.screenshots-section {
  padding: clamp(3.5rem, 9vw, 7rem) 0;
  overflow: hidden;
  color: #f4f8f6;
  background:
    radial-gradient(circle at 8% 12%, rgba(112, 188, 163, 0.18), transparent 26rem),
    radial-gradient(circle at 90% 85%, rgba(217, 93, 57, 0.12), transparent 28rem),
    #101817;
}

.screenshots-section .eyebrow {
  color: #83d0bf;
}

.screenshots-section .section-heading-split > p {
  color: #abbab5;
}

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

.screenshot-card {
  grid-column: span 4;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.screenshot-card:nth-child(1),
.screenshot-card:nth-child(2) {
  grid-column: span 6;
}

.screenshot-stage {
  height: 520px;
  display: grid;
  place-items: start center;
  padding: 2rem 2rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.55), transparent 10rem),
    linear-gradient(145deg, #d8eae2 0%, #a9ccbf 100%);
}

.screenshot-card:nth-child(2n) .screenshot-stage {
  background:
    radial-gradient(circle at 25% 14%, rgba(255, 255, 255, 0.7), transparent 10rem),
    linear-gradient(145deg, #f0eadf 0%, #d8cbb7 100%);
}

.screenshot-stage img {
  width: auto;
  height: 610px;
  max-width: 100%;
  object-fit: contain;
  border: 5px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(18, 52, 43, 0.25);
}

.screenshot-card figcaption {
  display: grid;
  gap: 0.45rem;
  min-height: 126px;
  padding: 1.25rem;
}

.screenshot-card figcaption strong {
  font-size: 1.06rem;
}

.screenshot-card figcaption span {
  color: #abbab5;
  font-size: 0.94rem;
}

.product-page-quiz .hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(68, 173, 204, 0.25), transparent 25rem),
    #061d2a;
}

.product-page-quiz .hero-visual {
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.26), transparent 16rem),
    linear-gradient(145deg, #0b6f91 0%, #b9dce6 100%);
}

.product-page-quiz .hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 20, 30, 0.98) 0%, rgba(3, 20, 30, 0.9) 47%, rgba(3, 20, 30, 0.2) 76%, rgba(3, 20, 30, 0.04) 100%),
    linear-gradient(0deg, rgba(3, 20, 30, 0.6), rgba(3, 20, 30, 0.04));
}

.product-page-quiz .hero .eyebrow,
.product-page-quiz .screenshots-section .eyebrow {
  color: #7ed9e8;
}

.product-page-quiz .hero-shot-cooking {
  right: 5%;
  top: 7%;
  transform: rotate(4deg);
}

.product-page-quiz .hero-shot-quiz {
  right: 46%;
  bottom: -14%;
  transform: rotate(-6deg);
}

.product-page-quiz .feature-card::before {
  background: #087f8c;
}

.product-page-quiz .screenshots-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(51, 164, 193, 0.2), transparent 26rem),
    radial-gradient(circle at 90% 85%, rgba(117, 117, 214, 0.13), transparent 28rem),
    #061d2a;
}

.product-page-quiz .screenshot-stage {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.62), transparent 10rem),
    linear-gradient(145deg, #d8eef3 0%, #91c8d6 100%);
}

.product-page-quiz .screenshot-card:nth-child(2n) .screenshot-stage {
  background:
    radial-gradient(circle at 25% 14%, rgba(255, 255, 255, 0.72), transparent 10rem),
    linear-gradient(145deg, #e4e6fa 0%, #b7c4e6 100%);
}

.product-page-quiz .privacy-section {
  border-color: #cadfe5;
  background: #eef7f9;
}

.product-page-quiz .policy-grid a {
  border-color: #cadfe5;
}

.product-page-bmi .hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(236, 92, 143, 0.26), transparent 25rem),
    #2b0d1b;
}

.product-page-bmi .hero-visual {
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.25), transparent 16rem),
    linear-gradient(145deg, #c43e70 0%, #f3b5ca 100%);
}

.product-page-bmi .hero-shade {
  background:
    linear-gradient(90deg, rgba(35, 7, 21, 0.98) 0%, rgba(35, 7, 21, 0.9) 47%, rgba(35, 7, 21, 0.2) 76%, rgba(35, 7, 21, 0.04) 100%),
    linear-gradient(0deg, rgba(35, 7, 21, 0.62), rgba(35, 7, 21, 0.04));
}

.product-page-bmi .hero .eyebrow,
.product-page-bmi .screenshots-section .eyebrow {
  color: #ff9fbe;
}

.product-page-bmi .hero-shot-cooking {
  right: 5%;
  top: 7%;
  transform: rotate(4deg);
}

.product-page-bmi .hero-shot-quiz {
  right: 46%;
  bottom: -14%;
  transform: rotate(-6deg);
}

.product-page-bmi .feature-card::before {
  background: #cf4679;
}

.product-page-bmi .screenshots-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(224, 74, 129, 0.2), transparent 26rem),
    radial-gradient(circle at 90% 85%, rgba(103, 128, 205, 0.13), transparent 28rem),
    #2b0d1b;
}

.product-page-bmi .screenshot-stage {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.64), transparent 10rem),
    linear-gradient(145deg, #fae2ea 0%, #eaa7c0 100%);
}

.product-page-bmi .screenshot-card:nth-child(2n) .screenshot-stage {
  background:
    radial-gradient(circle at 25% 14%, rgba(255, 255, 255, 0.72), transparent 10rem),
    linear-gradient(145deg, #e6ebf7 0%, #b8cae8 100%);
}

.product-page-bmi .privacy-section {
  border-color: #ead0da;
  background: #fff3f7;
}

.product-page-bmi .policy-grid a {
  border-color: #ead0da;
}

.product-page-memory .hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(58, 217, 190, 0.28), transparent 25rem),
    #062c31;
}

.product-page-memory .hero-visual {
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.3), transparent 16rem),
    linear-gradient(145deg, #28bda8 0%, #83c8dc 100%);
}

.product-page-memory .hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 35, 38, 0.98) 0%, rgba(3, 35, 38, 0.9) 47%, rgba(3, 35, 38, 0.2) 76%, rgba(3, 35, 38, 0.04) 100%),
    linear-gradient(0deg, rgba(3, 35, 38, 0.62), rgba(3, 35, 38, 0.04));
}

.product-page-memory .hero .eyebrow,
.product-page-memory .screenshots-section .eyebrow {
  color: #7df0dc;
}

.product-page-memory .hero-shot-cooking {
  right: 5%;
  top: 7%;
  transform: rotate(4deg);
}

.product-page-memory .hero-shot-quiz {
  right: 46%;
  bottom: -14%;
  transform: rotate(-6deg);
}

.product-page-memory .feature-card::before {
  background: #16a991;
}

.product-page-memory .screenshots-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(61, 216, 190, 0.2), transparent 26rem),
    radial-gradient(circle at 90% 85%, rgba(79, 153, 202, 0.16), transparent 28rem),
    #062c31;
}

.product-page-memory .screenshot-stage {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.64), transparent 10rem),
    linear-gradient(145deg, #d9f5ef 0%, #8fd9cc 100%);
}

.product-page-memory .screenshot-card:nth-child(2n) .screenshot-stage {
  background:
    radial-gradient(circle at 25% 14%, rgba(255, 255, 255, 0.74), transparent 10rem),
    linear-gradient(145deg, #dceef4 0%, #9bc8dc 100%);
}

.product-page-memory .privacy-section {
  border-color: #c9e5df;
  background: #eef9f7;
}

.product-page-memory .policy-grid a {
  border-color: #c9e5df;
}

.product-page-shake .hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 76, 25, 0.28), transparent 25rem),
    #2a1511;
}

.product-page-shake .hero-visual {
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.32), transparent 16rem),
    linear-gradient(145deg, #ff5a28 0%, #e5d9ef 100%);
}

.product-page-shake .hero-shade {
  background:
    linear-gradient(90deg, rgba(36, 15, 11, 0.98) 0%, rgba(36, 15, 11, 0.9) 47%, rgba(36, 15, 11, 0.2) 76%, rgba(36, 15, 11, 0.04) 100%),
    linear-gradient(0deg, rgba(36, 15, 11, 0.62), rgba(36, 15, 11, 0.04));
}

.product-page-shake .hero .eyebrow,
.product-page-shake .screenshots-section .eyebrow {
  color: #ff9b7c;
}

.product-page-shake .hero-shot-cooking {
  right: 5%;
  top: 7%;
  transform: rotate(4deg);
}

.product-page-shake .hero-shot-quiz {
  right: 46%;
  bottom: -14%;
  transform: rotate(-6deg);
}

.product-page-shake .feature-card::before {
  background: #ff4515;
}

.product-page-shake .screenshots-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 85, 34, 0.2), transparent 26rem),
    radial-gradient(circle at 90% 85%, rgba(177, 139, 205, 0.16), transparent 28rem),
    #2a1511;
}

.product-page-shake .screenshot-stage {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.68), transparent 10rem),
    linear-gradient(145deg, #fff0e9 0%, #f2b7a5 100%);
}

.product-page-shake .screenshot-card:nth-child(2n) .screenshot-stage {
  background:
    radial-gradient(circle at 25% 14%, rgba(255, 255, 255, 0.75), transparent 10rem),
    linear-gradient(145deg, #f0e9f5 0%, #cdb9dc 100%);
}

.product-page-shake .privacy-section {
  border-color: #ead7cf;
  background: #fff6f2;
}

.product-page-shake .policy-grid a {
  border-color: #ead7cf;
}

.policy-page {
  min-height: 100vh;
  background: var(--paper);
}

.policy-shell {
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.policy-card {
  padding: clamp(1rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.08);
}

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

.legal-document {
  max-width: 880px;
  margin: 0 auto;
}

.legal-document h1 {
  margin: 0.35rem 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.legal-document h2 {
  margin: 2rem 0 0.5rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.15;
}

.legal-document h3 {
  margin: 1.5rem 0 0.4rem;
}

.legal-document ul {
  padding-left: 1.3rem;
  color: var(--muted);
}

.legal-document a {
  color: var(--green);
  text-underline-offset: 0.18em;
}

.website-privacy-page .policy-shell {
  display: grid;
  gap: 1.5rem;
  max-width: 880px;
}

.privacy-page-intro {
  padding: clamp(2.5rem, 7vw, 5rem) 0 1rem;
}

.privacy-page-intro h1 {
  max-width: 760px;
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.privacy-page-intro p:last-child {
  max-width: 720px;
  color: var(--muted);
}

.privacy-document {
  scroll-margin-top: 88px;
}

.privacy-document h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.privacy-document h3 {
  margin: 2rem 0 0.5rem;
  font-size: 1.2rem;
}

.privacy-document ul {
  padding-left: 1.3rem;
  color: var(--muted);
}

.privacy-document li + li {
  margin-top: 0.45rem;
}

.privacy-document a {
  color: var(--green);
  text-underline-offset: 0.18em;
}

.privacy-meta {
  margin-top: 0;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .policy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-page .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 0.8rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex: 1;
    justify-content: space-between;
  }

  .nav-actions {
    width: 100%;
  }

  .hero {
    min-height: 78vh;
  }

  .product-page .hero {
    min-height: 720px;
  }

  .product-page .hero-content {
    padding-right: 0;
  }

  .product-page .hero-content > * {
    max-width: min(620px, 86%);
  }

  .product-page .hero-visual {
    left: 42%;
    opacity: 0.58;
  }

  .product-page .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 13, 12, 0.98) 0%, rgba(7, 13, 12, 0.88) 66%, rgba(7, 13, 12, 0.48) 100%),
      linear-gradient(0deg, rgba(7, 13, 12, 0.72), rgba(7, 13, 12, 0.08));
  }

  .hero-shot-cooking {
    right: -12%;
    top: 6%;
  }

  .hero-shot-quiz {
    right: 28%;
    bottom: 5%;
  }

  .hero-shot-memory,
  .hero-icons {
    display: none;
  }

  .intro,
  .section-heading-split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .app-showcase-grid,
  .policy-grid,
  .product-page .policy-grid,
  .product-page .content-grid,
  .product-page .facts {
    grid-template-columns: 1fr;
  }

  .section-heading-split > p {
    margin-left: 0;
  }

  .app-showcase-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .app-card-media {
    min-height: 420px;
  }

  .app-card-media-cooking {
    min-height: 470px;
  }

  .app-card-media-screen > img {
    height: 350px;
  }

  .app-phone {
    width: min(44%, 220px);
  }

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

  .screenshot-card,
  .screenshot-card:nth-child(1),
  .screenshot-card:nth-child(2) {
    grid-column: span 6;
  }
}

@media (max-width: 520px) {
  .container,
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    gap: 0.65rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-actions {
    gap: 0.65rem;
  }

  .nav-links {
    gap: 0.65rem;
  }

  .hero-content {
    padding-top: 3.2rem;
  }

  .product-page .nav-actions {
    align-items: flex-start;
  }

  .product-page .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .product-page .hero {
    min-height: 690px;
  }

  .product-page .hero-content > * {
    max-width: 100%;
  }

  .product-page .hero-visual {
    left: 18%;
    opacity: 0.3;
  }

  .product-page .hero-shot {
    width: 230px;
  }

  .product-page h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .hero-tagline {
    font-size: 1.55rem;
  }

  .store-badge-link img {
    height: 44px;
  }

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

  .app-showcase-card {
    border-radius: 20px;
  }

  .app-card-media {
    min-height: 300px;
  }

  .app-card-media-cooking {
    min-height: 390px;
  }

  .app-phone {
    width: min(49%, 190px);
  }

  .app-card-media-screen > img {
    height: 260px;
  }

  .app-title-row {
    align-items: flex-start;
  }

  .app-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .app-title-row h3 {
    font-size: 1.28rem;
  }

  .store-row img {
    height: 40px;
  }

  .screenshot-card,
  .screenshot-card:nth-child(1),
  .screenshot-card:nth-child(2) {
    grid-column: 1 / -1;
  }

  .screenshot-stage {
    height: 460px;
    padding: 1.5rem 1.5rem 0;
  }

  .screenshot-stage img {
    height: 540px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .app-showcase-card,
  .store-row a,
  .store-badge-link,
  .app-title-row h3 a span,
  .app-page-link span {
    transition: none;
  }
}
