:root {
  --page: 840px;
  --bg: #e8eee8;
  --surface: #ffffff;
  --surface-soft: #f3f7f2;
  --ink: #1f2a24;
  --muted: #607065;
  --line: #dce4db;
  --earth: #6f4627;
  --earth-soft: #fff4e8;
  --green: #2f6f4f;
  --green-dark: #174d36;
  --blue: #2d6073;
  --warning: #9a4d24;
  --shadow: 0 10px 28px rgba(27, 45, 35, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0 0 86px;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  letter-spacing: 0;
  word-break: keep-all;
}

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

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(220, 228, 219, .95);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
}

.nav a {
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav .nav-cta {
  background: var(--green);
  color: #fff;
}

main {
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(220, 228, 219, .7);
}

.hero-section {
  display: block;
  padding: 34px 16px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(243, 247, 242, .9)),
    var(--surface-soft);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 38px;
  line-height: 1.08;
}

.hero-lead {
  margin-bottom: 20px;
  color: #405349;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions,
.notice-row,
.quick-facts {
  display: grid;
  gap: 10px;
}

.hero-actions {
  grid-template-columns: 1fr;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(47, 111, 79, .2);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--green-dark);
}

.quick-facts {
  grid-template-columns: 1fr;
  margin: 18px 0 0;
}

.quick-facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  padding: 12px 13px;
}

.quick-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.quick-facts dd {
  margin: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.hero-media {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-media img:nth-child(2) {
  display: none;
}

.section {
  padding: 42px 16px;
  border-top: 1px solid #edf2ec;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2,
.split-section h2,
.warning-box h2,
.smartstore-section h2 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1.24;
}

.section-heading p,
.split-section p,
.smartstore-section p,
.product-body p,
.compare-grid p,
.faq-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.intro,
.comparison-section,
.warning-section {
  background: var(--surface-soft);
}

.notice-row div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.55;
}

.products-section,
.faq-section {
  background: #fbfcfa;
}

.product-grid,
.compare-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.product-card,
.compare-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(27, 45, 35, .05);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-body,
.compare-grid article,
.faq-grid article {
  padding: 16px;
}

.pill {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.pill.live {
  background: #e6f2e9;
  color: var(--green-dark);
}

.pill.dry {
  background: var(--earth-soft);
  color: var(--earth);
}

.product-card h3,
.compare-grid h3,
.faq-grid h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
}

.product-card ul,
.warning-box ul {
  margin: 0;
  padding-left: 18px;
  color: #405349;
  line-height: 1.7;
}

.compare-grid strong {
  display: block;
  margin: 16px 0 6px;
  color: var(--green-dark);
}

.compare-grid span {
  color: var(--earth);
  font-weight: 900;
}

.split-section {
  display: grid;
  gap: 22px;
  background: var(--surface);
}

.split-section.reverse {
  background: #fbfcfa;
}

.check-list {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.check-list p {
  margin: 0;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: var(--surface-soft);
  padding: 11px 13px;
  color: #405349;
  font-weight: 700;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.warning-box {
  border: 1px solid #e8c9b6;
  border-radius: 8px;
  background: #fff8f2;
  padding: 22px 18px;
}

.warning-box li {
  margin: 8px 0;
}

.smartstore-section {
  display: grid;
  gap: 18px;
  background: var(--green-dark);
  color: #fff;
}

.smartstore-section .eyebrow,
.smartstore-section h2,
.smartstore-section p {
  color: #fff;
}

.smartstore-section p {
  opacity: .88;
}

.seller-section {
  background: #fbfcfa;
}

.seller-grid {
  display: grid;
  gap: 10px;
  margin: 0;
}

.seller-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 13px 14px;
}

.seller-grid dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.seller-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.seller-grid a {
  color: var(--green-dark);
  text-decoration: none;
}

.site-footer {
  padding: 28px 16px 34px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.site-footer p {
  margin-bottom: 4px;
}

.sticky-store {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 20;
  width: min(100%, var(--page));
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  border-top: 1px solid rgba(220, 228, 219, .95);
  box-shadow: 0 -10px 28px rgba(27, 45, 35, .10);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.sticky-store .button {
  width: 100%;
}

@media (min-width: 560px) {
  body {
    padding-bottom: 94px;
  }

  .site-header {
    padding: 14px 24px;
  }

  .hero-section {
    padding: 48px 28px 38px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .quick-facts,
  .notice-row,
  .compare-grid,
  .faq-grid,
  .seller-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-grid .wide {
    grid-column: 1 / -1;
  }

  .section {
    padding: 52px 28px;
  }

  .section-heading h2,
  .split-section h2,
  .warning-box h2,
  .smartstore-section h2 {
    font-size: 34px;
  }

  .product-body,
  .compare-grid article,
  .faq-grid article {
    padding: 20px;
  }
}

@media (min-width: 860px) {
  body {
    padding-top: 24px;
    padding-bottom: 102px;
  }

  .site-header {
    border-radius: 8px 8px 0 0;
  }

  main {
    box-shadow: 0 20px 64px rgba(27, 45, 35, .12);
  }

  .site-footer {
    border-radius: 0 0 8px 8px;
  }
}
