:root {
  --ink: #171411;
  --muted: #706b63;
  --paper: #f6f1e8;
  --surface: #ffffff;
  --line: #e2dbcf;
  --wine: #742633;
  --gold: #b39154;
  --sage: #657367;
  --blue: #203b4c;
  --charcoal: #101417;
  --shadow: 0 22px 52px rgba(42, 32, 24, 0.11);
  --font-sans: "Avenir Next", "Helvetica Neue", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", Georgia, serif;
  --font-brand: "Avenir Next", "Helvetica Neue", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-luxury: "Baskerville", "Libre Baskerville", "Hoefler Text", "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-clear-premium: "Optima", "Avenir Next", "Helvetica Neue", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  --iphone-preview-ratio: 1179 / 2556;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbf8f1 0, var(--paper) 44rem),
    var(--paper);
  font-family: var(--font-sans);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(255, 252, 246, 0.9);
  border-bottom: 1px solid rgba(116, 38, 51, 0.08);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-brand);
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: #1b1714;
  border-radius: 5px;
  font-size: 0.78rem;
}

main {
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  color: #383b40;
  font-size: 0.93rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav a {
  flex: 0 0 auto;
  text-decoration: none;
  white-space: nowrap;
}

.top-nav a:hover {
  color: var(--wine);
}

.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 760px);
  overflow: hidden;
  color: #fffaf1;
  background: #1c1210;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.04) contrast(1.02) brightness(0.96);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 14, 13, 0.9), rgba(36, 18, 16, 0.66) 43%, rgba(36, 18, 16, 0.16)),
    linear-gradient(0deg, rgba(24, 14, 13, 0.7), rgba(24, 14, 13, 0.04) 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  max-width: 690px;
  min-height: 560px;
  padding: 82px clamp(22px, 7vw, 96px) 154px;
}

.hero-content.compact {
  max-width: 820px;
  min-height: 70vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wine);
}

.eyebrow.light {
  color: #e5c784;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-clear-premium);
  line-height: 1.15;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.15rem, 4.2vw, 3.6rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 720;
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 720;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 520;
}

.hero-offer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero-offer-line span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  color: #fff5e2;
  border: 1px solid rgba(244, 207, 149, 0.2);
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.12);
  font-size: 0.88rem;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.hero-actions,
.demo-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: #171411;
}

.button-primary:hover {
  background: #3b2c20;
}

.hero .button-primary {
  color: #201311;
  background: #fff8ec;
}

.hero .button-primary:hover {
  background: #f4cf95;
}

.button-ghost {
  color: #fff7e8;
  border-color: rgba(255, 247, 232, 0.32);
  background: rgba(255, 252, 246, 0.08);
}

.button-live {
  gap: 8px;
  color: #24130f;
  border-color: rgba(244, 207, 149, 0.34);
  background: #f4cf95;
}

.button-live:hover {
  background: #ffdca6;
}

.button-live span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(36, 19, 15, 0.12);
  font-size: 0.82rem;
  line-height: 1;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-live-preview {
  position: absolute;
  --hero-preview-scale: 0.525;
  top: 66px;
  right: clamp(34px, 6vw, 92px);
  z-index: 3;
  display: grid;
  justify-items: center;
  width: 205px;
  height: 444px;
  overflow: hidden;
  border-radius: clamp(20px, 2.2vw, 30px);
  isolation: isolate;
}

.hero-live-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
}

.hero-phone-frame {
  width: 100%;
  max-width: 342px;
  padding: 11px;
  border: 1px solid rgba(255, 238, 205, 0.24);
  border-radius: 34px;
  background: linear-gradient(145deg, #201715, #070606);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-phone-status {
  display: flex;
  justify-content: center;
  gap: 6px;
  height: 15px;
  margin-bottom: 6px;
}

.hero-phone-status span:first-child {
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-phone-status span:last-child {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-phone-screen {
  overflow: hidden;
  min-height: 390px;
  padding: 18px 16px;
  color: #2a2019;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #fffaf1, #f7ead8);
}

.hero-phone-head small,
.hero-phone-head strong,
.hero-phone-list strong,
.hero-phone-list span {
  display: block;
}

.hero-phone-head small {
  color: rgba(42, 32, 25, 0.52);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-phone-head strong {
  margin-top: 2px;
  font-family: var(--font-luxury);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-phone-search {
  margin-top: 14px;
  padding: 11px 12px;
  color: rgba(42, 32, 25, 0.54);
  border: 1px solid rgba(129, 73, 42, 0.16);
  border-radius: 12px;
  background: #fffdf8;
  font-size: 0.78rem;
}

.hero-phone-tags {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.hero-phone-tags span {
  padding: 5px 9px;
  color: #fff;
  border-radius: 999px;
  background: #8a3a31;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-phone-list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.hero-phone-list div {
  padding: 12px;
  border: 1px solid rgba(129, 73, 42, 0.14);
  border-radius: 12px;
  background: #fffdf8;
}

.hero-phone-list strong {
  font-size: 0.85rem;
  line-height: 1.35;
}

.hero-phone-list span {
  margin-top: 4px;
  color: #8a3a31;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-live-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 13px;
  color: #fff7e8;
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.42);
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.hero-live-link span {
  color: #f4cf95;
}

.button-secondary {
  color: #fff;
  background: var(--wine);
}

.button-outline {
  color: var(--wine);
  border-color: rgba(122, 31, 45, 0.28);
  background: #fff;
}

.hero-metrics {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  left: clamp(18px, 5vw, 72px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 149, 0.14);
  border-radius: 6px;
  background: rgba(24, 14, 13, 0.68);
  backdrop-filter: blur(18px);
}

.hero-metrics a {
  display: block;
  padding: 18px 20px;
  color: #fff8ec;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.hero-metrics a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  font-weight: 760;
}

.hero-metrics span {
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.88rem;
}

.section,
.feature-band,
.cta-section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.hero-proposal {
  order: 0;
}

.style-demo-section {
  order: 1;
}

.experience-section {
  order: 2;
}

.web-presence-section {
  order: 3;
}

.usage-section {
  order: 4;
}

.pricing-section {
  order: 5;
}

.faq-section {
  order: 6;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p,
.feature-copy p,
.scope-list p,
.store-panel p,
.wine-card p,
.note {
  color: var(--muted);
}

.feature-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.feature-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.split-balanced {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.feature-copy {
  padding-top: 6px;
  font-size: 1.06rem;
}

.feature-copy a {
  color: var(--wine);
  font-weight: 720;
}

.demo-grid,
.plan-grid,
.rules-grid,
.wine-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

.demo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.demo-card,
.plan-card,
.store-panel,
.wine-card,
.wine-list-app,
.wine-list-card,
.store-header-mock,
.upload-panel,
.offer-panel,
.flow-grid div,
.guard-grid div,
.media-card,
.proof-grid div,
.rules-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(16, 20, 23, 0.06);
}

.demo-card {
  overflow: hidden;
}

.demo-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.demo-card div {
  padding: 18px;
}

.demo-card span,
.plan-name,
.status-badge,
.wine-tag {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.demo-card a {
  color: var(--wine);
  font-weight: 780;
  text-decoration: none;
}

.sales-showcase,
.workflow-showcase {
  background: #fff;
}

.experience-section,
.web-presence-section,
.usage-section,
.faq-section {
  background: #fffdf8;
}

.style-demo-section,
.pricing-section {
  background: #f3ecdf;
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.media-card-large img {
  min-height: 480px;
}

.web-presence-section {
  border-top: 1px solid var(--line);
}

.web-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #111416;
  box-shadow: var(--shadow);
}

.web-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.web-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 20, 23, 0.58), rgba(16, 20, 23, 0) 55%);
  pointer-events: none;
}

.web-visual-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(16, 20, 23, 0.66);
  backdrop-filter: blur(14px);
}

.web-visual-note span,
.web-visual-note strong {
  display: block;
}

.web-visual-note span {
  color: #e5c784;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.web-visual-note strong {
  margin-top: 5px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.experience-copy {
  max-width: 620px;
}

.experience-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.benefit-list div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.benefit-list strong {
  color: var(--wine);
  font-size: 1.08rem;
}

.benefit-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-list-numbered strong {
  color: var(--blue);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.proof-grid div {
  padding: 16px;
}

.proof-grid strong {
  color: var(--wine);
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-grid-compact {
  grid-template-columns: 1fr;
}

.demo-switcher {
  display: grid;
  gap: 22px;
  touch-action: pan-y;
}

.demo-switch-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.demo-switch-tabs button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  align-content: center;
  gap: 10px;
  min-height: 86px;
  padding: 14px 15px;
  color: var(--tab-ink, var(--ink));
  border: 1px solid rgba(103, 82, 58, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(0deg, rgba(15, 15, 15, var(--photo-gray, 0.72)), rgba(15, 15, 15, var(--photo-gray, 0.72))),
    var(--tab-photo),
    var(--tab-bg, #fff);
  background-position: center;
  background-size: cover;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.demo-switch-tabs button:hover {
  transform: translateY(-1px);
  border-color: var(--tab-accent, rgba(122, 31, 45, 0.32));
}

.demo-tab-card.is-active {
  border-color: var(--tab-accent);
  box-shadow:
    inset 0 0 0 1px var(--tab-accent),
    0 10px 24px rgba(42, 32, 24, 0.09);
}

.brand-lockup {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
}

.venue-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--mark-ink);
  background: var(--mark-bg);
  border: 1px solid var(--mark-line, rgba(22, 23, 26, 0.12));
  backdrop-filter: blur(8px);
  box-shadow: var(--mark-shadow, none);
}

.venue-mark::before,
.venue-mark::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.brand-icon {
  display: block;
  width: 42%;
  height: 42%;
  color: inherit;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-restaurant {
  -webkit-mask-image: url("./assets/icon-restaurant-tabler-tools-kitchen-2.svg");
  mask-image: url("./assets/icon-restaurant-tabler-tools-kitchen-2.svg");
}

.icon-bistro {
  -webkit-mask-image: url("./assets/icon-bistro-tabler-pig.svg");
  mask-image: url("./assets/icon-bistro-tabler-pig.svg");
  transform: scaleX(-1);
}

.icon-winebar {
  -webkit-mask-image: url("./assets/icon-winebar-tabler-glass-full.svg");
  mask-image: url("./assets/icon-winebar-tabler-glass-full.svg");
}

.icon-izakaya {
  background: url("./assets/icon-izakaya-noto-emoji-izakaya-lantern.svg") center / contain no-repeat;
  -webkit-mask-image: none;
  mask-image: none;
}

.tab-restaurant {
  --tab-photo: url("./assets/button-restaurant-atmosphere.png");
  --tab-bg: #f3eadb;
  --tab-ink: #fffaf0;
  --tab-line: rgba(255, 255, 255, 0.2);
  --tab-accent: #d9bf7a;
  --mark-bg: rgba(255, 253, 248, 0.82);
  --mark-ink: #6b4f30;
  --mark-line: rgba(255, 255, 255, 0.38);
}

.venue-mark-restaurant {
  border-radius: 999px;
}

.venue-mark-restaurant::before {
  inset: 6px;
  border: 1px solid rgba(95, 71, 48, 0.2);
  border-radius: inherit;
}

.venue-mark-restaurant::after {
  display: none;
}

.demo-switch-tabs .tab-bistro {
  --tab-photo: url("./assets/button-bistro-atmosphere.png");
  --tab-bg: #554d3f;
  --tab-ink: #fff8e8;
  --tab-line: rgba(255, 255, 255, 0.18);
  --tab-accent: #e4cf8b;
  --mark-bg: rgba(255, 248, 232, 0.76);
  --mark-ink: #4d3d2f;
  --mark-line: rgba(255, 255, 255, 0.34);
}

.venue-mark-bistro {
  width: 56px;
  height: 42px;
  border-radius: 999px;
}

.venue-mark-bistro::before {
  display: none;
}

.venue-mark-bistro .brand-icon {
  width: 68%;
  height: 48%;
}

.demo-switch-tabs .tab-winebar {
  --tab-photo: url("./assets/button-winebar-atmosphere.png");
  --tab-bg: #171113;
  --tab-ink: #f6ead7;
  --tab-line: rgba(255, 255, 255, 0.16);
  --tab-accent: #b99058;
  --photo-gray: 0.76;
  --tab-sheen: 0.05;
  --mark-bg: rgba(34, 23, 26, 0.78);
  --mark-ink: #caa46b;
  --mark-line: rgba(202, 164, 107, 0.4);
}

.venue-mark-winebar {
  border-radius: 999px;
}

.venue-mark-winebar::before {
  display: none;
}

.venue-mark-winebar .brand-icon {
  width: 42%;
  height: 42%;
}

.tab-izakaya {
  --tab-photo: url("./assets/button-izakaya-atmosphere.png");
  --tab-bg: #7a3021;
  --tab-ink: #fff3e7;
  --tab-line: rgba(255, 255, 255, 0.18);
  --tab-accent: #f2c174;
  --mark-bg: rgba(255, 230, 201, 0.82);
  --mark-ink: #a3281c;
  --mark-line: rgba(255, 255, 255, 0.34);
}

.venue-mark-izakaya {
  border-radius: 10px;
}

.venue-mark-izakaya::before {
  display: none;
}

.venue-mark-izakaya::after {
  display: none;
}

.venue-mark-izakaya .brand-icon {
  width: 54%;
  height: 60%;
}

.demo-switch-tabs button strong {
  display: block;
  color: var(--tab-ink);
  position: relative;
  z-index: 1;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.72),
    0 0 1px rgba(0, 0, 0, 0.9);
}

.brand-name {
  min-width: 0;
  font-size: 1.04rem;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-name-restaurant {
  font-family: var(--font-luxury);
  font-weight: 650;
}

.brand-name-bistro {
  font-family: "Trebuchet MS", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  font-weight: 760;
}

.brand-name-winebar {
  font-family: "Didot", "Baskerville", "Hoefler Text", Georgia, "Hiragino Mincho ProN", serif;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-name-izakaya {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Yu Gothic", serif;
  font-weight: 720;
}

.demo-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  min-height: auto;
  overflow: hidden;
  border: 1px solid rgba(103, 82, 58, 0.18);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(42, 32, 24, 0.1);
}

.demo-panel.is-active {
  display: grid;
}

.demo-panel-media {
  order: 2;
  min-height: 360px;
  max-height: 520px;
}

.demo-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-panel-preview {
  order: 1;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
}

.demo-panel-preview > p:not(.eyebrow) {
  color: var(--muted);
}

.wine-preview {
  width: min(100%, 390px);
  aspect-ratio: var(--iphone-preview-ratio);
  justify-self: center;
  overflow: auto;
  border: 8px solid #17120f;
  border-radius: 30px;
  background: #0d0d0d;
  box-shadow:
    0 22px 54px rgba(42, 32, 24, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.hero-live-preview .hero-wine-preview {
  justify-self: start;
  width: 390px;
  max-width: none;
  border-width: 0;
  border-radius: 42px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  clip-path: inset(0 round 42px);
  transform: scale(var(--hero-preview-scale));
  transform-origin: top left;
}

.hero-live-preview .hero-live-link {
  display: none;
}

.wine-preview-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
}

.preview-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 191, 122, 0.28);
  border-radius: 999px;
  color: #d9bf7a;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.preview-logo .brand-icon {
  width: 38%;
  height: 38%;
}

.preview-logo-restaurant {
  color: #d7bd83;
  border-color: rgba(215, 189, 131, 0.36);
  background: #211817;
}

.preview-logo-bistro {
  width: 62px;
  height: 46px;
  color: #d6df89;
  border-color: rgba(214, 223, 137, 0.36);
  border-radius: 999px;
  background: #25342a;
}

.preview-logo-bistro .brand-icon {
  width: 66%;
  height: 46%;
}

.preview-logo-winebar {
  width: 52px;
  height: 52px;
  color: #caa46b;
  border-color: rgba(202, 164, 107, 0.34);
  border-radius: 999px;
  background: #201417;
}

.preview-logo-izakaya {
  color: #f4c98d;
  border-color: rgba(244, 201, 141, 0.34);
  border-radius: 12px;
  background: #673424;
}

.preview-logo-izakaya .brand-icon {
  width: 52%;
  height: 60%;
}

.wine-preview-top span,
.wine-preview-top strong,
.wine-preview-top em {
  display: block;
}

.wine-preview-top span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wine-preview-top .preview-venue-name {
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
}

.wine-preview-top strong {
  margin-top: 2px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.wine-preview-top .preview-title-ja,
.wine-preview-top .preview-title-roman {
  letter-spacing: 0;
  text-transform: none;
}

.wine-preview-top .preview-title-ja {
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.25;
}

.wine-preview-top .preview-title-roman {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

.wine-preview-top em {
  color: #d9bf7a;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.preview-search {
  display: grid;
  gap: 6px;
  margin: 16px 18px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.98rem;
}

.preview-search span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-search input {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
}

.preview-search input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.preview-search input:focus {
  border-color: rgba(217, 191, 122, 0.64);
  box-shadow: 0 0 0 3px rgba(217, 191, 122, 0.14);
}

.wine-preview-head {
  padding: 18px;
  border-bottom: 1px solid rgba(22, 23, 26, 0.1);
}

.wine-preview-head span,
.wine-preview-head strong {
  display: block;
}

.wine-preview-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wine-preview-head strong {
  margin-top: 3px;
  font-size: 1.25rem;
}

.wine-preview-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px 12px;
}

.preview-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.preview-filter-group > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wine-preview-filters button {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 760;
  cursor: pointer;
}

.wine-preview-filters button.is-selected {
  color: #151515;
  border-color: #d9bf7a;
  background: #d9bf7a;
}

.preview-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 18px 12px;
}

.preview-filter-grid span {
  min-height: 38px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 700;
}

.preview-active {
  margin: 0;
  padding: 0 18px 16px;
  color: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.86rem;
}

.preview-card-list {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.preview-wine-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 15px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.preview-wine-card.is-highlight {
  border-color: rgba(217, 191, 122, 0.42);
  background: rgba(217, 191, 122, 0.12);
}

.preview-wine-main {
  min-width: 0;
}

.preview-wine-main small,
.preview-wine-main strong,
.preview-wine-main p,
.preview-wine-side span,
.preview-wine-side b {
  display: block;
}

.preview-wine-main small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-wine-main .preview-wine-meta-ja,
.preview-wine-main .preview-wine-meta-roman,
.preview-wine-name-ja,
.preview-wine-name-roman {
  display: block;
  letter-spacing: 0;
}

.preview-wine-main .preview-wine-meta-ja {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.35;
  text-transform: none;
}

.preview-wine-main .preview-wine-meta-roman {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.preview-wine-main strong {
  margin-top: 3px;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.35;
}

.preview-wine-name-ja {
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.preview-wine-name-roman {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
}

.preview-wine-main p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.55;
}

.preview-wine-side {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 6px;
  min-width: 88px;
  text-align: right;
}

.preview-wine-side span {
  display: block;
  min-width: 78px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.preview-wine-side b {
  display: block;
  margin-top: 2px;
  color: #d9bf7a;
  font-size: 0.96rem;
  white-space: nowrap;
}

.preview-wine-card.is-hidden {
  display: none;
}

.preview-empty {
  margin: 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.wine-preview-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(22, 23, 26, 0.08);
}

.wine-preview-row:last-child {
  border-bottom: 0;
}

.wine-preview-row strong {
  color: var(--ink);
}

.wine-preview-row span {
  color: var(--muted);
  white-space: nowrap;
}

.theme-restaurant {
  background: #fffdf8;
}

.theme-restaurant .demo-panel-preview {
  background: #fffaf2;
}

.theme-restaurant .demo-panel-preview,
.theme-restaurant .wine-preview,
.theme-winebar .demo-panel-preview,
.theme-winebar .wine-preview {
  font-family: var(--font-clear-premium);
}

.theme-restaurant .demo-panel-preview h3,
.theme-restaurant .wine-preview-top strong,
.theme-restaurant .preview-wine-main strong,
.theme-winebar .demo-panel-preview h3,
.theme-winebar .wine-preview-top strong,
.theme-winebar .preview-wine-main strong {
  font-family: var(--font-luxury);
}

.theme-restaurant .wine-preview {
  color: #29231d;
  border-color: rgba(150, 111, 56, 0.28);
  background: #fffdf8;
  box-shadow: 0 16px 36px rgba(121, 87, 44, 0.13);
}

.hero-live-preview.theme-restaurant .hero-wine-preview {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.theme-restaurant .wine-preview-top {
  color: #29231d;
  border-bottom-color: rgba(150, 111, 56, 0.18);
  background: linear-gradient(180deg, #fffdf8, #fff8ec);
}

.theme-restaurant .preview-logo-restaurant {
  color: #8a6735;
  border-color: rgba(138, 103, 53, 0.32);
  background: #fffaf0;
}

.theme-restaurant .wine-preview-top span,
.theme-restaurant .preview-search span,
.theme-restaurant .preview-filter-group > span {
  color: rgba(41, 35, 29, 0.54);
}

.theme-restaurant .wine-preview-top strong,
.theme-restaurant .preview-wine-main strong {
  color: #29231d;
}

.theme-restaurant .wine-preview-top .preview-title-ja,
.theme-restaurant .preview-wine-name-ja {
  color: #29231d;
}

.theme-restaurant .wine-preview-top .preview-title-roman,
.theme-restaurant .preview-wine-name-roman {
  color: rgba(41, 35, 29, 0.52);
}

.theme-restaurant .wine-preview-top em,
.theme-restaurant .preview-wine-side b {
  color: #8a6735;
}

.theme-restaurant .preview-search {
  color: rgba(41, 35, 29, 0.62);
}

.theme-restaurant .preview-search input {
  color: #29231d;
  border-color: rgba(150, 111, 56, 0.2);
  background: #fffaf1;
}

.theme-restaurant .preview-search input::placeholder {
  color: rgba(41, 35, 29, 0.42);
}

.theme-restaurant .wine-preview-filters button {
  color: #5e5145;
  border-color: rgba(150, 111, 56, 0.18);
  background: #fff8ec;
}

.theme-restaurant .wine-preview-filters button.is-selected {
  color: #fff;
  border-color: #8a6735;
  background: #8a6735;
}

.theme-restaurant .preview-active {
  color: rgba(41, 35, 29, 0.64);
  border-bottom-color: rgba(150, 111, 56, 0.16);
}

.theme-restaurant .preview-card-list {
  background: #f6ead9;
}

.theme-restaurant .preview-wine-card {
  color: #29231d;
  border-color: rgba(150, 111, 56, 0.18);
  background: #fffdf8;
}

.theme-restaurant .preview-wine-card.is-highlight {
  border-color: rgba(150, 111, 56, 0.44);
  background: #fff3d9;
}

.theme-restaurant .preview-wine-main small,
.theme-restaurant .preview-wine-main p {
  color: rgba(41, 35, 29, 0.64);
}

.theme-restaurant .preview-wine-main .preview-wine-meta-ja {
  color: rgba(41, 35, 29, 0.68);
}

.theme-restaurant .preview-wine-main .preview-wine-meta-roman {
  color: rgba(41, 35, 29, 0.44);
}

.theme-restaurant .preview-wine-side span {
  color: #685846;
  border-color: rgba(150, 111, 56, 0.18);
  background: #fff8ed;
}

.theme-bistro .demo-panel-preview {
  background:
    linear-gradient(180deg, #fff7e6, #f8e7ca);
}

.theme-bistro .wine-preview {
  color: #2d2118;
  border-color: #231713;
  background: #fffaf2;
  box-shadow: 0 18px 42px rgba(122, 61, 34, 0.2);
}

.theme-bistro .wine-preview-top {
  color: #fff8ec;
  border-bottom-color: rgba(255, 244, 220, 0.18);
  background: linear-gradient(135deg, #8f342d, #b85d37);
}

.theme-bistro .preview-logo-bistro {
  color: #fff0c8;
  border-color: rgba(255, 240, 200, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.theme-bistro .wine-preview-top span,
.theme-bistro .preview-search span,
.theme-bistro .preview-filter-group > span {
  color: rgba(255, 248, 236, 0.76);
}

.theme-bistro .wine-preview-top .preview-title-ja,
.theme-bistro .wine-preview-top strong {
  color: #fff8ec;
}

.theme-bistro .wine-preview-top .preview-title-roman {
  color: rgba(255, 248, 236, 0.62);
}

.theme-bistro .wine-preview-top em,
.theme-bistro .preview-wine-side b {
  color: #a74733;
}

.theme-bistro .wine-preview-top em {
  color: #fff0c8;
}

.theme-bistro .preview-search {
  color: rgba(45, 33, 24, 0.62);
}

.theme-bistro .preview-search input {
  color: #2d2118;
  border-color: rgba(167, 71, 51, 0.2);
  background: #fffdf8;
}

.theme-bistro .preview-search input::placeholder {
  color: rgba(45, 33, 24, 0.42);
}

.theme-bistro .wine-preview-filters button {
  color: #6a3a2c;
  border-color: rgba(167, 71, 51, 0.18);
  background: #fff6e8;
}

.theme-bistro .wine-preview-filters button.is-selected {
  color: #fff;
  border-color: #a74733;
  background: #a74733;
}

.theme-bistro .preview-active {
  color: rgba(45, 33, 24, 0.64);
  border-bottom-color: rgba(167, 71, 51, 0.14);
}

.theme-bistro .preview-card-list {
  background: #f4dfc2;
}

.theme-bistro .preview-wine-card {
  color: #2d2118;
  border-color: rgba(167, 71, 51, 0.16);
  background: #fffaf2;
}

.theme-bistro .preview-wine-card.is-highlight {
  border-color: rgba(167, 71, 51, 0.34);
  background: #ffe6c5;
}

.theme-bistro .preview-wine-main strong,
.theme-bistro .preview-wine-name-ja {
  color: #2d2118;
}

.theme-bistro .preview-wine-main small,
.theme-bistro .preview-wine-main p,
.theme-bistro .preview-wine-name-roman {
  color: rgba(45, 33, 24, 0.62);
}

.theme-bistro .preview-wine-main .preview-wine-meta-roman {
  color: rgba(45, 33, 24, 0.44);
}

.theme-bistro .preview-wine-side span {
  color: #794936;
  border-color: rgba(167, 71, 51, 0.18);
  background: #fff3e2;
}

.theme-winebar .demo-panel-preview {
  color: #fff;
  background: #171012;
}

.theme-winebar .demo-panel-preview p,
.theme-winebar .demo-panel-preview .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.theme-winebar .wine-preview {
  border-color: rgba(255, 255, 255, 0.18);
  background: #120d0f;
}

.theme-winebar .wine-preview-top em,
.theme-winebar .preview-wine-side b {
  color: #d8a65d;
}

.theme-izakaya .demo-panel-preview {
  color: #2c1a13;
  background: #f3dcc0;
}

.theme-izakaya .demo-panel-preview > p:not(.eyebrow) {
  color: #6d4932;
}

.theme-izakaya .wine-preview {
  border-color: #bf5a2f;
  background: #4a1f16;
  box-shadow: 0 22px 62px rgba(82, 27, 15, 0.22);
}

.theme-izakaya .wine-preview-top em,
.theme-izakaya .preview-wine-side b {
  color: #ffd27d;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.faq-grid strong {
  color: var(--wine);
}

.faq-grid p {
  color: var(--muted);
}

.section-contrast,
.cta-section {
  color: #fff;
  background: var(--charcoal);
}

.section-contrast .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-grid-main {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.plan-card {
  position: relative;
  padding: 24px;
  color: var(--ink);
}

.plan-featured {
  border-color: rgba(182, 138, 66, 0.64);
  box-shadow: var(--shadow);
}

.plan-card h3 {
  margin-top: 4px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.monthly {
  margin: 6px 0 18px;
  color: var(--blue);
  font-weight: 760;
}

.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.15rem;
  color: #3b3f44;
}

.status-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 9px;
  border: 1px solid rgba(122, 31, 45, 0.24);
  border-radius: 6px;
  background: #f8ece8;
}

.scope-list {
  display: grid;
  gap: 18px;
}

.scope-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.scope-list strong {
  color: var(--wine);
  font-size: 1.04rem;
}

.rules-section {
  background: #fff;
}

.rules-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rules-grid div {
  padding: 18px;
  font-weight: 650;
}

.cta-section {
  text-align: center;
}

.cta-section .section-inner {
  max-width: 820px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background: #0b0d0f;
  font-size: 0.9rem;
}

.demo-hero {
  min-height: 76vh;
}

.demo-hero .hero-content {
  min-height: 76vh;
}

.demo-hero h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 6vw, 4.7rem);
}

.demo-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.demo-kicker li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.demo-actions {
  margin-top: 26px;
}

.store-summary {
  margin-top: -38px;
  position: relative;
  z-index: 4;
}

.demo-guide-section {
  background: #fff;
}

.demo-guide-copy {
  max-width: 620px;
}

.demo-guide-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.demo-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-panel {
  padding: 20px;
}

.store-panel strong {
  color: var(--wine);
}

.info-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wine-section {
  background: #fff;
}

.wine-list-demo {
  background: #f7f3ea;
}

.wine-list-app {
  overflow: hidden;
  border-radius: 16px;
  background: #0d0d0d;
  box-shadow: 0 24px 80px rgba(16, 20, 23, 0.18);
}

.list-app-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: #0d0d0d;
}

.list-app-header .store-logo {
  color: #111;
  background: #d9bf7a;
}

.list-app-header span,
.list-app-header strong,
.list-app-header p,
.list-stats span {
  display: block;
}

.list-app-header span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.list-app-header strong {
  font-size: 1.25rem;
}

.list-app-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.list-stats {
  min-width: 96px;
  padding: 12px 14px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(217, 191, 122, 0.34);
  background: rgba(217, 191, 122, 0.11);
}

.list-stats strong {
  color: #d9bf7a;
  font-size: 1.5rem;
  line-height: 1;
}

.list-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.wine-search-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #141414;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field span,
.filter-group > span {
  color: #d9bf7a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #090909;
  font: inherit;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.filter-groups {
  display: grid;
  gap: 12px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.filter-group > span {
  flex: 0 0 54px;
}

.filter-group button,
.reset-button {
  min-height: 38px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: #0d0d0d;
  font-weight: 750;
  cursor: pointer;
}

.filter-group button.is-active {
  color: #111;
  border-color: #d9bf7a;
  background: #d9bf7a;
}

.reset-button {
  justify-self: start;
  color: #d9bf7a;
  border-color: rgba(217, 191, 122, 0.36);
  border-radius: 6px;
  background: rgba(217, 191, 122, 0.08);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.category-strip div {
  padding: 14px;
  background: #111;
}

.category-strip span,
.category-strip strong {
  display: block;
}

.category-strip span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.category-strip strong {
  color: #d9bf7a;
  font-size: 1.4rem;
}

.wine-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: #0d0d0d;
}

.wine-list-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.13);
  background: #141414;
}

.wine-list-card.is-featured {
  border-color: rgba(217, 191, 122, 0.68);
  background: rgba(217, 191, 122, 0.1);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.wine-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wine-card-top strong {
  margin-left: auto;
  padding: 4px 8px;
  color: #d9bf7a;
  border-radius: 999px;
  background: rgba(217, 191, 122, 0.1);
  font-size: 0.78rem;
}

.wine-list-card p {
  color: rgba(255, 255, 255, 0.68);
}

.wine-list-card h3 {
  color: #fff;
}

.wine-list-card .wine-tag {
  color: #d9bf7a;
}

.wine-list-card .wine-meta {
  color: rgba(255, 255, 255, 0.62);
}

.wine-list-card .wine-meta span {
  background: rgba(255, 255, 255, 0.07);
}

.type-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.type-sparkling {
  background: #d9bb63;
}

.type-white {
  background: #d7d9b2;
}

.type-orange {
  background: #c77e3b;
}

.type-red {
  background: var(--wine);
}

.type-rose {
  background: #d2798b;
}

.wine-list-card.is-hidden {
  display: none;
}

.empty-state {
  margin: 0;
  padding: 20px;
  color: rgba(255, 255, 255, 0.66);
  background: #0d0d0d;
  font-weight: 700;
}

.mobile-live-body {
  min-height: 100vh;
  color: #2a2019;
  background:
    radial-gradient(circle at 50% 0, rgba(175, 76, 55, 0.28), transparent 34rem),
    #201311;
}

.mobile-live-page {
  display: grid;
  justify-items: center;
  min-height: 100vh;
  padding: 22px;
}

.mobile-live-shell {
  overflow: hidden;
  width: min(100%, 430px);
  min-height: calc(100vh - 44px);
  border-radius: 28px;
  background: #fff8ed;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.mobile-live-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  color: #fff8ec;
  background: #211411;
  font-size: 0.74rem;
  font-weight: 760;
}

.mobile-live-bar a {
  color: #f4cf95;
  text-decoration: none;
}

.mobile-live-preview-stage {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: calc(100vh - 44px);
  padding: 12px;
  background: #fff8ed;
}

.mobile-live-preview-stage.theme-bistro {
  background: #f8e7ca;
}

.mobile-live-preview-stage.theme-winebar {
  background: #191214;
}

.mobile-live-preview-stage.theme-izakaya {
  background: #f2dfc2;
}

.mobile-page-preview {
  width: min(100%, 390px);
  max-height: none;
}

.mobile-live-app {
  overflow: visible;
  border-radius: 0;
  background: #fff8ed;
  box-shadow: none;
}

.mobile-live-app .list-app-header {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 16px 14px 14px;
  color: #2a2019;
  border-bottom-color: rgba(142, 64, 44, 0.14);
  background: #fff8ed;
}

.mobile-live-app .list-app-header .store-logo {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  color: #fff8ec;
  border-radius: 10px;
  background: #8f342d;
}

.mobile-live-app .list-app-header span {
  color: rgba(42, 32, 25, 0.54);
  font-size: 0.72rem;
}

.mobile-live-app .list-app-header strong {
  color: #2a2019;
  font-size: 1.18rem;
  line-height: 1.25;
}

.mobile-live-app .list-app-header p {
  color: rgba(42, 32, 25, 0.56);
  font-size: 0.76rem;
  line-height: 1.45;
}

.mobile-live-app .list-stats {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  min-width: 0;
  padding: 9px 11px;
  text-align: left;
  border-color: rgba(143, 52, 45, 0.18);
  background: #fff0de;
}

.mobile-live-app .list-stats strong {
  color: #8f342d;
  font-size: 1.12rem;
}

.mobile-live-app .list-stats span {
  color: rgba(42, 32, 25, 0.54);
}

.mobile-live-app .wine-search-panel {
  gap: 12px;
  padding: 14px;
  border-bottom-color: rgba(142, 64, 44, 0.12);
  background: #f7e7cf;
}

.mobile-live-app .search-field span,
.mobile-live-app .filter-group > span {
  color: #8f342d;
}

.mobile-live-app .search-field input {
  min-height: 44px;
  color: #2a2019;
  border-color: rgba(143, 52, 45, 0.18);
  border-radius: 12px;
  background: #fffdf7;
}

.mobile-live-app .search-field input::placeholder {
  color: rgba(42, 32, 25, 0.38);
}

.mobile-live-app .filter-groups {
  display: grid;
  gap: 10px;
}

.mobile-live-app .filter-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.mobile-live-app .filter-group > span {
  flex: 0 0 auto;
  align-self: center;
  width: auto;
  min-width: 42px;
}

.mobile-live-app .filter-group button,
.mobile-live-app .reset-button {
  flex: 0 0 auto;
  color: #6a3a2c;
  border-color: rgba(143, 52, 45, 0.18);
  background: #fff8ed;
}

.mobile-live-app .filter-group button.is-active {
  color: #fff;
  border-color: #8f342d;
  background: #8f342d;
}

.mobile-live-app .reset-button {
  justify-self: stretch;
  color: #8f342d;
  border-radius: 10px;
  background: #fff4e4;
}

.mobile-live-app .category-strip {
  background: rgba(143, 52, 45, 0.12);
}

.mobile-live-app .category-strip div {
  padding: 12px;
  background: #fff8ed;
}

.mobile-live-app .category-strip span {
  color: rgba(42, 32, 25, 0.52);
}

.mobile-live-app .category-strip strong {
  color: #8f342d;
  font-size: 1.18rem;
}

.mobile-live-app .wine-list-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
  background: #f2dfc2;
}

.mobile-live-app .wine-list-card {
  gap: 8px;
  padding: 14px;
  color: #2a2019;
  border: 1px solid rgba(143, 52, 45, 0.14);
  border-radius: 14px;
  background: #fffaf2;
}

.mobile-live-app .wine-list-card.is-featured {
  border-color: rgba(143, 52, 45, 0.34);
  background: #ffe8ca;
  box-shadow: 0 10px 28px rgba(112, 54, 31, 0.14);
}

.mobile-live-app .wine-list-card h3 {
  color: #2a2019;
  font-size: 1.04rem;
}

.mobile-live-app .wine-list-card p {
  margin: 0;
  color: rgba(42, 32, 25, 0.68);
  font-size: 0.88rem;
}

.mobile-live-app .wine-card-top strong,
.mobile-live-app .wine-list-card .wine-tag {
  color: #8f342d;
}

.mobile-live-app .wine-card-top strong {
  background: rgba(143, 52, 45, 0.08);
}

.mobile-live-app .wine-card-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  margin-top: 2px;
}

.mobile-live-app .wine-list-card .wine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(42, 32, 25, 0.64);
}

.mobile-live-app .wine-list-card .wine-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff1df;
}

.mobile-live-app .wine-price {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 96px;
  color: #8f342d;
  font-weight: 820;
  text-align: right;
}

.mobile-live-app .wine-price span {
  display: block;
  white-space: nowrap;
}

.mobile-live-app .empty-state {
  color: rgba(42, 32, 25, 0.68);
  background: #fff8ed;
}

.store-header-mock {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px;
}

.store-logo {
  display: grid;
  flex: 0 0 58px;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  border-radius: 8px;
  background: var(--wine);
  font-weight: 840;
}

.store-header-mock span,
.store-header-mock strong,
.store-header-mock p {
  display: block;
}

.store-header-mock span {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.store-header-mock strong {
  margin-top: 2px;
  font-size: 1.35rem;
}

.store-header-mock p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.wine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-button {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.filter-button.is-active {
  color: #fff;
  border-color: var(--wine);
  background: var(--wine);
}

.wine-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.wine-card.is-hidden {
  display: none;
}

.wine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.wine-meta span {
  padding: 4px 8px;
  border-radius: 6px;
  background: #f4f0e7;
}

.menu-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.menu-row strong {
  color: var(--blue);
}

.demo-footer-cta {
  color: #fff;
  background: var(--blue);
}

.guard-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.guard-grid div {
  padding: 14px 16px;
  color: #3b3f44;
  font-weight: 650;
}

.upload-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.upload-top {
  padding: 16px;
  color: #fff;
  border-radius: 6px;
  background: var(--blue);
}

.upload-top span,
.upload-top strong {
  display: block;
}

.upload-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.upload-top strong {
  margin-top: 3px;
  font-size: 1.25rem;
}

.pipeline-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
}

.pipeline-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 6px;
  background: var(--wine);
  font-weight: 820;
}

.pipeline-list p {
  margin: 0;
  color: #3b3f44;
  font-weight: 650;
}

.csv-drop {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(122, 31, 45, 0.42);
  border-radius: 8px;
  background: #fbf8f0;
  cursor: pointer;
}

.csv-drop input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.csv-drop span {
  color: var(--wine);
  font-weight: 820;
}

.csv-drop small {
  color: var(--muted);
  font-weight: 650;
}

.csv-drop small.is-error {
  color: #a31f2f;
}

.publish-status {
  padding: 14px 16px;
  border-radius: 8px;
  background: #eef3ee;
}

.publish-status strong {
  display: block;
  color: var(--sage);
}

.publish-status p {
  margin: 4px 0 0;
  color: var(--muted);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flow-grid div {
  padding: 20px;
  color: var(--ink);
}

.flow-grid span {
  color: var(--gold);
  font-weight: 840;
}

.flow-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
}

.flow-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  overflow: hidden;
}

.offer-price {
  padding: 28px;
  color: #fff;
  background: var(--wine);
}

.offer-price span,
.offer-price strong,
.offer-price p {
  display: block;
}

.offer-price span {
  font-weight: 780;
}

.offer-price strong {
  margin-top: 12px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.offer-price p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.inclusion-grid div {
  padding: 24px;
  background: #fff;
}

.inclusion-grid strong {
  color: var(--blue);
  font-size: 1.18rem;
}

.inclusion-grid p {
  color: var(--muted);
}

.phone-mock,
.dashboard-mock,
.log-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(16, 20, 23, 0.06);
}

.phone-mock {
  display: grid;
  gap: 14px;
  max-width: 420px;
  padding: 18px;
}

.phone-top {
  padding: 12px;
  color: #fff;
  border-radius: 6px;
  background: var(--wine);
  font-weight: 780;
}

.phone-mock label,
.phone-mock label span {
  display: block;
}

.phone-mock label {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-mock label span {
  margin-top: 4px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbf8f0;
  font-size: 0.95rem;
  font-weight: 650;
  text-transform: none;
}

.action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.action-row button {
  min-height: 42px;
  padding: 8px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  font-weight: 760;
  cursor: pointer;
}

.phone-mock p {
  margin: 0;
  color: var(--muted);
}

.log-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.log-card {
  padding: 20px;
}

.log-card span {
  display: block;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.log-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.35rem;
}

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

.dashboard-section {
  background: #fff;
}

.dashboard-mock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.metric-tile {
  padding: 16px;
  border-radius: 6px;
  background: #f4f0e7;
}

.metric-tile span,
.metric-tile strong {
  display: block;
}

.metric-tile span {
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-tile strong {
  margin-top: 4px;
  color: var(--wine);
  font-size: 1.55rem;
}

.bar-list {
  display: grid;
  grid-column: 1 / -1;
  gap: 12px;
  margin-top: 6px;
}

.bar-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 10px;
}

.bar-list span {
  color: var(--muted);
  font-weight: 700;
}

.bar-list i {
  display: block;
  width: var(--bar);
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
}

@media (max-width: 980px) {
  .hero-content {
    max-width: 56vw;
  }

  .hero-live-preview {
    --hero-preview-scale: 0.48;
    top: 62px;
    right: 28px;
    width: 187px;
    height: 405px;
  }

  .hero-phone-screen {
    min-height: 330px;
  }

  .demo-grid,
  .plan-grid,
  .rules-grid,
  .wine-grid,
  .log-grid,
  .proof-grid,
  .wine-list-grid,
  .faq-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .split,
  .split-balanced,
  .demo-panel,
  .offer-panel,
  .inclusion-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .list-app-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .list-stats {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
  }

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-panel {
    min-height: auto;
  }

  .demo-panel-media {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero,
  .demo-hero {
    min-height: 650px;
  }

  .hero-content,
  .demo-hero .hero-content {
    max-width: none;
    min-height: auto;
    width: calc(100% - 150px);
    padding: 42px 10px 18px 18px;
  }

  .hero-content h1 {
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1.08;
  }

  .hero-content h1 span {
    white-space: normal;
  }

  .hero-content .lead {
    margin-top: 16px;
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .hero-offer-line {
    gap: 6px;
    margin-top: 16px;
  }

  .hero-offer-line span {
    min-height: 28px;
    padding: 4px 8px;
    font-size: 0.72rem;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .button {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(24, 14, 13, 0.92), rgba(36, 18, 16, 0.74) 58%, rgba(36, 18, 16, 0.32)),
      linear-gradient(0deg, rgba(24, 14, 13, 0.72), rgba(24, 14, 13, 0.12));
  }

  .hero-live-preview {
    position: absolute;
    --hero-preview-scale: 0.34;
    top: 94px;
    right: 16px;
    width: 133px;
    height: 288px;
    margin: 0;
    gap: 0;
  }

  .hero-live-link {
    display: none;
  }

  .hero-metrics {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    margin: 0 18px 18px;
  }

  .demo-grid,
  .plan-grid,
  .rules-grid,
  .wine-grid,
  .log-grid,
  .proof-grid,
  .wine-list-grid,
  .faq-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .action-row,
  .dashboard-mock {
    grid-template-columns: 1fr;
  }

  .section,
  .feature-band,
  .cta-section {
    padding: 54px 18px;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .media-card img {
    min-height: 260px;
  }

  .media-card-large img,
  .demo-panel-media {
    min-height: 300px;
  }

  .demo-switch-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .demo-switch-tabs button {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 142px;
    padding: 14px 10px;
    text-align: center;
    gap: 10px;
  }

  .demo-switch-tabs .tab-bistro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tab-bistro .brand-lockup,
  .tab-bistro .brand-name {
    order: initial;
  }

  .venue-mark {
    width: 56px;
    height: 56px;
  }

  .venue-mark-bistro {
    width: 68px;
    height: 48px;
  }

  .venue-mark-winebar {
    width: 56px;
    height: 56px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .demo-panel-preview {
    padding: 22px 12px 24px;
  }

  .wine-preview-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .wine-preview-row span {
    white-space: normal;
  }

  .preview-card-list {
    gap: 7px;
    padding: 10px;
  }

  .preview-wine-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
    padding: 12px;
  }

  .preview-wine-main p {
    margin-top: 4px;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .preview-wine-main .preview-wine-meta-ja {
    font-size: 0.72rem;
  }

  .preview-wine-main .preview-wine-meta-roman {
    font-size: 0.58rem;
  }

  .preview-wine-name-ja {
    font-size: 0.94rem;
  }

  .preview-wine-name-roman {
    font-size: 0.66rem;
  }

  .preview-wine-side {
    grid-template-columns: 1fr;
    justify-content: end;
    justify-items: end;
    gap: 5px;
    min-width: 70px;
    text-align: right;
  }

  .preview-wine-side span {
    min-width: 66px;
    padding: 5px 7px;
    font-size: 0.68rem;
  }

  .preview-wine-side b {
    font-size: 0.86rem;
  }

  .preview-filter-group {
    width: 100%;
  }

  .filter-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-group > span {
    grid-column: 1 / -1;
  }

  .filter-group button,
  .reset-button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .mobile-live-app .filter-group {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .mobile-live-app .filter-group > span {
    flex: 0 0 42px;
  }

  .mobile-live-app .filter-group button {
    width: auto;
    min-width: 72px;
    flex: 1 1 auto;
  }

  .mobile-live-app .reset-button {
    width: 100%;
  }
}
