:root {
  --green-900: #143f32;
  --green-800: #1e5c43;
  --green-700: #247a50;
  --green-500: #39a768;
  --mint-100: #ecf8ef;
  --mint-200: #d8f0df;
  --cream-50: #fffaf0;
  --cream-100: #f8f1df;
  --gold-300: #d8b86a;
  --gray-50: #f7f8f5;
  --gray-200: #e6e9e1;
  --gray-500: #68736c;
  --text: #213029;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(28, 73, 48, 0.14);
  --soft-shadow: 0 12px 30px rgba(28, 73, 48, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 184, 106, 0.14), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(57, 167, 104, 0.10), transparent 30%),
    linear-gradient(180deg, var(--cream-50) 0%, #ffffff 38%, var(--gray-50) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(120deg, rgba(36, 122, 80, 0.08) 1px, transparent 1px),
    linear-gradient(60deg, rgba(216, 184, 106, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.top-strip {
  background: var(--green-900);
  color: var(--cream-50);
  text-align: center;
  padding: 10px 18px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid rgba(36, 122, 80, 0.12);
  backdrop-filter: blur(18px);
}

.logo-text {
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  white-space: nowrap;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: #41534a;
  font-size: 0.95rem;
}

.nav-list a {
  border-bottom: 1px solid transparent;
}

.nav-list a:hover {
  color: var(--green-800);
  border-color: var(--gold-300);
}

.main-action,
.ghost-action,
.soft-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.main-action {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
  box-shadow: 0 12px 26px rgba(36, 122, 80, 0.22);
}

.main-action:hover,
.ghost-action:hover,
.soft-action:hover {
  transform: translateY(-2px);
}

.ghost-action {
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(36, 122, 80, 0.18);
}

.soft-action {
  color: var(--green-800);
  background: var(--mint-100);
  border-color: var(--mint-200);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.55fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px) clamp(20px, 5vw, 72px) clamp(24px, 4vw, 46px);
  overflow: hidden;
}

.botanical-mark {
  position: absolute;
  width: 330px;
  height: 330px;
  right: 3%;
  top: 8%;
  opacity: 0.14;
  background:
    radial-gradient(ellipse at 45% 20%, transparent 22%, var(--green-700) 23%, transparent 24%),
    radial-gradient(ellipse at 58% 46%, transparent 18%, var(--green-700) 19%, transparent 20%),
    radial-gradient(ellipse at 38% 66%, transparent 16%, var(--green-700) 17%, transparent 18%);
  transform: rotate(-18deg);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.25rem, 3.25vw, 2.95rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

h3 {
  margin: 0;
  color: var(--green-900);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text {
  max-width: 760px;
  margin: 16px 0 0;
  color: #4c5c54;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px 16px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #33483d;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-700);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-list span,
.offer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(36, 122, 80, 0.16);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(28, 73, 48, 0.06);
}

.hero-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.product-glow {
  position: absolute;
  width: min(86%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 184, 106, 0.30), transparent 58%),
    radial-gradient(circle, rgba(57, 167, 104, 0.20), transparent 72%);
  filter: blur(4px);
}

.hero-visual img {
  position: relative;
  width: min(92%, 360px);
  filter: drop-shadow(0 26px 38px rgba(28, 73, 48, 0.20));
}

.rating-chip {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: min(210px, 48vw);
  padding: 16px;
  border: 1px solid rgba(216, 184, 106, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.rating-chip strong {
  display: block;
  color: var(--green-800);
  font-size: 1.45rem;
}

.rating-chip span {
  color: var(--gray-500);
  font-size: 0.88rem;
}

.section-wrap,
.about-band,
.routine-band,
.guarantee-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) 0;
}

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

.tile-grid,
.ingredient-grid,
.step-grid,
.review-grid,
.price-grid {
  display: grid;
  gap: 18px;
}

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

.info-tile,
.ingredient-tile,
.step-tile,
.review-tile,
.product-tile,
.care-note {
  border: 1px solid rgba(36, 122, 80, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.info-tile {
  padding: 24px;
}

.info-tile p,
.ingredient-tile p,
.step-tile p,
.review-tile p,
.product-tile p,
.guarantee-band p,
.about-copy p,
.faq-list p,
.care-note p {
  color: #53635b;
}

.about-band,
.guarantee-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-block: 1px solid rgba(36, 122, 80, 0.12);
}

.about-copy p:first-child,
.guarantee-band p:first-child {
  margin-top: 0;
}

.about-copy .main-action {
  margin-top: 10px;
}

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

.ingredient-tile {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(236, 248, 239, 0.78), rgba(255, 255, 255, 0.88)),
    var(--white);
}

.ingredient-tile span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-800);
  background: var(--cream-100);
  border: 1px solid rgba(216, 184, 106, 0.38);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.83rem;
  font-weight: 800;
}

.nutrition-panel {
  padding-top: 24px;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(36, 122, 80, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  color: var(--green-900);
  font-weight: 800;
}

td {
  color: #4b5d53;
}

.small-note,
.notice-line {
  color: var(--gray-500);
  font-size: 0.94rem;
}

.routine-band {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, rgba(236, 248, 239, 0.95), rgba(255, 250, 240, 0.92));
}

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

.step-tile {
  padding: 26px;
}

.step-tile span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-weight: 900;
}

.compare-table thead th {
  background: var(--green-900);
  color: var(--white);
}

.compare-table tbody td:nth-child(2) {
  color: var(--green-800);
  font-weight: 800;
}

.review-section {
  padding-top: 28px;
}

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

.review-tile {
  padding: 24px;
}

.review-tile img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 3px solid var(--mint-200);
}

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

.review-tile strong {
  color: var(--green-900);
}

.review-tile span {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.pricing-section {
  padding-top: 44px;
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.product-tile {
  display: flex;
  flex-direction: column;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.product-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(145deg, rgba(216, 184, 106, 0.12), transparent 42%);
}

.product-tile > * {
  position: relative;
  z-index: 1;
}

.product-tile.featured {
  border-color: rgba(216, 184, 106, 0.58);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.product-tile img {
  height: 210px;
  object-fit: contain;
  margin: 12px auto 20px;
}

.product-tile h3 {
  font-size: 1.7rem;
}

.product-tile strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--green-800);
  font-size: 1.65rem;
}

.product-tile ul {
  display: grid;
  gap: 8px;
  min-height: 72px;
  padding-left: 20px;
  color: #4f6258;
}

.product-tile .main-action {
  margin-top: auto;
}

.guarantee-band a {
  color: var(--green-800);
  font-weight: 800;
  border-bottom: 1px solid var(--gold-300);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(36, 122, 80, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(28, 73, 48, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green-900);
  font-weight: 850;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--gray-200);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.care-note {
  margin-top: 20px;
  padding: 20px;
  background: rgba(248, 241, 223, 0.64);
}

.site-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px) 94px;
  color: #d9e7dd;
  background: var(--green-900);
}

.site-foot p {
  margin: 0;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.foot-links button,
.foot-links a {
  border: 0;
  padding: 0;
  color: #eef8f1;
  background: transparent;
  cursor: pointer;
  border-bottom: 1px solid rgba(216, 184, 106, 0.55);
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 18;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(36, 122, 80, 0.16);
  box-shadow: 0 -12px 28px rgba(28, 73, 48, 0.12);
  backdrop-filter: blur(12px);
}

.mobile-bar span {
  color: var(--green-900);
  font-weight: 850;
}

.mobile-bar .main-action {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.legal-modal,
.exit-box {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.legal-modal[hidden],
.exit-box[hidden] {
  display: none;
}

.modal-shade {
  position: absolute;
  inset: 0;
  background: rgba(20, 63, 50, 0.54);
  backdrop-filter: blur(6px);
}

.modal-box,
.exit-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  border: 1px solid rgba(216, 184, 106, 0.36);
  border-radius: var(--radius);
  background: var(--cream-50);
  box-shadow: 0 24px 70px rgba(10, 34, 25, 0.28);
}

.modal-box {
  padding: clamp(24px, 5vw, 42px);
}

.modal-box p {
  margin-bottom: 0;
  color: #53635b;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(36, 122, 80, 0.16);
  border-radius: 50%;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 1.35rem;
}

.exit-panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
}

.exit-panel img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(28, 73, 48, 0.18));
}

.exit-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.exit-panel p {
  color: #53635b;
}

.timer-line {
  margin: 14px 0 18px;
  color: var(--green-900);
  font-weight: 800;
}

.exit-panel .soft-action {
  margin-left: 10px;
}

@media (max-width: 980px) {
  .site-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .hero-section,
  .about-band,
  .guarantee-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }

  .tile-grid,
  .ingredient-grid,
  .review-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-tile.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .top-strip {
    font-size: 0.78rem;
  }

  .site-head {
    padding: 14px 18px;
  }

  .site-head > .main-action {
    display: none;
  }

  .nav-list {
    gap: 16px;
    font-size: 0.88rem;
  }

  .hero-section {
    padding-inline: 20px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .hero-actions .main-action,
  .hero-actions .ghost-action {
    width: 100%;
  }

  .trust-list span {
    font-size: 0.8rem;
  }

  .rating-chip {
    right: 0;
    bottom: 0;
  }

  .section-wrap,
  .about-band,
  .guarantee-band {
    width: min(100% - 32px, 1180px);
  }

  .tile-grid,
  .ingredient-grid,
  .step-grid,
  .review-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .product-tile img {
    height: 180px;
  }

  .site-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .foot-links {
    justify-content: flex-start;
  }

  .mobile-bar {
    display: flex;
  }

  .exit-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .exit-panel img {
    width: min(230px, 70%);
    margin: 0 auto;
  }

  .exit-panel .main-action,
  .exit-panel .soft-action {
    width: 100%;
    margin: 8px 0 0;
  }
}

@media (max-width: 420px) {
  .mobile-bar span {
    display: none;
  }

  .mobile-bar .main-action {
    width: 100%;
  }

  .review-tile,
  .product-tile,
  .info-tile,
  .ingredient-tile,
  .step-tile {
    padding: 20px;
  }
}
