:root {
  --navy-dark: #0a1628;
  --purple-accent: #7c6fea;
  --purple-light: #9990f0;
  --purple-dark: #5f52d4;
  --success-green: #10b981;
  --warning-orange: #f59e0b;
  --section-scroll-offset: 24px;

  --gradient-primary: linear-gradient(135deg, #9990f0 0%, #7c6fea 100%);
  --gradient-purple: linear-gradient(135deg, #8b83ef 0%, #6a5dd6 100%);
  --gradient-dark: linear-gradient(135deg, #111 0%, #2d2d2d 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);

  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-primary: #111;
  --text-secondary: #555;
  --bg-gray: #f5f5f7;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: 320ms cubic-bezier(.2,.9,.2,1);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --border: #d2d2d7;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--section-scroll-offset);
}

section[id] {
  scroll-margin-top: var(--section-scroll-offset);
}

section#home {
  scroll-margin-top: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 9999;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #1a73e8;
  outline-offset: 2px;
}

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

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f8f9fb;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(124, 111, 234, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.navigation {
  position: relative;
  z-index: 2100;
  padding: 2rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-purple);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  z-index: 3000;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.hero-outlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-outlines span {
  position: absolute;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(124, 111, 234, 0.10);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

.hero-ol-1 {
  font-size: clamp(5rem, 10vw, 9rem);
  top: 6%;
  left: -2%;
  transform: rotate(-4deg);
  animation: olDrift1 20s ease-in-out infinite;
}

.hero-ol-2 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  top: 28%;
  right: -3%;
  transform: rotate(3deg);
  animation: olDrift2 25s ease-in-out infinite;
}

.hero-ol-3 {
  font-size: clamp(4rem, 8vw, 7.5rem);
  bottom: 10%;
  left: 8%;
  transform: rotate(-2deg);
  animation: olDrift3 22s ease-in-out infinite;
}

.hero-ol-4 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  top: 55%;
  left: 38%;
  transform: rotate(5deg);
  animation: olDrift2 18s ease-in-out infinite reverse;
}

.hero-ol-5 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  top: 12%;
  right: 12%;
  transform: rotate(-6deg);
  -webkit-text-stroke: 1.5px rgba(16, 185, 129, 0.10);
  animation: olDrift1 24s ease-in-out infinite reverse;
}

.hero-ol-6 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  top: 75%;
  right: 5%;
  transform: rotate(2deg);
  -webkit-text-stroke: 1.5px rgba(16, 185, 129, 0.10);
  animation: olDrift3 26s ease-in-out infinite;
}

.hero-ol-7 {
  font-size: clamp(4.5rem, 9vw, 8rem);
  top: 45%;
  left: -4%;
  transform: rotate(-3deg);
  animation: olDrift1 28s ease-in-out infinite;
}

.hero-ol-8 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  top: 85%;
  left: 45%;
  transform: rotate(4deg);
  animation: olDrift2 21s ease-in-out infinite reverse;
}

.hero-ol-9 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  top: 3%;
  left: 35%;
  transform: rotate(1deg);
  -webkit-text-stroke: 1.5px rgba(124, 111, 234, 0.09);
  animation: olDrift3 30s ease-in-out infinite reverse;
}

@keyframes olDrift1 {
  0%, 100% { transform: rotate(-4deg) translate(0, 0); }
  50% { transform: rotate(-3deg) translate(12px, -8px); }
}

@keyframes olDrift2 {
  0%, 100% { transform: rotate(3deg) translate(0, 0); }
  50% { transform: rotate(4deg) translate(-10px, 10px); }
}

@keyframes olDrift3 {
  0%, 100% { transform: rotate(-2deg) translate(0, 0); }
  50% { transform: rotate(-1deg) translate(8px, 6px); }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-left {
  opacity: 0;
  animation: heroSlideIn 0.8s ease 0.3s forwards;
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-left h1 .line-top {
  display: block;
  font-weight: 400;
  font-size: 0.88em;
  color: var(--text-secondary);
  margin-bottom: 0.05em;
  letter-spacing: -0.01em;
}

.hero-left h1 .line-bottom {
  display: block;
}

.hero-left h1 .highlight {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  font-size: 1.05em;
  letter-spacing: 0.01em;
}

.hero-left h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -4%;
  width: 108%;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 16' fill='none'%3E%3Cpath d='M3 10 c 25,-6 55,-8 90,-2 c 35,6 50,4 70,-1 c 25,-5 45,-3 70,2 c 22,4 40,2 62,-3' stroke='%237c6fea' stroke-width='5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.55;
}

.hero-dot {
  font-weight: 400;
  font-size: 0.7em;
  opacity: 0.4;
  margin-left: 1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero-feature svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #10b981;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background: var(--gradient-purple);
  box-shadow: 0 6px 20px rgba(124, 111, 234, 0.25);
}

.hero-buttons .btn-primary:hover {
  box-shadow: 0 10px 28px rgba(124, 111, 234, 0.35);
}

.hero-buttons .btn-secondary {
  color: var(--text-primary);
  border-color: var(--border);
}

.hero-buttons .btn-secondary:hover {
  border-color: var(--purple-accent);
  background: rgba(124, 111, 234, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: #fff;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

.hero-buttons .btn-secondary svg {
  transition: transform var(--transition);
}

.hero-buttons .btn-secondary:hover svg {
  transform: translateX(3px);
}

.hero-content-blog {
  grid-template-columns: 1fr;
  justify-items: start;
  padding-bottom: 4rem;
}

.hero-content-blog .hero-left {
  max-width: 760px;
}

.hero-content-blog .hero-subtitle {
  max-width: 640px;
}

.blog-list-section {
  background: #ebebf0;
  padding: 3.4rem 2rem;
}

.blog-list-shell,
.post-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.post-shell {
  padding: 3.2rem 2rem;
}

.blog-state-box {
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: #4b5563;
  box-shadow: var(--shadow-sm);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
  gap: 20px;
}

.blog-card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.blog-card-img {
  width: 100%;
  height: 210px;
  background: linear-gradient(145deg, #13131f, #1e1b3a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-img-icon {
  color: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 0;
  border-top: 1px solid #f0f0f6;
}

.blog-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.71rem;
  color: #9898b0;
  font-weight: 500;
  background: #f5f5fa;
  padding: 4px 10px;
  border-radius: 100px;
}

.blog-card-meta-item svg {
  flex-shrink: 0;
  opacity: 0.6;
  fill: none;
  stroke: currentColor;
}

.blog-card-body {
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6c63ff;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.35;
  color: #111118;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-title {
  color: #6c63ff;
}

.blog-card-excerpt {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #9090a8;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 18px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f0f6;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #9b93ff);
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-card-avatar-image {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.blog-card-author img.blog-card-avatar-image {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  max-width: 26px;
  max-height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card-author-name {
  font-size: 0.76rem;
  font-weight: 600;
  color: #555568;
}

.blog-card-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6c63ff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.blog-card-cta svg {
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}

.blog-card:hover .blog-card-cta {
  gap: 8px;
}

.pagination {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  min-width: 40px;
  text-align: center;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-size: 0.88rem;
  color: #4b5563;
}

.pagination a:hover {
  border-color: var(--purple-accent);
  color: var(--purple-accent);
}

.pagination .active {
  background: var(--purple-accent);
  border-color: var(--purple-accent);
  color: #fff;
}

.post-breadcrumbs {
  margin-bottom: 0.9rem;
  color: #64748b;
  font-size: 0.84rem;
}

.post-card {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.post-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.post-section {
  background: #fff;
  padding: 0;
}

.article-breadcrumbs {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #8888a0;
  font-weight: 400;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(17, 17, 24, 0.05);
}

.article-breadcrumbs a {
  color: #8888a0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumbs a:hover {
  color: var(--purple-accent);
}

.bc-sep {
  color: #d0d0dc;
  font-size: 0.7rem;
}

.bc-current {
  color: #3d3d4e;
  font-weight: 500;
}

.article-layout {
  max-width: 1360px;
  margin: 0 auto;
  padding: 42px 36px 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: start;
}

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

.hero-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, #f4f3ff 0%, #f7f8ff 48%, #eef3ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(108, 99, 255, 0.03) 40px,
    rgba(108, 99, 255, 0.03) 41px
  );
}

.hero-img-real-wrap::before {
  display: none;
}

.hero-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(108, 99, 255, 0.45);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 1;
}

.hero-img-label svg {
  opacity: 0.2;
}

.article-header {
  margin-bottom: 32px;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9ff;
  color: #6c63ff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.article-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #111118;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #9b93ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-avatar-image {
  object-fit: cover;
  object-position: center;
  background: #f3f4f8;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111118;
}

.meta-dot {
  color: #d5d5e2;
  font-size: 1rem;
  line-height: 1;
}

.meta-item {
  font-size: 0.8rem;
  color: #8888a0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-item svg {
  opacity: 0.65;
  flex-shrink: 0;
}

.article-divider {
  height: 1px;
  background: #e8e8f0;
  margin: 28px 0;
}

.sidebar {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 24px;
}

.sidebar-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8888a0;
  margin-bottom: 16px;
}

.random-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid #ececf4;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #1a1a2e 100%);
}

.random-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.random-card-media-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.random-card-title {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111118;
  margin-bottom: 9px;
  transition: color 0.2s ease;
}

.random-card-title:hover {
  color: var(--purple-accent);
}

.random-card-excerpt {
  font-size: 0.86rem;
  line-height: 1.65;
  color: #5b5b6e;
  margin: 0 0 10px;
}

.random-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  font-size: 0.78rem;
  color: #8888a0;
}

.random-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-dark);
  text-decoration: none;
}

.random-card-link::after {
  content: '\2192';
  font-size: 0.9rem;
}

.share-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e8e8f0;
  background: transparent;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  color: #3d3d4e;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.share-btn:hover {
  border-color: #6c63ff;
  color: #6c63ff;
  background: #ede9ff;
}

.share-btn svg {
  flex-shrink: 0;
}

.cta-card {
  background: #111118;
  border: none;
  padding: 28px 24px;
}

.cta-card .sidebar-card-title {
  color: rgba(255, 255, 255, 0.45);
}

.cta-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}

.cta-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

.cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #6c63ff;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.cta-btn:hover {
  opacity: 0.9;
}

.post-content-body {
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.78;
}

.post-content-body .ql-size-small {
  font-size: 0.75em;
}

.post-content-body .ql-size-large {
  font-size: 1.5em;
}

.post-content-body .ql-size-huge {
  font-size: 2.5em;
  line-height: 1.25;
}

.post-content-body p,
.post-content-body ul,
.post-content-body ol,
.post-content-body blockquote,
.post-content-body pre {
  margin: 0 0 1.05rem;
}

.post-content-body h2,
.post-content-body h3,
.post-content-body h4 {
  margin: 1.4rem 0 0.7rem;
  line-height: 1.3;
}

.post-content-body ul,
.post-content-body ol {
  padding-left: 1.35rem;
}

.post-content-body blockquote {
  border-left: 4px solid rgba(124, 111, 234, 0.45);
  padding-left: 0.9rem;
  color: #4b5563;
}

.post-content-body a {
  color: var(--purple-dark);
  text-decoration: underline;
}

.post-content-body pre {
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  background: #f3f4f6;
  overflow-x: auto;
}

.post-content-body hr {
  border: 0;
  border-top: 2px solid rgba(124, 111, 234, 0.28);
  margin: 1.2rem 0;
}

.post-content-body .ql-table-wrapper {
  margin: 1.25rem 0;
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  overflow-x: auto;
  background: #fff;
}

.post-content-body .ql-table,
.post-content-body table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.95rem;
  color: #3d3d4e;
}

.post-content-body .ql-table {
  min-width: 560px;
}

.post-content-body .ql-table td,
.post-content-body .ql-table th,
.post-content-body table td,
.post-content-body table th {
  border: 1px solid #e8e8f0;
  padding: 10px 12px;
  vertical-align: top;
  line-height: 1.55;
}

.post-content-body .ql-table tbody tr:first-child > td,
.post-content-body .ql-table thead th,
.post-content-body table tbody tr:first-child > td,
.post-content-body table thead th {
  background: linear-gradient(135deg, #f4f2ff 0%, #ede9ff 100%);
  color: #2d2660;
  font-weight: 700;
}

.post-content-body .ql-table td p,
.post-content-body .ql-table th p,
.post-content-body table td p,
.post-content-body table th p {
  margin: 0;
}

.post-content-body .callout {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-left: 3px solid #6c63ff;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.post-content-body .callout-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #ede9ff;
  color: #6c63ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.post-content-body .callout-content {
  min-width: 0;
}

.post-content-body .callout-label {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6c63ff;
}

.post-content-body .callout-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #3d3d4e;
}

.post-content-body .text-highlight {
  background: linear-gradient(135deg, #f4f2ff 0%, #ede9ff 100%);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.post-content-body .text-highlight::after {
  content: "\201C";
  position: absolute;
  right: 20px;
  top: -10px;
  font-size: 100px;
  font-weight: 800;
  color: #6c63ff;
  opacity: 0.08;
  line-height: 1;
  font-family: Georgia, serif;
}

.post-content-body .text-highlight p {
  margin: 0 !important;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #3a3560;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.post-content-body .text-highlight p span {
  background: rgba(108, 99, 255, 0.15);
  padding: 1px 3px;
  border-radius: 3px;
}

[data-theme="dark"] .post-content-body .callout {
  background: #121a2b;
  border-color: #2b3244;
}

[data-theme="dark"] .post-content-body .callout-icon {
  background: rgba(155, 147, 255, 0.18);
  color: #a79fff;
}

[data-theme="dark"] .post-content-body .callout-text {
  color: #d0d8e9;
}

[data-theme="dark"] .post-content-body .text-highlight {
  background: linear-gradient(135deg, #292458 0%, #1e2045 100%);
}

[data-theme="dark"] .post-content-body .text-highlight p {
  color: #dfddff;
}

[data-theme="dark"] .post-content-body .ql-table-wrapper {
  background: #121a2b;
  border-color: #2b3244;
}

[data-theme="dark"] .post-content-body .ql-table td,
[data-theme="dark"] .post-content-body .ql-table th,
[data-theme="dark"] .post-content-body table td,
[data-theme="dark"] .post-content-body table th {
  border-color: #2b3244;
  color: #d7deee;
}

[data-theme="dark"] .post-content-body .ql-table tbody tr:first-child > td,
[data-theme="dark"] .post-content-body .ql-table thead th,
[data-theme="dark"] .post-content-body table tbody tr:first-child > td,
[data-theme="dark"] .post-content-body table thead th {
  background: linear-gradient(135deg, #292458 0%, #1e2045 100%);
  color: #ece9ff;
}

@media (max-width: 560px) {
  .post-content-body .callout {
    padding: 18px 16px;
    gap: 12px;
  }

  .post-content-body .text-highlight {
    padding: 18px 16px;
  }

  .post-content-body .ql-table {
    min-width: 460px;
  }
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .article-layout {
    padding: 32px 20px 60px;
  }

  .article-breadcrumbs { margin-bottom: 12px; }

  .hero-img {
    margin-bottom: 24px;
  }
}

.footer-modern {
  position: relative;
  background: linear-gradient(170deg, #0d0f1a 0%, #0a1628 40%, #0e1225 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem 0;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.footer-glow::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(124, 111, 234, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-glow::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-main {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.footer-right {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.footer-brand-block h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.footer-brand-block h3 span {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-block > p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 340px;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.social-link svg {
  width: 17px;
  height: 17px;
}

.social-link:hover {
  background: rgba(124, 111, 234, 0.15);
  border-color: rgba(124, 111, 234, 0.3);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(124, 111, 234, 0.15);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
}

.footer-contact-block h3 {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  padding: 0.55rem 0.875rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(124, 111, 234, 0.2);
}

.footer-contact-item .fci-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(124, 111, 234, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-item .fci-icon svg {
  width: 14px;
  height: 14px;
  color: var(--purple-light);
}

.footer-contact-item .fci-text {
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-contact-hint {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0.625rem;
}

.footer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.footer-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}

.footer-stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.footer-stat-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.footer-divider {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 2rem auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 111, 234, 0.12) 20%, rgba(124, 111, 234, 0.12) 80%, transparent);
}

.footer-bottom-bar {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom-bar a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-bar a:hover {
  color: #fff;
}

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

@media(max-width: 1100px) {
  .hero-outlines span {
    -webkit-text-stroke-width: 1px;
    opacity: 0.7;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-left h1 {
    font-size: 2.4rem;
  }

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

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 340px));
    justify-content: center;
  }

  .blog-card-title {
    font-size: 1.08rem;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }

  .footer-right {
    gap: 0.625rem;
  }

  .footer-stats {
    padding: 1rem 1.25rem;
    gap: 0.75rem 1rem;
  }

  .footer-stat-value {
    font-size: 1.15rem;
  }

  .footer-modern {
    padding: 2.5rem 2rem 0;
  }
}

@media(max-width: 768px) {
  .hero-outlines span {
    -webkit-text-stroke-width: 1px;
  }

  .hero-ol-8,
  .hero-ol-9 {
    display: none;
  }

  .hero-ol-1 {
    top: calc(6% + 50px);
  }

  .hero-ol-5 {
    top: calc(12% + 50px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 2rem;
    align-items: center;
    justify-items: center;
  }

  .hero-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 540px;
  }

  .hero-left h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-subtitle {
    max-width: 420px;
    font-size: 1.05rem;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #0a1628;
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2500;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
  }

  .nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2400;
    pointer-events: all;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu.active::before {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2501;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.2s ease;
    position: relative;
    z-index: 2502;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    color: #7c6fea;
    transform: translateX(8px);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-content-blog .hero-buttons {
    align-items: center;
  }

  .hero-content-blog .hero-buttons .btn {
    width: 100%;
  }

  .blog-list-section {
    padding: 2rem 1.25rem;
  }

  .post-shell {
    padding: 2rem 1.25rem;
  }

  .blog-grid {
    grid-template-columns: minmax(0, 340px);
    justify-content: center;
  }

  .blog-card-body {
    padding: 0.95rem 0.95rem 1rem;
  }

  .blog-card-excerpt {
    min-height: 0;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .blog-card-meta {
    padding: 14px 14px 0;
  }

  .blog-card-footer {
    gap: 10px;
  }

  .footer-modern {
    padding: 2rem 1.25rem 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-stats {
    padding: 1rem 1.25rem;
    gap: 0.75rem 1rem;
  }

  .footer-stat-value {
    font-size: 1.1rem;
  }

  .footer-stat-label {
    font-size: 0.58rem;
  }

  .footer-brand-block > p {
    margin: 0 auto 1rem;
    max-width: 340px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem 0;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }
}

@media(max-width: 480px) {
  .hero-outlines span {
    -webkit-text-stroke-width: 0.8px;
    opacity: 0.8;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .hero-left h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}
