:root {
  --navy: #0f2240;
  --navy-light: #1a3460;
  --orange: #f4632a;
  --yellow: #f9c846;
  --green: #4cba6e;
  --blue-light: #e8f4fd;
  --gray: #f5f6f8;
  --text: #1a1a2e;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(249, 200, 70, 0.2), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(244, 99, 42, 0.18), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #f5f6f8 55%, #ffffff 100%);
  min-height: 100vh;
}

nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0 solid transparent;
  border-bottom: 1px solid rgba(15, 34, 64, 0.08);
  border-radius: 0;
  box-shadow: none;
  transition:
    top 0.32s ease,
    width 0.32s ease,
    padding 0.32s ease,
    border-radius 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease,
    border-width 0.32s ease,
    backdrop-filter 0.32s ease;
}

body.nav-scrolled nav {
  top: 10px;
  width: min(1210px, calc(100% - 86px));
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(15, 34, 64, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(15, 34, 64, 0.12);
}

.logo {
  position: absolute;
  left: 48px;
  font-family: "Gochi Hand", cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  text-decoration: none;
  color: var(--navy);
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 15px;
  opacity: 0.72;
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a.nav-news-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(244, 99, 42, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(249, 200, 70, 0.34), rgba(244, 99, 42, 0.13)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(244, 99, 42, 0.12);
  color: var(--navy);
  opacity: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-links a.nav-news-link::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 99, 42, 0.12);
}

.nav-links a.nav-news-link:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 99, 42, 0.38);
  box-shadow: 0 12px 26px rgba(244, 99, 42, 0.18);
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(244, 99, 42, 0.35);
  cursor: pointer;
}

button.btn,
button.side-btn,
button.article-card {
  font: inherit;
}

button.nav-cta {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
}

button.btn,
button.article-card {
  border: none;
  cursor: pointer;
}

button.article-card {
  text-align: left;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lead-modal.open { display: flex; }

.lead-modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border: 2px solid #b8e8ff;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  padding: 30px 24px 24px;
}

.lead-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: #eef2f7;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-title {
  margin: 2px 0 10px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.lead-modal-subtitle {
  max-width: 420px;
  margin: 0 auto 24px;
  color: #6a7a8a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.lead-capture-form.success .form-field,
.lead-capture-form.success .form-privacy,
.lead-capture-form.success .btn-form {
  display: none;
}

.form-field {
  width: 100%;
  margin-bottom: 14px;
  padding: 15px 18px;
  border: 2px solid transparent;
  border-radius: 18px;
  outline: none;
  background: #f0f2f5;
  color: var(--navy);
  font: 800 15px "Nunito", sans-serif;
}

.form-field:focus {
  border-color: rgba(244, 99, 42, 0.34);
  background: #fff;
}

.form-privacy {
  margin: 2px 0 14px;
  color: #8a9ab5;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.btn-form {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font: 900 14px "Nunito", sans-serif;
  box-shadow: 0 8px 20px rgba(244, 99, 42, 0.28);
}

.btn-form:disabled { opacity: 0.65; cursor: default; }

.lead-status {
  display: none;
  margin-top: 12px;
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.lead-status.show { display: block; }
.lead-status.loading { background: #eef6ff; color: #2563eb; }
.lead-status.success { background: #eef9f3; color: #177c4c; }
.lead-status.error { background: #fff3ef; color: #c55b34; }

.lead-social-success {
  display: none;
  margin-top: 16px;
  text-align: center;
}

.lead-capture-form.success .lead-social-success { display: block; }
.lead-social-title { color: var(--navy); font-size: 17px; font-weight: 900; }
.lead-social-text { margin-top: 6px; color: #6a7a8a; font-size: 13px; font-weight: 700; line-height: 1.55; }
.lead-social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 12px; }
.lead-social-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.lead-social-links .telegram { background: #229ed9; }
.lead-social-links .instagram { background: #e4405f; }

main {
  padding: 106px 48px 72px;
}

.stories-wrap {
  max-width: 1200px;
  margin: 0 auto 14px;
}

.stories-wrap {
  --story-size: 140px;
  --story-ring: 5px; /* gradient ring thickness */
  --story-gap: 12px;
  --story-white-ring: 5px; /* inner white ring thickness */
}

.stories-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--story-size);
  gap: var(--story-gap);
  overflow-x: auto;
  padding: 6px 2px 10px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.story-card {
  border: none;
  background: conic-gradient(
    from 210deg,
    rgba(244, 99, 42, 0.55),
    rgba(244, 99, 42, 0.95),
    rgba(244, 99, 42, 0.75),
    rgba(244, 99, 42, 1),
    rgba(244, 99, 42, 0.7),
    rgba(244, 99, 42, 0.55)
  );
  border-radius: 999px;
  padding: var(--story-ring);
  transition: transform 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: left;
  width: var(--story-size);
  height: var(--story-size);
  scroll-snap-align: start;
}

.story-card:hover {
  transform: scale(1.04);
}

.story-thumb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  padding: 0;
}

.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: var(--story-white-ring) solid #fff;
  box-sizing: border-box;
}

.story-caption {
  font-size: 12px;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 900;
  padding: 0 2px 2px;
}

.stories-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
}

.stories-modal.open {
  display: block;
}

.stories-overlay-hit {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.84);
}

.stories-viewer {
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  background: #111826;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
}

.stories-progress {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 56px;
  z-index: 3;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 5px;
}

.story-progress-seg {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.story-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
}

.stories-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.stories-media {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #0d1422;
}

.stories-media img,
.stories-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.stories-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 16px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(180deg, rgba(5, 10, 20, 0) 0%, rgba(5, 10, 20, 0.76) 100%);
}

.stories-title {
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
  font-weight: 900;
}

.stories-link {
  flex-shrink: 0;
  text-decoration: none;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
}

body.stories-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-main {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
}

.articles-col {
  min-width: 0;
}

.blog-hero {
  background: transparent;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  padding: 5px 48px;
  color: var(--navy);
  border: none;
  box-shadow: none;
}

.blog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #6a768d;
}

.hero-title {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  font-weight: 900;
}

.hero-sub {
  margin-top: 12px;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  color: #4d5f79;
}

.blog-controls {
  margin-top: 0;
  background: #fff;
  border: 1.5px solid rgba(15, 34, 64, 0.08);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 8px 28px rgba(15, 34, 64, 0.08);
}

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

.search-input {
  width: 100%;
  border: 1.5px solid #e3e7ee;
  border-radius: 14px;
  height: 44px;
  padding: 0 14px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.search-input:focus {
  outline: none;
  border-color: rgba(244, 99, 42, 0.6);
  box-shadow: 0 0 0 4px rgba(244, 99, 42, 0.1);
}

.chip-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1.5px solid #dde3ed;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #60708b;
  cursor: pointer;
  transition: all 0.2s;
}

.chip:hover {
  border-color: rgba(244, 99, 42, 0.45);
  color: var(--orange);
}

.chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.articles-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  background: #fff;
  border: 1.5px solid rgba(15, 34, 64, 0.08);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 8px 26px rgba(15, 34, 64, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 230px;
}

.podcast-card {
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.podcast-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 34, 64, 0.12);
  border-color: rgba(244, 99, 42, 0.45);
}

.podcast-card.special {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 246, 176, 0.42), transparent 38%),
    radial-gradient(circle at 12% 92%, rgba(255, 145, 87, 0.36), transparent 42%),
    linear-gradient(145deg, #ff7f3a 0%, #f4632a 56%, #dc4f1c 100%);
  border-color: rgba(255, 255, 255, 0.22);
}

.podcast-card.special::before {
  content: "";
  position: absolute;
  inset: auto -54px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(1px);
}

.podcast-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.podcast-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #9f3a14;
  background: rgba(255, 255, 255, 0.92);
}

.podcast-play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.podcast-card.special .article-title {
  color: #fff;
}

.podcast-card.special .article-text {
  color: rgba(255, 255, 255, 0.85);
}

.podcast-card.special .article-meta {
  color: rgba(255, 255, 255, 0.76);
}

.podcast-card.special .article-link {
  color: #fff;
}

.news-archive-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background:
    radial-gradient(circle at 86% 16%, rgba(142, 197, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #f7fbff 0%, #ffffff 68%);
  border-color: rgba(15, 34, 64, 0.1);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.news-archive-card.has-news-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 52%, rgba(255, 255, 255, 0.62) 100%),
    var(--news-art-url);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.news-archive-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 34, 64, 0.18);
  box-shadow: 0 14px 30px rgba(15, 34, 64, 0.12);
}

.news-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.news-card-mark {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-card-mark {
  padding: 6px 9px;
  color: #38506f;
  background: rgba(74, 130, 190, 0.1);
  border: 1px solid rgba(74, 130, 190, 0.14);
}

.news-archive-card .article-title,
.news-archive-card .article-text,
.news-archive-card .article-meta,
.news-card-top {
  position: relative;
  z-index: 1;
}

.news-archive-card .article-link {
  color: var(--navy);
}

.podcast-bars {
  margin-top: 10px;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  height: 16px;
}

.podcast-bars span {
  width: 4px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  animation: podcast-bars 1.12s ease-in-out infinite;
}

.podcast-bars span:nth-child(1) {
  height: 8px;
}

.podcast-bars span:nth-child(2) {
  height: 14px;
  animation-delay: 0.08s;
}

.podcast-bars span:nth-child(3) {
  height: 11px;
  animation-delay: 0.16s;
}

.podcast-bars span:nth-child(4) {
  height: 15px;
  animation-delay: 0.24s;
}

.podcast-bars span:nth-child(5) {
  height: 9px;
  animation-delay: 0.32s;
}

.article-card.hidden {
  display: none;
}

.article-card.featured {
  grid-column: span 2;
  min-height: 280px;
  background:
    radial-gradient(circle at 16% 14%, rgba(249, 200, 70, 0.24), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
}

.article-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(244, 99, 42, 0.12);
  color: #c54e20;
  border: 1px solid rgba(244, 99, 42, 0.2);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.article-title {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.18;
  color: var(--navy);
  font-weight: 900;
}

.article-card:not(.featured) .article-title {
  font-size: 20px;
}

.article-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #66748c;
  font-weight: 700;
}

.article-meta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #8a95a6;
  font-weight: 800;
}

.article-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 900;
}

.article-link:hover {
  text-decoration: underline;
}

.blog-empty {
  margin-top: 22px;
  display: none;
  text-align: center;
  font-size: 14px;
  color: #748196;
  font-weight: 800;
}

.blog-empty.show {
  display: block;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 94px;
  min-width: 0;
}

.sidebar-card {
  background: #fff;
  border: 1.5px solid rgba(15, 34, 64, 0.08);
  border-radius: 20px;
  padding: 18px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(15, 34, 64, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.sidebar-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.pathica-news-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  background: linear-gradient(165deg, #eaf2ff 0%, #f7fbff 100%);
  border-color: rgba(31, 68, 117, 0.16);
  box-shadow: 0 12px 28px rgba(15, 34, 64, 0.1);
}

.pathica-news-card::before {
  content: "";
  position: absolute;
  top: -36px;
  right: -36px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(31, 163, 98, 0.09);
}

.pathica-news-card::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: -22px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(244, 99, 42, 0.12);
}

.pathica-news-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.85px;
  color: #0f2240;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 34, 64, 0.12);
}

.pathica-news-text {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.52;
  font-weight: 700;
  color: #3f5674;
}

.pathica-news-stack {
  position: relative;
  z-index: 1;
  margin-top: 0;
  min-height: 155px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.pathica-news-paper {
  width: 100%;
  background: #fffef8;
  border-radius: 14px;
  border: 1.5px solid rgba(15, 34, 64, 0.14);
  box-shadow: 0 10px 20px rgba(15, 34, 64, 0.12);
  transform: rotate(-1.5deg);
  transform-origin: center top;
  min-height: 176px;
  padding: 12px 12px 68px;
  margin-bottom: -36px;
  pointer-events: none;
}

.pathica-news-paper-head {
  border-bottom: 1.5px solid rgba(15, 34, 64, 0.15);
  padding-bottom: 8px;
}

.pathica-news-paper-logo {
  display: block;
  font-family: "Merriweather", serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #0f2240;
}

.pathica-news-paper-logo em {
  font-style: italic;
  color: #f4632a;
}

.pathica-news-paper-sub {
  margin-top: 4px;
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 900;
  color: #6d7e95;
}

.pathica-news-paper-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 6px;
}

.pathica-news-paper-grid span {
  display: block;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, #d4dcea, #e7ecf5);
}

.pathica-news-link {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 176px;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  color: #0f2240;
  background: linear-gradient(135deg, #f9c846 0%, #ffb857 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.pathica-news-link:hover {
  transform: translate(-50%, -1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.sidebar-custom-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #66748c;
  font-weight: 700;
}

.sidebar-custom-host {
  display: block;
  width: 100%;
}

.sidebar-custom-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
}

.sidebar-custom-link:hover {
  text-decoration: underline;
}

.side-search-wrap {
  position: relative;
}

.side-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.5;
}

.side-search-input {
  display: block;
  width: 100%;
  border: 1.5px solid #dfe5ef;
  border-radius: 50px;
  height: 42px;
  padding: 0 12px 0 34px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.side-search-input:focus {
  outline: none;
  border-color: rgba(244, 99, 42, 0.6);
  box-shadow: 0 0 0 4px rgba(244, 99, 42, 0.1);
}

.side-cat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-cat-item {
  border: 1.5px solid #e4e9f1;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
}

.side-cat-item:hover {
  border-color: rgba(244, 99, 42, 0.45);
}

.side-cat-item.active {
  background: var(--navy);
  border-color: var(--navy);
}

.side-cat-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.side-cat-left span {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.side-cat-item.active .side-cat-left span {
  color: #fff;
}

.side-cat-count {
  font-size: 11px;
  font-weight: 800;
  color: #7c88a0;
  background: #eef2f8;
  border-radius: 999px;
  padding: 3px 8px;
}

.side-cat-item.active .side-cat-count {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.2);
}

.wod-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(249, 200, 70, 0.25), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(244, 99, 42, 0.18), transparent 50%),
    linear-gradient(135deg, #0f2240 0%, #1a3460 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 18px 16px;
  color: #fff;
  box-shadow: 0 16px 40px rgba(6, 18, 40, 0.45);
  backdrop-filter: blur(6px);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.wod-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #0f2240;
  background: rgba(249, 200, 70, 0.96);
}

.wod-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 46px);
}

.wod-word {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.wod-trans {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.wod-level {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #0f2240;
  background: rgba(249, 200, 70, 0.95);
}

.wod-origin {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 16px rgba(3, 11, 25, 0.25);
}

.wod-example {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.wod-hit {
  color: #0f2240;
  background: #f9c846;
  border-radius: 6px;
  padding: 0 4px;
}

.wod-example-trans {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.wod-audio {
  margin-top: 12px;
  border: none;
  border-radius: 999px;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  padding: 9px 12px;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wod-audio:hover {
  background: rgba(255, 255, 255, 0.18);
}

.wod-audio.playing {
  background: rgba(255, 255, 255, 0.22);
}

.wod-wave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.wod-wave span {
  width: 3px;
  border-radius: 4px;
  background: var(--orange);
  animation: wave-pulse 1.35s ease-in-out infinite;
}

.wod-wave span:nth-child(2) {
  animation-delay: 0.08s;
}

.wod-wave span:nth-child(3) {
  animation-delay: 0.16s;
}

.wod-wave span:nth-child(4) {
  animation-delay: 0.24s;
}

.wod-wave span:nth-child(5) {
  animation-delay: 0.32s;
}

.pop-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pop-item {
  display: flex;
  gap: 10px;
  text-decoration: none;
  border-radius: 12px;
  padding: 4px 4px 4px 2px;
  transition: background 0.2s ease;
}

.pop-item:hover {
  background: rgba(15, 34, 64, 0.04);
}

.pop-num {
  width: 26px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #e4e9f1;
  flex-shrink: 0;
  text-align: center;
}

.pop-title {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--navy);
}

.pop-meta {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #909bb0;
}

.newsletter-card {
  background: var(--orange);
  border-radius: 20px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 10px 26px rgba(244, 99, 42, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.newsletter-card h3 {
  font-size: 19px;
  font-weight: 900;
}

.newsletter-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  opacity: 0.88;
}

.newsletter-input {
  margin-top: 12px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 11px 12px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.newsletter-btn {
  margin-top: 8px;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  padding: 11px 12px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.newsletter-btn:hover {
  filter: brightness(1.04);
}

.sidebar-card:hover,
.wod-card:hover,
.newsletter-card:hover {
  transform: translateY(-2px);
}

@keyframes wave-pulse {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.86;
  }
  50% {
    transform: scaleY(1.1);
    opacity: 1;
  }
}

@keyframes podcast-bars {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.74;
  }
  50% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

.blog-cta {
  margin-top: 28px;
  background: #fff;
  border: 1.5px solid rgba(15, 34, 64, 0.08);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.blog-cta h3 {
  font-size: 24px;
  color: var(--navy);
  font-weight: 900;
}

.blog-cta p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #68778f;
  font-weight: 700;
}

.blog-cta .btn {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

footer {
  margin-top: 30px;
  padding: 28px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

footer span {
  color: #a0a9ba;
  font-size: 13px;
  font-weight: 700;
}

footer .brand {
  font-family: "Gochi Hand", cursive;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.52;
}

@media (max-width: 1100px) {
  nav {
    padding: 14px 24px;
  }

  body.nav-scrolled nav {
    top: 10px;
    width: calc(100% - 38px);
    border-radius: 20px;
    padding: 12px 20px;
  }

  main {
    padding: 94px 24px 56px;
  }

  .stories-viewer {
    inset: 12px;
  }

  .blog-hero {
    padding: 5px 24px;
  }

  .blog-main {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .wod-card,
  .newsletter-card {
    grid-column: span 2;
  }

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

  .article-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 780px) {
  nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
  }

  body.nav-scrolled nav {
    top: 10px;
    width: calc(100% - 22px);
    border-radius: 18px;
    padding: 10px;
  }

  .logo {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 8px;
    flex: 0 1 auto;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    flex: 0 0 auto;
  }

  .nav-links li:has(a[href="/index.html#how"]),
  .nav-links li:has(a[href="/index.html#features"]),
  .nav-links li:has(a[href="/index.html#pricing"]) {
    display: none;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(15, 34, 64, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    white-space: nowrap;
    opacity: 1;
  }

  .nav-cta {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  main {
    padding: 84px 16px 42px;
  }

  .stories-wrap {
    margin-bottom: 10px;
    --story-size: 112px;
    --story-ring: 4px;
    --story-white-ring: 4px;
    --story-gap: 10px;
  }

  .stories-list {
    grid-auto-columns: var(--story-size);
  }

  .stories-viewer {
    inset: 8px;
    border-radius: 16px;
  }

  .stories-progress {
    right: 50px;
  }

  .blog-hero {
    border-radius: 0;
    padding: 26px 16px;
  }

  .hero-title {
    font-size: 34px;
  }

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

  .blog-controls {
    border-radius: 18px;
    padding: 12px;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .wod-card,
  .newsletter-card {
    grid-column: auto;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-card,
  .article-card.featured {
    grid-column: auto;
    min-height: auto;
    border-radius: 20px;
  }

  .article-title {
    font-size: 20px;
  }

  .blog-cta {
    border-radius: 20px;
    padding: 18px;
  }

  .blog-cta h3 {
    font-size: 22px;
  }
}
