@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Mochiy+Pop+One&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --dojo-royal: #1a2b6b;
  --dojo-cream: #fdfbf5;
  --dojo-pink: #ff4d94;
  --dojo-pink-bg: #fde8f0;
  --dojo-blue: #a3d8ff;
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--dojo-pink-bg);
  color: var(--dojo-royal);
  overflow-x: hidden;
}

.site-clock {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 43, 107, 0.45);
  pointer-events: none;
  line-height: 1.2;
}

.site-clock-time {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Custom cursor fish */
body.custom-cursor,
body.custom-cursor * {
  cursor: none !important;
}

.fish-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

.fish-cursor img {
  width: 56px;
  height: auto;
  user-select: none;
  filter: drop-shadow(rgba(0, 0, 0, 0.22) 0 3px 6px);
  transform-origin: 60% 55%;
  animation: fish-swim 0.42s ease-in-out infinite alternate;
}

@keyframes fish-swim {
  from { transform: rotate(-8deg) translateY(-1.5px); }
  to { transform: rotate(8deg) translateY(1.5px); }
}

#fish-trail-layer {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}

.fish-jp-trail {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  font-family: 'Mochiy Pop One', system-ui, sans-serif;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dojo-pink);
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
}

.fish-jp-trail.is-active {
  animation: fish-jp-trail 1.1s ease-out forwards;
}

@keyframes fish-jp-trail {
  0% {
    opacity: 0.95;
    transform: translate3d(var(--trail-x, 0), var(--trail-y, 0), 0) translate(-50%, -50%) scale(0.85);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--trail-x, 0), calc(var(--trail-y, 0px) - 42px), 0) translate(-50%, -50%) scale(1.05);
  }
}

/* Hero */
.hero-header {
  background: var(--dojo-pink-bg);
  text-align: center;
  padding: 26px 16px 4px;
  overflow: hidden;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 23vw, 22rem);
  letter-spacing: -0.03em;
  line-height: 0.84;
  color: var(--dojo-royal);
  margin: 6px 0 0;
  animation: dm-rise 0.8s 0.08s ease both;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--dojo-royal);
  max-width: 38ch;
  margin: 12px auto 8px;
  animation: dm-rise 0.8s 0.16s ease both;
}

@keyframes dm-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-bottle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 16px 28px;
  background: var(--dojo-pink-bg);
}

.hero-waitlist-cta {
  width: auto;
  min-width: min(100%, 280px);
  max-width: 420px;
  margin: 0;
}

.hero-bottle {
  width: clamp(200px, 28vw, 350px);
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  animation: float-in 1s 0.2s ease forwards, hero-bottle-bob 5s 1.2s ease-in-out infinite;
}

@keyframes hero-bottle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bottle {
    animation: float-in 1s 0.2s ease forwards;
  }
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Marquee bands */
.marquee-band {
  background: var(--dojo-pink);
  padding: 13px 0;
  overflow: hidden;
  border-top: 3px solid var(--dojo-royal);
  border-bottom: 3px solid var(--dojo-royal);
}

.marquee-row {
  overflow: hidden;
  display: flex;
}

.marquee-row + .marquee-row {
  margin-top: 3px;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-word {
  font-family: 'Mochiy Pop One', system-ui, sans-serif;
  font-size: 15px;
  padding: 0 10px;
  letter-spacing: 0.04em;
}

.marquee-sep {
  font-size: 14px;
  color: var(--dojo-royal);
  opacity: 0.7;
  padding: 0 6px;
}

.marquee-left { animation: scroll-left 28s linear infinite; }
.marquee-right { animation: scroll-right 28s linear infinite; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Intro section */
.intro-section {
  overflow: hidden;
  padding: 16px 0 64px;
  background: var(--dojo-pink-bg);
  position: relative;
}

@media (max-width: 767px), (max-height: 520px) and (orientation: landscape) {
  .intro-section {
    padding-bottom: 48px;
  }
}

.intro-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .intro-inner {
    flex-direction: row;
    gap: 64px;
    padding: 24px 48px 24px;
  }
}

.intro-bottle {
  flex-shrink: 0;
  width: min(540px, 100%);
  margin-left: -2rem;
}

@media (min-width: 768px) {
  .intro-bottle { margin-left: -4rem; }
}

@media (min-width: 1024px) {
  .intro-bottle { margin-left: -7rem; }
}

.intro-bottle img {
  width: 100%;
  object-fit: contain;
}

.intro-copy {
  flex: 1;
}

.intro-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}

.intro-copy > p {
  margin: 20px 0 0;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(26, 43, 107, 0.6);
  max-width: 32rem;
}

.intro-brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--dojo-royal);
  margin: 28px 0 0;
  max-width: 32rem;
}

.feature-list {
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}

@media (max-width: 767px) {
  .intro-section {
    padding-top: 12px;
  }

  .intro-inner {
    gap: 12px;
  }

  .intro-copy {
    display: contents;
  }

  .intro-copy h2 {
    order: -2;
    width: 100%;
  }

  .intro-bottle {
    order: -1;
    margin-top: -1rem;
  }

  .intro-copy > p,
  .intro-copy .intro-brand,
  .intro-copy .feature-list,
  .intro-copy .cta-row {
    width: 100%;
  }
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dojo-pink);
  margin-top: 6px;
}

.feature-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-item span {
  font-size: 0.875rem;
  color: rgba(26, 43, 107, 0.6);
}

.intro-stamps-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 0 40px;
  padding: 8px clamp(12px, 3vw, 48px) 0;
  position: relative;
  z-index: 1;
}

.intro-stamps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-items: center;
  align-items: end;
  gap: clamp(6px, 1.2vw, 18px);
  width: min(100%, 1100px);
  margin: 0 auto;
}

.fish-stamp {
  width: 100%;
  max-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.fish-stamp-jp {
  font-family: 'Mochiy Pop One', system-ui, sans-serif;
  font-size: clamp(0.72rem, 2.4vw, 1rem);
  line-height: 1;
  color: var(--dojo-pink);
  margin-bottom: -4px;
  animation: stamp-jp-float 2.8s ease-in-out infinite;
}

.fish-stamp:nth-child(2) .fish-stamp-jp { animation-delay: -0.5s; }
.fish-stamp:nth-child(3) .fish-stamp-jp { animation-delay: -1s; }
.fish-stamp:nth-child(4) .fish-stamp-jp { animation-delay: -1.5s; }
.fish-stamp:nth-child(5) .fish-stamp-jp { animation-delay: -2s; }

@keyframes stamp-jp-float {
  0%, 100% { transform: translateY(0); opacity: 0.72; }
  50% { transform: translateY(-6px); opacity: 1; }
}

.fish-stamp-shape {
  width: min(100%, clamp(120px, 16vw, 210px));
  aspect-ratio: 1;
  display: grid;
  container-type: inline-size;
  position: relative;
}

.fish-stamp-shape::before {
  content: '';
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  background: var(--stamp-color);
  mask: url('../assets/images/fish-footer.png') center / contain no-repeat;
  -webkit-mask: url('../assets/images/fish-footer.png') center / contain no-repeat;
}

.fish-stamp-text {
  grid-area: 1 / 1;
  place-self: center;
  z-index: 1;
  width: 54%;
  margin-top: 7cqi;
  font-family: var(--font-display);
  font-size: 10.5cqi;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  color: var(--stamp-text);
  text-wrap: balance;
}

.fish-stamp--squeeze .fish-stamp-text {
  width: 58%;
  margin-top: 6.5cqi;
  font-size: 8.8cqi;
  line-height: 1.05;
}

.fish-stamp--organic {
  --stamp-color: #86efac;
  --stamp-text: #14532d;
}

.fish-stamp--barrel {
  --stamp-color: #fcd34d;
  --stamp-text: #78350f;
}

.fish-stamp--japan {
  --stamp-color: #fca5a5;
  --stamp-text: #7f1d1d;
}

.fish-stamp--sodium {
  --stamp-color: #93c5fd;
  --stamp-text: #1e3a8a;
}

.fish-stamp--squeeze {
  --stamp-color: var(--dojo-pink);
  --stamp-text: #ffffff;
}

@media (min-width: 768px) {
  .intro-stamps-wrap {
    margin-bottom: 48px;
  }

  .intro-stamps {
    gap: clamp(10px, 1.4vw, 22px);
  }
}

@media (max-width: 767px) {
  .intro-stamps-wrap {
    margin-bottom: 28px;
    padding: 4px 8px 0;
  }

  .intro-stamps {
    gap: 3px;
    width: min(100%, 560px);
  }

  .fish-stamp-shape {
    width: min(100%, clamp(96px, 18vw, 132px));
  }

  .fish-stamp-jp {
    font-size: clamp(0.62rem, 2.8vw, 0.82rem);
    margin-bottom: -2px;
  }
}

@media (max-width: 420px) {
  .intro-stamps {
    width: 100%;
    gap: 2px;
  }

  .fish-stamp-shape {
    width: min(100%, 19.5vw);
  }
}

.cta-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--dojo-royal);
  color: white;
}

.btn-primary:hover {
  background: rgba(26, 43, 107, 0.9);
}

.btn-outline {
  background: transparent;
  color: var(--dojo-royal);
  border: 2px solid var(--dojo-royal);
}

.btn-outline:hover {
  background: var(--dojo-royal);
  color: white;
}

.btn-waitlist {
  width: 100%;
  max-width: 420px;
  padding: 18px 40px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Use section */
.use-section {
  background: var(--dojo-royal);
  padding: 12px 6vw 56px;
  margin-top: -1px;
}

.use-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.use-copy {
  margin-top: 32px;
}

.use-copy .section-title-use {
  margin-bottom: 0;
}

/* Origin section */
.origin-section {
  background: var(--dojo-pink-bg);
  padding: 0 6vw 80px;
}

.origin-inner {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dojo-pink);
  margin: 0 0 10px;
}

.section-title-light {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--dojo-cream);
  margin: 0 0 36px;
}

.origin-grid {
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  flex-wrap: wrap;
  align-items: stretch;
}

.origin-map {
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  max-width: calc(50% - 16px);
  display: flex;
}

.origin-map svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.origin-detail {
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  max-width: calc(50% - 16px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
}

.origin-card {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  background: var(--dojo-cream);
  border: 1.5px solid #d9c8d5;
  border-radius: 18px;
  padding: 16px 18px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.3s;
}

.origin-photo {
  margin: 0;
  width: 100%;
  flex: 1 1 0;
  min-height: clamp(220px, 28vw, 340px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: rgba(26, 43, 107, 0.14) 0 12px 32px;
  border: 1.5px solid rgba(26, 43, 107, 0.08);
}

.origin-photo img,
.origin-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  pointer-events: none;
}

.origin-photo video::-webkit-media-controls,
.origin-photo video::-webkit-media-controls-enclosure,
.origin-photo video::-webkit-media-controls-panel,
.origin-photo video::-webkit-media-controls-start-playback-button,
.origin-photo video::-webkit-media-controls-play-button,
.origin-photo video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .origin-map,
  .origin-detail {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .origin-photo {
    flex: 0 0 auto;
    min-height: clamp(200px, 52vw, 280px);
  }
}

.origin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 43, 107, 0.12);
}

.origin-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 2px;
}

.origin-card .jp {
  font-size: 12px;
  font-weight: 600;
  color: #a38ba0;
  margin: 0 0 10px;
}

.origin-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #3a2a26;
  margin: 0;
}

.origin-foot {
  border-top: 1px solid #e7d9c4;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

@keyframes dom-ring {
  0% { transform: scale(0.4); opacity: 0.55; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes dom-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.map-pin-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: dom-ring 2.8s ease-out infinite;
}

.map-pin-ring.delay-1 { animation-delay: 0.9s; }
.map-pin-ring.delay-2 { animation-delay: 1.8s; }

.map-pin {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: dom-bob 3s ease-in-out infinite;
}

/* Story section */
.story-section {
  background: var(--dojo-pink-bg);
  padding: 48px 6vw 24px;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title-dark {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 28px 0 18px;
}

.section-title-use {
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section-title-use .use-title-break {
    display: none;
  }

  .section-title-use {
    white-space: nowrap;
  }
}

.story-copy {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.story-copy .section-title-dark {
  margin: 28px 0 18px;
}

.story-copy .story-lead {
  margin: 0 auto;
}

.story-lead {
  font-size: 16px;
  line-height: 1.62;
  color: #5a3a26;
  margin: 0;
  max-width: 560px;
}

.story-lead strong {
  color: var(--dojo-royal);
  font-weight: 600;
}

.video-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.video-card {
  flex: 1 1 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(26, 43, 107, 0.18) 0 16px 40px;
}

.video-card.reveal {
  transform: none;
  transition: opacity 0.6s ease;
}

.video-card video {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  pointer-events: none;
  -webkit-touch-callout: none;
}

.video-card video::-webkit-media-controls,
.video-card video::-webkit-media-controls-enclosure,
.video-card video::-webkit-media-controls-panel,
.video-card video::-webkit-media-controls-start-playback-button,
.video-card video::-webkit-media-controls-play-button,
.video-card video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.video-card.sepia video {
  filter: sepia(0.35) saturate(1.3) brightness(1.05) hue-rotate(-10deg);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .use-grid { grid-template-columns: repeat(4, 1fr); }
}

.use-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.use-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 43, 107, 0.82) 0%, rgba(26, 43, 107, 0.1) 55%, transparent 100%);
}

.use-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 18px 16px;
}

.use-card-text h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--dojo-cream);
  margin: 0;
  line-height: 1;
}

.use-card-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Made in Japan band */
.ttm-band {
  background: var(--dojo-pink);
  padding: 12px 0;
  overflow: hidden;
  border-top: 3px solid var(--dojo-royal);
  border-bottom: 3px solid var(--dojo-royal);
}

.ttm-track-l {
  display: flex;
  flex-shrink: 0;
  will-change: transform;
  animation: scroll-left 28s linear infinite;
}

.ttm-row {
  overflow: hidden;
  display: flex;
}

.ttm-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ttm-phrase {
  font-family: 'Mochiy Pop One', system-ui, sans-serif;
  font-size: 15px;
  padding: 0 10px;
  letter-spacing: 0.04em;
}

.ttm-dot {
  font-size: 14px;
  color: var(--dojo-royal);
  opacity: 0.65;
  padding: 0 6px;
}

/* Compare section */
.compare-section {
  background: var(--dojo-royal);
  padding: 96px 24px;
}

.compare-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.compare-header {
  text-align: center;
  margin-bottom: 56px;
}

.compare-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.compare-header h2 .pink { color: var(--dojo-pink); }
.compare-header h2 .blue { color: var(--dojo-blue); }
.compare-header h2 .white { color: white; }

.compare-header p {
  margin: 16px 0 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Comparison chart */
.compare-chart {
  --compare-head-h: 72px;
  --compare-row-h: 58px;
}

.compare-chart-scroll {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 20px 16px 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-chart-layout {
  display: flex;
  gap: 12px;
  align-items: stretch;
  min-width: 760px;
}

.compare-features {
  flex: 0 0 158px;
  display: flex;
  flex-direction: column;
}

.compare-features-spacer {
  height: var(--compare-head-h);
  flex-shrink: 0;
}

.compare-feature {
  height: var(--compare-row-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding-right: 8px;
}

.compare-jp {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dojo-pink);
  line-height: 1.1;
}

.compare-en {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
}

.compare-feature--squeeze .compare-en {
  font-size: 0.72rem;
  line-height: 1.15;
}

.compare-dojo-pill {
  width: 96px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--dojo-pink) 0%, #e8357f 100%);
  box-shadow:
    0 0 36px rgba(255, 77, 148, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.compare-dojo-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: var(--compare-head-h);
  justify-content: flex-end;
  padding-bottom: 8px;
  flex-shrink: 0;
}

.compare-dojo-fish {
  width: 30px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.compare-dojo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: white;
  line-height: 1;
}

.compare-dojo-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.compare-dojo-checks li {
  height: var(--compare-row-h);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compare-dojo-checks li:nth-child(4) {
  flex-direction: column;
  gap: 0;
}

.compare-sodium-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: clamp(0.64rem, 1.35vw, 0.76rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.compare-sodium-cell--dojo {
  background: rgba(255, 255, 255, 0.94);
  color: var(--dojo-pink);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}

.compare-brand-row--sodium {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-brand-row--sodium .compare-sodium-cell {
  justify-self: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
}

.compare-brand-row--sodium .compare-sodium-cell:not(:last-child) {
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.06);
}

.compare-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.compare-mark--yes {
  width: 38px;
  height: 38px;
  color: var(--dojo-royal);
  background: radial-gradient(circle at 35% 28%, #fff 0%, #ffd4e8 45%, #ffb8d9 100%);
  box-shadow:
    0 0 18px rgba(255, 190, 220, 0.95),
    0 0 6px rgba(255, 255, 255, 0.55);
}

.compare-mark--yes svg {
  display: block;
}

.compare-mark--no {
  width: 28px;
  height: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.compare-brands {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.compare-brand-headers {
  height: var(--compare-head-h);
  display: grid;
  grid-template-columns: repeat(5, minmax(88px, 1fr));
  align-items: end;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-brand-headers span {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.8vw, 1.05rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.15;
  padding: 0 6px;
}

.compare-brand-grid {
  display: flex;
  flex-direction: column;
}

.compare-brand-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(88px, 1fr));
  height: var(--compare-row-h);
  align-items: center;
}

.compare-brand-row .compare-mark {
  justify-self: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-brand-row .compare-mark:last-child {
  border-right: none;
}

.compare-brand-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-mark--competitor {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.compare-footnote {
  margin: 16px 8px 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
}

.compare-chart-cta {
  display: block;
  width: fit-content;
  margin: 28px auto 0;
  border-radius: 999px;
  background: var(--dojo-pink);
  color: white;
  padding: 14px 32px;
  font-weight: 700;
  box-shadow: rgba(255, 77, 148, 0.35) 0 16px 40px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compare-chart-cta:hover {
  background: white;
  color: var(--dojo-royal);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .compare-chart {
    --compare-head-h: 80px;
    --compare-row-h: 64px;
  }

  .compare-chart-scroll {
    padding: 28px 24px 32px;
  }

  .compare-chart-layout {
    gap: 20px;
    min-width: 860px;
  }

  .compare-features {
    flex: 0 0 178px;
  }

  .compare-feature--squeeze .compare-en {
    font-size: 0.78rem;
  }

  .compare-brand-headers {
    grid-template-columns: repeat(5, minmax(100px, 1fr));
  }

  .compare-brand-row {
    grid-template-columns: repeat(5, minmax(100px, 1fr));
  }

  .compare-sodium-cell {
    min-width: 64px;
    padding: 7px 11px;
    font-size: 0.76rem;
  }

  .compare-mark--competitor {
    width: 38px;
    height: 38px;
  }

  .compare-dojo-pill {
    width: 108px;
    padding: 0 10px 14px;
  }

  .compare-dojo-fish {
    width: 36px;
  }

  .compare-dojo-name {
    font-size: 1.15rem;
  }

  .compare-jp {
    font-size: 1.05rem;
  }

  .compare-en {
    font-size: 0.92rem;
  }

  .compare-mark--yes {
    width: 42px;
    height: 42px;
  }

  .compare-mark--no {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }
}

/* Signup */
.signup-section {
  padding: 96px 24px;
  background: var(--dojo-pink-bg);
}

.signup-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.signup-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.signup-inner > p {
  margin: 16px 0 0;
  font-size: 1.125rem;
  color: rgba(26, 43, 107, 0.55);
}

.signup-form {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.signup-form input {
  width: 100%;
  border: 1px solid rgba(26, 43, 107, 0.15);
  background: rgba(255, 255, 255, 0.7);
  color: var(--dojo-royal);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 1rem;
}

.signup-form input::placeholder {
  color: rgba(26, 43, 107, 0.3);
}

.signup-form input:focus {
  outline: 2px solid var(--dojo-pink);
  outline-offset: 0;
}

.signup-form button {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 16px;
  background: var(--dojo-royal);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.signup-form button:hover {
  background: rgba(26, 43, 107, 0.9);
}

/* Footer */
.footer-waves {
  position: relative;
  height: 96px;
  margin-bottom: -1px;
  overflow: hidden;
}

.wave-layer {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.wave-layer.back {
  transform: translateX(1.7%);
  opacity: 0.85;
}

.wave-layer.back span { background: var(--dojo-blue); }
.wave-layer.front span { background: var(--dojo-royal); }

.wave-layer span {
  flex: 1 1 0;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  transform-origin: center bottom;
  animation: df-puff 2.6s ease-in-out infinite;
}

.wave-layer.front span {
  animation-duration: 2.1s;
}

@keyframes df-puff {
  0%, 100% { transform: scaleY(0.42); }
  50% { transform: scaleY(1.05); }
}

.site-footer {
  background: var(--dojo-royal);
  padding: 40px 6vw 46px;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 30px;
}

.footer-tagline {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--dojo-cream);
  opacity: 0.85;
}

.footer-tagline-sub {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #ffb8d9;
  text-align: center;
  max-width: 22ch;
}

.footer-quote {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  text-align: center;
  max-width: min(42ch, 92vw);
}

.footer-quote-en {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #ffb8d9;
}

.footer-quote-jp {
  margin: 7px 0 0;
  font-size: clamp(0.74rem, 1.25vw, 0.88rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: #ffc8e3;
}

.footer-quote-cite {
  display: block;
  margin-top: 8px;
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  opacity: 0.92;
}

.footer-quote-cite::before {
  content: "— ";
}

.footer-logo img {
  width: clamp(180px, 28vw, 340px);
  filter: drop-shadow(rgba(0, 0, 0, 0.25) 0 16px 32px);
  transition: transform 0.3s;
}

.footer-logo img:hover {
  transform: scale(1.03);
}

.footer-nav {
  display: none; /* hidden for now */
}

.footer-nav a {
  font-weight: 700;
  font-size: 16px;
  color: var(--dojo-cream);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-nav a:hover {
  border-color: var(--dojo-pink);
  color: var(--dojo-pink);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.12);
  color: var(--dojo-cream);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 22px;
}

.footer-social a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 1; }

.footer-email {
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.footer-email--hero {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--dojo-cream);
  opacity: 1;
}

.footer-email:hover,
.footer-email--hero:hover {
  opacity: 1;
  color: var(--dojo-pink);
}

.footer-copy { opacity: 0.4; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Product page ── */
.product-page {
  background: var(--dojo-cream);
}

.product-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(253, 251, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(26, 43, 107, 0.08);
}

.product-nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--dojo-royal);
}

.product-nav-links {
  display: none;
  gap: 28px;
}

@media (min-width: 640px) {
  .product-nav-links { display: flex; }
}

.product-nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(26, 43, 107, 0.55);
  transition: color 0.2s;
}

.product-nav-links a:hover,
.product-nav-links a.active {
  color: var(--dojo-royal);
}

.product-nav-links a.active {
  border-bottom: 2px solid var(--dojo-pink);
  padding-bottom: 2px;
}

.product-nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--dojo-royal);
  color: white;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.2s;
}

.product-nav-cta:hover {
  background: rgba(26, 43, 107, 0.88);
}

.product-hero {
  padding: 32px 24px 64px;
  background: var(--dojo-pink-bg);
}

.product-hero-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 900px) {
  .product-hero-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    padding: 24px 0 0;
  }
}

.product-gallery {
  flex: 1.1;
}

.product-gallery-main {
  background: var(--dojo-cream);
  border-radius: 28px;
  border: 2px solid rgba(26, 43, 107, 0.08);
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  box-shadow: rgba(26, 43, 107, 0.08) 0 24px 48px;
}

.product-gallery-main img {
  width: min(280px, 70%);
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.12));
  transition: opacity 0.3s;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.product-thumb {
  flex: 1;
  max-width: 96px;
  aspect-ratio: 1;
  border: 2px solid rgba(26, 43, 107, 0.1);
  border-radius: 16px;
  background: var(--dojo-cream);
  padding: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.product-thumb:hover {
  transform: translateY(-2px);
}

.product-thumb.active {
  border-color: var(--dojo-pink);
  box-shadow: 0 0 0 1px var(--dojo-pink);
}

.product-thumb img,
.product-thumb video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: white;
  color: var(--dojo-royal);
  border: 1.5px solid rgba(26, 43, 107, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
}

.product-buy {
  flex: 1;
  max-width: 480px;
}

.product-eyebrow {
  margin-bottom: 8px;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

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

.stars {
  color: #ffb800;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(26, 43, 107, 0.5);
}

.product-lead {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(26, 43, 107, 0.6);
}

.purchase-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 28px;
  padding: 4px;
  background: rgba(26, 43, 107, 0.06);
  border-radius: 16px;
}

.purchase-option {
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
}

.purchase-option.active {
  background: white;
  box-shadow: rgba(26, 43, 107, 0.1) 0 4px 12px;
}

.purchase-option-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dojo-royal);
}

.purchase-option-save {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dojo-pink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.product-price-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dojo-royal);
}

.product-price-compare {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(26, 43, 107, 0.35);
  text-decoration: line-through;
}

.product-price-note {
  flex-basis: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(26, 43, 107, 0.45);
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 12px 0;
  border-top: 1px solid rgba(26, 43, 107, 0.08);
  border-bottom: 1px solid rgba(26, 43, 107, 0.08);
}

.quantity-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 4px;
  background: white;
  border: 1.5px solid rgba(26, 43, 107, 0.12);
  border-radius: 999px;
  padding: 4px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dojo-royal);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(26, 43, 107, 0.06);
}

.qty-value {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.btn-add-cart {
  width: 100%;
  margin-top: 20px;
  font-size: 1.05rem;
  padding: 16px 32px;
}

.product-shipping {
  text-align: center;
  margin: 12px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(26, 43, 107, 0.4);
}

.product-highlights {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.product-highlights li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.product-highlights strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.product-highlights span {
  font-size: 0.8rem;
  color: rgba(26, 43, 107, 0.55);
  line-height: 1.4;
}

.product-marquee {
  border-top: none;
}

.product-inside {
  padding: 80px 24px;
  background: var(--dojo-royal);
}

.product-inside-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.product-inside-copy {
  max-width: 520px;
  margin-bottom: 48px;
}

.product-inside-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dojo-cream);
  margin: 0 0 16px;
}

.product-inside-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(253, 251, 245, 0.65);
  margin: 0;
}

.ingredient-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .ingredient-grid { grid-template-columns: repeat(5, 1fr); }
}

.ingredient-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.3s, background 0.3s;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.ingredient-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dojo-pink);
  letter-spacing: 0.1em;
}

.ingredient-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dojo-cream);
  margin: 8px 0 10px;
}

.ingredient-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(253, 251, 245, 0.6);
  margin: 0;
}

.product-uses {
  padding: 80px 6vw;
  background: var(--dojo-pink-bg);
}

.product-uses-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-nutrition {
  padding: 80px 24px;
  background: var(--dojo-cream);
}

.product-nutrition-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .product-nutrition-inner {
    flex-direction: row;
    gap: 64px;
  }
}

.nutrition-card {
  flex: 1;
  background: white;
  border: 2px solid rgba(26, 43, 107, 0.08);
  border-radius: 24px;
  padding: 32px;
  min-width: 280px;
}

.nutrition-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 4px 0 20px;
}

.nutrition-list {
  margin: 0;
  padding: 0;
}

.nutrition-list div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 43, 107, 0.08);
  font-size: 0.9rem;
}

.nutrition-list dt {
  font-weight: 600;
  color: rgba(26, 43, 107, 0.7);
}

.nutrition-list dd {
  margin: 0;
  font-weight: 700;
}

.nutrition-note {
  margin: 16px 0 0;
  font-size: 0.8rem;
  color: rgba(26, 43, 107, 0.45);
  line-height: 1.5;
}

.nutrition-copy {
  flex: 1.2;
}

.nutrition-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.nutrition-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(26, 43, 107, 0.6);
  margin: 0 0 24px;
}

.product-reviews {
  padding: 80px 24px;
  background: var(--dojo-pink-bg);
}

.product-reviews-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

.reviews-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  margin: 0;
  border: 1.5px solid rgba(26, 43, 107, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(26, 43, 107, 0.1) 0 16px 32px;
}

.review-stars {
  color: #ffb800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(26, 43, 107, 0.75);
  margin: 0 0 16px;
}

.review-card footer {
  font-size: 0.8rem;
  color: rgba(26, 43, 107, 0.45);
}

.review-card footer strong {
  color: var(--dojo-royal);
}

.product-faq {
  padding: 80px 24px;
  background: var(--dojo-royal);
}

.product-faq-inner {
  max-width: 640px;
  margin: 0 auto;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dojo-cream);
  margin: 0;
}

.faq-list {
  margin-top: 36px;
  display: grid;
  gap: 8px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.2s;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dojo-cream);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dojo-pink);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(253, 251, 245, 0.65);
}

.product-cta-band {
  padding: 64px 24px 80px;
  background: var(--dojo-pink);
}

.product-cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 640px) {
  .product-cta-inner {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
}

.product-cta-bottle {
  width: 140px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.15));
  animation: float-in 1s ease both;
}

.product-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: white;
  margin: 0;
}

.product-cta-inner p {
  margin: 10px 0 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.product-cta-inner .btn-primary {
  background: white;
  color: var(--dojo-royal);
}

.product-cta-inner .btn-primary:hover {
  background: var(--dojo-royal);
  color: white;
}

.product-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(253, 251, 245, 0.96);
  backdrop-filter: blur(12px);
  border-top: 2px solid rgba(26, 43, 107, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
  box-shadow: 0 -8px 32px rgba(26, 43, 107, 0.08);
}

.product-sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-bar-info strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.sticky-bar-info span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dojo-pink);
}

.btn-add-cart-sticky {
  flex-shrink: 0;
  padding: 12px 24px;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .product-sticky-bar { display: none; }
}

.product-page .footer-waves + .site-footer {
  padding-bottom: 80px;
}

@media (min-width: 900px) {
  .product-page .footer-waves + .site-footer {
    padding-bottom: 46px;
  }
}

/* ── Bottle waitlist page ── */
.waitlist-page {
  background: var(--dojo-pink-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.waitlist-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 32rem;
  width: 100%;
  margin: 0 auto;
  padding: 18px 24px;
  background: var(--dojo-pink-bg);
}

.waitlist-nav-logo,
.waitlist-nav-home {
  font-family: var(--font-display);
  color: var(--dojo-royal);
  text-decoration: none;
}

.waitlist-nav-logo {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.waitlist-nav-home {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(26, 43, 107, 0.65);
  transition: color 0.2s ease;
}

.waitlist-nav-home:hover {
  color: var(--dojo-royal);
}

.waitlist-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 24px 24px 48px;
}

.waitlist-focus {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  text-align: left;
}

.waitlist-fish {
  display: block;
  width: fit-content;
  margin: 0 0 20px;
  line-height: 0;
}

.waitlist-fish img {
  width: clamp(100px, 22vw, 140px);
  filter: drop-shadow(rgba(26, 43, 107, 0.15) 0 12px 20px);
  animation: waitlist-fish-bob 4s ease-in-out infinite;
}

@keyframes waitlist-fish-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.waitlist-focus h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--dojo-royal);
}

.waitlist-lead {
  margin: 14px 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(26, 43, 107, 0.58);
}

.waitlist-form {
  margin-top: 28px;
}

.waitlist-form .btn-waitlist {
  margin-top: 4px;
}

.waitlist-form-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: rgba(26, 43, 107, 0.42);
}

.waitlist-thanks {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dojo-royal);
}

.waitlist-bottle-block {
  margin-top: 40px;
  width: 100%;
}

.waitlist-bottle-scene {
  max-width: 32rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 20px;
}

.waitlist-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.waitlist-bottle-img {
  width: clamp(120px, 24vw, 160px);
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(26, 43, 107, 0.15));
  animation: waitlist-bottle-bob 5s ease-in-out infinite;
}

@keyframes waitlist-bottle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.waitlist-footer .footer-nav {
  display: none;
}

.waitlist-footer .footer-bottom {
  padding-top: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-fish img,
  .waitlist-bottle-img,
  .waitlist-marquee .marquee-left,
  .waitlist-marquee .marquee-right {
    animation: none;
  }
}
