:root {
  color-scheme: light;
  --ink: #17332d;
  --ink-deep: #102620;
  --muted: #66716b;
  --paper: #f4efe4;
  --paper-soft: #fbf8f1;
  --panel: rgba(255, 253, 248, 0.94);
  --line: #d9cfbb;
  --accent: #24574c;
  --accent-deep: #163f37;
  --gold: #b99b5e;
  --rail: #122a25;
  --rail-soft: #1b3b34;
  --shadow: 0 18px 50px rgba(20, 49, 42, 0.09);
  --shadow-soft: 0 8px 26px rgba(20, 49, 42, 0.07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 4%, rgba(185, 155, 94, 0.14), transparent 24rem),
    linear-gradient(135deg, var(--rail) 0 13rem, #dfe7dc 13rem, var(--paper) 36rem, var(--paper-soft) 100%);
  background-attachment: fixed;
  line-height: 1.68;
  min-height: 100vh;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(18,42,37,0.98), rgba(27,59,52,0.96));
  color: #f8f4e9;
  box-shadow: 0 22px 60px rgba(9, 29, 24, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  align-items: center;
}

.brand {
  color: #fffaf0;
  font-weight: 850;
  text-decoration: none;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.045em;
}

.site-header > p {
  grid-column: 1;
  margin: 0;
  color: #d8e2dc;
  font-size: 0.96rem;
}

.site-header nav {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  color: #fffaf0;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,250,240,0.4);
}

.content {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.hero,
.posts,
.content article,
.content > h1,
.content > h2,
.content > p,
.content > ul {
  background: var(--panel);
  border: 1px solid rgba(185, 155, 94, 0.28);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 38px);
  margin: 20px 0;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(120deg, rgba(255,253,248,0.98), rgba(238,239,224,0.96)),
    var(--panel);
}

.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,155,94,0.28), rgba(36,87,76,0.04) 62%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
}

.hero p {
  max-width: 720px;
  margin: 8px 0;
  color: var(--muted);
}

.hero p a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  color: #fffaf0;
  background: var(--accent);
}

.posts {
  border-left: 5px solid var(--gold);
}

.posts ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.posts li {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #ded5c3;
  background: rgba(255,255,255,0.66);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.posts li:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 87, 76, 0.34);
  box-shadow: var(--shadow-soft);
}

.posts li a {
  font-weight: 760;
  text-decoration: none;
}

.products-showcase {
  scroll-margin-top: 24px;
}

.gate-hero,
.bundle-card,
.individual-gates,
.gate-trust {
  margin: 20px 0;
}

.gate-hero {
  scroll-margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 5vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(185, 155, 94, .44);
  border-radius: 26px;
  color: #f8f4e9;
  background:
    radial-gradient(circle at 85% 14%, rgba(185,155,94,.22), transparent 18rem),
    linear-gradient(135deg, #0d2621, #163f37);
  box-shadow: 0 24px 60px rgba(9, 29, 24, .24);
}

.gate-hero h1 {
  max-width: 780px;
  color: #fffaf0;
  font-size: clamp(2.35rem, 6.8vw, 5rem);
}

.gate-hero-copy > p:not(.eyebrow, .price-note) {
  max-width: 65ch;
  color: #dbe7e1;
  font-size: 1.08rem;
}

.gate-hero .eyebrow,
.gate-hero .product-kicker {
  color: #e4c98d;
}

.gate-hero .button-secondary {
  color: #fffaf0;
  border-color: rgba(255,250,240,.4);
}

.gate-hero .button-secondary:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.price-note {
  margin-bottom: 0;
  color: #b9c9c1;
  font-size: .86rem;
}

.gate-hero > .gate-gallery {
  grid-template-columns: 1fr;
  max-width: 360px;
  justify-self: center;
}

.gate-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(170px, .85fr);
  gap: 8px;
  margin: 14px 0 20px;
}

.gate-rail a,
.gate-rail-bonus {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(185,155,94,.26);
  border-radius: 16px;
  color: #fffaf0;
  background: var(--rail);
  text-decoration: none;
}

.gate-rail a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gate-rail a:hover,
.gate-rail a:focus-visible {
  color: #fff;
  background: var(--rail-soft);
  transform: translateY(-2px);
}

.gate-rail span,
.gate-rail small {
  color: #d8bf84;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gate-rail-bonus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #6f562a, #3c321f);
}

.gate-chooser {
  scroll-margin-top: 24px;
}

.gate-chooser ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gate-chooser li {
  padding: 0;
}

.gate-chooser li a {
  display: flex;
  min-height: 100%;
  padding: 18px;
  flex-direction: column;
  gap: 5px;
}

.gate-chooser li span {
  color: var(--muted);
  font-size: .9rem;
}

.bundle-card {
  scroll-margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  border: 2px solid rgba(185,155,94,.7);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,253,248,.98), rgba(235,239,224,.96));
  box-shadow: var(--shadow);
}

.bundle-card h2,
.individual-gates > h2 {
  margin-top: 0;
}

.saving {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: rgba(185,155,94,.13);
}

.individual-gates {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(185,155,94,.28);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.gate-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gate-product {
  display: flex;
  max-width: none !important;
  margin: 0 !important;
  padding: 18px !important;
  flex-direction: column;
  border: 1px solid #ded5c3 !important;
  box-shadow: none !important;
}

.gate-product-copy {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.gate-product h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.gate-product .button {
  width: fit-content;
  margin-top: auto;
}

.gate-question {
  color: var(--ink-deep) !important;
  font-weight: 800;
}

.gate-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.gate-gallery a {
  display: block;
  border-radius: 12px;
}

.gate-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(36,87,76,.2);
  border-radius: 12px;
  background: var(--ink-deep);
  box-shadow: 0 8px 18px rgba(20,49,42,.1);
}

.gate-gallery a:hover img,
.gate-gallery a:focus-visible img {
  outline: 3px solid rgba(185,155,94,.65);
  outline-offset: 2px;
}

.gate-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gate-trust > div {
  padding: 20px;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 16px 16px;
  background: rgba(255,253,248,.9);
}

.gate-trust h3 {
  margin: 5px 0 8px;
}

.latest-guidance {
  scroll-margin-top: 24px;
}

.workspace-offer {
  scroll-margin-top: 24px;
  margin: 28px 0;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(185,155,94,.42);
  border-radius: 26px;
  background:
    radial-gradient(circle at 95% 5%, rgba(185,155,94,.16), transparent 18rem),
    rgba(255,253,248,.97);
  box-shadow: var(--shadow);
}

.workspace-intro {
  max-width: 840px;
}

.workspace-intro h2 {
  margin-top: 0;
}

.workspace-stages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.workspace-stages li {
  display: flex;
  padding: 15px 16px;
  flex-direction: column;
  gap: 3px;
  border: 1px solid #ded5c3;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}

.workspace-stages span {
  color: var(--muted);
  font-size: .92rem;
}

.workspace-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.workspace-option {
  display: flex;
  max-width: none !important;
  min-height: 100%;
  margin: 0 !important;
  padding: clamp(20px, 3vw, 28px) !important;
  flex-direction: column;
  border: 1px solid #d8cfbd !important;
  box-shadow: none !important;
}

.workspace-option-primary {
  border: 2px solid var(--accent) !important;
  background: linear-gradient(145deg, rgba(232,240,234,.94), rgba(255,253,248,.98)) !important;
}

.workspace-option h3 {
  margin: 2px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.workspace-option .button {
  width: fit-content;
  margin-top: auto;
}

.workspace-distinction {
  margin-top: 20px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: rgba(185,155,94,.1);
}

.workspace-distinction p {
  margin-top: 0;
}

.text-link {
  font-weight: 800;
}

.products-showcase > h2 {
  max-width: 760px;
  margin-top: 0;
}

.product-card {
  max-width: none;
  margin: 24px 0 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #ded5c3;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  box-shadow: none;
}

.product-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.product-includes {
  margin: 18px 0;
  padding-left: 1.2rem;
}

.product-includes li {
  margin: 8px 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-includes li:hover {
  transform: none;
  box-shadow: none;
}

.digital-notice {
  color: var(--muted);
  font-size: 0.94rem;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-gallery figure {
  margin: 0;
}

.product-gallery-lead {
  grid-column: 1 / -1;
}

.product-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(36, 87, 76, 0.18);
  border-radius: 12px;
  background: var(--ink-deep);
  box-shadow: 0 10px 24px rgba(28, 43, 37, 0.12);
}

.product-card-secondary {
  border-left: 4px solid var(--gold);
}

.content article {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}

.content article > p:first-of-type {
  font-size: 1.12rem;
  color: #475a53;
}

h1, h2, h3 {
  color: var(--ink-deep);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  margin-top: 0;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  margin-top: 2.4rem;
}

h3 { font-size: 1.28rem; }

p { max-width: 76ch; }

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--accent-deep); }

ul { padding-left: 1.25rem; }

.site-footer {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 24px 28px;
  border-radius: 22px;
  background: var(--rail);
  color: #eef2ed;
  box-shadow: var(--shadow-soft);
}

.site-footer p {
  margin: 6px 0;
  color: #dce4df;
}

.site-footer a { margin-top: 8px; background: var(--rail-soft); }

::selection {
  background: rgba(185, 155, 94, 0.35);
  color: var(--ink-deep);
}

@media (max-width: 720px) {
  body {
    background: linear-gradient(180deg, var(--rail) 0 9rem, var(--paper) 22rem, var(--paper-soft) 100%);
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .site-header > p,
  .site-header nav {
    grid-column: 1;
    grid-row: auto;
  }

  .site-header nav a {
    margin-top: 8px;
  }

  .content,
  .site-footer {
    width: calc(100% - 20px);
  }

  .content { padding-top: 16px; }

  .hero,
  .posts,
  .content article,
  .content > h1,
  .content > h2,
  .content > p,
  .content > ul {
    border-radius: 20px;
    padding: 20px;
  }

  .hero { min-height: 0; }

  h1 { font-size: clamp(2rem, 12vw, 3.5rem); }

  .product-card-featured {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery-lead {
    grid-column: auto;
  }

  .gate-hero,
  .bundle-card,
  .gate-product-grid,
  .gate-trust,
  .gate-chooser ul,
  .workspace-stages,
  .workspace-options {
    grid-template-columns: 1fr;
  }

  .gate-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gate-rail-bonus {
    grid-column: 1 / -1;
  }

  .gate-hero > .gate-gallery {
    max-width: 300px;
  }

  .gate-product .button {
    width: 100%;
    justify-content: center;
  }

  .workspace-option .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fffaf0;
  background: var(--accent);
  font-weight: 760;
  text-decoration: none;
}

.button:hover { color: #fff; background: var(--accent-deep); }

.button-secondary {
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(36, 87, 76, 0.34);
}

.button-secondary:hover { color: var(--accent-deep); background: rgba(36, 87, 76, 0.08); }

.report-card h3 { margin: 4px 0 8px; }

.report-detail > h1 { font-size: clamp(2.2rem, 6vw, 4rem); }

.report-detail section {
  margin-top: 30px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.daily-video-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));gap:1.25rem;margin:1.5rem 0}.daily-video-card{padding:1rem;border:1px solid #263b59;border-radius:1rem;background:#101d30}.daily-video-card iframe{display:block;width:100%;aspect-ratio:9/16;max-height:34rem;border:0;border-radius:.75rem;background:#000}.daily-video-card h3{margin:.9rem 0 .25rem}.daily-video-card p{margin:.35rem 0}.publisher-upload input,.publisher-upload textarea,.publisher-upload select{box-sizing:border-box;width:min(100%,42rem);margin-top:.4rem;padding:.8rem;border:1px solid #345274;border-radius:.6rem;background:#07111f;color:#eef4ff;font:inherit}.publisher-upload input[type=file]{padding:.65rem}.publisher-upload progress{width:min(100%,42rem);height:1rem}.publisher-upload [data-error=true]{color:#ff9b9b}.publisher-upload button:disabled{opacity:.6;cursor:wait}
