:root {
  --bg: #f6f7fc;
  --bg-deep: #edf1fa;
  --paper: rgba(255, 255, 255, 0.86);
  --paper-strong: #ffffff;
  --paper-dark: rgba(26, 31, 45, 0.88);
  --text: #1a2238;
  --muted: #667089;
  --line: rgba(26, 34, 56, 0.12);
  --line-strong: rgba(26, 34, 56, 0.2);
  --accent: #8a63ff;
  --accent-dark: #6948e8;
  --accent-soft: rgba(138, 99, 255, 0.12);
  --forest: #243456;
  --cream: #f7f8ff;
  --shadow-xl: 0 28px 70px rgba(37, 47, 84, 0.14);
  --shadow-lg: 0 20px 46px rgba(37, 47, 84, 0.1);
  --shadow-sm: 0 8px 18px rgba(37, 47, 84, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 999px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(138, 99, 255, 0.12), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(93, 156, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #fcfdff 0%, var(--bg) 44%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 112px,
      rgba(26, 34, 56, 0.016) 112px,
      rgba(26, 34, 56, 0.016) 113px
    );
  pointer-events: none;
  z-index: -3;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid rgba(138, 99, 255, 0.65);
  outline-offset: 3px;
}

.page-noise {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.038) 0.6px, transparent 0.6px),
    radial-gradient(rgba(255, 255, 255, 0.26) 0.6px, transparent 0.6px);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -2;
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  top: -8rem;
  left: -7rem;
  background: rgba(138, 99, 255, 0.24);
}

.page-glow-right {
  top: 12rem;
  right: -8rem;
  background: rgba(93, 156, 255, 0.18);
}

.progress-track {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(26, 34, 56, 0.06);
  z-index: 100;
}

.progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #6c4dff, #8a63ff, #5f8fff);
  box-shadow: 0 0 18px rgba(138, 99, 255, 0.32);
  transition: width 120ms ease-out;
}

.site-header,
.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 1rem;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(26, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-radius: calc(var(--radius-md) + 2px);
  box-shadow: 0 10px 30px rgba(37, 47, 84, 0.05);
  transition: padding 220ms ease, background-color 220ms ease, box-shadow 220ms ease,
    border-color 220ms ease, transform 220ms ease;
}

body.is-scrolled .header-shell {
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(26, 34, 56, 0.12);
  box-shadow: 0 16px 35px rgba(37, 47, 84, 0.1);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-mark {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0.16rem;
  border-radius: 1rem;
  border: 1px solid rgba(26, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(37, 47, 84, 0.08);
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.85rem;
}

.eyebrow,
.issue-label,
.panel-label,
.article-category,
.quote-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  font-weight: 800;
}

.eyebrow,
.issue-label,
.quote-label {
  color: var(--accent);
}

.site-title,
.hero h1,
.panel-card h2,
.featured-content h2,
.section-heading h2,
.sidebar-card h3,
.newsletter h2,
.post-card h3,
.micro-card h3 {
  font-family: "Cormorant Garamond", serif;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.main-nav a,
.header-cta,
.button,
.pill,
.inline-link,
.issue-link,
.card-title-link,
.featured-article,
.post-card,
.logo-mark {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.main-nav a {
  color: var(--muted);
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.card-title-link:hover,
.card-title-link:focus-visible {
  color: var(--accent-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding: 0.92rem 1.2rem;
  background: var(--text);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.header-cta:hover,
.button:hover,
.pill:hover,
.featured-article:hover,
.post-card:hover {
  transform: translateY(-2px);
}

.section {
  padding: 4rem 0;
}

.issue-banner {
  padding-top: 1.5rem;
  padding-bottom: 0;
}

.issue-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(26, 34, 56, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 241, 255, 0.78));
  border-radius: calc(var(--radius-md) + 2px);
  box-shadow: var(--shadow-sm);
}

.issue-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.issue-link {
  color: var(--accent-dark);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 2rem;
  align-items: stretch;
  padding-top: 3.8rem;
}

.hero::after {
  content: "TV";
  position: absolute;
  top: 1.2rem;
  right: 36%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(8rem, 20vw, 15rem);
  line-height: 0.9;
  color: rgba(138, 99, 255, 0.07);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
}

.hero h1,
.section-heading h2,
.newsletter h2,
.featured-content h2,
.sidebar-card h3,
.post-card h3,
.micro-card h3 {
  margin: 0;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-dark);
}

.hero-text,
.panel-card p,
.micro-card p,
.featured-content p,
.section-intro,
.post-content p,
.sidebar-card p,
.newsletter-copy p,
.issue-text,
.trend-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin-top: 1.3rem;
}

.hero-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-topics span {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(138, 99, 255, 0.14);
  background: rgba(138, 99, 255, 0.06);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(37, 47, 84, 0.05);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  padding: 1rem 1.35rem;
}

.button-primary {
  background: linear-gradient(145deg, #243456, var(--accent));
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(138, 99, 255, 0.18);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.button-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-dark);
  box-shadow: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
  max-width: 42rem;
}

.stat-card,
.panel-card,
.quote-card,
.micro-card,
.featured-article,
.post-card,
.sidebar-card,
.newsletter,
.discover-shell {
  border: 1px solid rgba(26, 34, 56, 0.08);
  background: var(--paper);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.stat-card {
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.22rem;
  font-size: 1.6rem;
}

.stat-card span,
.panel-meta,
.post-meta,
.featured-meta,
.form-note,
.site-footer,
.empty-state,
.post-date {
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card,
.quote-card,
.micro-card,
.sidebar-card,
.newsletter,
.discover-shell {
  border-radius: var(--radius-xl);
}

.panel-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(138, 99, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 255, 0.96));
}

.panel-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(138, 99, 255, 0.08);
}

.panel-header,
.featured-meta,
.post-kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.panel-tag,
.panel-issue,
.cover-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
}

.panel-tag {
  background: rgba(138, 99, 255, 0.14);
  color: var(--accent-dark);
}

.panel-issue {
  background: rgba(138, 99, 255, 0.08);
  color: var(--text);
}

.panel-visual {
  position: relative;
  height: 13rem;
  margin: 1.35rem 0 1.2rem;
  overflow: hidden;
  border-radius: 1.6rem;
  background: rgba(138, 99, 255, 0.08);
}

.panel-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.panel-card h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.panel-card p,
.panel-meta {
  position: relative;
  z-index: 1;
}

.panel-meta,
.post-meta,
.featured-meta {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.hero-subpanels {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 1rem;
}

.quote-card,
.micro-card,
.sidebar-card {
  padding: 1.35rem 1.4rem;
}

.quote-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 255, 0.94));
}

.quote-card blockquote {
  margin: 0.75rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.18;
}

.micro-card {
  background:
    linear-gradient(180deg, rgba(36, 52, 86, 0.98), rgba(62, 77, 130, 0.96));
  color: #f8f9ff;
}

.micro-card .quote-label,
.micro-card p {
  color: rgba(248, 249, 255, 0.82);
}

.micro-card h3 {
  margin-top: 0.55rem;
  font-size: 1.9rem;
}

.featured-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  padding-top: 0.6rem;
}

.featured-column {
  display: grid;
  gap: 1rem;
}

.featured-article {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.featured-article:hover {
  box-shadow: var(--shadow-xl);
}

.featured-article-large {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  min-height: 23rem;
}

.featured-content {
  padding: 1.5rem 1.55rem 1.6rem;
}

.featured-content h2 {
  font-size: clamp(2.15rem, 4vw, 3rem);
  margin-top: 0.45rem;
}

.featured-column .featured-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.featured-meta {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 34, 56, 0.08);
}

.article-cover {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
}

.article-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.featured-article-large .article-cover {
  min-height: 100%;
}

.article-cover::before,
.article-cover::after,
.article-cover > span {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.article-cover::before {
  width: 13rem;
  height: 13rem;
  top: -2rem;
  right: -1rem;
  background: rgba(255, 255, 255, 0.18);
}

.article-cover::after {
  width: 8rem;
  height: 8rem;
  bottom: -1.3rem;
  left: 1.1rem;
  background: rgba(255, 255, 255, 0.16);
}

.article-cover::selection {
  background: transparent;
}

.cover-saffron {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(140deg, #9b86ff, #6e63ff 56%, #394ea9);
}

.cover-forest {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(140deg, #8ab3ff, #5b7df2 58%, #2d4bb0);
}

.cover-blush {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(140deg, #d0b8ff, #9b7fff 60%, #684de0);
}

.cover-coral {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(140deg, #8fa6ff, #6478ef 60%, #3a53c2);
}

.cover-sea {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(140deg, #8fc6ff, #5b8fff 60%, #355dd4);
}

.cover-honey {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(140deg, #bc9cff, #8a63ff 65%, #6547db);
}

.cover-night {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.14), transparent 35%),
    linear-gradient(140deg, #6f7eb3, #303e72 60%, #1b2340);
}

.cover-moss {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(140deg, #90a7ff, #6176ef 58%, #3b53bc);
}

.cover-paper {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(140deg, #eef0ff, #c6cfff 58%, #8c95cf);
}

.discover-section {
  position: relative;
}

.discover-shell {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(138, 99, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 249, 255, 0.82));
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem 3rem;
  margin-bottom: 1.6rem;
}

.section-heading h2,
.newsletter h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
}

.section-intro {
  max-width: 35rem;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.search-field {
  display: grid;
  gap: 0.6rem;
  min-width: min(100%, 22rem);
}

.search-field span,
.newsletter-form label {
  font-size: 0.92rem;
  font-weight: 800;
}

.search-field input,
.newsletter-controls input {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid rgba(26, 34, 56, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.search-field input:focus,
.newsletter-controls input:focus {
  border-color: rgba(138, 99, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(138, 99, 255, 0.12);
  background: #ffffff;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  padding: 0.78rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 34, 56, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.pill.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.72fr);
  gap: 1rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: postIndex;
}

.post-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  counter-increment: postIndex;
}

.post-card::after {
  content: counter(postIndex, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
  z-index: 3;
}

.post-card:hover {
  box-shadow: var(--shadow-xl);
}

.post-media {
  position: relative;
}

.cover-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  z-index: 2;
}

.post-content {
  padding: 1.25rem 1.25rem 1.35rem;
}

.post-kicker {
  margin-bottom: 0.4rem;
}

.post-card h3 {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin-top: 0.38rem;
}

.post-date {
  font-size: 0.9rem;
  font-weight: 700;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(26, 34, 56, 0.08);
  font-size: 0.92rem;
}

.sidebar {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.sidebar-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(138, 99, 255, 0.98), rgba(92, 73, 210, 0.96));
  color: #ffffff;
}

.spotlight-card .eyebrow,
.spotlight-card p,
.spotlight-card .inline-link {
  color: rgba(255, 249, 243, 0.84);
}

.spotlight-card .inline-link {
  font-weight: 800;
}

.archive-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 241, 255, 0.94));
}

.trend-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.trend-list li {
  display: flex;
  gap: 0.9rem;
  align-items: start;
}

.trend-rank {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 0.85rem;
  background: rgba(138, 99, 255, 0.12);
  color: var(--accent-dark);
  font-weight: 800;
}

.trend-list strong {
  display: block;
  margin-bottom: 0.18rem;
}

.inline-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(138, 99, 255, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(36, 52, 86, 0.98), rgba(28, 36, 68, 0.96));
  color: #f8f9ff;
}

.newsletter .eyebrow,
.newsletter p,
.newsletter .form-note,
.newsletter-form label,
.newsletter-benefits li {
  color: rgba(248, 249, 255, 0.84);
}

.newsletter-benefits {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-benefits li {
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(248, 249, 255, 0.12);
  border-radius: 1rem;
  background: rgba(248, 249, 255, 0.08);
  font-weight: 700;
}

.newsletter-form {
  display: grid;
  gap: 0.8rem;
}

.newsletter-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.newsletter-controls input {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.newsletter-controls input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0 0 2.4rem;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.empty-state {
  margin: 1rem 0 0;
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  border: 1px dashed rgba(26, 34, 56, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.wa-pop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(340px, calc(100vw - 1rem));
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem;
  border: 1px solid rgba(26, 34, 56, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(37, 47, 84, 0.14);
  backdrop-filter: blur(16px);
  z-index: 80;
}

.wa-pop[hidden] {
  display: none;
}

.wa-pop-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.wa-pop-title {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.wa-pop-text,
.wa-pop-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.wa-pop-close {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 34, 56, 0.06);
  color: var(--text);
  cursor: pointer;
}

.wa-pop-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1rem;
  border-radius: 10px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}

.wa-pop-action:hover,
.wa-pop-action:focus-visible {
  background: #1faa55;
}

.trust-section {
  padding-top: 1rem;
}

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

.trust-card {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26, 34, 56, 0.08);
  background:
    radial-gradient(circle at top right, rgba(138, 99, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 255, 0.9));
  box-shadow: var(--shadow-lg);
}

.trust-card h3 {
  margin: 0.45rem 0 0.7rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 0.98;
}

.trust-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.post-card.is-hidden {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .featured-strip,
  .content-grid,
  .newsletter,
  .featured-article-large {
    grid-template-columns: 1fr;
  }

  .hero::after {
    right: 8%;
    top: 0.8rem;
  }

  .hero-stats {
    max-width: none;
  }

  .featured-article-large .article-cover {
    min-height: 18rem;
  }

}

@media (max-width: 860px) {
  .header-shell,
  .section-heading,
  .site-footer,
  .issue-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .issue-banner-inner {
    display: flex;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-subpanels,
  .hero-stats,
  .posts-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 1rem, 100%);
  }

  .site-header {
    padding-top: 0.75rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero::after {
    font-size: 7rem;
    top: 1.2rem;
    right: 0;
  }

  .header-shell,
  .discover-shell,
  .newsletter {
    border-radius: 1.45rem;
  }

  .panel-card,
  .quote-card,
  .micro-card,
  .sidebar-card,
  .featured-article,
  .post-card {
    border-radius: 1.35rem;
  }

  .featured-content,
  .quote-card,
  .micro-card,
  .sidebar-card,
  .newsletter,
  .panel-card,
  .discover-shell {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .featured-content,
  .panel-card,
  .post-content,
  .newsletter {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .post-card h3,
  .featured-column .featured-content h2 {
    font-size: 1.9rem;
  }

  .site-footer {
    padding-bottom: 1.8rem;
  }

  .wa-pop {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
