@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: #07141f;
  --navy: #0c2438;
  --teal: #0f9f8a;
  --teal-bright: #14c4a8;
  --sand: #e8eef2;
  --paper: #f7fafb;
  --muted: #5a6b78;
  --line: #d5e0e8;
  --gold: #b8923a;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(7, 20, 31, 0.12);
  --max: 760px;
}

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

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

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(20, 196, 168, 0.18), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(184, 146, 58, 0.12), transparent 50%),
    linear-gradient(180deg, #edf3f6 0%, var(--sand) 40%, #e4ecef 100%);
  min-height: 100%;
}

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

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

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

.risk-bar {
  background: #fff7e8;
  color: #5c4510;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  padding: 12px 14px 88px;
  border-top: 1px solid #f0d7a2;
  border-bottom: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 20, 31, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.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.02em;
  color: #fff;
  text-decoration: none;
}

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

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

.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 30%;
  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, 20, 31, 0.35) 0%, rgba(7, 20, 31, 0.55) 45%, rgba(7, 20, 31, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 20, 31, 0.55), transparent 55%);
}

.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(--teal-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.82);
  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;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  color: #04231e;
  box-shadow: 0 10px 30px rgba(20, 196, 168, 0.35);
}

.btn-primary:hover {
  color: #04231e;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(20, 196, 168, 0.45);
}

.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.7);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px 22px 40px;
  animation: fadeUp 1s 0.15s ease both;
}

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

.ad-disclosure {
  background: #eef6f8;
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: #3d5160;
  margin-bottom: 18px;
}

.disclosure-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 1.4rem 0 1.8rem;
  box-shadow: 0 8px 24px rgba(7, 20, 31, 0.04);
}

.disclosure-box h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
}

.disclosure-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #334155;
  font-size: 0.92rem;
}

.disclosure-box li {
  margin-bottom: 8px;
}

.article-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  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(--teal);
  font-weight: 700;
}

.article h2,
.article h3 {
  font-family: "Fraunces", serif;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--navy);
  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: #243441;
}

.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, 20, 31, 0.1);
}

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

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

.benefit {
  padding: 16px 18px;
  border-left: 3px solid var(--teal);
  background: linear-gradient(90deg, rgba(20, 196, 168, 0.08), transparent);
  border-radius: 0 12px 12px 0;
}

.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(--teal-bright), var(--teal));
  color: #04231e;
  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: #445664;
}

.faq {
  display: grid;
  gap: 10px;
  margin: 1rem 0 1.8rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  color: #445664;
}

.cta-panel {
  margin: 2rem 0;
  padding: 22px 20px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(12, 36, 56, 0.96), rgba(7, 20, 31, 0.98)),
    var(--navy);
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 34px rgba(12, 36, 56, 0.28);
}

.cta-panel.cta-soft {
  background: linear-gradient(135deg, #12324a, #0c2438);
}

.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;
}

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

.cta-note {
  margin: 12px 0 0 !important;
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
  background: #eef5f7;
  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;
}

.comments-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin: -4px 0 12px;
}

.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(--navy), var(--teal));
}

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

.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: #8a97a3;
  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(--teal-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);
}

.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, 20, 31, 0.94);
  backdrop-filter: blur(10px);
  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;
}

.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, 20, 31, 0.6);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.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;
}

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

.lp-modal-body h4 {
  font-size: 0.98rem;
  margin: 14px 0 6px;
  color: var(--ink);
}

.lp-modal-body h4:first-child {
  margin-top: 0;
}

.lp-modal-body p,
.lp-modal-body ul {
  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(--teal);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
}

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

  .site-header {
    padding-top: env(safe-area-inset-top);
  }

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

  .brand {
    font-size: 1.1rem;
  }

  .hero {
    min-height: min(72vh, 560px);
  }

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

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

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

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

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

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

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

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

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

  .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: 120px;
  }

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

  .sticky-cta .btn {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}
