:root {
  --ink: #171716;
  --muted: #6e6e69;
  --line: #d9d9d4;
  --paper: #f5f5f3;
  --white: #ffffff;
  --green: #3f6856;
  --lime: #dbe7b5;
  --blue: #50708d;
  --peach: #e9c5b2;
  --yellow: #e8d792;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.glass-home {
  min-height: 100svh;
  padding: 0;
  background: #0f0f12;
}
.glass-home-frame {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #0f0f12;
  box-shadow: none;
  isolation: isolate;
}
.glass-home-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 238, 186, .95), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(88, 112, 85, .72), transparent 34%),
    linear-gradient(135deg, #c7d3d0 0%, #f3eee8 46%, #b4c0ab 100%);
  background-image: var(--home-bg-url), radial-gradient(circle at 18% 82%, rgba(255, 238, 186, .95), transparent 28%), radial-gradient(circle at 78% 70%, rgba(88, 112, 85, .72), transparent 34%), linear-gradient(135deg, #c7d3d0 0%, #f3eee8 46%, #b4c0ab 100%);
  background-position: center;
  background-size: cover;
  transform: none;
}
.glass-home-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: transparent;
}
.glass-home-content {
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: 120px 24px;
}
.glass-home h1 {
  position: relative;
  margin: 0;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(110px, 20vw, 310px);
  font-weight: 650;
  line-height: .82;
  letter-spacing: 0;
  color: transparent;
  background:
    linear-gradient(
      180deg,
      rgba(214, 246, 255, .11) 0%,
      rgba(162, 223, 252, .065) 34%,
      rgba(86, 164, 210, .04) 58%,
      rgba(235, 254, 255, .085) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.4px rgba(236, 253, 255, .34);
  text-shadow:
    0 -1px 0 rgba(255, 255, 255, .22),
    0 1px 0 rgba(22, 106, 146, .12),
    0 8px 18px rgba(0, 48, 72, .08),
    0 0 16px rgba(204, 244, 255, .12);
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, .22))
    drop-shadow(0 16px 24px rgba(0, 55, 82, .08))
    drop-shadow(0 0 12px rgba(214, 248, 255, .12));
  opacity: .34;
  animation: glass-title-in 1.05s cubic-bezier(.16, 1, .3, 1) both;
}
.glass-home h1::before,
.glass-home h1::after {
  content: "VARSH";
  position: absolute;
  inset: 0;
  opacity: .72;
  pointer-events: none;
}
.glass-home h1::before {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(20, 96, 140, .18);
  filter: blur(.25px);
  transform: translate(2px, 3px);
}
.glass-home h1::after {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, .34);
  text-shadow:
    0 -1px 0 rgba(255, 255, 255, .42),
    0 0 1px rgba(255, 255, 255, .28),
    0 0 14px rgba(193, 240, 255, .16);
  transform: translate(-1px, -2px);
}
.glass-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(22, 25, 23, .22);
  color: rgba(255,255,255,.76);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
  backdrop-filter: blur(18px) saturate(1.3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  transform: translateX(-50%);
  animation: glass-scroll-in 1s .45s cubic-bezier(.16, 1, .3, 1) both;
}
.glass-scroll i { font-style: normal; }
@keyframes glass-title-in {
  from { opacity: 0; transform: translateY(26px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes glass-scroll-in {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 28px;
  left: 50%;
  width: min(720px, calc(100% - 48px));
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px 0 24px;
  background: rgba(255, 255, 255, .68);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
  backdrop-filter: blur(22px) saturate(1.4);
  transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .55s ease, transform .55s cubic-bezier(.16, 1, .3, 1);
}
.site-header.on-light {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  color: var(--ink);
  border-color: color-mix(in srgb, var(--line) 75%, transparent);
}
.site-header {
  opacity: 0;
  transform: translate(-50%, -10px);
}
.site-header.header-ready {
  opacity: 1;
  transform: translate(-50%, 0);
}
.brand { font-size: 17px; font-weight: 700; }
.nav { display: flex; gap: 32px; font-size: 14px; color: var(--muted); }
.nav a, .header-contact { transition: color .2s ease; }
.nav a:hover, .header-contact:hover { color: var(--ink); }
.header-contact { justify-self: end; padding: 10px 16px; border: 0; border-radius: 999px; background: var(--ink); color: white; font-size: 14px; cursor: pointer; }
.header-contact:hover { color: white; background: #050505; }

.hero {
  min-height: min(860px, 92vh);
  padding: 130px clamp(24px, 7vw, 110px) 74px;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  overflow: hidden;
}
.eyebrow, .section-label { margin: 0; color: var(--muted); font-size: 12px; font-weight: 650; text-transform: uppercase; }
.hero h1 { margin: 13px 0 15px; font-size: clamp(72px, 9vw, 136px); line-height: .91; font-weight: 680; }
.hero-intro { max-width: 480px; margin: 0 0 34px; font-size: clamp(22px, 2vw, 31px); line-height: 1.4; color: #4f4f4b; }
.text-link, .product-action { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 650; }
.text-link span, .product-action span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }

.hero-stage { position: relative; min-height: 560px; }
.hero-browser {
  position: absolute;
  top: 34px;
  left: 0;
  width: min(680px, 90%);
  height: 420px;
  overflow: hidden;
  background: #fbfbfa;
  border: 1px solid #cdcdc8;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(27, 28, 25, .13);
  transform: rotate(-2deg);
}
.browser-bar { height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 15px; background: #ececea; border-bottom: 1px solid #d7d7d3; }
.browser-bar > span { width: 9px; height: 9px; border-radius: 50%; background: #bcbcb7; }
.address { width: 48%; height: 24px; margin: auto; display: grid; place-items: center; background: #f8f8f7; border: 1px solid #d7d7d2; border-radius: 5px; color: #999993; font-size: 10px; }
.browser-body { position: relative; padding: 62px 58px; }
.selection-line { width: 82%; height: 16px; margin-bottom: 17px; border-radius: 2px; background: #dfdfdb; }
.selection-line.short { width: 44%; height: 25px; background: #b8b8b3; }
.selection-line.medium { width: 67%; background: #e4e4e0; }
.translation-popover { position: absolute; top: 115px; right: 35px; width: 285px; padding: 20px; background: var(--ink); color: white; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,.24); }
.popover-top { display: flex; justify-content: space-between; color: #bdbdb7; font-size: 11px; }
.popover-top b { color: white; }
.translation-popover p { margin: 22px 0; font-size: 17px; }
.sound-wave { display: flex; align-items: center; gap: 4px; height: 15px; }
.sound-wave i { width: 2px; height: 7px; background: #c9dc88; border-radius: 2px; }
.sound-wave i:nth-child(2), .sound-wave i:nth-child(4) { height: 13px; }
.hero-phone { position: absolute; right: 0; bottom: 0; width: 238px; height: 470px; padding: 20px 16px; background: #f8f8f6; border: 7px solid #20201f; border-radius: 38px; box-shadow: 0 28px 65px rgba(31,32,29,.24); transform: rotate(4deg); }
.phone-island { width: 70px; height: 18px; margin: 0 auto 23px; border-radius: 20px; background: #20201f; }
.phone-head { display: flex; justify-content: space-between; align-items: center; padding: 0 5px; font-size: 10px; color: var(--muted); }
.phone-head b { font-size: 14px; color: var(--ink); }
.nutrition-ring { width: 154px; height: 154px; margin: 37px auto 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 13px solid var(--green); border-left-color: #dcded8; border-radius: 50%; }
.nutrition-ring strong { font-size: 27px; }.nutrition-ring span { font-size: 9px; color: var(--muted); }
.macro-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }
.macro-row span { padding: 10px 3px; text-align: center; background: #ebece8; border-radius: 5px; color: var(--muted); font-size: 8px; }
.macro-row b { display: block; margin-top: 4px; color: var(--ink); font-size: 11px; }

.intro-band { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; padding: 100px clamp(24px, 7vw, 110px) 140px; border-top: 1px solid var(--line); }
.statement { max-width: 1000px; margin: 0; font-size: clamp(34px, 4.3vw, 64px); line-height: 1.16; }
.products, .resources { padding: 130px clamp(24px, 7vw, 110px); background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; margin-bottom: 70px; }
.section-heading h2 { margin: 0; max-width: 850px; font-size: clamp(42px, 5.4vw, 80px); line-height: 1.05; font-weight: 620; }
.section-heading > p:last-child { grid-column: 2; max-width: 560px; margin: -48px 0 0; color: var(--muted); font-size: 17px; }

.product { min-height: 640px; display: grid; grid-template-columns: minmax(280px, .75fr) minmax(500px, 1.25fr); overflow: hidden; margin-bottom: 18px; background: #eeeeeb; border-radius: var(--radius); }
.product-copy { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(34px, 5vw, 72px); }
.product-meta { width: 100%; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.status { padding: 5px 9px; border: 1px solid rgba(0,0,0,.14); border-radius: 20px; }
.status-building { background: var(--yellow); }.status-concept { background: #cbdbe7; }.status-testing { background: var(--lime); }
.product h3 { margin: auto 0 20px; max-width: 380px; font-size: clamp(40px, 4.5vw, 68px); line-height: 1.04; font-weight: 620; }
.product-copy > p { max-width: 410px; margin: 0 0 36px; color: #5d5d58; font-size: 18px; line-height: 1.7; }
.product-action { padding: 0 0 8px; border: 0; border-bottom: 1px solid var(--ink); background: none; cursor: pointer; }
.product-action:hover span { transform: translateX(4px); }
.visual { min-width: 0; display: grid; place-items: center; padding: 7%; overflow: hidden; }
.sanity-product-image { width: 100%; height: 100%; object-fit: cover; }
.visual.has-sanity-image { padding: 0; }
.visual.has-sanity-image > :not(.sanity-product-image) { display: none; }
.visual-extension { background: #d8ccb9; }.visual-desktop { background: #9bb1bf; }.visual-diet { background: #bfcba6; }
.extension-window { position: relative; width: min(760px, 100%); aspect-ratio: 1.35; background: #f8f7f3; border: 1px solid rgba(0,0,0,.2); border-radius: var(--radius); box-shadow: 0 28px 70px rgba(40,35,29,.2); transform: rotate(1deg); }
.window-toolbar { height: 9%; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid #ddd9d1; background: #ece9e2; }
.window-toolbar i { width: 8px; height: 8px; border-radius: 50%; background: #b8b5ad; }.window-toolbar span { margin: auto; color: #99968f; font-size: 9px; }
.article-lines { display: flex; flex-direction: column; gap: 17px; padding: 11% 10%; }
.article-lines span, .article-lines b { width: 78%; height: 11px; background: #dad7cf; border-radius: 2px; }.article-lines b { width: 48%; height: 23px; background: #aaa79f; }.article-lines .highlight { width: 66%; background: #e8d792; }
.translate-bubble { position: absolute; right: 5%; bottom: 8%; width: 46%; padding: 20px; background: #1d1d1b; color: white; border-radius: var(--radius); box-shadow: 0 20px 48px rgba(0,0,0,.26); }
.translate-bubble small { color: #aaa9a3; font-size: 8px; }.translate-bubble p { margin: 7px 0 16px; font-size: 13px; }.translate-bubble hr { border: 0; border-top: 1px solid #3d3d39; }.translate-bubble strong { display: block; margin-top: 7px; font-size: 14px; }
.desktop-panel { width: min(680px, 96%); background: rgba(251,251,249,.96); border: 1px solid rgba(0,0,0,.18); border-radius: var(--radius); box-shadow: 0 32px 70px rgba(36,55,67,.22); }
.desktop-top { height: 55px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; padding: 0 22px; border-bottom: 1px solid #d8d8d4; color: #777771; font-size: 11px; }
.desktop-top b { color: #aaa; }.desktop-columns { min-height: 270px; display: grid; grid-template-columns: 1fr 1fr; }
.desktop-columns p { margin: 0; padding: 40px 30px; font-size: clamp(19px, 2.4vw, 29px); line-height: 1.45; }.desktop-columns p + p { border-left: 1px solid #d8d8d4; background: #f1f2ef; }
.desktop-bottom { height: 58px; display: flex; align-items: center; gap: 6px; padding: 0 20px; border-top: 1px solid #d8d8d4; color: var(--muted); font-size: 10px; }.desktop-bottom kbd { min-width: 25px; height: 25px; display: grid; place-items: center; background: #e4e4e0; border: 1px solid #cecec9; border-radius: 4px; box-shadow: 0 1px 0 #aaa; }.desktop-bottom span { margin-left: auto; }
.diet-phone { width: min(330px, 80%); aspect-ratio: .54; padding: 23px 20px; background: #f7f7f3; border: 8px solid #20201e; border-radius: 42px; box-shadow: 0 30px 70px rgba(42,55,29,.24); transform: rotate(-2deg); }
.mini-nav { display: flex; justify-content: space-between; font-size: 9px; }.mini-nav b { font-size: 12px; }.greeting { margin-top: 50px; }.greeting small { color: var(--muted); }.greeting h4 { margin: 7px 0 24px; font-size: 23px; }
.calorie-block { display: flex; justify-content: space-between; align-items: center; padding: 20px; background: var(--ink); color: white; border-radius: var(--radius); }.calorie-block strong { display: block; font-size: 30px; }.calorie-block span { color: #aaa; font-size: 8px; }.progress-ring { width: 60px; height: 60px; display: grid; place-items: center; border: 6px solid var(--lime); border-left-color: #51514d; border-radius: 50%; font-size: 15px; }.progress-ring small { font-size: 8px; }
.meal-list { display: grid; gap: 9px; margin-top: 16px; }.meal-list span { display: flex; align-items: center; gap: 10px; padding: 12px; background: #e9eae4; border-radius: 6px; font-size: 10px; }.meal-list i { width: 26px; height: 26px; display: grid; place-items: center; background: white; border-radius: 50%; font-style: normal; }.meal-list b { margin-left: auto; font-size: 9px; }

.resources { background: var(--paper); }
.resource-list { border-top: 1px solid var(--line); }
.resource-row { min-height: 260px; display: grid; grid-template-columns: 200px 1fr 48px; align-items: center; gap: clamp(28px, 5vw, 80px); padding: 36px 0; border-bottom: 1px solid var(--line); }
.document-preview { position: relative; width: 170px; aspect-ratio: .78; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; overflow: hidden; color: white; box-shadow: 0 16px 30px rgba(0,0,0,.12); transition: transform .3s ease; }.resource-row:hover .document-preview { transform: rotate(-2deg) translateY(-4px); }
.sanity-resource-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.document-preview.has-sanity-image > :not(.sanity-resource-image) { display: none; }
.food-document { background: var(--green); }.training-document { background: var(--blue); }.document-preview span { font-size: 7px; }.document-preview b { width: 4em; font-size: 26px; line-height: 1.2; }.document-preview i { align-self: flex-end; font-size: 48px; font-style: normal; opacity: .22; }
.resource-info > span { color: var(--muted); font-size: 11px; }.resource-info h3 { margin: 11px 0 9px; font-size: clamp(26px, 3vw, 40px); }.resource-info p { margin: 0; color: var(--muted); }
.circle-action { width: 46px; height: 46px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; cursor: pointer; font-size: 18px; transition: background .2s, color .2s, transform .2s; }.circle-action:hover { background: var(--ink); color: white; transform: rotate(45deg); }

.closing { padding: 150px clamp(24px, 7vw, 110px); background: var(--ink); color: white; }
.closing .section-label { color: #92928c; }.closing h2 { max-width: 900px; margin: 30px 0 22px; font-size: clamp(50px, 7vw, 100px); line-height: 1.05; font-weight: 600; }.closing > p:not(.section-label) { max-width: 570px; margin-bottom: 50px; color: #aaa9a3; font-size: 18px; }.closing-contact { display: inline-flex; gap: 12px; padding: 0 0 8px; border: 0; border-bottom: 1px solid white; background: none; color: white; font-size: 17px; cursor: pointer; }
footer { min-height: 110px; display: flex; justify-content: space-between; align-items: center; padding: 0 clamp(24px, 7vw, 110px); background: var(--ink); border-top: 1px solid #353532; color: #8d8d87; font-size: 11px; }

.notify-dialog { width: min(520px, calc(100% - 32px)); padding: 42px; border: 0; border-radius: var(--radius); color: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.3); }.notify-dialog[open] { animation: dialog-in .35s cubic-bezier(.16, 1, .3, 1) both; }.notify-dialog::backdrop { background: rgba(20,20,19,.55); backdrop-filter: blur(5px); animation: backdrop-in .3s ease both; }.notify-dialog h2 { margin: 15px 0 12px; font-size: 38px; }.dialog-copy { color: var(--muted); }.dialog-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 0; background: #ecece8; border-radius: 50%; cursor: pointer; font-size: 20px; }.notify-dialog label { display: block; margin: 28px 0 8px; font-size: 12px; }.email-row { display: flex; gap: 8px; }.email-row input { min-width: 0; flex: 1; height: 48px; padding: 0 14px; border: 1px solid #cfcfca; border-radius: 5px; background: #f7f7f5; }.email-row button { height: 48px; padding: 0 20px; border: 0; border-radius: 5px; background: var(--ink); color: white; cursor: pointer; }.form-note { margin: 12px 0 0; color: #92928c; font-size: 10px; }

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.motion-group.motion-card {
  opacity: 0;
  transform: translateY(30px) scale(.992);
  transition: opacity .72s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}
.motion-group.motion-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.motion-piece {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .68s cubic-bezier(.16, 1, .3, 1),
    transform .82s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}
.motion-piece.motion-visual { transform: translateX(38px) scale(.985); }
.motion-group.is-visible .motion-piece {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (max-width: 900px) {
  .site-header { top: 18px; width: calc(100% - 32px); grid-template-columns: 1fr auto; }.nav { display: none; }
  .hero { min-height: 900px; grid-template-columns: 1fr; align-content: start; padding-top: 120px; }.hero h1 { font-size: clamp(64px, 18vw, 116px); }.hero-stage { min-height: 480px; }.hero-browser { width: 92%; height: 340px; }.hero-phone { width: 190px; height: 380px; }.nutrition-ring { width: 120px; height: 120px; margin-top: 22px; }.nutrition-ring strong { font-size: 20px; }
  .intro-band, .section-heading { grid-template-columns: 1fr; }.statement { margin-top: 15px; }.section-heading > p:last-child { grid-column: 1; margin: 0; }.section-heading { gap: 18px; }
  .product { grid-template-columns: 1fr; }.product-copy { min-height: 480px; }.visual { min-height: 520px; }
}

@media (max-width: 600px) {
  .glass-home { padding: 0; }
  .glass-home-frame { min-height: 100svh; border-radius: 0; }
  .glass-home-content { padding: 96px 18px; }
  .glass-home h1 { font-size: clamp(72px, 25vw, 122px); }
  .glass-scroll { bottom: 20px; padding: 9px 15px; }
  .site-header { height: 56px; padding: 0 10px 0 18px; }.header-contact { padding: 9px 13px; font-size: 13px; }
  .hero { min-height: 780px; padding: 100px 20px 42px; gap: 20px; }.hero h1 { font-size: 18vw; }.hero-intro { font-size: 21px; }.hero-stage { min-height: 380px; }.hero-browser { top: 28px; width: 96%; height: 270px; }.browser-body { padding: 40px 28px; }.translation-popover { top: 83px; right: 18px; width: 210px; padding: 14px; }.translation-popover p { margin: 15px 0; font-size: 13px; }.hero-phone { right: 2px; width: 142px; height: 285px; padding: 12px 8px; border-width: 5px; border-radius: 27px; }.phone-island { width: 46px; height: 12px; margin-bottom: 12px; }.nutrition-ring { width: 87px; height: 87px; margin: 15px auto; border-width: 8px; }.nutrition-ring strong { font-size: 15px; }.macro-row b { font-size: 8px; }.macro-row span { font-size: 6px; padding: 6px 1px; }
  .intro-band { padding: 72px 20px 90px; gap: 16px; }.statement { font-size: 32px; }
  .products, .resources { padding: 85px 20px; }.section-heading { margin-bottom: 42px; }.section-heading h2 { font-size: 43px; }
  .product { min-height: 0; margin-bottom: 12px; }.product-copy { min-height: 410px; padding: 28px 24px; }.product h3 { font-size: 43px; }.product-copy > p { font-size: 16px; }.visual { min-height: 390px; padding: 28px 18px; }
  .extension-window { aspect-ratio: 1.05; }.translate-bubble { width: 61%; padding: 14px; }.translate-bubble p { font-size: 10px; }.translate-bubble strong { font-size: 11px; }.article-lines { padding: 13% 7%; }
  .desktop-panel { width: 100%; }.desktop-columns { min-height: 220px; }.desktop-columns p { padding: 25px 15px; font-size: 17px; }.desktop-top { padding: 0 13px; }
  .diet-phone { width: 230px; padding: 17px 14px; border-radius: 32px; }.greeting { margin-top: 30px; }.greeting h4 { font-size: 18px; }.calorie-block { padding: 15px; }
  .resource-row { grid-template-columns: 105px 1fr 36px; gap: 16px; min-height: 190px; }.document-preview { width: 104px; padding: 13px; }.document-preview b { font-size: 17px; }.document-preview i { font-size: 30px; }.resource-info h3 { font-size: 23px; }.resource-info p { font-size: 12px; }.circle-action { width: 34px; height: 34px; }
  .closing { padding: 100px 20px; }.closing h2 { font-size: 52px; }.closing-contact { font-size: 14px; } footer { padding: 0 20px; }
  .notify-dialog { padding: 36px 22px 28px; }.notify-dialog h2 { font-size: 31px; }.email-row { flex-direction: column; }.email-row button { width: 100%; }
  .motion-piece.motion-visual { transform: translateY(24px) scale(.99); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .glass-home-bg,
  .glass-home h1,
  .glass-scroll { animation: none !important; }
  .site-header,
  .motion-group.motion-card,
  .motion-piece { opacity: 1 !important; transform: none !important; }
  .site-header { transform: translate(-50%, 0) !important; }
}
