:root {
  --wine: #176b48;
  --wine-dark: #0a3927;
  --rose: #23976b;
  --blush: #f3faf6;
  --line: #c8e2d3;
  --ink: #10291f;
  --muted: #687a71;
  --green: #168a59;
  --white: #fff;
  --shadow: 0 18px 45px rgba(13, 86, 58, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--blush);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1em; height: 1em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-xxl { width: 64px; height: 64px; }
.shell { width: min(100% - 32px, 1024px); margin-inline: auto; }
.narrow { width: min(100% - 32px, 980px); }

.site-header { background: #fff; }
.header-main {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 96px;
}
.brand {
  color: var(--wine-dark);
  text-decoration: none;
  font: 800 24px/1 "Manrope", sans-serif;
  letter-spacing: -1.1px;
  text-shadow: 0 1px 0 #fff, 0 2px 4px rgba(10,57,39,.12);
}
.brand span { color: #21885e; }
.broadcast-status {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 800;
  color: #53695f;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #168a59;
  background: #effaf4;
  border: 1px solid #ccebd9;
  border-radius: 8px;
}
.live-pill .status-dot {
  width: 7px;
  height: 7px;
  fill: #22a66f;
  stroke: none;
  box-shadow: 0 0 0 5px rgba(34,166,111,.10);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(34,166,111,0); } }
.ticker {
  overflow: hidden;
  background: linear-gradient(90deg, #0d563a, #176b48 50%, #0d563a);
  color: #fff;
  border-bottom: 1px solid #093d2a;
}
.ticker-track {
  width: max-content;
  display: flex;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  animation: ticker 42s linear infinite;
}
.ticker-group {
  min-height: 42px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  font-size: 10px;
  letter-spacing: 1.15px;
  font-weight: 800;
}
.ticker-group i { width: 4px; height: 4px; flex: 0 0 4px; border-radius: 50%; background: #ffcc55; }
.ticker-sun { width: 14px; height: 14px; color: #ffcc55; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translate3d(-50%,0,0); } }

.hero { padding: 38px 0 76px; text-align: center; }
.eyebrow,
.offer-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  color: #fff;
  background: linear-gradient(180deg, #23865e, #145e41);
  box-shadow: 0 6px 14px rgba(20,94,65,.24);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.eyebrow .icon, .offer-ribbon .icon { color: #ffd151; width: 13px; height: 13px; }
h1 {
  margin: 18px 0 30px;
  font: 800 clamp(31px, 4.2vw, 49px)/.98 "Manrope", sans-serif;
  letter-spacing: -2.4px;
  color: #10291f;
}
h1 em { font-style: normal; color: #21885e; }

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 4px solid #176b48;
  border-radius: 17px;
  background: #07140f;
  box-shadow: 0 22px 50px rgba(4, 48, 31, .23), 0 0 0 4px rgba(23,107,72,.10);
}
.video-frame video { display: block; width: 100%; height: 100%; object-fit: cover; }
.playing-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(20, 94, 65, .94);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.playing-badge .icon { width: 11px; height: 11px; fill: currentColor; }
.sound-gate {
  position: absolute;
  z-index: 4;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(360px, 68%);
  min-height: 190px;
  padding: 20px;
  display: grid;
  place-items: center;
  gap: 4px;
  color: white;
  background: linear-gradient(160deg, rgba(13,86,58,.92), rgba(42,151,105,.82));
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(4,44,29,.38);
  transition: opacity .25s, transform .25s;
}
.sound-gate:hover { transform: translate(-50%, -50%) scale(1.02); }
.sound-gate.hidden { opacity: 0; pointer-events: none; transform: translate(-50%, -48%); }
.gate-title { font-size: 18px; font-weight: 700; }
.gate-action { width: calc(100% + 40px); margin: 8px -20px -20px; padding: 12px; border-top: 1px solid rgba(255,255,255,.55); font-size: 17px; font-weight: 800; }
.muted-icon { color: #fff; stroke-width: 2; }
.video-toggle {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(4,44,29,.55);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-weight: 800;
  cursor: pointer;
}
.video-toggle .icon { width: 17px; height: 17px; fill: currentColor; }
.progress { position: absolute; z-index: 3; inset: auto 0 0; height: 6px; background: rgba(255,255,255,.22); }
.progress span { display: block; height: 100%; width: 0; background: #1cab54; transition: width .15s linear; }
.video-note { max-width: 600px; margin: 16px auto 0; color: #65776e; font-size: 10px; }

.offer-section { margin-top: -24px; }
.offer-section.offer-pending { display: none; }
.offer-section.offer-visible { animation: offer-reveal .55s cubic-bezier(.2,.75,.2,1) both; }
@keyframes offer-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.offer-ribbon { width: 100%; justify-content: flex-start; border-radius: 8px 8px 0 0; box-shadow: none; }
.offer-card {
  padding: 14px 18px 18px;
  border: 1px solid #cee3d6;
  border-top: none;
  background: white;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 24px rgba(13,86,58,.08);
  text-align: center;
}
.product-stage {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  display: grid;
  place-items: center;
  justify-content: center;
  padding: 18px 24px;
  background: radial-gradient(circle at 50% 45%, #fff 0, #f3faf6 45%, #e4f3e9 100%);
  border: 1px solid #d2e7da;
  border-radius: 9px;
}
.glow { position: absolute; width: 450px; height: 190px; bottom: 14px; border-radius: 50%; background: rgba(45,156,105,.14); filter: blur(28px); }
.product-image { position: relative; z-index: 1; display: block; width: min(100%, 720px); height: auto; filter: drop-shadow(0 18px 16px rgba(85,38,22,.18)); }
.offer-card h2 { margin: 20px 0 16px; font: 800 22px/1.1 "Manrope", sans-serif; }
.benefits { display: grid; gap: 11px; margin: 0 0 18px; padding: 0 10px; list-style: none; text-align: left; font-size: 12px; font-weight: 700; }
.benefits li { display: flex; align-items: center; }
.benefits .icon { width: 19px; height: 19px; margin-right: 9px; color: #12a74f; fill: rgba(18,167,79,.08); }
.availability { width: 100%; padding: 16px 20px; border: 0; border-radius: 8px; color: white; background: linear-gradient(180deg, #16b85d, #069a47); box-shadow: 0 8px 16px rgba(5,157,70,.23); font-weight: 800; cursor: pointer; transition: transform .15s, filter .15s; }
.availability { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.availability .icon { width: 16px; height: 16px; }
.availability:hover { transform: translateY(-1px); filter: brightness(1.05); }
.availability:active { transform: translateY(1px); }
.secure-note { margin: 10px 0 0; display: flex; align-items: center; justify-content: center; gap: 6px; color: #aaa0a3; font-size: 8px; letter-spacing: 1px; }
.secure-note .icon { width: 12px; height: 12px; }

.comments {
  margin-top: 42px;
  padding: 28px 28px 32px;
  border: 1px solid #c9e2d3;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(13,86,58,.06);
}
.comments-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid #d7e8de; }
.comments-head h2 { display: flex; align-items: center; gap: 10px; margin: 0; font: 800 18px/1 "Manrope", sans-serif; }
.comments-head h2 > .icon { width: 19px; height: 19px; color: #176b48; }
.comments-head label { color: #63756c; font-size: 11px; font-weight: 700; }
.sort-select { position: relative; display: inline-flex; align-items: center; }
.comments-head select { appearance: none; padding: 5px 22px 5px 4px; color: #30483d; border: 0; background: transparent; font-size: 11px; font-weight: 800; cursor: pointer; }
.sort-select .icon { position: absolute; right: 3px; width: 13px; height: 13px; pointer-events: none; }
.comment-form { display: flex; gap: 13px; padding: 22px 0 18px; }
.avatar { width: 39px; height: 39px; flex: 0 0 39px; display: grid; place-items: center; border-radius: 50%; color: white; border: 2px solid #fff; box-shadow: 0 0 0 1px #d8e5dd; font-size: 13px; font-weight: 800; }
.avatar img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: inherit; }
.avatar-neutral { color: #fff; background: #c8d5ce; font-size: 21px; }
.comment-input-wrap { flex: 1; }
.comment-input-wrap input, .comment-input-wrap textarea { display: block; width: 100%; border: 0; border-bottom: 1px solid #cfddd5; outline: none; background: transparent; color: #24392f; }
.comment-input-wrap input { padding: 2px 0 9px; font-weight: 700; }
.comment-input-wrap textarea { min-height: 52px; padding: 10px 0 8px; resize: vertical; }
.comment-input-wrap input:focus, .comment-input-wrap textarea:focus { border-bottom-color: #176b48; }
.form-actions { display: flex; justify-content: flex-end; gap: 9px; padding-top: 12px; }
.text-button, .submit-comment, .reply-submit { min-height: 42px; padding: 9px 16px; border: 0; border-radius: 7px; cursor: pointer; font-weight: 700; touch-action: manipulation; }
.text-button { color: #586b61; background: #edf5f0; }
.submit-comment, .reply-submit { color: #fff; background: var(--wine); }
.submit-comment:disabled { opacity: .6; cursor: wait; }
.comment-list { display: grid; gap: 24px; }
.comment { display: flex; gap: 13px; }
.comment-new { animation: comment-highlight 1.4s ease-out; }
@keyframes comment-highlight {
  from { background: #edf8f1; box-shadow: 0 0 0 10px #edf8f1; }
  to { background: transparent; box-shadow: 0 0 0 0 transparent; }
}
.comment-body { flex: 1; min-width: 0; }
.comment-meta { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; margin-bottom: 5px; }
.comment-meta strong { font-size: 12px; }
.comment-meta time { color: #87978f; font-size: 9px; }
.comment-copy { margin: 0; color: #30483d; font-size: 12px; line-height: 1.48; }
.comment-actions { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.action-button { display: inline-flex; align-items: center; gap: 5px; padding: 0; color: #65776e; background: transparent; border: 0; cursor: pointer; font-size: 10px; font-weight: 700; }
.action-button .icon { width: 14px; height: 14px; }
.action-button:hover, .action-button.active { color: #176b48; }
.reply-stack { display: grid; gap: 18px; margin-top: 16px; padding-left: 16px; border-left: 2px solid #cbe8d7; }
.reply-form { display: none; gap: 10px; margin-top: 13px; }
.reply-form.open { display: flex; }
.reply-form input { flex: 1; min-width: 0; padding: 8px 10px; border: 1px solid #cfdfd6; border-radius: 6px; outline: none; }
.reply-form input:focus { border-color: #176b48; }
.reply-submit { padding: 8px 11px; font-size: 10px; }

.site-footer {
  margin-top: 40px;
  padding: 34px 60px 30px;
  color: #65776e;
  background: #fff;
  border-top: 3px solid #176b48;
  text-align: center;
  font-size: 10px;
  letter-spacing: .2px;
}
.site-footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 29px; margin-bottom: 24px; }
.site-footer a { color: #40584d; text-decoration: none; font-weight: 800; letter-spacing: 1.2px; }
.site-footer p { max-width: 620px; margin: 12px auto; line-height: 1.55; }
.site-footer strong { color: #53695f; font-size: 10px; letter-spacing: 1px; }
.footer-rule { max-width: 540px; height: 1px; margin: 19px auto; background: #d5e8dd; }
.address { text-transform: uppercase; letter-spacing: 1px; }
.toast {
  position: fixed;
  z-index: 20;
  left: 50%; bottom: 24px;
  transform: translate(-50%, 20px);
  padding: 12px 18px;
  color: #fff;
  background: #17382a;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  font-size: 13px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 720px) {
  .shell, .narrow { width: min(100% - 20px, 980px); }
  .header-main { min-height: 62px; padding: 0 10px; }
  .brand { font-size: 20px; }
  .broadcast-status { gap: 8px; font-size: 8px; letter-spacing: .7px; }
  .live-pill { padding: 6px 8px; }
  .ticker-group { min-height: 36px; font-size: 8px; }
  .hero { padding-top: 28px; padding-bottom: 54px; }
  .eyebrow { padding-inline: 14px; font-size: 8px; letter-spacing: .9px; }
  h1 { margin-top: 15px; letter-spacing: -1.5px; }
  .video-frame { border-width: 3px; border-radius: 11px; }
  .sound-gate { min-height: 128px; width: min(300px, 76%); padding: 12px; }
  .gate-title, .gate-action { font-size: 13px; }
  .gate-action { width: calc(100% + 24px); margin: 5px -12px -12px; padding: 8px; }
  .muted-icon { width: 45px; height: 45px; }
  .playing-badge { top: 7px; left: 7px; padding: 5px 7px; font-size: 7px; }
  .video-toggle { width: 31px; height: 31px; left: 10px; bottom: 10px; }
  .product-stage { min-height: 280px; }
  .product-image { width: min(100%, 580px); }
  .comments { padding: 22px 15px 26px; }
  .comment-form { align-items: flex-start; }
  .form-actions { display: grid; grid-template-columns: minmax(92px, .7fr) minmax(145px, 1.3fr); }
  .text-button, .submit-comment { width: 100%; min-height: 48px; }
  .comments-head h2 { font-size: 16px; }
  .comment-copy { font-size: 11px; }
  .site-footer { padding-inline: 22px; }
}

@media (max-width: 430px) {
  .broadcast-status > span:first-child { display: none; }
  .product-stage { min-height: 240px; }
  .comments-head { align-items: flex-start; }
  .site-footer nav { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
