@import "https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@300;400;700&display=swap";

html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: auto
}

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

html,
body {
  margin: 0
}

body {
  font-family: 'Source Serif Pro', Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column
}

:focus {
  outline: 2px solid #3D3D49;
  outline-offset: 2px;
  filter: invert(1)
}

main {
  flex: 1
}

.sitehead {
  background: linear-gradient(135deg, #f4f6fb 0%, #e8edf7 60%, #CADBFE 100%);
  border-bottom: 1.5px solid #A2B3CE;
  box-shadow: -1px 6px 18px -2px #a2b3ce1c;
  position: relative
}

.sitehead-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px
}

.sitehead-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.sitehead-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.2;
  color: #3D3D49;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  background: transparent;
  position: relative;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  min-height: 44px;
  white-space: nowrap
}

.sitehead-nav a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  border: 1.5px solid #A2B3CE;
  opacity: 0;
  transition: opacity .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none
}

.sitehead-nav a:hover {
  color: #3D3D49;
  border-color: #A2B3CE
}

.sitehead-nav a:hover::after {
  opacity: 1
}

.sitehead-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #A2B3CE;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.sitehead-nav a:hover svg {
  stroke: #3D3D49
}

.logoframe {
  border: 2px dashed #A2B3CE;
  border-radius: 2px;
  padding: 8px;
  background: #ffffffb8;
  box-shadow: -1px 1px 2px -2px #3d3d4914 -1px 6px 18px -2px #a2b3ce1c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 96px;
  flex-shrink: 0
}

.logoframe img {
  width: 64px;
  height: 80px;
  object-fit: contain;
  display: block
}

.sitefooter {
  background: linear-gradient(180deg, #eef1f8 0%, #dce4f4 100%);
  border-top: 1.5px solid #A2B3CE;
  box-shadow: -1px -6px 18px -2px #a2b3ce17
}

.sitefooter-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap
}

.footerlinks {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap
}

.footerlinks a {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .01em;
  line-height: 1.2;
  color: #3D3D49;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: color .2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .26s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap
}

.footerlinks a:hover {
  color: #3D3D49;
  border-color: #A2B3CE
}

.footerlinks-sep {
  width: 3px;
  height: 3px;
  border-radius: 42px;
  background: #A2B3CE;
  flex-shrink: 0;
  display: inline-block
}

.footercopy {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .01em;
  line-height: 1.2;
  color: #3D3D49;
  white-space: nowrap
}

@media (max-width: 768px) {
  .sitehead-inner {
    padding: 24px 16px;
    gap: 16px;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: flex-end
  }

  .sitehead-nav {
    gap: 4px
  }

  .sitehead-nav a {
    padding: 10px 12px;
    font-size: 15px
  }

  .logoframe {
    width: 64px;
    height: 80px
  }

  .logoframe img {
    width: 52px;
    height: 64px
  }

  .sitefooter-inner {
    padding: 24px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .footercopy {
    white-space: normal
  }
}

@media (max-width: 375px) {
  .sitehead-inner {
    padding: 16px;
    gap: 8px
  }

  .sitehead-nav a {
    padding: 8px;
    font-size: 15px
  }

  .sitehead-nav a span {
    display: none
  }

  .sitefooter-inner {
    padding: 16px;
    gap: 16px
  }

  .footerlinks a {
    padding: 8px
  }
}

@media (min-width: 1366px) {
  .sitehead-inner {
    padding: 32px 96px
  }

  .sitefooter-inner {
    padding: 32px 96px
  }
}

.policy-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 64px 32px
}

.policy-container h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin-bottom: 32px;
  margin-top: 0
}

.policy-container h2 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin-top: 64px;
  margin-bottom: 16px
}

.policy-container h3 {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin-top: 32px;
  margin-bottom: 16px
}

.policy-container h4 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #3D3D49;
  margin-top: 32px;
  margin-bottom: 8px
}

.policy-container h5 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #3D3D49;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase
}

.policy-container h6 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #A2B3CE;
  margin-top: 16px;
  margin-bottom: 8px
}

.policy-container p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  margin-top: 0;
  margin-bottom: 16px
}

.policy-container ul,
.policy-container ol {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px
}

.policy-container li {
  margin-bottom: 8px
}

.policy-container li:last-child {
  margin-bottom: 0
}

.policy-container ul li::marker {
  color: #A2B3CE
}

.policy-container ol li::marker {
  color: #A2B3CE;
  font-size: 15px
}

.policy-container strong,
.policy-container b {
  font-weight: 700;
  color: #3D3D49
}

.policy-container em,
.policy-container i {
  font-style: italic;
  color: #3D3D49
}

.policy-container hr {
  border: none;
  border-top: 1px solid #CADBFE;
  margin-top: 64px;
  margin-bottom: 64px
}

.policy-container table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  margin-bottom: 32px;
  box-shadow: -1px 1px 2px -2px #a2b3ce14 -1px 6px 18px -2px #a2b3ce1c;
  border-radius: 2px;
  overflow: hidden
}

.policy-container thead {
  background-color: #CADBFE
}

.policy-container thead th {
  color: #3D3D49;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 16px;
  text-align: left
}

.policy-container tbody tr {
  border-bottom: 1px solid #CADBFE;
  transition: background-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.policy-container tbody tr:last-child {
  border-bottom: none
}

.policy-container tbody tr:hover {
  background-color: #cadbfe33
}

.policy-container td {
  color: #3D3D49;
  padding: 16px;
  vertical-align: top
}

@media (max-width: 768px) {
  .policy-container {
    padding: 32px 16px
  }

  .policy-container h1 {
    font-size: 43px
  }

  .policy-container h2 {
    font-size: 31px;
    margin-top: 32px
  }

  .policy-container h3 {
    font-size: 23px
  }

  .policy-container table {
    display: block;
    overflow-x: auto
  }
}

@media (max-width: 375px) {
  .policy-container {
    padding: 16px 8px
  }

  .policy-container h1 {
    font-size: 31px
  }

  .policy-container h2 {
    font-size: 23px
  }

  .policy-container h3 {
    font-size: 15px
  }

  .policy-container hr {
    margin-top: 32px;
    margin-bottom: 32px
  }
}

.blogdet {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: clip
}

.blogdet .posthead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 96px 64px;
  position: relative;
  background: linear-gradient(337deg, #CADBFE 0%, #f5f7fa 60%)
}

.blogdet .posthead .imgcol {
  position: relative;
  border-radius: 2px;
  overflow: hidden
}

.blogdet .posthead .imgcol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid #a2b3ce66;
  border-radius: 2px
}

.blogdet .posthead .imgcol::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, #3d3d498c 0%, transparent 100%);
  pointer-events: none
}

.blogdet .posthead .imgcol .decCircle {
  position: absolute;
  border-radius: 42px;
  pointer-events: none
}

.blogdet .posthead .imgcol .decCircle.c1 {
  width: 180px;
  height: 180px;
  border: 2px solid #cadbfe2e;
  top: -40px;
  right: -40px;
  border-radius: 42px
}

.blogdet .posthead .imgcol .decCircle.c2 {
  width: 90px;
  height: 90px;
  border: 2px solid #a2b3ce26;
  bottom: 32px;
  left: -20px;
  border-radius: 42px
}

.blogdet .posthead .textcol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px
}

.blogdet .posthead .textcol .metatag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.blogdet .posthead .textcol .metatag .tagpill {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #3D3D49;
  border: 1px solid #A2B3CE;
  border-radius: 2px;
  padding: 4px 16px;
  background: transparent;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.blogdet .posthead .textcol .metatag .tagpill:hover {
  color: #A2B3CE;
  border-color: #CADBFE
}

.blogdet .posthead .textcol .metatag .readtime {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3d3d4999
}

.blogdet .posthead .textcol h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0;
  font-style: italic
}

.blogdet .posthead .textcol .subtitle {
  font-size: 23px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0
}

.blogdet .posthead .textcol .postlinks {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap
}

.blogdet .posthead .textcol .postlinks a {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #3D3D49;
  text-decoration: none;
  border: 1px solid #3D3D49;
  border-radius: 2px;
  padding: 8px 32px;
  position: relative;
  overflow: hidden;
  transition: color .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.blogdet .posthead .textcol .postlinks a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #3D3D49;
  transition: width .22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 0
}

.blogdet .posthead .textcol .postlinks a span {
  position: relative;
  z-index: 1
}

.blogdet .posthead .textcol .postlinks a:hover {
  color: #fff
}

.blogdet .posthead .textcol .postlinks a:hover::before {
  width: 100%
}

.blogdet .posthead .textcol .postlinks a:focus {
  outline: 2px solid #A2B3CE;
  outline-offset: 2px
}

.blogdet .svgdivider {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.blogdet .svgdivider svg {
  width: 100%;
  height: 48px;
  display: block
}

.blogdet .articlearea {
  padding: 64px 64px 96px;
  background: #fff
}

.blogdet .articlearea .artgrid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start
}

.blogdet .articlearea .artbody {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49
}

.blogdet .articlearea .artbody p {
  margin: 0 0 16px
}

.blogdet .articlearea .artbody h2 {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 32px 0 16px;
  font-style: italic
}

.blogdet .articlearea .artbody h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 32px 0 8px;
  font-style: italic
}

.blogdet .articlearea .artbody ol {
  padding-left: 32px;
  margin: 16px 0
}

.blogdet .articlearea .artbody li {
  margin-bottom: 8px;
  line-height: 1.7
}

.blogdet .articlearea .artbody abbr {
  text-decoration: underline dotted;
  cursor: help
}

.blogdet .articlearea .artbody table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px
}

.blogdet .articlearea .artbody table caption {
  font-size: 15px;
  color: #3d3d49b3;
  margin-bottom: 8px;
  text-align: left;
  letter-spacing: .02em
}

.blogdet .articlearea .artbody table td {
  padding: 8px 16px;
  border: 1px solid #a2b3ce59;
  vertical-align: top
}

.blogdet .articlearea .artbody table tfoot td {
  background: #cadbfe33;
  font-size: 15px;
  color: #3d3d49bf
}

.blogdet .articlearea .artbody table tr:nth-child(even) {
  background: #cadbfe1a
}

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

.blogdet .articlearea .sidebar .sidecard {
  border: 1px solid #a2b3ce66;
  border-radius: 2px;
  padding: 32px;
  box-shadow: -1px 6px 18px -2px #a2b3ce1c
}

.blogdet .articlearea .sidebar .sidecard h4 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #3D3D49;
  margin: 0 0 16px;
  font-style: italic
}

.blogdet .articlearea .sidebar .authorinfo {
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49
}

.blogdet .articlearea .sidebar .authorinfo .aname {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  display: block;
  margin-bottom: 8px
}

.blogdet .articlearea .sidebar .catlink {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.blogdet .articlearea .sidebar .catlink a {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #a2b3ce40;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.blogdet .articlearea .sidebar .catlink a:hover {
  color: #A2B3CE
}

.blogdet .articlearea .sidebar .catlink a:last-child {
  border-bottom: none
}

.blogdet .svgdivider2 {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.blogdet .svgdivider2 svg {
  width: 100%;
  height: 40px;
  display: block
}

.blogdet .comparisonblock {
  padding: 96px 64px;
  background: linear-gradient(337deg, #A2B3CE 0%, #e8edf5 100%)
}

.blogdet .comparisonblock .comptitle {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 64px;
  font-style: italic
}

.blogdet .comparisonblock .compgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.blogdet .comparisonblock .compgrid .compside {
  border-radius: 2px;
  padding: 32px;
  box-shadow: -1px 12px 60px -2px #3d3d4921
}

.blogdet .comparisonblock .compgrid .compside.before {
  background: #fff;
  border: 1px solid #a2b3ce66
}

.blogdet .comparisonblock .compgrid .compside.after {
  background: #3D3D49;
  border: 1px solid #3d3d4933;
  margin-top: 0;
  align-self: end
}

.blogdet .comparisonblock .compgrid .compside h4 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  margin: 0 0 16px;
  text-transform: uppercase
}

.blogdet .comparisonblock .compgrid .compside.before h4 {
  color: #3d3d498c
}

.blogdet .comparisonblock .compgrid .compside.after h4 {
  color: #CADBFE
}

.blogdet .comparisonblock .compgrid .compside .compitem {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.blogdet .comparisonblock .compgrid .compside .compitem p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #a2b3ce33
}

.blogdet .comparisonblock .compgrid .compside.before .compitem p {
  color: #3d3d49bf
}

.blogdet .comparisonblock .compgrid .compside.after .compitem p {
  color: #CADBFE;
  border-bottom-color: #cadbfe26
}

.blogdet .comparisonblock .compgrid .compside .compitem p:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.blogdet .metricsrow {
  padding: 64px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.blogdet .metricsrow .metricitem {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px;
  border: 1px solid #a2b3ce4d;
  border-radius: 2px;
  box-shadow: -1px 1px 2px -2px #a2b3ce14;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.blogdet .metricsrow .metricitem:hover {
  box-shadow: -1px 12px 60px -2px #a2b3ce21;
  transform: translateY(-4px)
}

.blogdet .metricsrow .metricitem .metnum {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  font-style: italic
}

.blogdet .metricsrow .metricitem .metnum strong {
  color: #A2B3CE
}

.blogdet .metricsrow .metricitem .fillbar {
  height: 2px;
  background: #a2b3ce33;
  border-radius: 2px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden
}

.blogdet .metricsrow .metricitem .fillbar .fill {
  height: 100%;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  border-radius: 2px;
  animation: fillgrow 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: left
}

@keyframes fillgrow {
  from {
    width: 0
  }

  to {
    width: var(--fw)
  }
}

.blogdet .metricsrow .metricitem .metlabel {
  font-size: 15px;
  line-height: 1.7;
  color: #3d3d49b3;
  letter-spacing: .01em
}

.blogdet .dashedblock {
  margin: 0 64px 96px;
  border: 2px dashed #A2B3CE;
  border-radius: 2px;
  padding: 32px;
  background: #cadbfe14
}

.blogdet .dashedblock h4 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px;
  font-style: italic
}

.blogdet .dashedblock p {
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49;
  margin: 0 0 16px
}

.blogdet .dashedblock p:last-child {
  margin: 0
}

.blogdet .dashedblock .tagsinline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px
}

.blogdet .dashedblock .tagsinline span {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #3D3D49;
  padding: 4px 16px;
  border: 1px solid #a2b3ce80;
  border-radius: 2px;
  background: #cadbfe26
}

.blogdet .dashedblock .tagsinline span::before {
  content: "# ";
  color: #A2B3CE
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-48px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(48px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.blogdet .posthead {
  animation: slideInLeft .32s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.blogdet .articlearea {
  animation: slideInRight .32s cubic-bezier(0.34, 1.56, 0.64, 1) .08s both
}

.blogdet .comparisonblock {
  animation: slideInLeft .32s cubic-bezier(0.34, 1.56, 0.64, 1) .12s both
}

.blogdet .metricsrow {
  animation: slideInRight .32s cubic-bezier(0.34, 1.56, 0.64, 1) .16s both
}

@media (max-width: 1366px) {
  .blogdet .posthead {
    padding: 64px 32px;
    gap: 32px
  }

  .blogdet .articlearea {
    padding: 64px 32px
  }

  .blogdet .comparisonblock {
    padding: 64px 32px
  }

  .blogdet .metricsrow {
    padding: 64px 32px
  }

  .blogdet .dashedblock {
    margin: 0 32px 64px
  }
}

@media (max-width: 768px) {
  .blogdet .posthead {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 32px
  }

  .blogdet .posthead .imgcol {
    display: none
  }

  .blogdet .posthead .textcol h1 {
    font-size: 43px
  }

  .blogdet .articlearea {
    padding: 32px 16px
  }

  .blogdet .articlearea .artgrid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .blogdet .articlearea .sidebar {
    position: static
  }

  .blogdet .comparisonblock {
    padding: 32px 16px
  }

  .blogdet .comparisonblock .compgrid {
    grid-template-columns: 1fr
  }

  .blogdet .comparisonblock .comptitle {
    font-size: 31px;
    margin-bottom: 32px
  }

  .blogdet .metricsrow {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 16px
  }

  .blogdet .dashedblock {
    margin: 0 16px 32px
  }
}

@media (max-width: 375px) {
  .blogdet .posthead .textcol h1 {
    font-size: 31px
  }

  .blogdet .posthead .textcol .subtitle {
    font-size: 15px
  }

  .blogdet .posthead .textcol .postlinks {
    flex-direction: column;
    gap: 16px
  }

  .blogdet .comparisonblock .comptitle {
    font-size: 23px
  }
}

.jrnldet {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  overflow-x: clip
}

.jrnldet .titblock {
  padding: 96px 64px 64px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 64px
}

.jrnldet .titblock .decgeo {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  pointer-events: none;
  overflow: hidden
}

.jrnldet .titblock .decgeo svg {
  width: 100%;
  height: 100%;
  opacity: .07
}

.jrnldet .titblock .textzone {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.jrnldet .titblock .textzone .arttag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #3D3D49;
  font-weight: 600;
  text-transform: uppercase
}

.jrnldet .titblock .textzone .arttag .tagdot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #A2B3CE;
  display: inline-block
}

.jrnldet .titblock .textzone h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0;
  font-style: italic
}

.jrnldet .titblock .textzone .subtitle {
  font-size: 23px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0;
  opacity: .75
}

.jrnldet .titblock .textzone .metarow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.jrnldet .titblock .textzone .metarow .likecount {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  color: #3D3D49;
  letter-spacing: .01em
}

.jrnldet .titblock .textzone .metarow .likecount svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.jrnldet .titblock .textzone .metarow .catbadge {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #A2B3CE;
  font-weight: 600;
  padding: 4px 16px;
  border: 1.5px solid #A2B3CE;
  border-radius: 42px;
  background: transparent;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), background .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.jrnldet .titblock .textzone .metarow .catbadge:hover {
  color: #3D3D49;
  background: #CADBFE
}

.jrnldet .titblock .textzone .metarow .printbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  background: transparent;
  border: 1.5px solid #3D3D49;
  border-radius: 2px;
  padding: 4px 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.jrnldet .titblock .textzone .metarow .printbtn::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #A2B3CE;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.jrnldet .titblock .textzone .metarow .printbtn:hover::before {
  transform: scaleX(1)
}

.jrnldet .titblock .textzone .metarow .printbtn:hover {
  color: #A2B3CE
}

.jrnldet .titblock .textzone .metarow .printbtn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.jrnldet .titblock .imgcard {
  flex: 0 0 320px;
  width: 320px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  box-shadow: -1px 6px 18px -2px #a2b3ce1c -1px 12px 60px -2px #a2b3ce21;
  border: 1.5px solid #CADBFE
}

.jrnldet .titblock .imgcard img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: sepia(0.3) hue-rotate(0deg) saturate(0.8)
}

.jrnldet .titblock .imgcard .duotonelay {
  position: absolute;
  inset: 0;
  background: linear-gradient(337deg, #a2b3ce47 0%, #cadbfe2e 100%);
  pointer-events: none
}

.jrnldet .divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 0
}

.jrnldet .divider span {
  width: 7px;
  height: 7px;
  border-radius: 42px;
  background: #A2B3CE;
  display: inline-block;
  animation: softpulse 2.4s ease-in infinite
}

.jrnldet .divider span:nth-child(2) {
  animation-delay: .4s;
  background: #CADBFE
}

.jrnldet .divider span:nth-child(3) {
  animation-delay: .8s
}

@keyframes softpulse {

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

  50% {
    transform: scale(1.02)
  }
}

.jrnldet .artbody {
  padding: 64px 64px 96px;
  background: linear-gradient(337deg, #a2b3ce14 0%, #cadbfe0f 100%);
  position: relative
}

.jrnldet .artbody .concircles {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  pointer-events: none;
  overflow: hidden
}

.jrnldet .artbody .concircles svg {
  width: 100%;
  height: 100%;
  opacity: .06
}

.jrnldet .artbody .editcol {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.jrnldet .artbody .editcol p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px
}

.jrnldet .artbody .editcol h2 {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 32px 0 16px;
  font-style: italic
}

.jrnldet .artbody .editcol h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 32px 0 8px;
  font-style: italic
}

.jrnldet .artbody .editcol em {
  color: #A2B3CE;
  font-style: normal;
  font-weight: 700
}

.jrnldet .artbody .editcol ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 16px
}

.jrnldet .artbody .editcol ul li {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  position: relative;
  padding-left: 16px
}

.jrnldet .artbody .editcol ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #A2B3CE
}

.jrnldet .artbody .editcol details {
  border: 1.5px solid #CADBFE;
  border-radius: 2px;
  margin: 16px 0;
  padding: 0;
  overflow: hidden;
  box-shadow: -1px 1px 2px -2px #3d3d4914
}

.jrnldet .artbody .editcol details summary {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  font-weight: 600;
  padding: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.jrnldet .artbody .editcol details summary:hover {
  color: #A2B3CE
}

.jrnldet .artbody .editcol details summary::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #A2B3CE;
  border-bottom: 2px solid #A2B3CE;
  transform: rotate(45deg);
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0
}

.jrnldet .artbody .editcol details[open] summary::after {
  transform: rotate(-135deg)
}

.jrnldet .artbody .editcol details> :not(summary) {
  padding: 0 16px 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49
}

@media (max-width: 768px) {
  .jrnldet .titblock {
    flex-direction: column;
    padding: 64px 32px 32px;
    gap: 32px
  }

  .jrnldet .titblock .imgcard {
    display: none
  }

  .jrnldet .titblock .textzone h1 {
    font-size: 43px
  }

  .jrnldet .artbody {
    padding: 32px 32px 64px
  }
}

@media (max-width: 375px) {
  .jrnldet .titblock {
    padding: 32px 16px 16px
  }

  .jrnldet .titblock .textzone h1 {
    font-size: 31px
  }

  .jrnldet .titblock .textzone .subtitle {
    font-size: 15px
  }

  .jrnldet .artbody {
    padding: 16px 16px 64px
  }
}

.blg {
  max-width: 100%;
  overflow-x: hidden
}

.blg .pgwrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px
}

.blg .titlesplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  position: relative
}

.blg .titlesplit .leftzone {
  background: #3D3D49;
  padding: 96px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden
}

.blg .titlesplit .leftzone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE)
}

.blg .titlesplit .rightzone {
  background: #CADBFE;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end
}

.blg .titlesplit .rightzone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.95);
  display: block;
  border: 1px solid #a2b3ce4d
}

.blg .pghead {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  font-style: italic;
  margin: 0 0 8px
}

.blg .pghead span {
  color: #CADBFE;
  font-weight: 700
}

.blg .pgsubline {
  font-size: 15px;
  line-height: 1.7;
  color: #A2B3CE;
  margin: 0;
  letter-spacing: .02em
}

.blg .postsgrid {
  padding: 64px 0;
  background: #fff;
  position: relative
}

.blg .postsgrid::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #A2B3CE 30%, #CADBFE 100%)
}

.blg .gridlabel {
  font-size: 15px;
  letter-spacing: .02em;
  color: #3D3D49;
  text-transform: uppercase;
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 16px
}

.blg .gridlabel::after {
  content: '';
  flex: 0 0 120px;
  height: 1px;
  background: #A2B3CE
}

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

.blg .cards .card {
  border: 1px solid #a2b3ce40;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -1px 1px 2px -2px #3d3d4914 -1px 6px 18px -2px #3d3d491c;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.blg .cards .card:hover {
  box-shadow: -1px 12px 60px -2px #3d3d4921;
  transform: translateY(-4px)
}

.blg .cards .card.accent {
  grid-column: span 2;
  grid-row: span 2
}

.blg .cards .card .imgbox {
  position: relative;
  overflow: hidden
}

.blg .cards .card .imgbox img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #a2b3ce33;
  transition: filter .3s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.blg .cards .card.accent .imgbox img {
  height: 340px
}

.blg .cards .card:hover .imgbox img {
  filter: saturate(1.15)
}

.blg .cards .card .cardbd {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px
}

.blg .cards .card .tagrow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.blg .cards .card .atag {
  font-size: 15px;
  color: #3D3D49;
  background: #CADBFE;
  border-radius: 2px;
  padding: 4px 8px;
  letter-spacing: .02em;
  line-height: 1.2
}

.blg .cards .card .cattag {
  font-size: 15px;
  color: #A2B3CE;
  letter-spacing: .02em;
  line-height: 1.2
}

.blg .cards .card .cardtitle {
  font-size: 23px;
  line-height: 1.2;
  color: #3D3D49;
  font-style: italic;
  margin: 0;
  letter-spacing: .01em
}

.blg .cards .card.accent .cardtitle {
  font-size: 31px
}

.blg .cards .card .cardsub {
  font-size: 15px;
  color: #3D3D49;
  line-height: 1.7;
  margin: 0;
  opacity: .75
}

.blg .cards .card .carddesc {
  font-size: 15px;
  color: #3D3D49;
  line-height: 1.7;
  margin: 0;
  flex: 1
}

.blg .cards .card .cardmeta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #A2B3CE;
  letter-spacing: .01em;
  margin-top: 8px
}

.blg .cards .card .cardmeta .sep {
  color: #CADBFE;
  font-weight: 700
}

.blg .cards .card .readlink {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  color: #3D3D49;
  text-decoration: none;
  border: 1px solid #3D3D49;
  border-radius: 2px;
  padding: 8px 16px;
  letter-spacing: .02em;
  position: relative;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent;
  overflow: hidden
}

.blg .cards .card .readlink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.blg .cards .card .readlink:hover::before {
  transform: scaleX(1)
}

.blg .cards .card .readlink:hover {
  color: #3D3D49 !important
}

.blg .cards .card .readlink span {
  position: relative;
  z-index: 1
}

.blg .journalstrip {
  padding: 64px 0;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  position: relative
}

.blg .journalstrip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  animation: desat 8s ease-in-out infinite alternate;
  z-index: 0
}

@keyframes desat {
  0% {
    filter: saturate(1)
  }

  50% {
    filter: saturate(0.3)
  }

  100% {
    filter: saturate(1)
  }
}

.blg .journalstrip>* {
  position: relative;
  z-index: 1
}

.blg .journalstrip .pgwrap {
  position: relative;
  z-index: 1
}

.blg .jlabel {
  font-size: 23px;
  font-style: italic;
  color: #3D3D49;
  margin: 0 0 32px;
  letter-spacing: .01em;
  line-height: 1.2
}

.blg .jlabel strong {
  font-weight: 700;
  color: #3D3D49
}

.blg .jlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.blg .jcard {
  background: #ffffffd1;
  border-radius: 2px;
  border: 1px solid #3d3d491f;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(4px);
  transition: backdrop-filter .28s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: -1px 1px 2px -2px #3d3d4914
}

.blg .jcard:hover {
  backdrop-filter: blur(12px);
  box-shadow: -1px 6px 18px -2px #3d3d491c
}

.blg .jcard .jtags {
  display: flex;
  align-items: center;
  gap: 8px
}

.blg .jcard .jtag {
  font-size: 15px;
  color: #3D3D49;
  background: #CADBFE;
  border-radius: 2px;
  padding: 4px 8px;
  line-height: 1.2
}

.blg .jcard .jcattag {
  font-size: 15px;
  color: #3D3D49;
  opacity: .65;
  line-height: 1.2
}

.blg .jcard .jtitle {
  font-size: 23px;
  line-height: 1.2;
  color: #3D3D49;
  font-style: italic;
  margin: 0;
  letter-spacing: .01em
}

.blg .jcard .jsub {
  font-size: 15px;
  color: #3D3D49;
  line-height: 1.7;
  margin: 0;
  opacity: .75
}

.blg .jcard .jdesc {
  font-size: 15px;
  color: #3D3D49;
  line-height: 1.7;
  margin: 0;
  flex: 1
}

.blg .jcard .jfooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px
}

.blg .jcard .jlikes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #3D3D49
}

.blg .jcard .jlikes svg {
  width: 16px;
  height: 16px;
  fill: #A2B3CE
}

.blg .jcard .jreadlink {
  font-size: 15px;
  color: #3D3D49;
  text-decoration: none;
  border: 1px solid #3D3D49;
  border-radius: 2px;
  padding: 4px 16px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent
}

.blg .jcard .jreadlink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #3D3D49;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.blg .jcard .jreadlink:hover::before {
  transform: scaleX(1)
}

.blg .jcard .jreadlink:hover {
  color: #CADBFE
}

.blg .jcard .jreadlink span {
  position: relative;
  z-index: 1
}

.blg .aboutband {
  padding: 64px 0;
  background: #3D3D49;
  position: relative
}

.blg .aboutband::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE)
}

.blg .aboutinner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center
}

.blg .aboutleft .alabel {
  font-size: 15px;
  color: #A2B3CE;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 16px
}

.blg .aboutleft .ahead {
  font-size: 43px;
  line-height: 1.2;
  color: #fff;
  font-style: italic;
  margin: 0;
  letter-spacing: .01em
}

.blg .aboutleft .ahead strong {
  color: #CADBFE
}

.blg .aboutright .abody {
  font-size: 15px;
  line-height: 1.7;
  color: #A2B3CE;
  margin: 0 0 16px
}

.blg .aboutright .abody:last-child {
  margin-bottom: 0
}

.blg .aboutright .abody strong {
  color: #CADBFE;
  font-weight: 700
}

.blg .aboutright .alink {
  display: inline-block;
  margin-top: 16px;
  font-size: 15px;
  color: #CADBFE;
  text-decoration: none;
  border: 1px solid #CADBFE;
  border-radius: 2px;
  padding: 8px 32px;
  position: relative;
  overflow: hidden;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent
}

.blg .aboutright .alink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.blg .aboutright .alink:hover::before {
  transform: scaleX(1)
}

.blg .aboutright .alink:hover {
  color: #3D3D49
}

.blg .aboutright .alink span {
  position: relative;
  z-index: 1
}

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

  .blg .cards .card.accent {
    grid-column: span 2;
    grid-row: span 1
  }

  .blg .titlesplit .leftzone {
    padding: 64px 32px 32px
  }

  .blg .pghead {
    font-size: 43px
  }
}

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

  .blg .titlesplit .rightzone {
    display: none
  }

  .blg .titlesplit .leftzone {
    padding: 64px 16px 32px
  }

  .blg .pghead {
    font-size: 31px
  }

  .blg .pgwrap {
    padding: 0 16px
  }

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

  .blg .cards .card.accent {
    grid-column: span 1
  }

  .blg .jlist {
    grid-template-columns: 1fr
  }

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

  .blg .ahead {
    font-size: 31px
  }
}

@media (max-width: 375px) {
  .blg .pghead {
    font-size: 23px
  }

  .blg .cards .card .cardtitle {
    font-size: 15px
  }

  .blg .cards .card.accent .cardtitle {
    font-size: 23px
  }

  .blg .jcard .jtitle {
    font-size: 15px
  }
}

.abtauth {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden
}

.abtauth .grad-band {
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  background-size: 300% 300%;
  animation: gradshift 8s ease-in infinite alternate;
  padding: 96px 32px;
  position: relative
}

@keyframes gradshift {
  0% {
    background-position: 0 50%
  }

  100% {
    background-position: 100% 50%
  }
}

.abtauth .grad-band .gbinner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px
}

.abtauth .grad-band .gbtext {
  flex: 1 1 0;
  min-width: 0
}

.abtauth .grad-band .gbtext h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px;
  font-style: italic
}

.abtauth .grad-band .gbtext h1 span {
  font-weight: 900;
  color: #3D3D49
}

.abtauth .grad-band .gbtext .subline {
  font-size: 23px;
  line-height: 1.7;
  color: #3D3D49;
  margin: 0 0 32px;
  letter-spacing: .01em
}

.abtauth .grad-band .gbtext .subline strong {
  font-weight: 700;
  color: #3D3D49
}

.abtauth .grad-band .gbshapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden
}

.abtauth .grad-band .gbshapes .shape1 {
  position: absolute;
  top: -40px;
  right: 200px;
  width: 220px;
  height: 220px;
  border-radius: 42px;
  border: 2px solid #3d3d491f;
  transform: rotate(18deg)
}

.abtauth .grad-band .gbshapes .shape2 {
  position: absolute;
  bottom: -60px;
  right: 80px;
  width: 320px;
  height: 320px;
  border-radius: 42px;
  border: 2px solid #3d3d4914;
  transform: rotate(-12deg)
}

.abtauth .grad-band .gbshapes .shape3 {
  position: absolute;
  top: 30px;
  left: 40%;
  width: 120px;
  height: 120px;
  border-radius: 2px;
  border: 2px solid #3d3d4912;
  transform: rotate(7deg)
}

.abtauth .grad-band .gbimg {
  flex: 0 0 340px;
  width: 340px;
  height: 400px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: -1px 6px 18px -2px #3d3d491c;
  border: 1.5px solid #3d3d492e;
  position: relative;
  z-index: 1
}

.abtauth .grad-band .gbimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  display: block
}

.abtauth .grad-band .gbimg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, transparent 40%, #3d3d4973 100%);
  pointer-events: none
}

.abtauth .linedeco {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px
}

.abtauth .linedeco span {
  display: block;
  height: 2px;
  background: #3d3d4940;
  border-radius: 2px
}

.abtauth .linedeco span:nth-child(1) {
  width: 48px
}

.abtauth .linedeco span:nth-child(2) {
  width: 32px
}

.abtauth .linedeco span:nth-child(3) {
  width: 20px
}

.abtauth .zigdiv {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.abtauth .zigdiv svg {
  display: block;
  width: 100%
}

.abtauth .profiledet {
  background: #fff;
  padding: 96px 32px
}

.abtauth .profiledet .pdinner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.abtauth .profiledet .pdleft h2 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px;
  font-style: italic
}

.abtauth .profiledet .pdleft .bio {
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49;
  letter-spacing: .01em;
  margin: 0 0 16px
}

.abtauth .profiledet .pdleft .bio strong {
  font-weight: 700;
  color: #A2B3CE
}

.abtauth .profiledet .pdright h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 32px;
  font-style: italic
}

.abtauth .statgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px
}

.abtauth .statcard {
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  border-radius: 2px;
  padding: 32px 16px 16px;
  box-shadow: -1px 1px 2px -2px #3d3d4914 -1px 6px 18px -2px #3d3d491c;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default
}

.abtauth .statcard:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: -1px 12px 60px -2px #3d3d4921
}

.abtauth .statcard .statnum {
  font-size: 43px;
  font-weight: 900;
  line-height: 1.2;
  color: #3D3D49;
  letter-spacing: .01em;
  display: block
}

.abtauth .statcard .statlabel {
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49;
  letter-spacing: .01em;
  display: block;
  margin-top: 4px
}

.abtauth .profiledet .imgframe {
  width: 100%;
  height: 280px;
  border-radius: 2px;
  overflow: hidden;
  border: 1.5px solid #a2b3ce66;
  box-shadow: -1px 6px 18px -2px #a2b3ce1c;
  position: relative
}

.abtauth .profiledet .imgframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.abtauth .profiledet .imgframe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 70%, transparent 40%, #3d3d4959 100%);
  pointer-events: none
}

.abtauth .zigdiv2 {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.abtauth .zigdiv2 svg {
  display: block;
  width: 100%
}

.abtauth .approach {
  background: #3D3D49;
  padding: 96px 32px 64px;
  position: relative
}

.abtauth .approach .apinner {
  max-width: 1500px;
  margin: 0 auto
}

.abtauth .approach .cornerdeco {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none
}

.abtauth .approach .cornerdeco span {
  display: block;
  height: 2px;
  background: #cadbfe40;
  border-radius: 2px
}

.abtauth .approach .cornerdeco span:nth-child(1) {
  width: 56px
}

.abtauth .approach .cornerdeco span:nth-child(2) {
  width: 40px
}

.abtauth .approach .cornerdeco span:nth-child(3) {
  width: 24px
}

.abtauth .approach h2 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #CADBFE;
  margin: 0 0 8px;
  font-style: italic
}

.abtauth .approach .apdesc {
  font-size: 15px;
  line-height: 1.7;
  color: #A2B3CE;
  letter-spacing: .01em;
  margin: 0 0 64px;
  max-width: 600px
}

.abtauth .steplist {
  display: flex;
  flex-direction: column;
  gap: 0
}

.abtauth .stepitem {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid #a2b3ce26;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abtauth .stepitem:last-child {
  border-bottom: 1px solid #a2b3ce26
}

.abtauth .stepitem .stepnum {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #cadbfe2e;
  transition: color .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none
}

.abtauth .stepitem:hover .stepnum {
  color: #cadbfe8c
}

.abtauth .stepitem .stepbody h4 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #CADBFE;
  margin: 0 0 8px;
  font-style: italic
}

.abtauth .stepitem .stepbody p {
  font-size: 15px;
  line-height: 1.7;
  color: #A2B3CE;
  letter-spacing: .01em;
  margin: 0
}

.abtauth .stepitem .stepbody p strong {
  font-weight: 700;
  color: #CADBFE
}

.abtauth .stepitem .stepcheck {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px
}

.abtauth .checkmark {
  width: 22px;
  height: 22px;
  flex-shrink: 0
}

.abtauth .stepitem .imgthumb {
  width: 220px;
  height: 160px;
  border-radius: 2px;
  overflow: hidden;
  border: 1.5px solid #a2b3ce33;
  box-shadow: -1px 6px 18px -2px #3d3d4921;
  position: relative;
  flex-shrink: 0
}

.abtauth .stepitem .imgthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.abtauth .stepitem .imgthumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, transparent 35%, #3d3d4980 100%);
  pointer-events: none
}

.abtauth .stepitem .stepwrap {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: start
}

@media (max-width: 1366px) {
  .abtauth .grad-band .gbimg {
    flex: 0 0 260px;
    width: 260px;
    height: 320px
  }

  .abtauth .grad-band .gbtext h1 {
    font-size: 43px
  }

  .abtauth .profiledet .pdinner {
    gap: 32px
  }

  .abtauth .stepitem {
    grid-template-columns: 64px 1fr auto;
    gap: 16px
  }

  .abtauth .stepitem .imgthumb {
    width: 160px;
    height: 120px
  }
}

@media (max-width: 768px) {
  .abtauth .grad-band {
    padding: 64px 16px
  }

  .abtauth .grad-band .gbinner {
    flex-direction: column;
    gap: 32px
  }

  .abtauth .grad-band .gbimg {
    display: none
  }

  .abtauth .grad-band .gbtext h1 {
    font-size: 43px
  }

  .abtauth .profiledet {
    padding: 64px 16px
  }

  .abtauth .profiledet .pdinner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .abtauth .profiledet .imgframe {
    display: none
  }

  .abtauth .statgrid {
    grid-template-columns: 1fr 1fr
  }

  .abtauth .approach {
    padding: 64px 16px 48px
  }

  .abtauth .stepitem {
    grid-template-columns: 48px 1fr;
    gap: 16px
  }

  .abtauth .stepitem .stepcheck {
    display: none
  }

  .abtauth .stepitem .imgthumb {
    display: none
  }

  .abtauth .stepitem .stepwrap {
    flex-direction: column
  }
}

@media (max-width: 375px) {
  .abtauth .grad-band .gbtext h1 {
    font-size: 31px
  }

  .abtauth .approach h2 {
    font-size: 31px
  }

  .abtauth .profiledet .pdleft h2 {
    font-size: 31px
  }

  .abtauth .statgrid {
    grid-template-columns: 1fr
  }

  .abtauth .stepitem {
    grid-template-columns: 40px 1fr;
    gap: 8px
  }

  .abtauth .stepitem .stepnum {
    font-size: 43px
  }
}

.abtauth .apbtn {
  display: inline-block;
  margin-top: 48px;
  padding: 16px 32px;
  border: 2px solid #CADBFE;
  border-radius: 2px;
  color: #CADBFE;
  font-size: 15px;
  letter-spacing: .02em;
  text-decoration: none;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abtauth .apbtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #CADBFE;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.abtauth .apbtn:hover::before {
  transform: scaleX(1)
}

.abtauth .apbtn:hover {
  color: #3D3D49
}

.abtauth .apbtn span {
  position: relative;
  z-index: 1
}

.prtl {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: clip
}

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

.prtl .imgframe {
  border: 1px solid #a2b3ce59;
  border-radius: 2px;
  overflow: hidden
}

.prtl .tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #3D3D49;
  background: #CADBFE;
  border-radius: 2px;
  padding: 4px 8px;
  font-weight: 600
}

.prtl .titlewrap {
  padding: 64px 64px 0;
  position: relative
}

.prtl .titlegeo {
  position: absolute;
  top: 32px;
  right: 96px;
  width: 120px;
  height: 120px;
  border: 2px dashed #a2b3ce66;
  border-radius: 2px;
  opacity: .5;
  pointer-events: none
}

.prtl .titlegeo2 {
  position: absolute;
  top: 64px;
  right: 128px;
  width: 60px;
  height: 60px;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  border-radius: 2px;
  opacity: .18;
  pointer-events: none
}

.prtl .titleimgzone {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 32px 0 0
}

.prtl .titleimgzone img {
  width: 640px;
  height: 340px;
  object-fit: cover;
  border-radius: 2px;
  image-rendering: auto;
  filter: contrast(1.06) saturate(1.08) brightness(1.02)
}

.prtl .titletextzone {
  text-align: center;
  padding: 32px 96px 64px
}

.prtl .titletextzone h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px;
  font-style: italic
}

.prtl .titletextzone h1 .grad {
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.prtl .titletextzone p {
  font-size: 23px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  max-width: 680px;
  margin: 0 auto
}

.prtl .titleanimate {
  animation: slideup .28s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

@keyframes slideup {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.prtl .divsvg {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.prtl .aboutband {
  background: linear-gradient(337deg, #A2B3CE 0%, #CADBFE 100%);
  padding: 64px;
  position: relative;
  overflow: hidden
}

.prtl .aboutband::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: #3d3d490f;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  pointer-events: none
}

.prtl .aboutinner {
  max-width: 780px
}

.prtl .aboutinner h2 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px;
  font-style: italic
}

.prtl .aboutinner p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px
}

.prtl .aboutinner p:last-child {
  margin-bottom: 0
}

.prtl .metricsrow {
  display: flex;
  flex-direction: row;
  gap: 0;
  background: #3D3D49;
  padding: 0
}

.prtl .metricitem {
  flex: 1;
  padding: 32px;
  border-right: 1px solid #cadbfe26;
  text-align: center
}

.prtl .metricitem:last-child {
  border-right: none
}

.prtl .metricnum {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #CADBFE;
  font-weight: 700;
  display: block
}

.prtl .metriclabel {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .02em;
  color: #A2B3CE;
  display: block;
  margin-top: 4px
}

.prtl .milestones {
  padding: 64px;
  background: #fff
}

.prtl .milestones h2 {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 32px;
  font-style: italic
}

.prtl .mtrack {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  position: relative
}

.prtl .mtrack::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE)
}

.prtl .mstep {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1
}

.prtl .micon {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: #CADBFE;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 1px 2px -2px #3d3d4914 -1px 6px 18px -2px #3d3d491c
}

.prtl .micon svg {
  width: 20px;
  height: 20px
}

.prtl .mdate {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #A2B3CE;
  font-weight: 700
}

.prtl .mdesc {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  text-align: center;
  max-width: 140px
}

.prtl .postslisting {
  padding: 64px;
  background: #f5f7fc
}

.prtl .postslisting h2 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 32px;
  font-style: italic
}

.prtl .postgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.prtl .postcard {
  background: #fff;
  border-radius: 2px;
  box-shadow: -1px 1px 2px -2px #3d3d4914 -1px 6px 18px -2px #3d3d491c;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .postcard:hover {
  box-shadow: -1px 12px 60px -2px #3d3d4921
}

.prtl .postcard img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #a2b3ce40
}

.prtl .postcardtext {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.prtl .postcardtext .tag {
  align-self: flex-start
}

.prtl .postcardtext h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0;
  font-style: italic
}

.prtl .postcardtext .subtitle {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  opacity: .75;
  margin: 0
}

.prtl .postcardtext p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0
}

.prtl .postmeta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 8px
}

.prtl .postmeta .author {
  font-size: 15px;
  letter-spacing: .01em;
  color: #A2B3CE;
  font-weight: 600
}

.prtl .postmeta .readtime {
  font-size: 15px;
  letter-spacing: .01em;
  color: #A2B3CE
}

.prtl .readbtn {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  border: 1.5px solid #3D3D49;
  border-radius: 2px;
  font-size: 15px;
  letter-spacing: .02em;
  color: #3D3D49;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  align-self: flex-start
}

.prtl .readbtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #3D3D49;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.prtl .readbtn span {
  position: relative;
  z-index: 1;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .readbtn:hover::before {
  transform: scaleX(1)
}

.prtl .readbtn:hover span {
  color: #CADBFE
}

.prtl .journalblock {
  padding: 64px;
  background: #3D3D49
}

.prtl .journalblock h2 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #CADBFE;
  margin: 0 0 8px;
  font-style: italic
}

.prtl .journalblock .jdesc {
  font-size: 15px;
  line-height: 1.7;
  color: #A2B3CE;
  margin: 0 0 32px;
  max-width: 560px
}

.prtl .jlist {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.prtl .jitem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  background: #cadbfe12;
  border-radius: 2px;
  padding: 32px;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .jitem:hover {
  background: #cadbfe21
}

.prtl .jitemtext {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.prtl .jitemtext h4 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #CADBFE;
  margin: 0;
  font-style: italic
}

.prtl .jitemtext .jsub {
  font-size: 15px;
  line-height: 1.7;
  color: #A2B3CE;
  margin: 0
}

.prtl .jitemtext p {
  font-size: 15px;
  line-height: 1.7;
  color: #cadbfecc;
  margin: 0
}

.prtl .jlikerow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.prtl .jlikerow .likecount {
  font-size: 15px;
  color: #A2B3CE;
  font-weight: 600
}

.prtl .jreadbtn {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid #CADBFE;
  border-radius: 2px;
  font-size: 15px;
  letter-spacing: .02em;
  color: #CADBFE;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  align-self: center;
  flex-shrink: 0
}

.prtl .jreadbtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #CADBFE;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.prtl .jreadbtn span {
  position: relative;
  z-index: 1;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .jreadbtn:hover::before {
  transform: scaleX(1)
}

.prtl .jreadbtn:hover span {
  color: #3D3D49
}

.prtl .sitenav {
  padding: 64px;
  background: #fff
}

.prtl .sitenav h2 {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 32px;
  font-style: italic
}

.prtl .navgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.prtl .navcard {
  border: 1.5px solid #a2b3ce59;
  border-radius: 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.prtl .navcard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .navcard:hover {
  border-color: #A2B3CE;
  box-shadow: -1px 6px 18px -2px #a2b3ce1c
}

.prtl .navcard:hover::after {
  transform: scaleX(1)
}

.prtl .navcard h4 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0;
  font-style: italic;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .navcard:hover h4 {
  color: #A2B3CE
}

.prtl .navcard p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0
}

.prtl .navcardicon {
  width: 36px;
  height: 36px;
  margin-bottom: 4px
}

.prtl .subblock {
  padding: 64px;
  background: linear-gradient(337deg, #A2B3CE 0%, #CADBFE 100%);
  position: relative;
  overflow: hidden
}

.prtl .subblock::after {
  content: '';
  position: absolute;
  right: -32px;
  top: -32px;
  width: 200px;
  height: 200px;
  border: 2px dashed #3d3d4933;
  border-radius: 2px;
  pointer-events: none
}

.prtl .subinner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px
}

.prtl .subtext {
  flex: 1
}

.prtl .subtext h2 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px;
  font-style: italic
}

.prtl .subtext p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0
}

.prtl .subform {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.prtl .subform label {
  font-size: 15px;
  letter-spacing: .01em;
  color: #3D3D49;
  font-weight: 600
}

.prtl .subform input[type="email"] {
  padding: 8px 16px;
  border: 1.5px solid #3d3d494d;
  border-radius: 2px;
  font-size: 15px;
  letter-spacing: .01em;
  color: #3D3D49;
  background: #ffffffb3;
  box-shadow: inset 0 1px 4px #3d3d4914;
  transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none
}

.prtl .subform input[type="email"]:focus {
  border-color: #3D3D49
}

.prtl .subform input[type="email"]::placeholder {
  color: #3d3d4973
}

.prtl .subbtn {
  padding: 8px 32px;
  border: 1.5px solid #3D3D49;
  border-radius: 2px;
  font-size: 15px;
  letter-spacing: .02em;
  color: #3D3D49;
  background: transparent;
  cursor: pointer;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .subbtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #3D3D49;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.prtl .subbtn span {
  position: relative;
  z-index: 1;
  transition: color .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .subbtn:hover::before {
  transform: scaleX(1)
}

.prtl .subbtn:hover span {
  color: #CADBFE
}

.prtl .mostread {
  padding: 64px;
  background: #f5f7fc
}

.prtl .mostread h2 {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 32px;
  font-style: italic
}

.prtl .mrlist {
  display: flex;
  flex-direction: column;
  gap: 0
}

.prtl .mritem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid #a2b3ce40;
  transition: background .2s ease-in
}

.prtl .mritem:last-child {
  border-bottom: none
}

.prtl .mrnumber {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #CADBFE;
  font-weight: 700;
  min-width: 48px;
  text-align: center
}

.prtl .mritemtext {
  flex: 1
}

.prtl .mritemtext h4 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 4px;
  font-style: italic;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .mritem:hover .mritemtext h4 {
  color: #A2B3CE
}

.prtl .mritemtext p {
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49;
  margin: 0
}

.prtl .mrimg {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #a2b3ce59;
  flex-shrink: 0
}

@media (max-width: 1366px) {
  .prtl .titlewrap {
    padding: 64px 32px 0
  }

  .prtl .titletextzone {
    padding: 32px 32px 64px
  }

  .prtl .aboutband {
    padding: 64px 32px
  }

  .prtl .milestones {
    padding: 64px 32px
  }

  .prtl .postslisting {
    padding: 64px 32px
  }

  .prtl .journalblock {
    padding: 64px 32px
  }

  .prtl .sitenav {
    padding: 64px 32px
  }

  .prtl .subblock {
    padding: 64px 32px
  }

  .prtl .mostread {
    padding: 64px 32px
  }

  .prtl .navgrid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .prtl .titlewrap {
    padding: 32px 16px 0
  }

  .prtl .titletextzone {
    padding: 16px 16px 32px
  }

  .prtl .titletextzone h1 {
    font-size: 43px
  }

  .prtl .titleimgzone {
    display: none
  }

  .prtl .titlegeo,
  .prtl .titlegeo2 {
    display: none
  }

  .prtl .aboutband {
    padding: 32px 16px
  }

  .prtl .aboutband::before {
    display: none
  }

  .prtl .metricsrow {
    flex-direction: column
  }

  .prtl .metricitem {
    border-right: none;
    border-bottom: 1px solid #cadbfe26
  }

  .prtl .milestones {
    padding: 32px 16px
  }

  .prtl .mtrack {
    flex-direction: column;
    gap: 16px
  }

  .prtl .mtrack::before {
    display: none
  }

  .prtl .mstep {
    flex-direction: row;
    align-items: center;
    gap: 16px
  }

  .prtl .mdesc {
    text-align: left
  }

  .prtl .postslisting {
    padding: 32px 16px
  }

  .prtl .postgrid {
    grid-template-columns: 1fr
  }

  .prtl .postcard img {
    display: none
  }

  .prtl .journalblock {
    padding: 32px 16px
  }

  .prtl .jitem {
    flex-direction: column;
    gap: 16px
  }

  .prtl .sitenav {
    padding: 32px 16px
  }

  .prtl .navgrid {
    grid-template-columns: 1fr
  }

  .prtl .subblock {
    padding: 32px 16px
  }

  .prtl .subinner {
    flex-direction: column;
    gap: 32px
  }

  .prtl .mostread {
    padding: 32px 16px
  }

  .prtl .mrimg {
    display: none
  }
}

@media (max-width: 375px) {
  .prtl .titletextzone h1 {
    font-size: 31px
  }

  .prtl .aboutinner h2 {
    font-size: 31px
  }

  .prtl .subtext h2 {
    font-size: 31px
  }

  .prtl .journalblock h2 {
    font-size: 31px
  }

  .prtl .postslisting h2 {
    font-size: 31px
  }
}

.jrnl {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
  overflow-x: clip
}

.jrnl .pagetop {
  position: relative;
  padding: 64px 0 96px;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  margin: 0 -32px 64px;
  padding-left: 32px;
  padding-right: 32px
}

.jrnl .pagetop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, #cadbfed9 100%);
  pointer-events: none
}

.jrnl .pagetop h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px;
  font-style: italic;
  position: relative;
  z-index: 1;
  max-width: 800px
}

.jrnl .pagetop p {
  font-size: 23px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3D3D49;
  max-width: 620px;
  margin: 0;
  position: relative;
  z-index: 1
}

.jrnl .pagetop .pagemeta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1
}

.jrnl .pagetop .pagemeta span {
  font-size: 15px;
  letter-spacing: .02em;
  color: #3D3D49;
  opacity: .7
}

.jrnl .pagetop .pagemeta .sep {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #3D3D49;
  opacity: .4;
  display: inline-block
}

.jrnl .cardgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px
}

.jrnl .postcard {
  border-radius: 2px;
  background: #fff;
  box-shadow: -1px 6px 18px -2px #a2b3ce1c;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid #a2b3ce38;
  overflow: hidden
}

.jrnl .postcard:hover {
  box-shadow: -1px 12px 60px -2px #a2b3ce21;
  transform: translateY(-4px)
}

.jrnl .postcard .imgwrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid #a2b3ce33;
  flex-shrink: 0
}

.jrnl .postcard .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.jrnl .postcard:hover .imgwrap img {
  transform: scale(1.04)
}

.jrnl .postcard .cardtag {
  display: inline-block;
  font-size: 15px;
  letter-spacing: .02em;
  color: #A2B3CE;
  padding: 16px 16px 0;
  line-height: 1.2
}

.jrnl .postcard .cardbody {
  padding: 8px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.jrnl .postcard h4 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0;
  font-style: italic
}

.jrnl .postcard .subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49;
  opacity: .7;
  margin: 0;
  letter-spacing: .01em
}

.jrnl .postcard .desc {
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49;
  margin: 0;
  letter-spacing: .01em;
  flex: 1
}

.jrnl .postcard .cardfooter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 16px;
  border-top: 1px solid #a2b3ce26;
  margin-top: 8px
}

.jrnl .postcard .catbadge {
  font-size: 15px;
  letter-spacing: .02em;
  color: #3D3D49;
  background: #cadbfe66;
  border-radius: 2px;
  padding: 4px 8px;
  line-height: 1.2
}

.jrnl .postcard .likes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #A2B3CE;
  letter-spacing: .01em
}

.jrnl .postcard .likes svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.jrnl .postcard .readlink {
  display: inline-block;
  font-size: 15px;
  letter-spacing: .02em;
  color: #3D3D49;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #3d3d494d;
  border-radius: 2px;
  margin: 0 16px 16px;
  position: relative;
  overflow: hidden;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent
}

.jrnl .postcard .readlink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE);
  opacity: 0;
  transition: opacity .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.jrnl .postcard .readlink:hover {
  color: #3D3D49
}

.jrnl .postcard .readlink:hover::before {
  opacity: 1
}

.jrnl .postcard .readlink span {
  position: relative;
  z-index: 1
}

.jrnl .spotblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
  align-items: center
}

.jrnl .spotblock .imgside {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: -1px 12px 60px -2px #3d3d4921
}

.jrnl .spotblock .imgside img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border: 1px solid #a2b3ce40;
  border-radius: 2px
}

.jrnl .spotblock .imgside::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid #cadbfe80;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none
}

.jrnl .spotblock .textside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0
}

.jrnl .spotblock .textside h2 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0;
  font-style: italic
}

.jrnl .spotblock .textside h2 strong {
  color: #A2B3CE
}

.jrnl .spotblock .textside p {
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49;
  margin: 0;
  letter-spacing: .01em
}

.jrnl .spotblock .textside .statrow {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 16px 0;
  border-top: 1px solid #a2b3ce40;
  border-bottom: 1px solid #a2b3ce40
}

.jrnl .spotblock .textside .statitem {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.jrnl .spotblock .textside .statitem .statnum {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  font-style: italic
}

.jrnl .spotblock .textside .statitem .statlabel {
  font-size: 15px;
  color: #A2B3CE;
  letter-spacing: .02em
}

.jrnl .resblock {
  background: linear-gradient(337deg, #a2b3ce1f, #cadbfe2e);
  border-radius: 2px;
  padding: 64px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border: 1px solid #a2b3ce33
}

.jrnl .resblock h2 {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0;
  font-style: italic;
  max-width: 600px
}

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

.jrnl .resblock .resitem {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px;
  background: #fff;
  border-radius: 2px;
  box-shadow: -1px 1px 2px -2px #3d3d4914;
  border: 1px solid #a2b3ce26;
  transition: box-shadow .2s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .2s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.jrnl .resblock .resitem:hover {
  box-shadow: -1px 6px 18px -2px #a2b3ce1c;
  transform: translateY(-3px)
}

.jrnl .resblock .resitem h5 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0;
  font-style: italic
}

.jrnl .resblock .resitem p {
  font-size: 15px;
  line-height: 1.7;
  color: #3D3D49;
  margin: 0;
  letter-spacing: .01em
}

.jrnl .resblock .resitem .resicon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px
}

@keyframes jrnlReveal {
  from {
    opacity: 0;
    transform: rotate(-3deg) translateY(24px)
  }

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

.jrnl .postcard {
  animation: jrnlReveal .32s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.jrnl .postcard:nth-child(1) {
  animation-delay: .05s
}

.jrnl .postcard:nth-child(2) {
  animation-delay: .1s
}

.jrnl .postcard:nth-child(3) {
  animation-delay: .15s
}

.jrnl .postcard:nth-child(4) {
  animation-delay: .2s
}

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

  .jrnl .pagetop h1 {
    font-size: 43px
  }
}

@media (max-width: 768px) {
  .jrnl {
    padding: 0 16px
  }

  .jrnl .pagetop {
    margin: 0 -16px 32px;
    padding: 32px 16px 64px
  }

  .jrnl .pagetop h1 {
    font-size: 31px
  }

  .jrnl .pagetop p {
    font-size: 15px
  }

  .jrnl .cardgrid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px
  }

  .jrnl .spotblock {
    grid-template-columns: 1fr;
    margin-bottom: 32px
  }

  .jrnl .spotblock .imgside {
    display: none
  }

  .jrnl .resblock {
    padding: 32px 16px;
    margin-bottom: 32px
  }

  .jrnl .resblock .resrow {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .jrnl .resblock h2 {
    font-size: 31px
  }

  .jrnl .spotblock .textside h2 {
    font-size: 31px
  }
}

@media (max-width: 375px) {
  .jrnl .pagetop h1 {
    font-size: 23px
  }

  .jrnl .postcard h4 {
    font-size: 15px
  }
}

.successPage {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: linear-gradient(337deg, #A2B3CE, #CADBFE)
}

.successPage .confirmCard {
  background: #fff;
  border-radius: 42px;
  padding: 64px;
  max-width: 560px;
  width: 100%;
  box-shadow: -1px 12px 60px -2px #a2b3ce21;
  text-align: center
}

.successPage .confirmCard .iconMark {
  width: 56px;
  height: 56px;
  margin: 0 auto 32px;
  border-radius: 42px;
  background: #CADBFE;
  display: flex;
  align-items: center;
  justify-content: center
}

.successPage .confirmCard .iconMark svg {
  display: block
}

.successPage .confirmCard .confirmHeading {
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #3D3D49;
  margin: 0 0 16px;
  font-style: italic
}

.successPage .confirmCard .confirmNote {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .02em;
  color: #3D3D49;
  margin: 0 0 32px
}

.successPage .confirmCard .confirmNote strong {
  color: #A2B3CE
}

.successPage .confirmCard .returnLink {
  display: inline-block;
  font-size: 15px;
  letter-spacing: .02em;
  color: #3D3D49;
  text-decoration: none;
  border: 2px solid #3D3D49;
  border-radius: 2px;
  padding: 8px 32px;
  position: relative;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden
}

.successPage .confirmCard .returnLink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #3D3D49;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 0
}

.successPage .confirmCard .returnLink:hover::before {
  transform: scaleX(1)
}

.successPage .confirmCard .returnLink:hover {
  color: #fff
}

.successPage .confirmCard .returnLink span {
  position: relative;
  z-index: 1
}

@media (max-width: 768px) {
  .successPage {
    padding: 64px 16px
  }

  .successPage .confirmCard {
    padding: 32px 16px
  }

  .successPage .confirmCard .confirmHeading {
    font-size: 31px
  }
}

@media (max-width: 375px) {
  .successPage .confirmCard {
    padding: 32px 16px;
    border-radius: 42px
  }
}