@font-face {
  font-family: "Outfit";
  src: url("../fonts/modern/Outfit.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/modern/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #07150f;
  --forest: #0a2a1c;
  --emerald: #1b8f5a;
  --emerald-bright: #2ecf7a;
  --gold: #c9a24a;
  --gold-soft: #e8c87a;
  --sand: #eef4ef;
  --paper: #f8fbf8;
  --muted: #5a6f63;
  --line: #d4e2d9;
  --radius: 16px;
  --shadow: 0 20px 56px rgba(7, 21, 15, 0.14);
  --max: 760px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1100px 480px at 8% -12%, rgba(46, 207, 122, 0.16), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(201, 162, 74, 0.14), transparent 52%),
    linear-gradient(180deg, #e9f3ec 0%, var(--sand) 42%, #e2ece5 100%);
  min-height: 100%;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

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

a {
  color: var(--emerald);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--forest);
}

.risk-bar {
  background: #fff8e8;
  color: #5c4510;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  padding: 12px 14px calc(96px + env(safe-area-inset-bottom));
  border-top: 1px solid #f0d7a2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 21, 15, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: env(safe-area-inset-top);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
}

.brand span {
  color: var(--emerald-bright);
  font-weight: 500;
}

.advertorial-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.06) translateY(-1.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 15, 0.28) 0%, rgba(7, 21, 15, 0.5) 42%, rgba(7, 21, 15, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 21, 15, 0.58), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 20px 56px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.05;
}

.hero-brand span {
  color: var(--emerald-bright);
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  margin: 0 0 24px;
}

.hero-micro {
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-bright), var(--emerald));
  color: #042416;
  box-shadow: 0 10px 30px rgba(46, 207, 122, 0.32);
}

.btn-primary:hover {
  color: #042416;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(46, 207, 122, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.layout {
  max-width: 1100px;
  margin: -36px auto 0;
  padding: 0 16px 60px;
  position: relative;
  z-index: 3;
}

.article {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px 22px 40px;
  animation: fadeUp 1s 0.15s ease both;
}

@media (min-width: 768px) {
  .article {
    padding: 42px 56px 56px;
  }
}

.article-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}

.article h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 650;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.photo-author {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.article-author {
  color: var(--emerald);
  font-weight: 700;
}

.article h2,
.article h3 {
  font-family: "Fraunces", serif;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 2rem 0 0.85rem;
  line-height: 1.25;
}

.article h2 {
  font-size: 1.55rem;
}

.article h3 {
  font-size: 1.28rem;
}

.article h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.4rem 0 0.55rem;
  color: var(--ink);
}

.article p {
  margin: 0 0 1.1rem;
  color: #24382d;
}

.article p strong a,
.article a {
  font-weight: 600;
}

.figure {
  margin: 1.4rem 0 1.6rem;
}

.figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(7, 21, 15, 0.12);
}

.figure figcaption {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin: 1.2rem 0 1.6rem;
}

@media (min-width: 720px) {
  .benefit-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit {
  padding: 18px 18px 16px;
  border-top: 3px solid var(--emerald);
  background:
    linear-gradient(180deg, rgba(46, 207, 122, 0.1), transparent 70%),
    #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--emerald);
  box-shadow: 0 8px 22px rgba(7, 21, 15, 0.04);
}

.benefit h4 {
  margin: 0 0 6px;
}

.benefit p {
  margin: 0;
  font-size: 0.95rem;
}

.steps {
  list-style: none;
  margin: 1rem 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 14px 14px 14px 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--emerald-bright), var(--emerald));
  color: #042416;
  font-weight: 700;
  font-size: 0.9rem;
}

.steps li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.steps li span {
  display: block;
  font-size: 0.92rem;
  color: #445f52;
}

.cta-panel {
  margin: 2rem 0;
  padding: 26px 22px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(10, 42, 28, 0.98), rgba(7, 21, 15, 0.99)),
    var(--forest);
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 36px rgba(10, 42, 28, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.22), transparent 70%);
  pointer-events: none;
}

.cta-panel.cta-soft {
  background: linear-gradient(135deg, #123d2a, #0a2a1c);
}

.cta-title {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: 1.35rem !important;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px;
  position: relative;
}

.cta-panel .btn-primary {
  width: min(100%, 360px);
  position: relative;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
  background: #eef6f0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.comments {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.comments > h3 {
  margin-top: 0;
}

.comment {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.name-tag {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(145deg, var(--forest), var(--emerald));
}

.feedback-text {
  margin: 0 0 8px;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.reactions {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.reactions img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.comments-disclaimer {
  margin-top: 18px;
  font-size: 0.8rem;
  color: #8a9a90;
  text-align: center;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 20px 64px;
  text-align: center;
}

.site-footer .brand {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--emerald-bright);
}

.footer-company {
  max-width: 760px;
  margin: 0 auto 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.footer-legal {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
}

.footer-legal p {
  margin: 0 0 12px;
}

.footer-legal p:last-child {
  margin-bottom: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.footer-important {
  color: rgba(255, 255, 255, 0.72);
}

.footer-important strong {
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  transform: translateY(110%);
  transition: transform 0.25s ease;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 21, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-copy {
  display: grid;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.25;
  min-width: 0;
}

.sticky-copy span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.sticky-cta .btn {
  flex-shrink: 0;
  padding: 12px 18px;
  min-height: 44px;
}

.lp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 21, 15, 0.62);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lp-modal.is-open {
  display: flex;
}

.lp-modal-card {
  background: #fff;
  width: 460px;
  max-width: 100%;
  max-height: 78vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.lp-modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-family: "Fraunces", serif;
}

.lp-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
}

.lp-modal-body {
  padding: 18px;
  overflow-y: auto;
  font-size: 0.92rem;
  color: #334155;
  -webkit-overflow-scrolling: touch;
}

.lp-modal-body p {
  margin: 0 0 10px;
}

.lp-modal-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  text-align: right;
}

.lp-modal-footer button {
  background: var(--emerald);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
  min-height: 44px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media,
  .hero-content,
  .article {
    animation: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    padding: 12px 14px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .advertorial-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: min(70vh, 520px);
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-content {
    padding: 28px 16px 40px;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .layout {
    margin-top: -20px;
    padding: 0 10px 40px;
  }

  .article {
    border-radius: 18px;
    padding: 22px 16px 32px;
  }

  .article h1 {
    font-size: 1.5rem;
  }

  .article h2 {
    font-size: 1.28rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .cta-panel {
    padding: 18px 14px;
  }

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

  .comment {
    grid-template-columns: 40px 1fr;
  }

  .lp-modal {
    align-items: flex-end;
    padding: 0;
  }

  .lp-modal-card {
    width: 100%;
    max-height: 88vh;
    border-radius: 16px 16px 0 0;
  }

  .risk-bar {
    font-size: 0.75rem;
    text-align: left;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .sticky-cta-inner {
    flex-direction: row;
    align-items: center;
  }

  .sticky-cta .btn {
    width: auto;
    min-width: 132px;
    padding: 12px 16px;
  }

  .site-footer {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
}
