:root {
  --ink: #111827;
  --muted: #64748b;
  --line: rgba(15, 23, 42, .1);
  --surface: #ffffff;
  --page: #f7f9fc;
  --gold-light: #dff7ee;
  --gold: #19b77a;
  --gold-dark: #0f8f62;
  --pine: #0f3d35;
  --pine-light: #146050;
  --sky: #eef7ff;
  --radius: 16px;
  --shadow: 0 18px 46px rgba(15, 23, 42, .08);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(25, 183, 122, .08), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, var(--page) 52%, #f3f7fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: var(--gold-dark);
  text-underline-offset: .18em;
}

p {
  color: #3f4a5f;
  line-height: 1.72;
}

.navbar {
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding-top: .2rem;
  padding-bottom: .2rem;
}

.navbar-brand img {
  display: block;
  width: 224px;
  height: auto;
}

.navbar-brand:hover {
  color: var(--ink);
}

.navbar-toggler {
  border-color: rgba(15, 23, 42, .16);
}

.navbar-toggler-icon {
  filter: none;
}

.nav-link {
  color: #475569;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 999px;
  padding-inline: .9rem !important;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pine) !important;
  background: rgba(25, 183, 122, .1);
}

.site-header {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 14%, rgba(25, 183, 122, .16), transparent 24rem),
    radial-gradient(circle at 14% 10%, rgba(99, 179, 237, .14), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f5faf8 100%);
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% 52%;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 96, 80, .08), transparent 62%);
  pointer-events: none;
}

.hero {
  padding: 5rem 0 4.4rem;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1,
.article-hero h1 {
  letter-spacing: -.035em;
  font-weight: 760;
}

.hero .lead {
  color: #536179;
  max-width: 620px;
  font-weight: 400;
}

.hero-card,
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow);
}

.hero-card img,
.img-frame img {
  display: block;
  width: 100%;
  transition: transform .5s ease;
}

.hero-card:hover img,
.img-frame:hover img {
  transform: scale(1.04);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-note {
  color: #375148;
  background: rgba(25, 183, 122, .08);
  border: 1px solid rgba(25, 183, 122, .18);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.btn-success {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold-dark);
  --bs-btn-hover-border-color: var(--gold-dark);
  --bs-btn-active-bg: var(--gold-dark);
  --bs-btn-active-border-color: var(--gold-dark);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(25, 183, 122, .24);
  font-weight: 650;
  padding: .78rem 1.4rem;
  color: #fff;
}

.btn-success:hover {
  color: #fff;
}

.btn-outline-light {
  border-radius: 999px;
  font-weight: 650;
  padding: .78rem 1.4rem;
  border-color: rgba(15, 23, 42, .16);
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
}

.btn-outline-light:hover {
  color: var(--pine);
  background: #fff;
  border-color: rgba(25, 183, 122, .35);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1.4rem;
}

.stat-pill {
  padding: .85rem;
  border-radius: 14px;
  color: #536179;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(15, 23, 42, .08);
  text-align: center;
}

.stat-pill strong {
  display: block;
  color: var(--pine);
  font-size: 1.1rem;
  font-weight: 700;
}

.section-pad {
  padding: 4.6rem 0;
}

.soft-section {
  background: rgba(255, 255, 255, .58);
}

.cream-section {
  background: linear-gradient(180deg, rgba(238, 247, 255, .72), rgba(255, 255, 255, .36));
}

.section-kicker {
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.plain-panel,
.feature-card,
.review-card,
.article-card,
.contact-panel {
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
}

.plain-panel {
  padding: 1.5rem;
}

.feature-card,
.review-card,
.article-card,
.contact-panel {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover,
.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 183, 122, .24);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .09);
}

.lux-icon,
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(25, 183, 122, .12), rgba(238, 247, 255, .9));
  border: 1px solid rgba(25, 183, 122, .16);
}

.lux-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: flex;
  align-items: start;
  gap: .7rem;
  padding: .8rem 0;
  color: #3f4858;
  border-bottom: 1px solid rgba(18, 23, 34, .08);
}

.fact-list li:last-child {
  border-bottom: 0;
}

.fact-list li::before,
.tips-list li::before {
  content: "";
  width: .5rem;
  height: .5rem;
  margin-top: .5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(25, 183, 122, .1);
  flex: 0 0 auto;
}

.step-list {
  counter-reset: steps;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(18, 23, 34, .08);
}

.step-list li:last-child {
  border-bottom: 0;
}

.step-list li::before {
  content: "0" counter(steps);
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--pine), var(--pine-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}

.play-process {
  display: grid;
  gap: .9rem;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 249, 252, .9));
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 183, 122, .22);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .09);
}

.process-step::after {
  content: "";
  position: absolute;
  left: 2.45rem;
  top: calc(100% - .25rem);
  width: 1px;
  height: 1.15rem;
  background: linear-gradient(180deg, rgba(25, 183, 122, .3), transparent);
}

.process-step:last-child::after {
  display: none;
}

.process-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 12px 26px rgba(25, 183, 122, .22);
}

.process-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.process-step h3 {
  margin-bottom: .25rem;
  font-weight: 600;
}

.process-step p {
  color: var(--muted);
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tips-list li {
  display: flex;
  align-items: start;
  gap: .75rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(15, 23, 42, .08);
  font-weight: 450;
}

.review-line {
  height: 100%;
  padding: 1.4rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  position: relative;
}

.review-line::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: -.5rem;
}

.review-line p {
  color: #3f4858;
  font-style: italic;
}

.table {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
}

.table thead th {
  background: var(--pine);
  color: #fff;
  border-color: rgba(255, 255, 255, .08);
  font-weight: 600;
  letter-spacing: .02em;
}

.accordion-item {
  border-color: rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .85);
  border-radius: 12px !important;
  margin-bottom: .5rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 650;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
}

.accordion-button:not(.collapsed) {
  color: var(--pine);
  background: rgba(25, 183, 122, .08);
  box-shadow: inset 0 -1px 0 rgba(25, 183, 122, .12);
}

.article-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(25, 183, 122, .14), transparent 21rem),
    linear-gradient(180deg, #fff 0%, #f3f8fb 100%);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.article-hero .lead {
  color: #536179;
}

.content-wrap {
  max-width: 880px;
}

.content-wrap h2 {
  margin-top: 2.25rem;
  letter-spacing: -.02em;
  font-weight: 650;
}

.article-card {
  overflow: hidden;
}

.article-card img,
.article-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 12px;
}

.article-thumb {
  height: 330px;
  margin-bottom: 1.65rem;
  box-shadow: var(--shadow);
}

.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, .7);
}

.footer a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  width: min(100% - 2rem, 520px);
  color: #fff;
  background: rgba(15, 23, 42, .96);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .22);
  padding: 1rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

.cookie-banner a {
  color: var(--gold-light);
  font-weight: 600;
}

.cookie-banner__title {
  margin-bottom: .35rem;
  font-weight: 650;
  letter-spacing: -.01em;
}

.cookie-banner__actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-top: .9rem;
}

.cookie-banner .btn {
  border-radius: 999px;
  font-weight: 600;
}

.text-bg-success {
  color: #fff !important;
  background-color: var(--gold) !important;
}

.text-success {
  color: var(--gold-dark) !important;
}

.play-shell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(15, 61, 53, .96), rgba(20, 96, 80, .92)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .16), transparent 18rem);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.play-shell__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 1rem;
}

.play-shell__bar strong {
  color: #fff;
}

.play-shell__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .55rem;
  min-height: 220px;
  padding: .9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
}

.play-stack {
  min-height: 170px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px dashed rgba(255, 255, 255, .18);
  padding: .45rem;
}

.play-card {
  height: 4.2rem;
  margin-bottom: -2.2rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .12);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .16);
}

.play-card.is-down {
  background:
    linear-gradient(135deg, rgba(25, 183, 122, .95), rgba(14, 116, 144, .95));
  border-color: rgba(255, 255, 255, .22);
}

.play-card:nth-child(2n) {
  transform: translateY(2px);
}

.reveal {
  animation: fadeUp .7s ease both;
}

.reveal-delay-1 {
  animation-delay: .08s;
}

.reveal-delay-2 {
  animation-delay: .16s;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 991.98px) {
  .stat-strip,
  .tips-list {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 767.98px) {
  .navbar-brand img {
    width: 190px;
  }

  .hero {
    padding: 3.4rem 0;
  }

  .section-pad {
    padding: 3.2rem 0;
  }

  .display-4 {
    font-size: 2.2rem;
    line-height: 1.12;
  }

  .hero h1,
  .article-hero h1 {
    overflow-wrap: break-word;
  }

  .article-thumb {
    height: 230px;
  }

  .cookie-banner {
    right: .75rem;
    bottom: .75rem;
    width: calc(100% - 1.5rem);
  }

  .cookie-banner__actions .btn {
    flex: 1 1 10rem;
    padding-inline: .9rem;
  }

  .play-shell {
    padding: .9rem;
  }

  .play-shell__bar {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }

  .play-shell__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .play-stack {
    min-height: 135px;
  }

  .play-card {
    height: 3.5rem;
  }
}
