html {
  box-sizing: border-box;
  scroll-behavior: auto
}

*,
::before,
::after {
  box-sizing: inherit
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: 'Source Sans Pro', sans-serif;
  background: linear-gradient(165deg, #61df9408 0%, #fff9b10d 48%, #613ad70a 100%);
  color: #1a1515;
  font-size: 16px;
  line-height: 1.6
}

.top-band {
  background: linear-gradient(92deg, #61df9414 0%, #613ad70f 100%);
  border: 2px solid #61df9466;
  border-radius: 40px;
  margin: 16px auto;
  max-width: 1366px;
  padding: 32px 56px;
  box-shadow: 0 4px 14px 0 #61df941a 0 2px 3px 0 #613ad70f;
  position: relative;
  overflow: hidden
}

.top-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 40%, #fff9b126, transparent 60%);
  pointer-events: none;
  z-index: 0
}

.brand-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
  z-index: 1
}

.logo-box {
  background: #fff;
  border: 3px solid #613ad780;
  border-radius: 13px;
  padding: 8px;
  box-shadow: 0 4px 14px 0 #61df941a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .28s ease-out, box-shadow .35s ease-out
}

.logo-box:hover {
  border-color: #61df94b3;
  box-shadow: 0 9px 48px 0 #61df941a 0 4px 14px 0 #613ad71a
}

.logo-box img {
  width: 92px;
  height: 92px;
  display: block;
  object-fit: contain
}

.brand-text {
  font-family: 'PT Serif', serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d1a5c;
  margin: 0;
  letter-spacing: -.02em
}

.brand-text span {
  background: linear-gradient(110deg, #61DF94 0%, #613AD7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block
}

.phone-display {
  background: linear-gradient(135deg, #613AD7 0%, #61DF94 100%);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px 0 #613ad71a;
  transition: background .32s ease-out, box-shadow .25s ease-out, transform .18s ease-out;
  position: relative;
  overflow: hidden
}

.phone-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #61DF94 0%, #613AD7 100%);
  opacity: 0;
  transition: opacity .32s ease-out;
  z-index: 0
}

.phone-display:hover::before {
  opacity: 1
}

.phone-display:hover {
  box-shadow: 0 9px 48px 0 #613ad71a 0 4px 14px 0 #61df941a;
  transform: translateY(-1px)
}

.phone-display svg {
  width: 19px;
  height: 19px;
  position: relative;
  z-index: 1
}

.phone-display span {
  position: relative;
  z-index: 1
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.nav-link {
  font-size: 16px;
  font-weight: 700;
  color: #2d1a5c;
  text-decoration: none;
  padding: 16px 32px;
  background: #ffffffb3;
  border: 2px solid #61df944d;
  border-radius: 24px;
  transition: background .22s ease-out, border-color .28s ease-out, color .22s ease-out, transform .15s ease-out;
  display: inline-block;
  position: relative;
  overflow: hidden
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #61DF94 0%, #613AD7 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease-out
}

.nav-link:hover {
  background: #61df941f;
  border-color: #613ad780;
  color: #1a0d3a;
  transform: translateY(-2px)
}

.nav-link:hover::after {
  transform: scaleX(1)
}

.nav-link:focus {
  outline: 2px solid #613AD7;
  outline-offset: 4px
}

footer {
  background: linear-gradient(178deg, #613ad70d 0%, #fff9b114 52%, #61df940f 100%);
  border-top: 3px solid #61df944d;
  padding: 56px 32px 32px;
  margin-top: 96px;
  position: relative
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 60% 50%, #613ad714, transparent 65%);
  pointer-events: none;
  z-index: 0
}

.footer-container {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  margin-bottom: 56px
}

.footer-column h3 {
  font-family: 'PT Serif', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #2d1a5c;
  margin: 0 0 16px;
  position: relative;
  display: inline-block
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #61DF94 0%, transparent 100%)
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-links li {
  margin: 0
}

.footer-links a {
  font-size: 16px;
  line-height: 1.6;
  color: #3d2870;
  text-decoration: none;
  display: inline-block;
  padding: 8px 0;
  transition: color .2s ease-out, transform .18s ease-out;
  position: relative
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: #61DF94;
  transition: width .3s ease-out
}

.footer-links a:hover {
  color: #1a0d3a;
  transform: translateX(4px)
}

.footer-links a:hover::before {
  width: 100%
}

.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #3d2870
}

.contact-item svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0
}

.contact-item a {
  color: #3d2870;
  text-decoration: none;
  transition: color .22s ease-out
}

.contact-item a:hover {
  color: #61DF94
}

.footer-logo-zone {
  text-align: center;
  padding: 32px 0;
  border-top: 2px solid #61df9433;
  border-bottom: 2px solid #61df9433;
  margin-bottom: 32px
}

.footer-logo-container {
  background: #fff;
  border: 3px solid #613ad766;
  border-radius: 13px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px 0 #61df941a;
  transition: border-color .3s ease-out, box-shadow .38s ease-out
}

.footer-logo-container:hover {
  border-color: #61df9499;
  box-shadow: 0 9px 48px 0 #61df941a 0 4px 14px 0 #613ad71a
}

.footer-logo-container img {
  width: 88px;
  height: 88px;
  display: block;
  object-fit: contain
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px
}

.social-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #61df9426 0%, #613ad726 100%);
  border: 2px solid #61df9466;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #613AD7;
  font-size: 19px;
  transition: background .25s ease-out, border-color .28s ease-out, transform .16s ease-out;
  box-shadow: 0 2px 3px 0 #613ad70f
}

.social-icon:hover {
  background: linear-gradient(315deg, #61df9440 0%, #613ad740 100%);
  border-color: #613ad799;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px 0 #61df941a
}

.social-icon svg {
  width: 19px;
  height: 19px
}

.copyright-bar {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #5a4785;
  padding: 16px 0 0
}

.copyright-bar p {
  margin: 0
}

@media (max-width: 768px) {
  .top-band {
    padding: 16px 32px;
    margin: 8px;
    border-radius: 24px
  }

  .brand-line {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px
  }

  .brand-text {
    font-size: 33px;
    text-align: center
  }

  .logo-box img {
    width: 72px;
    height: 72px
  }

  .phone-display {
    font-size: 16px;
    padding: 16px
  }

  .nav-row {
    gap: 8px
  }

  .nav-link {
    font-size: 14px;
    padding: 16px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  footer {
    padding: 32px 16px 16px;
    margin-top: 56px
  }

  .footer-logo-container img {
    width: 64px;
    height: 64px
  }
}

.consent-overlay {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 420px;
  background: #fff;
  border: 3px solid #61df9480;
  border-radius: 13px;
  padding: 32px;
  box-shadow: 0 9px 48px 0 #613ad71a 0 4px 14px 0 #61df941a;
  z-index: 4000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .42s ease-out, transform .42s ease-out;
  display: none
}

.consent-overlay.visible {
  opacity: 1;
  transform: translateY(0)
}

.consent-headline {
  font-family: 'PT Serif', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #2d1a5c;
  margin: 0 0 8px
}

.consent-description {
  font-size: 14px;
  line-height: 1.6;
  color: #3d2870;
  margin: 0 0 16px
}

.consent-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap
}

.consent-btn-primary {
  background: linear-gradient(135deg, #61DF94 0%, #613AD7 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background .32s ease-out, box-shadow .25s ease-out, transform .18s ease-out;
  box-shadow: 0 4px 14px 0 #613ad71a;
  position: relative;
  overflow: hidden
}

.consent-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #61DF94 0%, #613AD7 100%);
  opacity: 0;
  transition: opacity .32s ease-out
}

.consent-btn-primary:hover::before {
  opacity: 1
}

.consent-btn-primary:hover {
  box-shadow: 0 9px 48px 0 #613ad71a 0 4px 14px 0 #61df941a;
  transform: translateY(-1px)
}

.consent-btn-primary span {
  position: relative;
  z-index: 1
}

.consent-btn-secondary {
  background: #61df941f;
  color: #2d1a5c;
  font-size: 14px;
  font-weight: 700;
  padding: 16px;
  border: 2px solid #61df944d;
  border-radius: 13px;
  cursor: pointer;
  transition: background .22s ease-out, border-color .28s ease-out, transform .15s ease-out
}

.consent-btn-secondary:hover {
  background: #61df9433;
  border-color: #613ad780;
  transform: translateY(-1px)
}

.consent-settings-link {
  color: #613AD7;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  transition: color .2s ease-out
}

.consent-settings-link:hover {
  color: #61DF94
}

.consent-settings-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #61df9433;
  display: none
}

.consent-settings-panel.active {
  display: block
}

.consent-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 8px 0
}

.consent-toggle-label {
  font-size: 14px;
  line-height: 1.6;
  color: #3d2870;
  font-weight: 700
}

.consent-toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  background: #61df9433;
  border-radius: 40px;
  cursor: pointer;
  transition: background .28s ease-out;
  border: 2px solid #61df944d
}

.consent-toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 40px;
  transition: transform .28s ease-out;
  box-shadow: 0 2px 3px 0 #613ad70f
}

.consent-toggle-switch.active {
  background: #61DF94;
  border-color: #61DF94
}

.consent-toggle-switch.active::after {
  transform: translateX(24px)
}

@media (max-width: 768px) {
  .consent-overlay {
    bottom: 8px;
    right: 8px;
    left: 8px;
    max-width: none;
    padding: 16px
  }

  .consent-actions {
    flex-direction: column;
    width: 100%
  }

  .consent-btn-primary,
  .consent-btn-secondary {
    width: 100%;
    text-align: center
  }
}

.content-legal {
  max-width: 1366px;
  margin: 0 auto;
  padding: 56px 32px 96px;
  background: linear-gradient(165deg, #61df9408 0%, #fff9b10a 100%)
}

.content-legal p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
  color: #1a1a2e
}

.content-legal p:last-child {
  margin-bottom: 0
}

.content-legal ul,
.content-legal ol {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
  padding-left: 32px;
  color: #1a1a2e
}

.content-legal ul ul,
.content-legal ul ol,
.content-legal ol ul,
.content-legal ol ol {
  margin-bottom: 16px;
  margin-top: 8px
}

.content-legal li {
  margin-bottom: 8px;
  padding-left: 8px
}

.content-legal li:last-child {
  margin-bottom: 0
}

.content-legal strong,
.content-legal b {
  font-weight: 600;
  color: #0a0a14
}

.content-legal em,
.content-legal i {
  font-style: italic
}

.content-legal a {
  color: #613AD7;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .18s ease-out, text-decoration-color .18s ease-out
}

.content-legal a:hover {
  color: #4a2ba8;
  text-decoration-color: transparent
}

.content-legal a:active {
  color: #61DF94
}

.content-legal hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #61df9433 0%, #613ad726 50%, #fff9b133 100%);
  margin: 56px 0;
  border-radius: 3px
}

.content-legal div {
  margin-bottom: 32px
}

.content-legal div:last-child {
  margin-bottom: 0
}

@media (max-width: 768px) {
  .content-legal {
    padding: 32px 16px 56px
  }

  .content-legal p,
  .content-legal ul,
  .content-legal ol {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 16px
  }

  .content-legal ul,
  .content-legal ol {
    padding-left: 16px
  }

  .content-legal hr {
    margin: 32px 0
  }

  .content-legal div {
    margin-bottom: 16px
  }
}

.jrnl-dtl {
  background: #fff;
  color: #1a1a1a;
  overflow-x: clip
}

.jrnl-dtl * {
  box-sizing: border-box
}

.jrnl-dtl .lead-vis {
  position: relative;
  padding: 96px 16px;
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px
}

.jrnl-dtl .lead-vis::before {
  content: '"';
  position: absolute;
  top: 32px;
  left: 16px;
  font-size: 280px;
  line-height: 1;
  color: #61df9414;
  font-weight: 700;
  pointer-events: none;
  z-index: 0
}

.jrnl-dtl .img-zone {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 9px 48px 0 #613dd71a;
  transform: scale(0.9);
  animation: scaleEntry .65s ease-out forwards
}

@keyframes scaleEntry {
  to {
    transform: scale(1)
  }
}

.jrnl-dtl .img-zone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #613dd766 0%, #61df9433 100%);
  pointer-events: none
}

.jrnl-dtl .img-zone img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover
}

.jrnl-dtl .txt-zone {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  text-align: center
}

.jrnl-dtl .meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 14px;
  color: #4a4a4a
}

.jrnl-dtl .meta-item {
  display: flex;
  align-items: center;
  gap: 8px
}

.jrnl-dtl .tag-pill {
  display: inline-block;
  padding: 8px 16px;
  background: #61df941f;
  color: #2d8a5a;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600
}

.jrnl-dtl .lead-heading {
  font-size: 62px;
  line-height: 1.2;
  margin: 0 0 32px;
  font-weight: 700
}

.jrnl-dtl .lead-heading .accent-word {
  background: linear-gradient(270deg, #61DF94 0%, #613AD7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.jrnl-dtl .author-line {
  font-size: 19px;
  line-height: 1.4;
  color: #5a5a5a;
  margin: 0
}

.jrnl-dtl .like-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff9b14d;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 600;
  color: #7a6a00;
  margin-top: 16px
}

.jrnl-dtl .like-icon {
  width: 18px;
  height: 18px;
  fill: #7a6a00
}

.jrnl-dtl .article-body {
  background: #61df9408;
  padding: 96px 16px;
  position: relative
}

.jrnl-dtl .article-body::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 Q300,10 600,50 T1200,40 L1200,0 L0,0 Z" fill="%23ffffff"/></svg>') no-repeat center top;
  background-size: cover;
  pointer-events: none
}

.jrnl-dtl .content-wrap {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start
}

.jrnl-dtl .prose {
  background: #fff;
  padding: 56px;
  border-radius: 24px;
  box-shadow: 0 4px 14px 0 #613dd71a
}

.jrnl-dtl .prose h2 {
  font-size: 33px;
  line-height: 1.4;
  margin: 56px 0 32px;
  font-weight: 700;
  color: #2a2a2a
}

.jrnl-dtl .prose h2:first-child {
  margin-top: 0
}

.jrnl-dtl .prose p {
  font-size: 19px;
  line-height: 1.9;
  margin: 0 0 32px;
  color: #3a3a3a
}

.jrnl-dtl .prose p:last-child {
  margin-bottom: 0
}

.jrnl-dtl .prose cite {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  color: #5a5a5a;
  padding: 16px 32px;
  background: #61df940f;
  border-left: 4px solid #61DF94;
  margin: 32px 0;
  border-radius: 3px
}

.jrnl-dtl .prose ol {
  margin: 32px 0;
  padding: 0;
  list-style: none;
  counter-reset: list-counter
}

.jrnl-dtl .prose ol li {
  counter-increment: list-counter;
  position: relative;
  padding: 16px 16px 16px 56px;
  margin-bottom: 16px;
  background: #fff;
  border: 2px solid #61df9433;
  border-radius: 13px;
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  transition: border-color .28s ease-out, box-shadow .28s ease-out
}

.jrnl-dtl .prose ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: linear-gradient(270deg, #61DF94 0%, #613AD7 100%);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px
}

.jrnl-dtl .prose ol li:hover {
  border-color: #61df9480;
  box-shadow: 0 2px 3px 0 #61df940f
}

.jrnl-dtl .prose table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 2px 3px 0 #613dd70f
}

.jrnl-dtl .prose thead {
  background: linear-gradient(270deg, #61DF94 0%, #613AD7 100%)
}

.jrnl-dtl .prose th {
  padding: 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px
}

.jrnl-dtl .prose td {
  padding: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  border-bottom: 1px solid #61df941f
}

.jrnl-dtl .prose tbody tr:last-child td {
  border-bottom: none
}

.jrnl-dtl .prose tbody tr:hover {
  background: #61df940a
}

.jrnl-dtl .prose tfoot td {
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #5a5a5a;
  background: #fff9b126;
  border-top: 2px solid #61df944d
}

.jrnl-dtl .prose figure {
  margin: 32px 0;
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 #613dd71a
}

.jrnl-dtl .prose figcaption {
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a5a;
  background: #61df940f;
  text-align: center
}

.jrnl-dtl .sidebar-poll {
  position: sticky;
  top: 32px;
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 4px 14px 0 #613dd71a
}

.jrnl-dtl .poll-heading {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 32px;
  font-weight: 700;
  color: #2a2a2a
}

.jrnl-dtl .poll-option {
  margin-bottom: 16px
}

.jrnl-dtl .poll-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.jrnl-dtl .poll-label {
  display: block;
  padding: 16px;
  background: #61df940f;
  border: 2px solid #61df9433;
  border-radius: 13px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  transition: background .22s ease-out, border-color .22s ease-out, transform .09s ease-out;
  position: relative;
  padding-left: 48px
}

.jrnl-dtl .poll-label::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #61df9466;
  border-radius: 40px;
  background: #fff;
  transition: border-color .22s ease-out, background .22s ease-out
}

.jrnl-dtl .poll-label::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #fff;
  transition: transform .18s ease-out
}

.jrnl-dtl .poll-option input[type="radio"]:checked+.poll-label {
  background: #61df9426;
  border-color: #61DF94
}

.jrnl-dtl .poll-option input[type="radio"]:checked+.poll-label::before {
  background: linear-gradient(270deg, #61DF94 0%, #613AD7 100%);
  border-color: #61DF94
}

.jrnl-dtl .poll-option input[type="radio"]:checked+.poll-label::after {
  transform: translateY(-50%) scale(1)
}

.jrnl-dtl .poll-label:hover {
  background: #61df941f;
  border-color: #61df9466;
  transform: translateX(2px)
}

.jrnl-dtl .poll-option input[type="radio"]:focus+.poll-label {
  outline: 3px solid #61df944d;
  outline-offset: 2px
}

.jrnl-dtl .stats-grid {
  background: #fff;
  padding: 96px 16px;
  position: relative;
  overflow: hidden
}

.jrnl-dtl .stats-grid::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at top right, #613dd714 0%, transparent 70%);
  pointer-events: none
}

.jrnl-dtl .stats-grid::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, #61df9408 40px, #61df9408 42px);
  pointer-events: none;
  animation: patternShift 24s linear infinite
}

@keyframes patternShift {
  to {
    transform: translate(56px, 56px)
  }
}

.jrnl-dtl .stats-container {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.jrnl-dtl .stats-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center
}

.jrnl-dtl .stats-intro h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  color: #2a2a2a
}

.jrnl-dtl .stats-intro .first-word {
  font-size: 62px
}

.jrnl-dtl .stats-intro p {
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
  color: #5a5a5a
}

.jrnl-dtl .comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px
}

.jrnl-dtl .compare-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 4px 14px 0 #613dd71a;
  border: 2px solid transparent;
  transition: border-color .32s ease-out, transform .32s ease-out, box-shadow .32s ease-out;
  position: relative
}

.jrnl-dtl .compare-card:hover {
  border-color: #61df944d;
  transform: translateY(-4px);
  box-shadow: 0 9px 48px 0 #613dd71a
}

.jrnl-dtl .compare-card.recommended {
  border-color: #61DF94
}

.jrnl-dtl .compare-card.recommended::before {
  content: 'Рекомендовано';
  position: absolute;
  top: -12px;
  right: 32px;
  padding: 8px 16px;
  background: linear-gradient(270deg, #61DF94 0%, #613AD7 100%);
  color: #fff;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px
}

.jrnl-dtl .compare-label {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #5a5a5a;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.jrnl-dtl .compare-title {
  font-size: 33px;
  line-height: 1.4;
  margin: 0 0 16px;
  font-weight: 700;
  color: #2a2a2a
}

.jrnl-dtl .compare-desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 32px;
  color: #5a5a5a
}

.jrnl-dtl .compare-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px
}

.jrnl-dtl .compare-features li {
  padding: 8px 0 8px 32px;
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  position: relative
}

.jrnl-dtl .compare-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: #61df9433;
  border-radius: 3px
}

.jrnl-dtl .compare-features li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 18px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #61DF94;
  border-bottom: 2px solid #61DF94;
  transform: rotate(-45deg)
}

.jrnl-dtl .chart-visual {
  background: linear-gradient(135deg, #61df9414 0%, #613dd714 100%);
  padding: 32px;
  border-radius: 13px;
  margin-bottom: 32px
}

.jrnl-dtl .chart-svg {
  width: 100%;
  height: 280px
}

.jrnl-dtl .chart-line {
  fill: none;
  stroke: #61DF94;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: drawLine 1.8s ease-out forwards;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0
  }
}

.jrnl-dtl .chart-dot {
  fill: #613AD7;
  animation: dotAppear .4s ease-out forwards;
  opacity: 0;
  transform-origin: center
}

.jrnl-dtl .chart-dot:nth-child(1) {
  animation-delay: .3s
}

.jrnl-dtl .chart-dot:nth-child(2) {
  animation-delay: .6s
}

.jrnl-dtl .chart-dot:nth-child(3) {
  animation-delay: .9s
}

.jrnl-dtl .chart-dot:nth-child(4) {
  animation-delay: 1.2s
}

.jrnl-dtl .chart-dot:nth-child(5) {
  animation-delay: 1.5s
}

@keyframes dotAppear {
  to {
    opacity: 1
  }
}

.jrnl-dtl .chart-label {
  font-size: 14px;
  fill: #5a5a5a;
  font-weight: 600
}

.jrnl-dtl .chart-value {
  font-size: 16px;
  fill: #2a2a2a;
  font-weight: 700
}

.jrnl-dtl .metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.jrnl-dtl .metric-box {
  background: #fff;
  padding: 32px;
  border-radius: 13px;
  text-align: center;
  box-shadow: 0 2px 3px 0 #613dd70f;
  border: 2px solid #61df941f;
  transition: border-color .35s ease-out, box-shadow .35s ease-out
}

.jrnl-dtl .metric-box:hover {
  border-color: #61df9466;
  box-shadow: 0 4px 14px 0 #613dd71a
}

.jrnl-dtl .metric-num {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
  color: #613AD7;
  margin: 0 0 8px
}

.jrnl-dtl .metric-label {
  font-size: 16px;
  line-height: 1.4;
  color: #5a5a5a;
  margin: 0
}

@media (max-width: 1024px) {
  .jrnl-dtl .content-wrap {
    grid-template-columns: 1fr
  }

  .jrnl-dtl .sidebar-poll {
    position: static
  }

  .jrnl-dtl .comparison-wrap {
    grid-template-columns: 1fr
  }

  .jrnl-dtl .metric-row {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

@media (max-width: 768px) {
  .jrnl-dtl .lead-vis {
    padding: 56px 16px;
    gap: 32px
  }

  .jrnl-dtl .lead-heading {
    font-size: 46px
  }

  .jrnl-dtl .prose {
    padding: 32px
  }

  .jrnl-dtl .prose h2 {
    font-size: 33px
  }

  .jrnl-dtl .prose p {
    font-size: 16px
  }

  .jrnl-dtl .stats-intro h2 {
    font-size: 33px
  }

  .jrnl-dtl .stats-intro .first-word {
    font-size: 46px
  }

  .jrnl-dtl .compare-title {
    font-size: 19px
  }

  .jrnl-dtl .metric-num {
    font-size: 33px
  }

  .jrnl-dtl .article-body {
    padding: 56px 16px
  }

  .jrnl-dtl .stats-grid {
    padding: 56px 16px
  }
}

@media (max-width: 480px) {
  .jrnl-dtl .lead-heading {
    font-size: 33px
  }

  .jrnl-dtl .meta-strip {
    flex-direction: column;
    gap: 16px
  }

  .jrnl-dtl .prose {
    padding: 16px
  }

  .jrnl-dtl .prose h2 {
    font-size: 19px;
    margin: 32px 0 16px
  }

  .jrnl-dtl .prose table {
    font-size: 14px
  }

  .jrnl-dtl .prose th,
  .jrnl-dtl .prose td {
    padding: 8px
  }
}

.blog-dtl {
  background: #fff;
  color: #1a1a1a;
  max-width: 1366px;
  margin: 0 auto
}

.blog-dtl .crumb-nav {
  padding: 16px 32px;
  background: linear-gradient(270deg, #61df940a, #613dd70a);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.blog-dtl .crumb-link {
  font-size: 14px;
  color: #613AD7;
  text-decoration: none;
  transition: color .18s ease-out;
  position: relative
}

.blog-dtl .crumb-link:hover {
  color: #61DF94
}

.blog-dtl .crumb-sep {
  width: 0;
  height: 0;
  border-left: 5px solid #613AD7;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  opacity: .4
}

.blog-dtl .crumb-current {
  font-size: 14px;
  color: #4a4a4a
}

.blog-dtl .art-hdr {
  padding: 96px 56px;
  background: radial-gradient(ellipse at 70% 30%, #613dd714, #fff9b10f 50%, #61df940d);
  position: relative;
  overflow: hidden
}

.blog-dtl .art-hdr::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(180deg, transparent, #fff);
  clip-path: polygon(0 40%, 50% 0, 100% 40%, 100% 100%, 0 100%);
  z-index: 1
}

.blog-dtl .label-tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #613AD7;
  margin-bottom: 16px;
  display: inline-block;
  opacity: 0;
  animation: flip-reveal .42s ease-out .15s forwards;
  transform-origin: center
}

@keyframes flip-reveal {
  0% {
    transform: rotateX(-90deg);
    opacity: 0
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1
  }
}

.blog-dtl .main-ttl {
  font-size: 62px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0;
  max-width: 920px;
  opacity: 0;
  animation: flip-reveal .45s ease-out .28s forwards
}

.blog-dtl .art-body {
  padding: 96px 56px;
  background: #fff;
  position: relative
}

.blog-dtl .content-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 56px;
  align-items: start
}

.blog-dtl .img-zone {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 9px 48px 0 #613dd71a;
  opacity: 0;
  animation: flip-reveal .38s ease-out .42s forwards
}

.blog-dtl .art-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .35s ease-out
}

.blog-dtl .img-zone:hover .art-img {
  transform: scale(1.04)
}

.blog-dtl .txt-zone {
  opacity: 0;
  animation: flip-reveal .4s ease-out .56s forwards
}

.blog-dtl .txt-zone p {
  font-size: 19px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 0 32px
}

.blog-dtl .txt-zone p:last-child {
  margin-bottom: 0
}

.blog-dtl .txt-zone h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 56px 0 32px;
  position: relative
}

.blog-dtl .txt-zone h2::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, #613AD7, #61DF94);
  border-radius: 3px
}

.blog-dtl .txt-zone h3 {
  font-size: 33px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 32px 0 16px
}

.blog-dtl .txt-zone abbr {
  text-decoration: none;
  border-bottom: 2px dotted #61DF94;
  cursor: help;
  color: #613AD7
}

.blog-dtl .txt-zone ol {
  margin: 32px 0;
  padding-left: 32px;
  list-style: none;
  counter-reset: list-counter
}

.blog-dtl .txt-zone ol li {
  font-size: 19px;
  line-height: 1.6;
  color: #3a3a3a;
  margin-bottom: 16px;
  counter-increment: list-counter;
  position: relative;
  padding-left: 16px
}

.blog-dtl .txt-zone ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: -32px;
  font-weight: 600;
  color: #613AD7;
  font-size: 19px
}

.blog-dtl .txt-zone figure {
  margin: 56px 0;
  padding: 32px;
  background: linear-gradient(135deg, #61df940f, #fff9b114);
  border-radius: 13px;
  box-shadow: 0 4px 14px 0 #61df941a
}

.blog-dtl .txt-zone figcaption {
  font-size: 16px;
  line-height: 1.4;
  color: #5a5a5a;
  margin-top: 16px;
  font-style: italic
}

.blog-dtl .interact-demo {
  margin: 96px 0;
  padding: 56px;
  background: linear-gradient(270deg, #613dd70d, #61df940d);
  border-radius: 24px;
  position: relative;
  overflow: hidden
}

.blog-dtl .demo-ttl {
  font-size: 33px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 32px;
  text-align: center
}

.blog-dtl .temp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.blog-dtl .temp-card {
  background: #fff;
  padding: 32px;
  border-radius: 13px;
  box-shadow: 0 2px 3px 0 #613dd70f;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease-out, box-shadow .28s ease-out
}

.blog-dtl .temp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, #61df941f);
  clip-path: polygon(0 0, 0 0, 0 100%);
  transition: clip-path .32s ease-out;
  z-index: 0
}

.blog-dtl .temp-card:hover::before {
  clip-path: polygon(0 0, 100% 0, 0 100%)
}

.blog-dtl .temp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 9px 48px 0 #613dd71a
}

.blog-dtl .card-num {
  font-size: 46px;
  line-height: 1;
  color: #613AD7;
  font-weight: 700;
  margin: 0 0 16px;
  position: relative;
  z-index: 1
}

.blog-dtl .card-lbl {
  font-size: 16px;
  line-height: 1.4;
  color: #4a4a4a;
  margin: 0;
  position: relative;
  z-index: 1
}

.blog-dtl .card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #6a6a6a;
  margin: 8px 0 0;
  position: relative;
  z-index: 1
}

@media (max-width: 1024px) {
  .blog-dtl .content-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .blog-dtl .art-hdr {
    padding: 56px 32px
  }

  .blog-dtl .main-ttl {
    font-size: 46px
  }

  .blog-dtl .art-body {
    padding: 56px 32px
  }

  .blog-dtl .temp-cards {
    grid-template-columns: 1fr
  }

  .blog-dtl .interact-demo {
    padding: 32px;
    margin: 56px 0
  }
}

@media (max-width: 768px) {
  .blog-dtl .art-hdr {
    padding: 32px 16px
  }

  .blog-dtl .main-ttl {
    font-size: 33px
  }

  .blog-dtl .art-body {
    padding: 32px 16px
  }

  .blog-dtl .txt-zone h2 {
    font-size: 33px;
    margin: 32px 0 16px
  }

  .blog-dtl .txt-zone h3 {
    font-size: 19px
  }

  .blog-dtl .txt-zone p,
  .blog-dtl .txt-zone ol li {
    font-size: 16px
  }

  .blog-dtl .interact-demo {
    padding: 16px
  }

  .blog-dtl .temp-cards {
    gap: 16px
  }

  .blog-dtl .crumb-nav {
    padding: 16px
  }
}

.ld {
  background: linear-gradient(110deg, #61df9408 0%, #fff9b10a 100%);
  min-height: 100vh
}

.ld * {
  box-sizing: border-box
}

.ld .top-anchor {
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 32px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative
}

.ld .top-anchor::before {
  content: '';
  position: absolute;
  right: 32px;
  top: 56px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 70% 30%, #613dd714, transparent 70%);
  pointer-events: none;
  z-index: 0
}

.ld .anchor-txt {
  position: relative;
  z-index: 1
}

.ld .anchor-txt h1 {
  font-size: 62px;
  line-height: 1.2;
  margin: 0 0 32px;
  color: #1a1a2e;
  font-weight: 700
}

.ld .anchor-txt p {
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
  color: #4a4a5e
}

.ld .anchor-visual {
  position: relative;
  z-index: 1
}

.ld .anchor-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 9px 48px 0 #613dd71a;
  filter: saturate(0.85) brightness(1.05);
  display: block
}

.ld .metrics-bar {
  background: #fff;
  padding: 56px 32px;
  margin: 0 0 96px;
  position: relative;
  overflow: hidden
}

.ld .metrics-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(270deg, #613AD7 0%, #61DF94 100%)
}

.ld .metrics-bar::after {
  content: '';
  position: absolute;
  left: -200px;
  bottom: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #fff9b11f, transparent 65%);
  pointer-events: none
}

.ld .metrics-wrap {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  position: relative;
  z-index: 1
}

.ld .stat-unit {
  text-align: center
}

.ld .stat-unit .num {
  font-size: 62px;
  line-height: 1.2;
  font-weight: 700;
  color: #613AD7;
  margin: 0 0 8px;
  display: block
}

.ld .stat-unit .lbl {
  font-size: 16px;
  line-height: 1.4;
  color: #5a5a6e;
  margin: 0
}

.ld .feed-intro {
  max-width: 1366px;
  margin: 0 auto 56px;
  padding: 0 32px
}

.ld .feed-intro h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1a1a2e;
  font-weight: 700
}

.ld .feed-intro .desc {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0;
  max-width: 720px
}

.ld .post-grid {
  max-width: 1366px;
  margin: 0 auto 96px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.ld .post-card {
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 #61df941a;
  transition: transform .28s ease-out, box-shadow .28s ease-out;
  display: flex;
  flex-direction: column
}

.ld .post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 48px 0 #61df941a
}

.ld .post-card .card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative
}

.ld .post-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .42s ease-out
}

.ld .post-card:hover .card-img img {
  transform: scale(1.06)
}

.ld .post-card .card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.ld .post-card h3 {
  font-size: 33px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1a1a2e;
  font-weight: 600
}

.ld .post-card .excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a6e;
  margin: 0 0 32px;
  flex: 1
}

.ld .post-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.4;
  color: #613AD7;
  text-decoration: none;
  font-weight: 600;
  transition: gap .18s ease-out
}

.ld .post-card .card-link:hover {
  gap: 16px
}

.ld .post-card .card-link::after {
  content: '→';
  font-size: 19px
}

.ld .journal-zone {
  background: #613dd70a;
  padding: 96px 0;
  margin: 0 0 96px;
  position: relative;
  overflow: hidden
}

.ld .journal-zone::before {
  content: '';
  position: absolute;
  right: -150px;
  top: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #61df9414, transparent 70%);
  pointer-events: none
}

.ld .journal-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

.ld .journal-wrap h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1a1a2e;
  font-weight: 700
}

.ld .journal-wrap .intro-text {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 56px;
  max-width: 680px
}

.ld .journal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.ld .j-item {
  background: #fff;
  border-radius: 13px;
  padding: 32px;
  box-shadow: 0 2px 3px 0 #613dd70f;
  transition: transform .32s ease-out, box-shadow .32s ease-out;
  display: flex;
  flex-direction: column
}

.ld .j-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 48px 0 #613dd71a
}

.ld .j-item .j-img {
  width: 100%;
  height: 220px;
  border-radius: 7px;
  overflow: hidden;
  margin: 0 0 16px
}

.ld .j-item .j-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .38s ease-out
}

.ld .j-item:hover .j-img img {
  transform: scale(1.05)
}

.ld .j-item .j-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  flex-wrap: wrap
}

.ld .j-item .j-tag {
  display: inline-block;
  padding: 8px 16px;
  background: #61df9426;
  color: #2a8a5e;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 40px;
  font-weight: 600
}

.ld .j-item .j-time {
  font-size: 14px;
  line-height: 1.2;
  color: #7a7a8e
}

.ld .j-item h3 {
  font-size: 33px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1a1a2e;
  font-weight: 600
}

.ld .j-item .j-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a6e;
  margin: 0 0 16px;
  flex: 1
}

.ld .j-item .j-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
  border-top: 1px solid #613dd71a
}

.ld .j-item .j-author {
  font-size: 14px;
  line-height: 1.4;
  color: #4a4a5e;
  font-weight: 600
}

.ld .j-item .j-likes {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.2;
  color: #7a7a8e
}

.ld .j-item .j-likes::before {
  content: '';
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #61DF94, #613AD7);
  border-radius: 3px;
  display: block
}

.ld .nav-cluster {
  max-width: 1366px;
  margin: 0 auto 96px;
  padding: 0 32px
}

.ld .nav-cluster h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 56px;
  color: #1a1a2e;
  font-weight: 700;
  text-align: center
}

.ld .nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.ld .nav-block {
  background: #fff;
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 4px 14px 0 #61df941a;
  transition: transform .35s ease-out, box-shadow .35s ease-out;
  position: relative;
  overflow: hidden
}

.ld .nav-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #61DF94 0%, #613AD7 100%);
  transition: width .28s ease-out
}

.ld .nav-block:hover::before {
  width: 13px
}

.ld .nav-block:hover {
  transform: translateX(8px);
  box-shadow: 0 9px 48px 0 #61df941a
}

.ld .nav-block h3 {
  font-size: 33px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1a1a2e;
  font-weight: 600
}

.ld .nav-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a6e;
  margin: 0 0 32px
}

.ld .nav-block a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(270deg, #613AD7 0%, #61DF94 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  border-radius: 40px;
  transition: background .25s ease-out, gap .18s ease-out
}

.ld .nav-block a:hover {
  background: linear-gradient(90deg, #613AD7 0%, #61DF94 100%);
  gap: 16px
}

.ld .nav-block a::after {
  content: '→';
  font-size: 19px
}

.ld .hidden-gems {
  background: #fff;
  padding: 96px 0;
  margin: 0 0 96px;
  position: relative
}

.ld .hidden-gems::before {
  content: '"';
  position: absolute;
  left: 56px;
  top: 32px;
  font-size: 280px;
  line-height: 1;
  color: #61df9414;
  font-weight: 700;
  pointer-events: none
}

.ld .gems-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

.ld .gems-wrap h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1a1a2e;
  font-weight: 700
}

.ld .gems-wrap .intro {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 56px;
  max-width: 680px
}

.ld .gems-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px
}

.ld .gem-card {
  background: #fff9b114;
  border-radius: 13px;
  padding: 32px;
  transition: transform .3s ease-out, background .3s ease-out;
  position: relative
}

.ld .gem-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(270deg, #FFF9B1 0%, #61DF94 100%);
  border-radius: 3px 3px 0 0
}

.ld .gem-card:hover {
  transform: translateY(-4px);
  background: #fff9b126
}

.ld .gem-card h4 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 16px;
  color: #1a1a2e;
  font-weight: 600
}

.ld .gem-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a6e;
  margin: 0
}

.ld .starter-pack {
  max-width: 1366px;
  margin: 0 auto 96px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center
}

.ld .starter-img {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 9px 48px 0 #613dd71a
}

.ld .starter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.ld .starter-content h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 32px;
  color: #1a1a2e;
  font-weight: 700
}

.ld .starter-content p {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 16px
}

.ld .starter-content .guide-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0
}

.ld .starter-content .guide-list li {
  background: #fff;
  padding: 16px 32px;
  margin: 0 0 16px;
  border-radius: 7px;
  box-shadow: 0 2px 3px 0 #61df940f;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a5e;
  position: relative;
  padding-left: 56px
}

.ld .starter-content .guide-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #61DF94, #613AD7);
  border-radius: 3px
}

.ld .subscribe-zone {
  background: linear-gradient(135deg, #613dd70f 0%, #61df940f 100%);
  padding: 96px 0;
  margin: 0 0 96px;
  position: relative;
  overflow: hidden
}

.ld .subscribe-zone::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #fff9b11a, transparent 70%);
  pointer-events: none
}

.ld .subscribe-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  text-align: center
}

.ld .subscribe-wrap h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1a1a2e;
  font-weight: 700
}

.ld .subscribe-wrap .sub-desc {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 auto 32px;
  max-width: 640px
}

.ld .subscribe-wrap .benefits {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin: 0 0 56px
}

.ld .subscribe-wrap .benefit {
  text-align: center
}

.ld .subscribe-wrap .benefit .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #61DF94, #613AD7);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 33px;
  color: #fff
}

.ld .subscribe-wrap .benefit h4 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #1a1a2e;
  font-weight: 600
}

.ld .subscribe-wrap .benefit p {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a6e;
  margin: 0
}

.ld .subscribe-wrap form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  gap: 16px
}

.ld .subscribe-wrap input[type="email"] {
  flex: 1;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.4;
  border: 2px solid #613dd733;
  border-radius: 40px;
  outline: none;
  transition: border-color .22s ease-out
}

.ld .subscribe-wrap input[type="email"]:focus {
  border-color: #613AD7
}

.ld .subscribe-wrap input[type="email"]::placeholder {
  color: #9a9aae;
  transition: opacity .18s ease-out
}

.ld .subscribe-wrap input[type="email"]:focus::placeholder {
  opacity: 0
}

.ld .subscribe-wrap button[type="submit"] {
  padding: 16px 56px;
  background: linear-gradient(270deg, #613AD7 0%, #61DF94 100%);
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background .28s ease-out, transform .15s ease-out
}

.ld .subscribe-wrap button[type="submit"]:hover {
  background: linear-gradient(90deg, #613AD7 0%, #61DF94 100%);
  transform: translateY(-2px)
}

.ld .subscribe-wrap button[type="submit"]:active {
  transform: translateY(0)
}

.ld .author-spotlight {
  max-width: 1366px;
  margin: 0 auto 96px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start
}

.ld .author-photo {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 9px 48px 0 #61df941a;
  position: sticky;
  top: 32px
}

.ld .author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top
}

.ld .author-bio h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 32px;
  color: #1a1a2e;
  font-weight: 700
}

.ld .author-bio p {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 32px
}

.ld .author-bio .credentials {
  background: #fff;
  border-radius: 13px;
  padding: 32px;
  box-shadow: 0 2px 3px 0 #613dd70f;
  margin: 32px 0 0
}

.ld .author-bio .credentials h4 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 16px;
  color: #1a1a2e;
  font-weight: 600
}

.ld .author-bio .credentials ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.ld .author-bio .credentials li {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a6e;
  margin: 0 0 8px;
  padding-left: 32px;
  position: relative
}

.ld .author-bio .credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #61DF94, #613AD7);
  border-radius: 3px
}

@media (max-width: 1024px) {
  .ld .top-anchor {
    grid-template-columns: 1fr;
    padding: 56px 32px;
    gap: 32px
  }

  .ld .anchor-visual img {
    height: 360px
  }

  .ld .metrics-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .ld .post-grid {
    grid-template-columns: 1fr
  }

  .ld .journal-list {
    grid-template-columns: 1fr
  }

  .ld .nav-grid {
    grid-template-columns: 1fr
  }

  .ld .gems-list {
    grid-template-columns: 1fr
  }

  .ld .starter-pack {
    grid-template-columns: 1fr
  }

  .ld .author-spotlight {
    grid-template-columns: 1fr
  }

  .ld .author-photo {
    position: relative;
    top: 0
  }

  .ld .subscribe-wrap .benefits {
    flex-direction: column;
    gap: 32px
  }

  .ld .subscribe-wrap form {
    flex-direction: column
  }
}

@media (max-width: 768px) {
  .ld .anchor-txt h1 {
    font-size: 46px
  }

  .ld .feed-intro h2,
  .ld .journal-wrap h2,
  .ld .nav-cluster h2,
  .ld .gems-wrap h2,
  .ld .starter-content h2,
  .ld .subscribe-wrap h2,
  .ld .author-bio h2 {
    font-size: 33px
  }

  .ld .metrics-wrap {
    grid-template-columns: 1fr
  }

  .ld .top-anchor {
    padding: 32px 16px
  }

  .ld .metrics-bar,
  .ld .journal-zone,
  .ld .hidden-gems,
  .ld .subscribe-zone {
    padding: 56px 0
  }

  .ld .feed-intro,
  .ld .post-grid,
  .ld .journal-wrap,
  .ld .nav-cluster,
  .ld .gems-wrap,
  .ld .starter-pack,
  .ld .subscribe-wrap,
  .ld .author-spotlight {
    padding: 0 16px
  }

  .ld .nav-block {
    padding: 32px
  }
}

.jrnl {
  background: linear-gradient(271deg, #61df9408 0%, #613ad70a 100%);
  padding: 0;
  margin: 0;
  max-width: 100%;
  overflow-x: clip
}

.jrnl .top-band {
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 1366px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 4px 14px 0 #613ad71a;
  border-radius: 13px;
  overflow: hidden;
  margin-top: 32px;
  margin-bottom: 96px;
  border-top: 3px solid #61DF94
}

.jrnl .top-band::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 120px;
  width: 140px;
  height: 140px;
  border: 2px solid #613ad71f;
  border-radius: 50%;
  transform: rotate(15deg);
  pointer-events: none
}

.jrnl .top-band::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 140px;
  width: 100px;
  height: 100px;
  border: 2px solid #61df9426;
  border-radius: 50%;
  transform: rotate(-10deg);
  pointer-events: none
}

.jrnl .left-txt {
  flex: 1;
  padding: 32px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}

.jrnl .right-img {
  flex: 1;
  position: relative;
  overflow: hidden
}

.jrnl .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative
}

.jrnl .right-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, #0000 0%, #613ad759 100%);
  pointer-events: none
}

.jrnl .top-hd {
  font-size: 46px;
  line-height: 1.2;
  color: #1d1d1f;
  margin: 0;
  font-weight: 700
}

.jrnl .top-hd span:first-child {
  font-size: 62px;
  color: #613AD7;
  display: inline-block;
  animation: color-sweep 1.8s ease-out forwards
}

@keyframes color-sweep {
  0% {
    background: linear-gradient(90deg, #613AD7 0%, #613AD7 10%, #1d1d1f 10%, #1d1d1f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
  }

  100% {
    background: linear-gradient(90deg, #613AD7 0%, #613AD7 100%, #1d1d1f 100%, #1d1d1f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
  }
}

.jrnl .top-tag {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.jrnl .top-links {
  display: flex;
  gap: 16px;
  margin-top: 8px
}

.jrnl .top-links a {
  font-size: 14px;
  color: #613AD7;
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid #613AD7;
  border-radius: 7px;
  transition: background .18s ease-out, color .18s ease-out
}

.jrnl .top-links a:hover {
  background: #613AD7;
  color: #fff
}

.jrnl .posts-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px 96px
}

.jrnl .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.jrnl .post-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 3px 0 #61df940f;
  transition: transform .22s ease-out, box-shadow .22s ease-out;
  display: flex;
  flex-direction: column;
  position: relative
}

.jrnl .post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 48px 0 #613ad71a
}

.jrnl .post-card:hover .hover-fade-marker {
  opacity: 1;
  animation: fade-after-hover 1.2s ease-out .1s forwards
}

@keyframes fade-after-hover {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

.jrnl .hover-fade-marker {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  background: #61DF94;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .08s ease-out;
  pointer-events: none;
  z-index: 10
}

.jrnl .post-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 133%;
  overflow: hidden;
  background: #61df940d
}

.jrnl .post-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease-out
}

.jrnl .post-card:hover .post-img-wrap img {
  transform: scale(1.05)
}

.jrnl .post-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1
}

.jrnl .post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.jrnl .post-tag {
  font-size: 14px;
  color: #613AD7;
  background: #613ad714;
  padding: 4px 12px;
  border-radius: 40px;
  font-weight: 600
}

.jrnl .post-time {
  font-size: 14px;
  color: #6b6b6b;
  display: flex;
  align-items: center;
  gap: 6px
}

.jrnl .post-time::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236b6b6b" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>');
  background-size: contain
}

.jrnl .post-title {
  font-size: 33px;
  line-height: 1.2;
  color: #1d1d1f;
  margin: 0;
  font-weight: 700
}

.jrnl .post-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
  flex: 1
}

.jrnl .post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 2px solid #61df9426;
  margin-top: auto
}

.jrnl .post-author {
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 600
}

.jrnl .post-likes {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6b6b6b
}

.jrnl .post-likes::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2361DF94" stroke-width="2"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg>');
  background-size: contain
}

.jrnl .post-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  text-indent: -9999px;
  overflow: hidden
}

.jrnl .metrics-band {
  background: linear-gradient(271deg, #613AD7 0%, #61DF94 100%);
  padding: 56px 32px;
  margin-top: 96px;
  position: relative;
  overflow: hidden
}

.jrnl .metrics-band::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 3px solid #fff9b133;
  border-radius: 50%;
  pointer-events: none
}

.jrnl .metrics-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px
}

.jrnl .metric-item {
  text-align: center;
  color: #fff
}

.jrnl .metric-num {
  font-size: 62px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 8px;
  display: block;
  animation: count-pulse 2s ease-out infinite
}

@keyframes count-pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

.jrnl .metric-label {
  font-size: 16px;
  line-height: 1.4;
  opacity: .95;
  margin: 0
}

.jrnl .tech-zone {
  max-width: 1366px;
  margin: 96px auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start
}

.jrnl .tech-main {
  background: #fff;
  padding: 56px;
  border-radius: 24px;
  box-shadow: 0 4px 14px 0 #61df941a;
  position: relative
}

.jrnl .tech-main::before {
  content: '';
  position: absolute;
  left: 0;
  top: 56px;
  width: 4px;
  height: 80px;
  background: linear-gradient(180deg, #61DF94 0%, #613AD7 100%);
  border-radius: 0 3px 3px 0
}

.jrnl .tech-hd {
  font-size: 46px;
  line-height: 1.2;
  color: #1d1d1f;
  margin: 0 0 32px;
  font-weight: 700
}

.jrnl .tech-hd span {
  position: relative;
  display: inline-block
}

.jrnl .tech-hd span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: #fff9b199;
  z-index: -1;
  border-radius: 3px
}

.jrnl .tech-txt {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 16px
}

.jrnl .tech-side {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.jrnl .tech-card {
  background: linear-gradient(135deg, #61df940f 0%, #613ad70f 100%);
  padding: 32px;
  border-radius: 13px;
  border: 2px solid #613ad71f;
  transition: border-color .25s ease-out, transform .25s ease-out
}

.jrnl .tech-card:hover {
  border-color: #613ad74d;
  transform: translateX(4px)
}

.jrnl .tech-card-hd {
  font-size: 19px;
  line-height: 1.4;
  color: #613AD7;
  margin: 0 0 8px;
  font-weight: 700
}

.jrnl .tech-card-txt {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.jrnl .process-wrap {
  background: radial-gradient(ellipse at 50% 50%, #fff9b114 0%, #61df9408 100%);
  padding: 96px 32px;
  position: relative
}

.jrnl .process-inner {
  max-width: 1366px;
  margin: 0 auto
}

.jrnl .process-hd {
  font-size: 46px;
  line-height: 1.2;
  color: #1d1d1f;
  margin: 0 0 56px;
  text-align: center;
  font-weight: 700
}

.jrnl .process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.jrnl .step-box {
  background: #fff;
  padding: 32px;
  border-radius: 13px;
  box-shadow: 0 2px 3px 0 #613ad70f;
  position: relative;
  transition: box-shadow .3s ease-out
}

.jrnl .step-box:hover {
  box-shadow: 0 9px 48px 0 #61df941a
}

.jrnl .step-num {
  position: absolute;
  top: -16px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #61DF94 0%, #613AD7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 14px 0 #613ad71a
}

.jrnl .step-hd {
  font-size: 19px;
  line-height: 1.4;
  color: #1d1d1f;
  margin: 24px 0 16px;
  font-weight: 700
}

.jrnl .step-txt {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.jrnl .cta-band {
  max-width: 1366px;
  margin: 96px auto;
  padding: 0 32px
}

.jrnl .cta-inner {
  background: linear-gradient(271deg, #613AD7 0%, #61DF94 100%);
  padding: 56px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 9px 48px 0 #613ad71a
}

.jrnl .cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border: 4px solid #fff9b133;
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(25deg)
}

.jrnl .cta-hd {
  font-size: 46px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 700
}

.jrnl .cta-txt {
  font-size: 19px;
  line-height: 1.4;
  color: #fffffff2;
  margin: 0 0 32px
}

.jrnl .cta-btn {
  display: inline-block;
  padding: 16px 56px;
  background: #fff;
  color: #613AD7;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 40px;
  transition: transform .2s ease-out, box-shadow .2s ease-out;
  box-shadow: 0 4px 14px 0 #00000026
}

.jrnl .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 48px 0 #0003
}

@media (max-width: 1024px) {
  .jrnl .posts-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .jrnl .metrics-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .jrnl .tech-zone {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .jrnl .process-steps {
    grid-template-columns: 1fr
  }

  .jrnl .top-band {
    flex-direction: column
  }

  .jrnl .right-img {
    min-height: 300px
  }
}

@media (max-width: 768px) {
  .jrnl .posts-grid {
    grid-template-columns: 1fr
  }

  .jrnl .metrics-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .jrnl .top-hd {
    font-size: 33px
  }

  .jrnl .top-hd span:first-child {
    font-size: 46px
  }

  .jrnl .post-title {
    font-size: 19px
  }

  .jrnl .tech-main {
    padding: 32px
  }

  .jrnl .tech-hd,
  .jrnl .process-hd,
  .jrnl .cta-hd {
    font-size: 33px
  }

  .jrnl .cta-inner {
    padding: 32px
  }

  .jrnl .posts-wrap,
  .jrnl .tech-zone,
  .jrnl .cta-band {
    padding-left: 16px;
    padding-right: 16px
  }

  .jrnl .top-links {
    flex-direction: column
  }

  .jrnl .top-links a {
    text-align: center
  }
}

.svblog {
  background: #fff;
  overflow-x: clip
}

.svblog * {
  box-sizing: border-box
}

.svblog .top-intro {
  position: relative;
  background: linear-gradient(270deg, #61DF94 0%, #613AD7 100%);
  padding: 96px 32px;
  overflow: hidden
}

.svblog .top-intro::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: #fff9b126;
  border-radius: 40px;
  top: 56px;
  right: -80px;
  transform: rotate(25deg);
  pointer-events: none
}

.svblog .top-intro::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: #ffffff14;
  border-radius: 24px;
  bottom: 32px;
  left: 56px;
  transform: rotate(-15deg);
  pointer-events: none
}

.svblog .intro-hold {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.svblog .intro-hold h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px
}

.svblog .intro-hold h1 .pop {
  color: #FFF9B1;
  display: inline-block
}

.svblog .intro-hold .sub {
  font-size: 19px;
  line-height: 1.6;
  color: #ffffffeb;
  margin: 0;
  max-width: 720px
}

.svblog .posts-grid {
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 32px;
  background: #fff
}

.svblog .posts-grid h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1d1d1d;
  margin: 0 0 56px
}

.svblog .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.svblog .card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 14px 0 #61df941a;
  overflow: hidden;
  transition: transform .28s ease-out, box-shadow .35s ease-out;
  display: flex;
  flex-direction: column
}

.svblog .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 9px 48px 0 #613dd71a
}

.svblog .card .img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative
}

.svblog .card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease-out
}

.svblog .card:hover .img-wrap img {
  transform: scale(1.06)
}

.svblog .card .txt {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.svblog .card .txt h3 {
  font-size: 19px;
  line-height: 1.4;
  color: #1d1d1d;
  margin: 0 0 16px
}

.svblog .card .txt p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 32px;
  flex: 1
}

.svblog .card .txt a {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.4;
  color: #613AD7;
  text-decoration: none;
  font-weight: 600;
  transition: color .18s ease-out
}

.svblog .card .txt a::after {
  content: '';
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23613AD7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>') center/contain no-repeat;
  transition: transform .22s ease-out
}

.svblog .card .txt a:hover {
  color: #61DF94
}

.svblog .card .txt a:hover::after {
  transform: translateX(4px);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2361DF94" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>')
}

.svblog .science-zone {
  background: linear-gradient(270deg, #61df9414 0%, #fff9b11f 100%);
  padding: 96px 32px
}

.svblog .science-hold {
  max-width: 1366px;
  margin: 0 auto
}

.svblog .science-hold h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1d1d1d;
  margin: 0 0 56px
}

.svblog .sci-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.svblog .sci-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 2px 3px 0 #613dd70f;
  transition: transform .32s ease-out, box-shadow .38s ease-out;
  display: flex;
  gap: 32px;
  align-items: flex-start
}

.svblog .sci-card:hover {
  transform: translateX(8px);
  box-shadow: 0 9px 48px 0 #61df941a
}

.svblog .sci-card .sci-img {
  width: 280px;
  height: 180px;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative
}

.svblog .sci-card .sci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out
}

.svblog .sci-card:hover .sci-img img {
  transform: translateX(20px)
}

.svblog .sci-card .sci-txt {
  flex: 1;
  display: flex;
  flex-direction: column
}

.svblog .sci-card .meta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap
}

.svblog .sci-card .tag {
  display: inline-block;
  padding: 8px 16px;
  background: #61df941f;
  color: #613AD7;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 7px;
  font-weight: 600
}

.svblog .sci-card .read-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.2;
  color: #6a6a6a
}

.svblog .sci-card .read-time::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236a6a6a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>') center/contain no-repeat
}

.svblog .sci-card h3 {
  font-size: 19px;
  line-height: 1.4;
  color: #1d1d1d;
  margin: 0 0 16px
}

.svblog .sci-card .desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 16px;
  flex: 1
}

.svblog .sci-card .bottom-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 2px solid #61df9426
}

.svblog .sci-card .author {
  font-size: 14px;
  line-height: 1.4;
  color: #1d1d1d;
  font-weight: 600
}

.svblog .sci-card .likes {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.2;
  color: #6a6a6a
}

.svblog .sci-card .likes::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2361DF94" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg>') center/contain no-repeat
}

.svblog .sci-card .link-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.svblog .divider-band {
  height: 96px;
  background: linear-gradient(90deg, #613dd726 0%, transparent 100%)
}

.svblog .depth-layer {
  position: relative;
  background: #fafbfc;
  padding: 96px 32px
}

.svblog .depth-layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./digital_assets/our-media-9.jpg);
  background-size: cover;
  background-position: center;
  opacity: .08;
  pointer-events: none
}

.svblog .depth-layer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #613dd7b8 0%, #1d1d1dd9 100%);
  pointer-events: none
}

.svblog .depth-content {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.svblog .depth-left h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 32px
}

.svblog .depth-left p {
  font-size: 19px;
  line-height: 1.6;
  color: #ffffffe0;
  margin: 0 0 32px
}

.svblog .depth-left .cta-btn {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(270deg, #61DF94 0%, #613AD7 100%);
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  border-radius: 13px;
  transition: background .35s ease-out, transform .18s ease-out
}

.svblog .depth-left .cta-btn:hover {
  background: linear-gradient(90deg, #61DF94 0%, #613AD7 100%);
  transform: scale(1.04)
}

.svblog .depth-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.svblog .stat-box {
  background: #fffffff2;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 4px 14px 0 #61df941a;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: transform .28s ease-out
}

.svblog .stat-box:nth-child(odd) {
  align-self: flex-start;
  width: 85%
}

.svblog .stat-box:nth-child(even) {
  align-self: flex-end;
  width: 85%
}

.svblog .stat-box:hover {
  transform: scale(1.03)
}

.svblog .stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #61DF94 0%, #613AD7 100%);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: float 3.2s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.svblog .stat-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.svblog .stat-txt h3 {
  font-size: 33px;
  line-height: 1.2;
  color: #1d1d1d;
  margin: 0 0 8px
}

.svblog .stat-txt p {
  font-size: 16px;
  line-height: 1.4;
  color: #4a4a4a;
  margin: 0
}

.svblog .narrow-end {
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 32px;
  text-align: center
}

.svblog .narrow-end h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1d1d1d;
  margin: 0 0 32px
}

.svblog .narrow-end p {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 32px
}

.svblog .narrow-end .accent-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(270deg, #61DF94 0%, #613AD7 100%);
  margin: 0 auto 32px;
  border-radius: 3px
}

.svblog .narrow-end .final-cta {
  display: inline-block;
  padding: 16px 56px;
  background: #613AD7;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: background .32s ease-out, transform .19s ease-out, box-shadow .35s ease-out
}

.svblog .narrow-end .final-cta:hover {
  background: #61DF94;
  transform: translateY(-3px);
  box-shadow: 0 9px 48px 0 #61df941a
}

@media (max-width: 1024px) {
  .svblog .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .svblog .sci-cards {
    grid-template-columns: 1fr
  }

  .svblog .depth-content {
    grid-template-columns: 1fr;
    gap: 56px
  }

  .svblog .intro-hold h1 {
    font-size: 46px
  }

  .svblog .posts-grid h2,
  .svblog .science-hold h2,
  .svblog .depth-left h2,
  .svblog .narrow-end h2 {
    font-size: 33px
  }
}

@media (max-width: 768px) {
  .svblog .cards {
    grid-template-columns: 1fr
  }

  .svblog .sci-card {
    flex-direction: column
  }

  .svblog .sci-card .sci-img {
    width: 100%;
    height: 220px
  }

  .svblog .stat-box {
    width: 100% !important
  }

  .svblog .intro-hold h1 {
    font-size: 33px
  }

  .svblog .top-intro,
  .svblog .posts-grid,
  .svblog .science-zone,
  .svblog .depth-layer,
  .svblog .narrow-end {
    padding: 56px 16px
  }

  .svblog .depth-content {
    gap: 32px
  }

  .svblog .divider-band {
    height: 56px
  }
}

.abt-auth {
  background: linear-gradient(270deg, #61df940a, #613ad708);
  position: relative;
  overflow-x: clip
}

.abt-auth::before {
  content: '';
  position: absolute;
  top: 56px;
  right: 8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #fff9b126, transparent 65%);
  filter: blur(64px);
  pointer-events: none;
  z-index: 0
}

.abt-auth::after {
  content: '';
  position: absolute;
  bottom: 96px;
  left: 5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #61df941f, transparent 70%);
  filter: blur(72px);
  pointer-events: none;
  z-index: 0
}

.abt-auth>* {
  position: relative;
  z-index: 1
}

.opening {
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 32px 56px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start
}

.opening-txt h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #1a0d3e;
  margin: 0 0 32px;
  font-weight: 700
}

.opening-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 9px 48px 0 #613ad71a;
  transform: rotate(0deg);
  animation: img-reveal .38s ease-out forwards
}

@keyframes img-reveal {
  from {
    opacity: 0;
    transform: rotate(-2deg)
  }

  to {
    opacity: 1;
    transform: rotate(0deg)
  }
}

.opening-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(0.5px) brightness(1.02)
}

.opening-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, #613ad714);
  pointer-events: none;
  z-index: 1
}

.wave-div {
  width: 100%;
  height: 56px;
  position: relative;
  overflow: hidden
}

.wave-div svg {
  width: 100%;
  height: 100%;
  display: block
}

.bio-sect {
  background: #fff;
  position: relative;
  overflow: hidden
}

.bio-sect::before {
  content: '«';
  position: absolute;
  top: 32px;
  left: -24px;
  font-size: 420px;
  line-height: 1;
  color: #61df940f;
  font-weight: 700;
  pointer-events: none;
  z-index: 0
}

.bio-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 32px;
  position: relative;
  z-index: 1
}

.bio-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start
}

.bio-portrait {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 #61df941a;
  flex-shrink: 0
}

.bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top
}

.bio-content h2 {
  font-size: 46px;
  line-height: 1.4;
  color: #1a0d3e;
  margin: 0 0 32px;
  font-weight: 700
}

.bio-txt-block {
  margin: 0 0 32px
}

.bio-txt-block:last-child {
  margin-bottom: 0
}

.bio-txt-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0 0 16px;
  position: relative;
  padding-left: 32px
}

.bio-txt-block p:last-child {
  margin-bottom: 0
}

.bio-txt-block p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 19px;
  height: 3px;
  background: linear-gradient(270deg, #613AD7, #61DF94);
  border-radius: 3px
}

.bio-txt-block p:hover::before {
  box-shadow: 0 2px 8px 0 #613ad766;
  transition: box-shadow .27s ease-out
}

.expertise-zone {
  background: #61df9408;
  position: relative;
  overflow: hidden
}

.expertise-zone::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 2px solid #613ad714;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0
}

.expertise-zone::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  border: 2px solid #61df941f;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0
}

.expertise-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 32px;
  position: relative;
  z-index: 1
}

.expertise-head {
  text-align: center;
  margin: 0 0 56px
}

.expertise-head h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1a0d3e;
  margin: 0 0 16px;
  font-weight: 700
}

.expertise-head p {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.exp-card {
  background: #fff;
  border-radius: 13px;
  padding: 32px;
  box-shadow: 0 2px 3px 0 #613ad70f;
  transition: transform .22s ease-out, box-shadow .22s ease-out;
  position: relative;
  overflow: hidden
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(270deg, #613AD7, #61DF94);
  opacity: 0;
  transition: opacity .18s ease-out
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 48px 0 #61df941a
}

.exp-card:hover::before {
  opacity: 1
}

.exp-icon {
  width: 64px;
  height: 64px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  color: #61DF94;
  opacity: .9
}

.exp-card h3 {
  font-size: 19px;
  line-height: 1.4;
  color: #1a0d3e;
  margin: 0 0 16px;
  font-weight: 700
}

.exp-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.frosted-sect {
  position: relative;
  overflow: hidden;
  background: linear-gradient(270deg, #613ad70f, #fff9b114);
  padding: 96px 0
}

.frosted-sect::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(24px);
  z-index: 0;
  pointer-events: none
}

.frosted-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

.frosted-flex {
  display: flex;
  gap: 56px;
  align-items: center
}

.frosted-img-col {
  flex: 0 0 480px
}

.frosted-img-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 9px 48px 0 #613ad71a;
  opacity: .92
}

.frosted-txt-col {
  flex: 1
}

.frosted-txt-col h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1a0d3e;
  margin: 0 0 32px;
  font-weight: 700
}

.frosted-txt-col h2 span:first-child {
  font-size: 62px;
  display: inline-block;
  margin-right: 8px
}

.frosted-txt-col p {
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0 0 16px
}

.frosted-txt-col p:last-child {
  margin-bottom: 0
}

.approach-sect {
  background: #fff;
  padding: 96px 0;
  position: relative
}

.approach-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px
}

.approach-head {
  margin: 0 0 56px
}

.approach-head h2 {
  font-size: 46px;
  line-height: 1.4;
  color: #1a0d3e;
  margin: 0 0 16px;
  font-weight: 700
}

.approach-head p {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.approach-item {
  background: linear-gradient(270deg, #61df940a, #613ad708);
  border-radius: 13px;
  padding: 32px;
  box-shadow: 0 2px 3px 0 #61df940f;
  transition: box-shadow .25s ease-out, transform .25s ease-out
}

.approach-item:hover {
  box-shadow: 0 4px 14px 0 #613ad71a;
  transform: translateX(-4px)
}

.approach-item h3 {
  font-size: 19px;
  line-height: 1.4;
  color: #1a0d3e;
  margin: 0 0 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px
}

.approach-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #61DF94, #613AD7);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0
}

.approach-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.collab-sect {
  background: linear-gradient(270deg, #fff9b11f, #61df940f);
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.collab-sect::before {
  content: '→';
  position: absolute;
  bottom: -80px;
  right: 32px;
  font-size: 380px;
  line-height: 1;
  color: #613ad70a;
  font-weight: 700;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-12deg)
}

.collab-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

.collab-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start
}

.collab-txt h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1a0d3e;
  margin: 0 0 32px;
  font-weight: 700
}

.collab-txt p {
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0 0 16px
}

.collab-txt p:last-child {
  margin-bottom: 0
}

.collab-profile {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 14px 0 #61df941a;
  text-align: center
}

.collab-portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: 0 2px 3px 0 #613ad70f
}

.collab-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top
}

.collab-profile h3 {
  font-size: 19px;
  line-height: 1.4;
  color: #1a0d3e;
  margin: 0 0 8px;
  font-weight: 700
}

.collab-profile p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.contact-strip {
  background: linear-gradient(270deg, #613AD7, #61DF94);
  padding: 56px 0
}

.contact-strip-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center
}

.contact-strip h2 {
  font-size: 33px;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 32px;
  font-weight: 700
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #fff;
  color: #613AD7;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 3px 0 #613ad70f;
  transition: transform .12s ease-out, box-shadow .12s ease-out, background .18s ease-out
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 48px 0 #613ad71a;
  background: linear-gradient(90deg, #fff, #fff9b14d)
}

.contact-btn:active {
  transform: translateY(0)
}

@media (max-width: 1024px) {
  .opening {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 32px 32px
  }

  .opening-img-wrap {
    max-width: 480px;
    margin: 0 auto
  }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .bio-portrait {
    margin: 0 auto
  }

  .exp-cards {
    grid-template-columns: 1fr
  }

  .frosted-flex {
    flex-direction: column
  }

  .frosted-img-col {
    flex: 0 0 auto;
    width: 100%
  }

  .approach-list {
    grid-template-columns: 1fr
  }

  .collab-layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .contact-links {
    flex-direction: column;
    align-items: center
  }
}

@media (max-width: 768px) {
  .opening-txt h1 {
    font-size: 46px
  }

  .bio-content h2,
  .expertise-head h2,
  .frosted-txt-col h2,
  .approach-head h2,
  .collab-txt h2 {
    font-size: 33px
  }

  .frosted-txt-col h2 span:first-child {
    font-size: 46px
  }

  .expertise-head p,
  .approach-head p {
    font-size: 16px
  }

  .contact-strip h2 {
    font-size: 19px
  }

  .bio-inner,
  .expertise-inner,
  .approach-inner {
    padding: 56px 16px
  }

  .frosted-sect,
  .collab-sect {
    padding: 56px 0
  }

  .frosted-inner,
  .collab-inner,
  .contact-strip-inner {
    padding: 0 16px
  }

  .opening {
    padding: 56px 16px 32px
  }
}

.success-pg {
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 16px;
  background: linear-gradient(270deg, #61df9408, #613ad705)
}

.success-pg .conf-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 56px 32px;
  box-shadow: 0 4px 14px 0 #613ad71a;
  text-align: center;
  max-width: 680px;
  margin: 0 auto
}

.success-pg .check-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 32px;
  background: linear-gradient(270deg, #61DF94, #613AD7);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.success-pg .check-icon::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 48px;
  border: 5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-6px)
}

.success-pg .conf-ttl {
  font-size: 46px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 16px
}

.success-pg .conf-msg {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 32px
}

.success-pg .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 32px
}

.success-pg .info-card {
  background: #61df940f;
  border-radius: 13px;
  padding: 16px;
  text-align: left
}

.success-pg .info-lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #7a7a8e;
  margin: 0 0 8px
}

.success-pg .info-val {
  font-size: 16px;
  line-height: 1.4;
  color: #1a1a2e;
  margin: 0;
  font-weight: 600
}

.success-pg .next-steps {
  background: #fff9b126;
  border-radius: 13px;
  padding: 32px;
  margin: 0 0 32px;
  text-align: left
}

.success-pg .steps-ttl {
  font-size: 19px;
  line-height: 1.4;
  color: #1a1a2e;
  margin: 0 0 16px
}

.success-pg .steps-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.success-pg .steps-list li {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 8px;
  padding-left: 32px;
  position: relative
}

.success-pg .steps-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: linear-gradient(270deg, #61DF94, #613AD7);
  border-radius: 3px
}

.success-pg .steps-list li:last-child {
  margin-bottom: 0
}

.success-pg .btn-home {
  display: inline-block;
  background: linear-gradient(90deg, #613AD7, #61DF94);
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  padding: 16px 56px;
  border-radius: 40px;
  text-decoration: none;
  transition: transform .18s ease-out, box-shadow .22s ease-out;
  box-shadow: 0 2px 3px 0 #613ad70f
}

.success-pg .btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 48px 0 #613ad71a;
  background: linear-gradient(270deg, #613AD7, #61DF94)
}

.success-pg .contact-note {
  font-size: 14px;
  line-height: 1.6;
  color: #7a7a8e;
  margin: 32px 0 0
}

.success-pg .contact-note a {
  color: #613AD7;
  text-decoration: none;
  transition: color .15s ease-out
}

.success-pg .contact-note a:hover {
  color: #61DF94
}

@media (max-width: 768px) {
  .success-pg {
    padding: 56px 16px
  }

  .success-pg .conf-wrap {
    padding: 32px 16px
  }

  .success-pg .check-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 16px
  }

  .success-pg .check-icon::after {
    width: 22px;
    height: 38px;
    border-width: 4px
  }

  .success-pg .conf-ttl {
    font-size: 33px
  }

  .success-pg .info-grid {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .success-pg .next-steps {
    padding: 16px
  }

  .success-pg .btn-home {
    padding: 16px 32px;
    width: 100%
  }
}