:root {
  --bg: #f6f9fc;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.94);
  --text: #1c2430;
  --muted: #627181;
  --line: rgba(28, 36, 48, 0.08);
  --teal: #15b4a4;
  --teal-deep: #0f8b81;
  --navy: #23344d;
  --shadow: 0 18px 50px rgba(35, 52, 77, 0.10);
  --shadow-soft: 0 10px 30px rgba(35, 52, 77, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --max: 1240px;
  --content: 790px;
  --sidebar: 340px;
}

.issue-page {
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(21, 180, 164, 0.10), transparent 25%),
    radial-gradient(circle at top right, rgba(35, 52, 77, 0.06), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8fb 50%, #eef4f8 100%);
}

.issue-page a {
  color: var(--teal-deep);
  text-decoration: none;
}

.issue-page a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 10px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
  text-decoration: none;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(35, 52, 77, 0.15);
  flex: 0 0 auto;
  background: #fff;
}

.brand-text {
  min-width: 0;
  display: block;
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 2px;
}

.brand-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: .25s ease;
  white-space: nowrap;
}

.pill:hover,
.btn:hover,
.link-list a:hover,
.social-icon:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.hero {
  padding: 8px 0 10px;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.cover-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f3f6fa;
}

.issue-cover-fill .cover-image-wrap {
  min-height: 500px;
}

.cover-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.issue-cover-fill .cover-image {
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 54px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.93) 38%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.10) 100%);
}

.cover-content {
  max-width: 650px;
}

.issue-tag,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(21, 180, 164, 0.10);
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.issue-page h1 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  color: var(--navy);
}

.hero-sub {
  margin: 0;
  max-width: 640px;
  font-size: clamp(17px, 2vw, 21px);
  color: #46576b;
  font-weight: 500;
}

.hero-accent {
  color: var(--teal-deep);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.footer-cta {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: .25s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(21, 180, 164, 0.25);
}

.btn-secondary {
  background: #fff;
  color: var(--navy) !important;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 8px 0 10px;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--content)) minmax(280px, var(--sidebar));
  gap: 28px;
  align-items: start;
}

.main-content {
  min-width: 0;
}

.sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 18px;
  align-self: start;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stack-card {
  margin-top: 20px;
}

.content-card h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  color: var(--navy);
}

.content-card h3,
.sidebar h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.3;
}

.sidebar h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-top: 0;
}

.highlight-box,
.action-box,
.soft-panel {
  margin: 22px 0;
  padding: 22px;
  border-left: 4px solid var(--teal);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(21, 180, 164, 0.06), rgba(21, 180, 164, 0.02));
  color: var(--navy);
  font-weight: 600;
}

.action-box,
.soft-panel {
  border-left: 0;
  background: #eef5ff;
}

.item-list,
.link-list,
.steps {
  display: grid;
  gap: 16px;
}

.item {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.item h3,
.webinar h3,
.bundle-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--navy);
}

.item p,
.step p,
.bundle-content p {
  margin: 0;
  color: var(--muted);
}

.subpoints {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.subpoints li {
  margin: 6px 0;
}

.simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.simple-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 500;
}

.simple-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4f6480;
  position: absolute;
  left: 0;
  top: 11px;
}

.flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.flow span {
  display: inline-flex;
  align-items: center;
  padding: 11px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.step-num {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
}

.step h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--navy);
}

.feature-image,
.bundle-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-image {
  margin-top: 20px;
}

.feature-image img,
.bundle-card img {
  width: 100%;
  height: auto;
  display: block;
}

.webinars,
.milestone-stat {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.webinar {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.webinar-full {
  grid-column: 1 / -1;
}

.meta {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.bundle-card {
  padding: 0;
}

.bundle-content {
  padding: 24px;
}

.milestone {
  display: grid;
  gap: 14px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.num {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 8px;
}

.label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.link-list a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  transition: .22s ease;
}

.small-note {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: .22s ease;
  text-decoration: none !important;
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.mindset-strip {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 139, 129, 0.92), rgba(35, 52, 77, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 45px rgba(35, 52, 77, 0.18);
}

.mindset-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  min-height: 320px;
}

.mindset-content {
  padding: 42px 36px;
}

.mindset-label {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #dffdfa;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 18px;
}

.mindset-content h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  color: #fff;
}

.mindset-quote {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
}

.mindset-text {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.mindset-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.mindset-glass {
  width: min(100%, 340px);
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.mindset-glass img {
  width: 100%;
  border-radius: 18px;
}

.mindset-mini {
  margin-top: 14px;
  text-align: center;
  color: #e8fffc;
  font-size: 13px;
  font-weight: 600;
}

.footer {
  padding: 28px 0 46px;
}

.footer-card {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}

.footer h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--navy);
}

.footer p {
  margin-top: 0;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

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

.muted {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top,
  .mindset-grid {
    grid-template-columns: 1fr;
  }

  .cover-overlay {
    padding: 34px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.18) 100%);
  }
}

@media (max-width: 767px) {
  .wrap {
    width: min(var(--max), calc(100% - 18px));
  }

  .topbar {
    padding: 10px 0 6px;
  }

  .topbar-inner {
    border-radius: 20px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .brand-name {
    white-space: normal;
    overflow: visible;
    font-size: 14px;
    line-height: 1.35;
  }

  .top-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .pill {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-card {
    border-radius: 22px;
  }

  .cover-image-wrap,
  .issue-cover-fill .cover-image-wrap {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .cover-image,
  .issue-cover-fill .cover-image {
    min-height: auto;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .issue-cover-fill .cover-image {
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }

  .cover-overlay {
    position: relative;
    inset: auto;
    align-items: flex-start;
    padding: 20px 16px 18px;
    background: #ffffff;
    border-top: 1px solid rgba(35, 52, 77, 0.08);
  }

  .issue-page h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
  }

  .issue-tag {
    margin-bottom: 12px;
    padding: 8px 12px;
    font-size: 10px;
  }

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

  .btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.3;
  }

  .card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .content-card h2 {
    font-size: 27px;
  }

  .step,
  .webinars,
  .milestone-stat,
  .sidebar {
    grid-template-columns: 1fr;
  }

  .step-num {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .footer-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mindset-content {
    padding: 24px 18px 12px;
  }

  .mindset-visual {
    padding: 16px 16px 22px;
  }
}

@media (max-width: 420px) {
  .issue-page h1 {
    font-size: 30px;
  }

  .top-links,
  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
  }

  .pill,
  .btn {
    font-size: 11px;
  }

  .flow span {
    width: 100%;
    justify-content: center;
  }
}
