:root {
  --bg: #060d09;
  --panel: #0d1c14;
  --panel-2: #12261a;
  --line: rgba(61, 220, 132, .18);
  --green: #12874e;
  --cream: #ffffff;
  --muted: #6fb08d;
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Gotham', sans-serif;
  overflow-x: clip;
}

body::before {
  content: '';
  position: fixed;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 168px;
  background: linear-gradient(180deg, rgba(61, 220, 132, 0), rgba(61, 220, 132, .28), rgba(61, 220, 132, 0));
  z-index: 21;
  pointer-events: none;
}

h1,
h2,
h3 {
  font-family: 'Gotham', sans-serif;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.vita-card,
.indicated-box,
.usage-card,
.nutrition-panel,
.nutrition-sidecard,
.wallpaper-card {
  position: relative;
  isolation: isolate;
  transition: transform .34s cubic-bezier(.22, 1, .36, 1), box-shadow .34s ease, border-color .34s ease;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, .24),
    0 22px 42px rgba(61, 220, 132, .07),
    0 30px 60px rgba(61, 220, 132, .04);
}

.vita-card::after,
.indicated-box::after,
.usage-card::after,
.nutrition-panel::after,
.nutrition-sidecard::after,
.wallpaper-card::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -24px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(61, 220, 132, .28) 0%, rgba(61, 220, 132, .14) 36%, rgba(61, 220, 132, 0) 74%);
  filter: blur(16px);
  opacity: .58;
  transform: scale(.92);
  transition: opacity .34s ease, transform .34s ease;
  pointer-events: none;
  z-index: -1;
}

.vita-card:hover,
.indicated-box:hover,
.usage-card:hover,
.nutrition-panel:hover,
.nutrition-sidecard:hover,
.wallpaper-card:hover {
  transform: translateY(-8px) scale(1.018);
  border-color: rgba(61, 220, 132, .28);
  box-shadow:
    0 24px 42px rgba(0, 0, 0, .28),
    0 28px 54px rgba(61, 220, 132, .12),
    0 38px 74px rgba(61, 220, 132, .08);
}

.vita-card:hover::after,
.indicated-box:hover::after,
.usage-card:hover::after,
.nutrition-panel:hover::after,
.nutrition-sidecard:hover::after,
.wallpaper-card:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--green);
}

section {
  position: relative;
}

.veins {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(61, 220, 132, .08), transparent 40%),
    radial-gradient(ellipse at 85% 75%, rgba(61, 220, 132, .06), transparent 45%);
}

#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 100;
  transition: opacity .5s ease;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

#loader-bar {
  width: 220px;
  height: 2px;
  background: #2a2a2c;
  position: relative;
  overflow: hidden;
}

#loader-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--green);
  transition: width .15s ease;
}

#loader-text {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-stage {
  position: relative;
  height: 400vh;
}

.stage-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 500px at 80% 10%, rgba(61, 220, 132, .14), transparent 60%),
    linear-gradient(180deg, #060d09, #0a1811 70%, var(--bg));
}

#frame-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.stage-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 48px;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .55), transparent 40%),
    linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 30%);
}

.stage-overlay h1 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  max-width: 11ch;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .45);
}

.stage-overlay h1 b {
  font-weight: 700;
  color: var(--green);
}

.progress-track {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 160px;
  background: rgba(255, 255, 255, .1);
  z-index: 20;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: var(--green);
}

.side-nav {
  position: fixed;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 22;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}

.side-nav-link {
  position: relative;
  color: rgba(246, 243, 234, .58);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.2;
  transition: color .28s ease, transform .28s ease, text-shadow .28s ease;
}

.side-nav-link::after {
  content: '';
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  width: 12px;
  height: 1px;
  background: rgba(61, 220, 132, .18);
  transform: translateY(-50%) scaleX(.35);
  transform-origin: left center;
  transition: transform .28s ease, background .28s ease;
}

.side-nav-link:hover,
.side-nav-link.active {
  color: var(--cream);
  transform: translateX(-8px);
  text-shadow: 0 0 18px rgba(61, 220, 132, .12);
}

.side-nav-link.active {
  color: var(--green);
}

.side-nav-link:hover::after,
.side-nav-link.active::after {
  background: var(--green);
  transform: translateY(-50%) scaleX(1);
}

.icon-row {
  padding: 60px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.icon-item span {
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.4;
}

.vita-section {
  padding: 90px 24px;
  position: relative;
}

.vita-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vita-card {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: visible;
}

.vita-card.featured-orange {
  padding-top: 88px;
}

.vita-card .orb-icon {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: contain;
  opacity: 1;
  top: -56px;
  right: 24px;
  z-index: 2;
  border-radius: 50%;
  padding: 25px;
  filter: none;
}

.vita-card.featured-orange .tag {
  font-size: 28pt;
  line-height: .9;
  letter-spacing: -0.02em;
  color: #009c5a;
  text-transform: none;
  display: block;
  max-width: 8ch;
}

.vita-card.featured-orange h3 {
  margin-top: 14px;
  font-size: 20px;
}

.vita-card h3 {
  font-size: 22px;
  color: var(--cream);
  position: relative;
}

.vita-card .tag {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vita-card p {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.65;
  font-size: 14.5px;
  position: relative;
}

.protein-number {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: clamp(70px, 10vw, 130px);
  line-height: .85;
  color: var(--cream);
}

.protein-number span {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
  margin-top: 8px;
}

.protein-cap {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.rotate-stage {
  height: 380vh;
  position: relative;
}

.rotate-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 0 22px;
  background:
    radial-gradient(ellipse 700px 500px at 50% 55%, rgba(61, 220, 132, .10), transparent 65%),
    var(--bg);
  overflow: visible;
}

.rotate-heading {
  text-align: center;
  margin-bottom: 18px;
}

.rotate-heading h2 {
  font-size: clamp(22px, 3.4vw, 34px);
}

.rotate-heading p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

#rotate-canvas {
  width: min(80vw, 860px);
  aspect-ratio: 1 / 1;
  height: auto;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 220px);
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.rotate-track {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  margin-top: 22px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.rotate-fill {
  height: 100%;
  width: 0%;
  background: var(--green);
}

.rotate-hint {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 10px;
}

.proplus-banner {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(180deg, #081b12, #06170e 40%, var(--bg));
  position: relative;
}

.proplus-logo {
  width: min(70vw, 420px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 24px rgba(61, 220, 132, .25));
}

.proplus-banner p {
  color: var(--muted);
  max-width: 46ch;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.6;
}

.proplus-banner p b {
  color: var(--green);
}

.indicated {
  padding: 90px 24px;
}

.indicated-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}

.indicated-box h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 20px;
}

.indicated-box ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.indicated-box li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--cream);
  font-size: 15px;
}

.indicated-box li::before {
  content: 'v';
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
}

.usage {
  padding: 20px 24px 100px;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.usage-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
}

.usage-card .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  height: 56px;
}

.usage-card .ico img {
  display: block;
  max-width: 150px;
  max-height: 100%;
  width: auto;
  height: auto;
}

.usage-card h4 {
  font-family: 'Gotham', sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
}

.usage-card p {
  font-size: 12.5px;
  color: var(--muted);
}

.section-intro {
  max-width: 720px;
}

.section-intro h2 {
  font-size: clamp(24px, 3.3vw, 34px);
}

.section-intro p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.nutrition-section {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse 700px 350px at 15% 0%, rgba(61, 220, 132, .08), transparent 65%),
    linear-gradient(180deg, rgba(9, 28, 18, .7), rgba(6, 13, 9, .95));
}

.nutrition-wrap {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.nutrition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}

.nutrition-panel,
.nutrition-sidecard {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}

.nutrition-panel {
  padding: 28px;
  min-width: 0;
}

.nutrition-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.nutrition-meta div {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
}

.meta-label {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.nutrition-meta strong {
  font-size: 18px;
  color: var(--cream);
}

.nutrition-table-scroll {
  position: relative;
}

.nutrition-table-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 36px;
  background: linear-gradient(to right, transparent, var(--panel-2));
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

.nutrition-table-scroll.has-overflow::after {
  opacity: 1;
}

.nutrition-table-scroll.at-end::after {
  opacity: 0;
}

.table-scroll-hint {
  position: absolute;
  right: 10px;
  bottom: -26px;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--muted);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.table-scroll-hint::after {
  content: '\2192';
  margin-left: 4px;
  display: inline-block;
  animation: scroll-hint-arrow 1.1s ease-in-out infinite;
}

.nutrition-table-scroll.show-hint .table-scroll-hint {
  opacity: 1;
}

@keyframes scroll-hint-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.nutrition-table-wrap {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.nutrition-table th,
.nutrition-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  text-align: left;
}

.nutrition-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
}

.nutrition-table td {
  color: var(--cream);
}

.nutrition-table td:not(:first-child),
.nutrition-table th:not(:first-child) {
  text-align: center;
}

.nutrition-table tbody tr:hover {
  background: rgba(255, 255, 255, .025);
}

.nutrition-note,
.nutrition-footnote,
.nutrition-sidecard p {
  color: var(--muted);
  line-height: 1.7;
}

.nutrition-note {
  margin-top: 18px;
}

.nutrition-footnote {
  margin-top: 8px;
  font-size: 13px;
}

.nutrition-sidecard {
  padding: 28px;
  align-self: start;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(61, 220, 132, .12);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nutrition-sidecard h3 {
  font-size: 26px;
  line-height: 1.08;
  margin-top: 16px;
}

.nutrition-sidecard ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.nutrition-sidecard li {
  position: relative;
  padding-left: 18px;
  color: var(--cream);
  line-height: 1.6;
}

.nutrition-sidecard li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.faq-section {
  padding: 100px 24px;
}

.faq-intro {
  margin-bottom: 30px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 38, 26, .95), rgba(10, 21, 15, .95));
  overflow: hidden;
  transition: border-color .34s ease, transform .34s cubic-bezier(.22, 1, .36, 1), box-shadow .34s ease;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, .22),
    0 22px 42px rgba(61, 220, 132, .07),
    0 30px 56px rgba(61, 220, 132, .04);
}

.faq-item:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(61, 220, 132, .3);
  box-shadow:
    0 24px 42px rgba(0, 0, 0, .28),
    0 30px 54px rgba(61, 220, 132, .12),
    0 40px 72px rgba(61, 220, 132, .08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  position: relative;
  font-size: 17px;
  font-weight: 600;
  transition: color .24s ease, background .24s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 24px;
  line-height: 1;
  transition: transform .28s ease, opacity .2s ease;
}

.faq-item[open] summary::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] summary {
  color: var(--green);
  background: rgba(61, 220, 132, .03);
}

.faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 24px;
  transform: translateY(-8px);
  transition: opacity .34s ease, transform .42s cubic-bezier(.22, 1, .36, 1);
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.wallpaper-section {
  padding: 100px 24px 120px;
}

.wallpaper-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.wallpaper-copy p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 48ch;
}

.wallpaper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.wallpaper-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: #042111;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 16px 28px rgba(61, 220, 132, .18);
}

.wallpaper-button:hover {
  transform: translateY(-2px);
}

.wallpaper-button.ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
  box-shadow: none;
}

.wallpaper-previews {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.wallpaper-card {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(13, 28, 20, .96), rgba(8, 18, 13, .96));
}

.preview-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.preview-art {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  border: none;
}

.preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}



.preview-art::after {
  width: 160px;
  height: 160px;
  left: -52px;
  bottom: -62px;
}

.preview-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246, 243, 234, .08);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-art strong,
.preview-art span {
  position: relative;
  z-index: 1;
}

.preview-art strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.05;
}

.preview-art span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.preview-desktop-art {
  min-height: 260px;
}

.preview-mobile-art {
  min-height: 360px;
}

@media (min-width: 861px) {
  .nutrition-layout {
    grid-template-columns: 10fr 1fr;
    width: 100%;
  }
}

@media (max-width: 860px) {
  body::before,
  .side-nav,
  .progress-track {
    display: none;
  }

  .vita-grid {
    grid-template-columns: 1fr;
  }

  .icon-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }

  .usage-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .nutrition-layout,
  .wallpaper-layout,
  .wallpaper-previews {
    grid-template-columns: minmax(0, 1fr);
  }

  .nutrition-meta {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    font-size: 16px;
  }

  .stage-overlay {
    padding: 28px 20px;
  }

  /* Rotate section layout: heading at top, hint pinned to bottom, canvas
     centered in the space between them via auto margins. */
  .rotate-sticky {
    justify-content: flex-start;
    padding: 24px 16px 16px;
  }

  .rotate-heading {
    margin-bottom: 0;
    padding: 0 8px;
  }

  #rotate-canvas {
    width: min(82vw, 460px);
    aspect-ratio: 1 / 1;
    height: auto;
    margin: auto 0;
  }

  .rotate-track {
    margin-top: 0;
  }

  /* Reduce section vertical padding */
  .vita-section,
  .indicated {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .usage {
    padding-top: 14px;
    padding-bottom: 70px;
  }

  .proplus-banner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .nutrition-section,
  .faq-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .wallpaper-section {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  /* Reduce card padding */
  .indicated-box {
    padding: 28px;
  }

  /* Scale down orb icon */
  .vita-card .orb-icon {
    width: 130px;
    height: 130px;
    top: -38px;
  }

  /* Scale down large tag text */
  .vita-card.featured-orange .tag {
    font-size: 22pt;
  }

  /* Rotate section heading */
  .rotate-heading h2 {
    font-size: clamp(20px, 4.5vw, 28px);
  }

  /* Wallpaper previews stacked */
  .wallpaper-previews {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .nutrition-section,
  .faq-section,
  .wallpaper-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nutrition-panel,
  .nutrition-sidecard,
  .wallpaper-card {
    padding: 20px;
  }

  .nutrition-table {
    min-width: 480px;
  }

  .wallpaper-button {
    width: 100%;
  }

  .preview-desktop-art {
    min-height: 220px;
  }

  .preview-mobile-art {
    min-height: 300px;
  }

  .vita-card {
    padding: 24px;
  }

  .vita-card.featured-orange {
    padding-top: 76px;
  }

  .vita-card.featured-orange .tag {
    font-size: 18pt;
  }

  .vita-card .orb-icon {
    width: 110px;
    height: 110px;
    top: -32px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  /* Icon grid: 3 cols compactos */
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .icon-circle {
    width: 52px;
    height: 52px;
    padding: 8px;
  }

  .icon-item span {
    font-size: 10px;
  }

  .icon-row {
    padding: 40px 16px;
  }

  /* Sections padding */
  .vita-section,
  .indicated {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .usage {
    padding-left: 16px;
    padding-right: 16px;
  }

  .proplus-banner {
    padding: 56px 16px;
  }

  .proplus-logo {
    width: min(80vw, 280px);
  }

  .proplus-banner p {
    font-size: 14px;
  }

  .indicated-box {
    padding: 20px 18px;
  }

  .usage-card {
    padding: 20px;
  }

  /* Vita card */
  .vita-card {
    padding: 20px;
  }

  .vita-card.featured-orange {
    padding-top: 66px;
  }

  .vita-card.featured-orange .tag {
    font-size: 16pt;
  }

  .vita-card .orb-icon {
    width: 96px;
    height: 96px;
    top: -28px;
    right: 12px;
  }

  .vita-card h3 {
    font-size: 18px;
  }

  /* Hero overlay */
  .stage-overlay {
    padding: 22px 16px;
  }

  /* Rotate section */
  .rotate-sticky {
    padding: 18px 12px 12px;
  }

  .rotate-heading {
    padding: 0 12px;
  }

  /* FAQ */
  .faq-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-item summary {
    font-size: 14px;
    padding: 18px 44px 18px 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  /* Nutrition */
  .nutrition-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nutrition-panel,
  .nutrition-sidecard {
    padding: 16px;
  }

  .nutrition-sidecard h3 {
    font-size: 20px;
  }

  /* Wallpaper */
  .wallpaper-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wallpaper-card {
    padding: 14px;
  }

  .wallpaper-actions {
    flex-direction: column;
  }

  .wallpaper-button {
    width: 100%;
    text-align: center;
  }

  /* Rotate canvas: smaller on very small screens */
  #rotate-canvas {
    width: min(90vw, 380px);
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: calc(100vh - 140px);
    max-width: 100%;
  }

  /* Nutrition table: tighter min-width */
  .nutrition-table {
    min-width: 400px;
    font-size: 13px;
  }

  .nutrition-table th,
  .nutrition-table td {
    padding: 10px 8px;
  }
}
