:root {
  --page-bg: #f9f9f9;
  --card-bg: #f9f9f9;
  --accent: #9f8d02;
  --accent-soft: rgba(159, 141, 2, 0.14);
  --ink: #2f2f2f;
  --page-vh: 100dvh;
  --soft-shadow: 0 18px 44px rgba(47, 47, 47, 0.12);
  --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.site-pages {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(var(--page-vh) * 2);
  transform: translateY(0);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-pages[data-page="1"] {
  transform: translateY(calc(-1 * var(--page-vh)));
}

.hero {
  height: var(--page-vh);
  min-height: var(--page-vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex: 0 0 var(--page-vh);
}

.hero-frame {
  position: relative;
  width: 100vw;
  height: var(--page-vh);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #fff 0%, var(--card-bg) 46%, #f4f4f1 100%);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(
      circle at 50% 42%,
      rgba(159, 141, 2, 0.05) 0,
      rgba(159, 141, 2, 0.05) 1px,
      transparent 1px,
      transparent 36px
    );
  opacity: 0.42;
  transform: scale(1.05);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  box-shadow: inset 0 -22vh 34vh rgba(255, 255, 255, 0.55);
}

.hero-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 56.25vw;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: heroReveal 0.35s var(--premium-ease) both;
}

.hero-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  transform: translateY(-2.2%);
  z-index: 1;
  filter: drop-shadow(0 18px 26px rgba(47, 47, 47, 0.05));
}

.mobile-brand {
  display: block;
  position: absolute;
  left: 50%;
  top: 6.8%;
  transform: translateX(-50%);
  width: min(92vw, 920px);
  z-index: 3;
  text-align: center;
  pointer-events: none;
}

.mobile-brand-logo {
  margin: 0;
  color: var(--accent);
  font-family: "Century Gothic", "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(50px, 5.25vw, 78px);
  line-height: 0.94;
}

.mobile-brand-line {
  display: block;
  width: min(70%, 620px);
  margin: clamp(8px, 1vw, 14px) auto 0;
  border-top: clamp(1.4px, 0.16vw, 2.5px) solid var(--accent);
}

.mobile-brand-slogan {
  margin: clamp(10px, 1.3vw, 18px) 0 0;
  color: #777;
  font-family: "Segoe Script", "Lucida Handwriting", "Brush Script MT", cursive;
  font-size: clamp(18px, 1.9vw, 30px);
  line-height: 1.08;
}

.captures-mask {
  position: absolute;
  left: 12%;
  top: 28.5%;
  width: 76%;
  height: 43.5%;
  background: var(--card-bg);
  z-index: 1;
}

.captures-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.capture-card {
  position: absolute;
  transition:
    left 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
  transform-origin: center center;
  pointer-events: none;
}

.capture-card[data-card="0"] {
  left: 14.95%;
  top: 36.2%;
  width: 8.45%;
  height: 32.58%;
  z-index: 2;
  opacity: 0.96;
  transform: scale(0.95);
}

.capture-card[data-card="1"] {
  left: 28.4%;
  top: 35.9%;
  width: 8.9%;
  height: 34.2%;
  z-index: 3;
  opacity: 0.98;
  transform: scale(0.98);
}

.capture-card[data-card="2"] {
  left: 44.55%;
  top: 30.1%;
  width: 11.3%;
  height: 43.5%;
  z-index: 5;
  opacity: 1;
  transform: scale(1);
}

.capture-card[data-card="3"] {
  left: 63.7%;
  top: 35.9%;
  width: 8.9%;
  height: 34.2%;
  z-index: 3;
  opacity: 0.98;
  transform: scale(0.98);
}

.capture-card[data-card="4"] {
  left: 77.15%;
  top: 36.2%;
  width: 8.45%;
  height: 32.58%;
  z-index: 2;
  opacity: 0.96;
  transform: scale(0.95);
}

.capture-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
  filter: saturate(0.94) drop-shadow(0 12px 22px rgba(47, 47, 47, 0.09));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.capture-card.is-center .capture-image {
  filter: saturate(1.04) contrast(1.02) drop-shadow(0 20px 34px rgba(47, 47, 47, 0.18));
  transform: translateY(-1.2%);
}

.capture-label {
  position: absolute;
  top: -10.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.36em 0.58em 0.64em;
  border: 1px solid rgba(159, 141, 2, 0.42);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
  color: var(--accent);
  text-align: center;
  text-transform: uppercase;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.18;
  text-shadow: 0 1px 0 #fff;
  z-index: 2;
  font-size: clamp(7px, 0.48vw, 10px);
}

.capture-card.is-center .capture-label {
  font-size: clamp(7.2px, 0.5vw, 10.6px);
}

.carousel-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.carousel-nav {
  position: absolute;
  top: 52%;
  width: clamp(34px, 2.8vw, 52px);
  height: clamp(54px, 5vw, 76px);
  border: none;
  background: transparent;
  color: #1f1f1f;
  font-size: clamp(44px, 4.5vw, 78px);
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
  padding: 0;
}

.carousel-nav:hover {
  transform: translateY(-50%) scale(1.06);
  opacity: 1;
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.carousel-prev {
  left: 39.4%;
}

.carousel-next {
  right: 39.4%;
}

.carousel-nav:focus-visible {
  outline: 2px solid #1f1f1f;
  border-radius: 8px;
}

@media (min-aspect-ratio: 16/9) {
  .hero-canvas {
    width: calc(var(--page-vh) * 1.777778);
    height: var(--page-vh);
  }
}

.store-buttons {
  position: absolute;
  left: 50%;
  top: 77.8%;
  transform: translateX(-50%);
  width: min(70%, 980px);
  min-height: clamp(48px, 4.8vw, 76px);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(8px, 1.2vw, 18px);
  z-index: 5;
}

.store-badge {
  position: relative;
  overflow: hidden;
  width: min(46%, 330px);
  min-width: 0;
  border: 1px solid rgba(159, 141, 2, 0.52);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 235, 0.98));
  box-shadow:
    0 12px 24px rgba(47, 47, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  color: #2b2b2b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 0.9vw, 12px) clamp(13px, 1.5vw, 20px);
  font: inherit;
  text-align: center;
  opacity: 0.98;
  cursor: not-allowed;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(159, 141, 2, 0.18), transparent 26%, transparent 74%, rgba(159, 141, 2, 0.12));
  opacity: 0.6;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgba(47, 47, 47, 0.16),
    0 0 0 3px rgba(159, 141, 2, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  opacity: 1;
}

.store-badge:active {
  transform: translateY(0);
}

.store-badge:focus-visible {
  outline: 3px solid #262626;
  outline-offset: 4px;
}

.store-badge-icon {
  position: absolute;
  left: clamp(14px, 1.6vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(22px, 2.1vw, 36px);
  height: clamp(22px, 2.1vw, 36px);
  flex: 0 0 auto;
  display: inline-flex;
  z-index: 1;
}

.store-badge-icon svg {
  width: 100%;
  height: 100%;
}

.store-badge-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  line-height: 1.05;
  position: relative;
  z-index: 1;
  width: 100%;
  justify-items: center;
  padding-inline: clamp(28px, 3.2vw, 46px);
}

.store-badge-copy span {
  color: #7d7107;
  font-size: clamp(9px, 0.72vw, 13px);
  font-weight: 700;
  letter-spacing: 0.025em;
}

.store-badge-copy strong {
  color: #252525;
  font-size: clamp(15px, 1.4vw, 25px);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.scroll-next {
  position: absolute;
  left: 50%;
  top: 90.3%;
  width: clamp(40px, 3.7vw, 64px);
  height: clamp(40px, 3.7vw, 64px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #262626;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #262626;
  text-decoration: none;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1;
  z-index: 5;
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  padding: 0;
}

.scroll-next:hover {
  transform: translateX(-50%) scale(1.06);
  background: #fff;
}

.scroll-next:active {
  transform: translateX(-50%) scale(0.96);
}

.scroll-next:focus-visible {
  outline: 3px solid #262626;
  outline-offset: 4px;
}

.info {
  position: relative;
  height: var(--page-vh);
  min-height: var(--page-vh);
  flex: 0 0 var(--page-vh);
  background: var(--card-bg);
  padding: clamp(18px, 3.2vh, 36px) clamp(26px, 5vw, 72px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.page-secondary {
  opacity: 0.98;
}

.page-secondary.is-visible .info-item {
  animation: sectionRise 0.58s var(--premium-ease) backwards;
  animation-delay: calc(var(--item-index, 0) * 0.045s);
}

.scroll-up {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: clamp(40px, 3.7vw, 64px);
  height: clamp(40px, 3.7vw, 64px);
  border: 2.5px solid #262626;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #262626;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  padding: 0;
}

.scroll-up:hover {
  transform: scale(1.06);
  background: #fff;
}

.scroll-up:active {
  transform: scale(0.96);
}

.scroll-up:focus-visible {
  outline: 3px solid #262626;
  outline-offset: 4px;
}

.info-menu {
  margin-top: clamp(34px, 8vh, 86px);
  margin-left: clamp(8px, 2vw, 20px);
  margin-right: clamp(8px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.2vh, 24px);
}

.info-item {
  width: 100%;
  padding: 0 0 clamp(5px, 0.75vh, 9px) clamp(8px, 1vw, 14px);
  border-radius: 8px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.info-item:nth-child(2) {
  --item-index: 1;
}

.info-item:nth-child(3) {
  --item-index: 2;
}

.info-item:nth-child(4) {
  --item-index: 3;
}

.info-item:nth-child(5) {
  --item-index: 4;
}

.info-item:nth-child(6) {
  --item-index: 5;
}

.info-item:hover {
  transform: translateX(3px);
  background: rgba(159, 141, 2, 0.035);
}

.info-toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
  background: transparent;
  border: none;
  padding: clamp(6px, 0.9vh, 10px) 0 clamp(14px, 1.75vh, 20px);
  cursor: pointer;
  color: #1f1f1f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: clamp(15px, 1.26vw, 22px);
  font-weight: 500;
  text-align: left;
  transition: color 0.2s ease;
}

.info-toggle-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid var(--accent);
  transform: translateY(1px) rotate(0deg);
  transform-origin: 35% 50%;
  transition: transform 0.25s ease;
}

.info-toggle:hover .info-toggle-arrow {
  transform: translateY(1px) translateX(2px);
}

.info-toggle-text {
  line-height: 1.25;
}

.info-item.is-open .info-toggle-arrow {
  transform: translateY(1px) rotate(90deg);
}

.info-item.is-open:hover .info-toggle-arrow {
  transform: translateY(1px) rotate(90deg) translateX(2px);
}

.info-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.2s ease;
}

.info-item.is-open .info-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.info-panel-inner {
  overflow: hidden;
}

.info-panel p {
  margin: 12px 0 0 26px;
  max-width: none;
  color: #3a3a3a;
  font-size: clamp(14px, 1.06vw, 18px);
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.mvv-content {
  margin: 12px 0 0 26px;
  max-width: none;
}

.mvv-title {
  margin: 14px 0 8px;
  color: var(--accent);
  font-size: clamp(16px, 1.3vw, 24px);
  letter-spacing: 0.06em;
  font-weight: 700;
}

.mvv-content p {
  margin: 0 0 12px;
  color: #3a3a3a;
  font-size: clamp(14px, 1.06vw, 18px);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.mvv-values {
  margin: 0;
  padding-left: 20px;
}

.mvv-values li {
  color: #3a3a3a;
  font-size: clamp(14px, 1.04vw, 17px);
  line-height: 1.5;
}

.mvv-values li + li {
  margin-top: 8px;
}

.blog-content {
  margin: 12px 0 0 26px;
  max-width: none;
}

.blog-frequency {
  margin: 0 0 14px;
  color: #424242;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.01em;
}

.blog-featured {
  border: 1px solid rgba(159, 141, 2, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(14px, 1.8vw, 24px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.blog-header {
  margin-bottom: 12px;
}

.blog-date {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-title {
  margin: 0;
  color: #252525;
  font-size: clamp(21px, 1.7vw, 34px);
  line-height: 1.2;
}

.blog-content p {
  margin: 10px 0;
  color: #333;
  font-size: clamp(14px, 1.04vw, 18px);
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.blog-subtitle {
  margin: 18px 0 8px;
  color: var(--accent);
  font-size: clamp(16px, 1.24vw, 23px);
  letter-spacing: 0.02em;
}

.blog-list {
  margin: 8px 0 10px;
  padding-left: 22px;
}

.blog-list li {
  color: #2f2f2f;
  font-size: clamp(14px, 1.02vw, 17px);
  line-height: 1.5;
}

.blog-list li + li {
  margin-top: 6px;
}

.blog-archive {
  margin-top: 16px;
  padding: 14px 2px 4px;
  border-top: 1px solid rgba(47, 47, 47, 0.22);
}

.blog-archive-title {
  margin: 0 0 10px;
  color: #333;
  font-size: clamp(14px, 1.05vw, 18px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-archive-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-archive-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.blog-archive-list a {
  color: #303030;
  text-decoration: none;
  font-size: clamp(13px, 0.99vw, 16px);
}

.blog-archive-list a:hover {
  text-decoration: underline;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(159, 141, 2, 0.12);
  border: 1px solid rgba(159, 141, 2, 0.35);
  color: #695f00;
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 700;
}

.blog-next-date {
  margin: 10px 0 0;
  color: #484848;
  font-size: clamp(13px, 0.98vw, 16px);
}

.blog-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid rgba(159, 141, 2, 0.72);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  font-size: clamp(13px, 0.98vw, 16px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(47, 47, 47, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.blog-link-button:hover {
  transform: translateY(-2px);
  background: rgba(159, 141, 2, 0.07);
  box-shadow: 0 12px 24px rgba(47, 47, 47, 0.12);
}

.blog-link-button:focus-visible {
  outline: 3px solid #262626;
  outline-offset: 4px;
}

.faq-content {
  margin: 12px 0 0 26px;
  max-width: none;
}

.faq-item + .faq-item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(47, 47, 47, 0.16);
}

.faq-question {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: clamp(16px, 1.2vw, 22px);
  letter-spacing: 0.01em;
}

.faq-answer {
  margin: 0;
  color: #343434;
  font-size: clamp(14px, 1.02vw, 17px);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.faq-answer a {
  color: #2f2f2f;
  font-weight: 700;
  text-decoration-thickness: 1px;
}

.faq-answer a[href^="mailto:"] {
  color: var(--accent);
}

.video-soon {
  color: #c32626;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-mail a {
  color: var(--accent);
  font-weight: 700;
  text-decoration-thickness: 1px;
}

.help-content {
  margin: 12px 0 0 26px;
  max-width: none;
}

.help-title {
  margin: 16px 0 8px;
  color: var(--accent);
  font-size: clamp(16px, 1.24vw, 22px);
  letter-spacing: 0.02em;
}

.help-content p {
  margin: 0 0 10px;
  color: #343434;
  font-size: clamp(14px, 1.02vw, 17px);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.help-content a {
  color: #2f2f2f;
  font-weight: 700;
  text-decoration-thickness: 1px;
}

.help-content a[href^="mailto:"] {
  color: var(--accent);
}

.help-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 4px 0 14px;
  padding: 10px 20px;
  border: 1px solid rgba(159, 141, 2, 0.72);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  font-size: clamp(13px, 0.98vw, 16px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(47, 47, 47, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.help-link-button:hover {
  transform: translateY(-2px);
  background: rgba(159, 141, 2, 0.07);
  box-shadow: 0 12px 24px rgba(47, 47, 47, 0.12);
}

.help-link-button:focus-visible {
  outline: 3px solid #262626;
  outline-offset: 4px;
}

.help-list {
  margin: 8px 0 10px;
  padding-left: 22px;
}

.help-list li {
  color: #2f2f2f;
  font-size: clamp(14px, 1.01vw, 17px);
  line-height: 1.5;
}

.help-list li + li {
  margin-top: 5px;
}

.help-form {
  margin-top: 10px;
  width: min(100%, 740px);
  border: 1px solid rgba(47, 47, 47, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(12px, 1.5vw, 20px);
  display: grid;
  gap: 8px;
}

.help-form label {
  color: #2f2f2f;
  font-size: clamp(13px, 0.98vw, 16px);
  font-weight: 700;
}

.help-form input,
.help-form textarea {
  width: 100%;
  border: 1px solid rgba(47, 47, 47, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: #2f2f2f;
  background: #fff;
}

.help-form textarea {
  resize: vertical;
  min-height: 110px;
}

.help-form input:focus-visible,
.help-form textarea:focus-visible {
  outline: 2px solid rgba(159, 141, 2, 0.65);
  border-color: rgba(159, 141, 2, 0.65);
}

.help-submit {
  justify-self: start;
  border: 1px solid rgba(159, 141, 2, 0.7);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.help-submit:hover {
  background: rgba(159, 141, 2, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(47, 47, 47, 0.08);
}

.help-submit:focus-visible {
  outline: 2px solid #262626;
  outline-offset: 3px;
}

.help-honey {
  position: absolute;
  left: -9999px;
}

.info-toggle:hover {
  color: #111;
}

.info-toggle:focus-visible {
  outline: 2px solid #262626;
  outline-offset: 4px;
}

@media (max-width: 1200px) {
  .hero-canvas {
    width: calc(var(--page-vh) * 1.777778);
    height: var(--page-vh);
  }

  .hero-base {
    transform: translateY(-1.6%);
  }

  .captures-mask {
    left: 10%;
    width: 80%;
    top: 29%;
    height: 44%;
  }

  .carousel-nav {
    top: 54%;
    font-size: clamp(40px, 5vw, 64px);
  }

  .carousel-prev {
    left: 33.4%;
  }

  .carousel-next {
    right: 33.4%;
  }

  .store-buttons {
    width: min(78%, 820px);
    top: 82.4%;
    min-height: clamp(46px, 5.2vw, 66px);
  }

  .store-badge {
    border-radius: 12px;
  }

  .scroll-next {
    top: 93.1%;
    width: clamp(38px, 4.4vw, 56px);
    height: clamp(38px, 4.4vw, 56px);
    font-size: clamp(20px, 2.5vw, 30px);
    border-width: 2px;
  }

  .info {
    padding: clamp(16px, 2.8vh, 30px) clamp(18px, 3.2vw, 40px) 24px;
  }

  .scroll-up {
    width: clamp(36px, 4vw, 54px);
    height: clamp(36px, 4vw, 54px);
    font-size: clamp(20px, 2.3vw, 30px);
    border-width: 2px;
  }

  .info-menu {
    margin-top: clamp(22px, 4.8vh, 56px);
    gap: clamp(14px, 2.4vh, 22px);
  }

  .info-toggle {
    letter-spacing: 0.2em;
    font-size: clamp(13px, 1.8vw, 18px);
  }
}

@media (max-width: 900px) {
  .captures-mask {
    left: 8%;
    width: 84%;
  }

  .carousel-prev {
    left: 28%;
  }

  .carousel-next {
    right: 28%;
  }

  .store-buttons {
    width: 84%;
    top: 84.2%;
    gap: 8px;
  }

  .scroll-next {
    top: 94.4%;
    width: clamp(34px, 5vw, 50px);
    height: clamp(34px, 5vw, 50px);
    font-size: clamp(18px, 2.8vw, 28px);
  }

  .info {
    padding: 16px 16px 24px;
  }

  .info-menu {
    margin-left: 4px;
    margin-right: 4px;
    margin-top: clamp(16px, 4.2vh, 38px);
    gap: clamp(14px, 2.6vh, 22px);
  }

  .info-toggle {
    letter-spacing: 0.16em;
    font-size: clamp(13px, 2.4vw, 16px);
  }

  .info-item {
    padding-left: clamp(4px, 1.2vw, 8px);
    padding-bottom: 7px;
  }

  .info-panel p {
    margin-left: 14px;
    font-size: clamp(12px, 1.9vw, 15px);
  }

  .mvv-content,
  .blog-content,
  .faq-content,
  .help-content {
    margin-left: 14px;
  }

  .mvv-title,
  .blog-subtitle,
  .faq-question,
  .help-title {
    font-size: clamp(14px, 2.3vw, 18px);
  }

  .mvv-content p,
  .mvv-values li,
  .blog-content p,
  .blog-list li,
  .faq-answer,
  .help-content p,
  .help-list li,
  .help-form label,
  .help-form input,
  .help-form textarea {
    font-size: clamp(12px, 1.95vw, 15px);
  }

  .help-form {
    width: min(100%, 680px);
  }
}

@media (max-width: 640px) {
  .hero-base {
    transform: translateY(-1.2%);
  }

  .carousel-nav {
    top: 56.3%;
    font-size: clamp(34px, 8.5vw, 52px);
  }

  .carousel-prev {
    left: 22%;
  }

  .carousel-next {
    right: 22%;
  }

  .capture-label {
    width: 130%;
    top: -11.5%;
    font-size: clamp(6.4px, 1.55vw, 8.5px);
  }

  .capture-card.is-center .capture-label {
    font-size: clamp(6.8px, 1.7vw, 9px);
  }

  .store-buttons {
    top: 86.5%;
    width: 88%;
    min-height: 44px;
  }

  .store-badge {
    border-radius: 10px;
    padding: 7px 9px;
  }

  .scroll-next {
    top: 95.5%;
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .scroll-up {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .info-toggle {
    letter-spacing: 0.11em;
    font-size: clamp(12px, 3.5vw, 14px);
  }

  .blog-featured,
  .help-form {
    border-radius: 10px;
    padding: 12px;
  }
}

@media (max-width: 1024px) and (orientation: portrait) {
  .hero-canvas {
    width: 100vw;
    height: 100dvh;
  }

  .hero-base {
    display: none;
  }

  .mobile-brand {
    display: block;
    top: 9.4%;
    width: min(94vw, 940px);
  }

  .mobile-brand-logo {
    font-size: clamp(46px, 9.1vw, 82px);
  }

  .mobile-brand-slogan {
    font-size: clamp(20px, 4.2vw, 34px);
  }

  .captures-mask {
    display: none;
  }

  .carousel-nav {
    top: 61.8%;
    font-size: clamp(34px, 8vw, 52px);
  }

  .carousel-prev {
    left: 25%;
  }

  .carousel-next {
    right: 25%;
  }

  .capture-label {
    width: 118%;
    top: -7.2%;
    font-size: clamp(6.2px, 1.28vw, 8.8px);
  }

  .capture-card.is-center .capture-label {
    font-size: clamp(6.5px, 1.32vw, 9.2px);
  }

  .store-buttons {
    width: 86%;
    top: 86.8%;
  }

  .scroll-next {
    top: 95.2%;
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .mobile-brand {
    top: 9%;
    width: 95vw;
  }

  .mobile-brand-logo {
    font-size: clamp(42px, 11vw, 72px);
  }

  .mobile-brand-line {
    width: 78%;
  }

  .mobile-brand-slogan {
    font-size: clamp(18px, 5.1vw, 28px);
  }

  .carousel-nav {
    top: 62.6%;
    font-size: clamp(30px, 9vw, 46px);
  }

  .carousel-prev {
    left: 22%;
  }

  .carousel-next {
    right: 22%;
  }

  .capture-label {
    width: 116%;
    top: -6.6%;
    font-size: clamp(6.1px, 1.7vw, 8.2px);
  }

  .capture-card.is-center .capture-label {
    font-size: clamp(6.4px, 1.85vw, 8.8px);
  }

  .store-buttons {
    width: 87%;
    top: 87.2%;
    gap: 7px;
  }

  .store-badge {
    width: calc(50% - 3.5px);
    padding: 7px 8px;
    gap: 7px;
  }

  .store-badge-copy span {
    font-size: clamp(8px, 2.25vw, 10px);
  }

  .store-badge-copy strong {
    font-size: clamp(12px, 3.2vw, 15px);
  }

  .scroll-next {
    top: 95.5%;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0.92;
    transform: translate(-50%, calc(-50% + 4px)) scale(0.998);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
