@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  scrollbar-gutter: stable;
  min-height: 100vh;
}

.page-header {
  position: relative;
  background: linear-gradient(160deg, #3a3b42 0%, #2E2F34 60%, #252629 100%);
  border-bottom: 2px solid rgba(255, 137, 19, 0.35);
  box-shadow: 0 5px 25px 0 rgba(255, 137, 19, 0.08);
  z-index: 100;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #FF8913 40%, #FFF8DE 70%, transparent 100%);
  pointer-events: none;
}

.header-box {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 28px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 8px;
  gap: 28px;
}

.brand-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-right: 2px solid rgba(255, 137, 19, 0.5);
  padding-right: 28px;
}

.brand-image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  background: rgba(255, 248, 222, 0.08);
  border: 1px solid rgba(255, 137, 19, 0.3);
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(255, 137, 19, 0.08), inset 0 1px 0 rgba(255, 248, 222, 0.06);
  padding: 8px;
}

.brand-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-label {
  font-family: 'Roboto Slab', serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFF8DE;
}

.brand-label span {
  color: #FF8913;
}

.header-accent {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.accent-dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #FF8913;
  box-shadow: 0 0 0 3px rgba(255, 137, 19, 0.18);
}

.accent-dot--small {
  width: 5px;
  height: 5px;
  background: rgba(255, 137, 19, 0.45);
  box-shadow: none;
}

.accent-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 248, 222, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 16px;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.primary-menu__item {
  display: flex;
  align-items: center;
}

.primary-menu__link {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 248, 222, 0.8);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out, border-color 0.5s ease-in-out, letter-spacing 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.primary-menu__link:hover,
.primary-menu__link:focus {
  color: #FF8913;
  background: rgba(255, 137, 19, 0.08);
  border-color: rgba(255, 137, 19, 0.25);
  letter-spacing: 0.03em;
  outline: none;
}

.primary-menu__link:focus-visible {
  filter: invert(1);
}

.primary-menu__link--active {
  color: #FF8913;
  background: rgba(255, 137, 19, 0.1);
  border-color: rgba(255, 137, 19, 0.3);
}

.header-contact-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 137, 19, 0.07);
  border: 1px solid rgba(255, 137, 19, 0.2);
  border-radius: 22px;
  padding: 8px 16px;
}

.contact-strip__label {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 248, 222, 0.5);
  white-space: nowrap;
}

.contact-strip__link {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FF8913;
  text-decoration: none;
  transition: letter-spacing 0.5s ease-in-out, color 0.5s ease-in-out;
  white-space: nowrap;
}

.contact-strip__link:hover {
  letter-spacing: 0.02em;
  color: #FFF8DE;
}

.contact-strip__link:focus-visible {
  filter: invert(1);
  outline: none;
}

.page-footer {
  background: linear-gradient(180deg, #272830 0%, #2E2F34 100%);
  border-top: 2px solid rgba(255, 137, 19, 0.3);
  box-shadow: 0 9px 48px 0 rgba(255, 137, 19, 0.10);
}

.footer-box {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-logo-row {
  padding: 56px 0 28px;
  border-bottom: 1px solid rgba(255, 248, 222, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  background: rgba(255, 248, 222, 0.06);
  border: 1px solid rgba(255, 137, 19, 0.25);
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(255, 137, 19, 0.08), inset 0 1px 0 rgba(255, 248, 222, 0.05);
  padding: 8px;
}

.footer-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand-name {
  font-family: 'Roboto Slab', serif;
  font-size: 19px;
  font-weight: 700;
  color: #FFF8DE;
  letter-spacing: -0.01em;
}

.footer-brand-name span {
  color: #FF8913;
}

.footer-columns {
  display: flex;
  gap: 56px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 160px;
}

.footer-column__heading {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #FF8913;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.footer-column__link {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.65);
  text-decoration: none;
  transition: color 0.5s ease-in-out, letter-spacing 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.footer-column__link:hover {
  color: #FFF8DE;
  letter-spacing: 0.025em;
}

.footer-column__link:focus-visible {
  filter: invert(1);
  outline: none;
}

.footer-column__text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.5);
  margin: 0;
}

.footer-column__email {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FF8913;
  text-decoration: none;
  transition: color 0.5s ease-in-out, letter-spacing 0.55s ease-in-out;
  display: inline-block;
  margin-top: 4px;
}

.footer-column__email:hover {
  color: #FFF8DE;
  letter-spacing: 0.02em;
}

.footer-column__email:focus-visible {
  filter: invert(1);
  outline: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 222, 0.08);
  padding: 16px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 248, 222, 0.35);
  margin: 0;
}

.footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-list__link {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 248, 222, 0.4);
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.footer-legal-list__link:hover {
  color: rgba(255, 248, 222, 0.75);
}

.footer-legal-list__link:focus-visible {
  filter: invert(1);
  outline: none;
}

.consent-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #2E2F34;
  border-bottom: 2px solid rgba(255, 137, 19, 0.5);
  box-shadow: 0 5px 25px 0 rgba(255, 137, 19, 0.08);
}

.consent-bar__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.consent-bar__text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.8);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.consent-bar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.consent-bar__accept {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2E2F34;
  background: #FF8913;
  border: 2px solid #FF8913;
  border-radius: 8px;
  padding: 8px 28px;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out, letter-spacing 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consent-bar__accept:hover {
  background: #FFF8DE;
  border-color: #FFF8DE;
  letter-spacing: 0.03em;
}

.consent-bar__accept:focus-visible {
  filter: invert(1);
  outline: none;
}

.consent-bar__decline {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 248, 222, 0.7);
  background: transparent;
  border: 2px solid rgba(255, 248, 222, 0.3);
  border-radius: 8px;
  padding: 8px 28px;
  cursor: pointer;
  min-height: 44px;
  transition: color 0.5s ease-in-out, border-color 0.5s ease-in-out, letter-spacing 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consent-bar__decline:hover {
  color: #FFF8DE;
  border-color: rgba(255, 248, 222, 0.65);
  letter-spacing: 0.03em;
}

.consent-bar__decline:focus-visible {
  filter: invert(1);
  outline: none;
}

@media (max-width: 992px) {
  .header-top {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-accent {
    order: 3;
  }

  .footer-columns {
    gap: 28px;
  }

  .footer-column {
    min-width: 140px;
  }
}

@media (max-width: 576px) {
  .header-box {
    padding: 0 16px;
  }

  .brand-label {
    font-size: 19px;
  }

  .brand-box {
    padding-right: 16px;
  }

  .header-menu-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .primary-menu {
    gap: 4px;
  }

  .primary-menu__link {
    font-size: 15px;
    padding: 8px 8px;
  }

  .footer-box {
    padding: 0 16px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .consent-bar__inner {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .consent-bar__actions {
    width: 100%;
  }
}.agreement-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 56px 28px;
    background: linear-gradient(170deg, #2a2b30 0%, #1e1f23 100%);
    border-radius: 14px;
    box-shadow: 0 9px 48px 0 rgba(255, 137, 19, 0.10);
    color: #FFF8DE;
}

.agreement-section p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 28px;
    color: #FFF8DE;
}

.agreement-section ul,
.agreement-section ol {
    margin-bottom: 28px;
    padding-left: 28px;
}

.agreement-section ul {
    list-style: none;
    padding-left: 16px;
}

.agreement-section ol {
    list-style: decimal;
}

.agreement-section ul li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 8px;
    color: #FFF8DE;
}

.agreement-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background-color: #FF8913;
}

.agreement-section ol li {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 8px;
    color: #FFF8DE;
    padding-left: 8px;
}

.agreement-section strong,
.agreement-section b {
    font-weight: 700;
    color: #FF8913;
    letter-spacing: -0.01em;
}

.agreement-section a {
    color: #FF8913;
    text-decoration: underline;
    text-decoration-color: rgba(255, 137, 19, 0.4);
    text-underline-offset: 3px;
    transition: color 0.55s ease-in-out, text-decoration-color 0.55s ease-in-out, letter-spacing 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agreement-section a:hover {
    color: #FFF8DE;
    text-decoration-color: rgba(255, 248, 222, 0.5);
    letter-spacing: 0.02em;
}

.agreement-section hr {
    border: none;
    border-top: 1px solid rgba(255, 137, 19, 0.22);
    margin: 56px 0;
    box-shadow: 0 1px 6px 0 rgba(255, 137, 19, 0.08);
}

.agreement-section div {
    margin-bottom: 28px;
}

.agreement-section div p:last-child {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .agreement-section {
        padding: 28px 16px;
        border-radius: 8px;
    }

    .agreement-section p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .agreement-section ul li,
    .agreement-section ol li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 4px;
    }

    .agreement-section ul,
    .agreement-section ol {
        margin-bottom: 16px;
    }

    .agreement-section hr {
        margin: 28px 0;
    }

    .agreement-section div {
        margin-bottom: 16px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .agreement-section {
        padding: 56px 28px;
    }

    .agreement-section p {
        font-size: 16px;
        line-height: 1.9;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .agreement-section {
        padding: 56px 28px;
    }

    .agreement-section p {
        font-size: 16px;
        line-height: 1.9;
    }
}
.blog-detail {
  background: linear-gradient(211deg, #2E2F34 0%, #1b1c20 100%);
  min-height: 100vh;
  overflow-x: clip;
}

.blog-detail .post-lead {
  max-width: 1024px;
  margin: 0 auto;
  padding: 56px 28px 28px;
  position: relative;
}

.blog-detail .post-lead__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  pointer-events: none;
  z-index: 0;
}

.blog-detail .post-lead__circle--large {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 48px;
  border: 1px solid rgba(255, 137, 19, 0.08);
  top: -80px;
  right: -60px;
  transform: rotate(25deg);
}

.blog-detail .post-lead__circle--medium {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 48px;
  border: 1px solid rgba(255, 248, 222, 0.06);
  bottom: 40px;
  left: -40px;
  transform: rotate(-15deg);
}

.blog-detail .post-lead__circle--small {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 48px;
  border: 1px solid rgba(255, 137, 19, 0.12);
  top: 60px;
  left: 30%;
  transform: rotate(10deg);
}

.blog-detail .post-lead__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 20%, rgba(255, 137, 19, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.blog-detail .post-lead__grid {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  padding-top: 56px;
}

.blog-detail .post-lead__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-detail .post-lead__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-detail .post-lead__tag {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 8px;
  background: rgba(255, 137, 19, 0.15);
  border: 1px solid rgba(255, 137, 19, 0.35);
  color: #FF8913;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-detail .post-lead__readtime {
  color: rgba(255, 248, 222, 0.55);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.blog-detail .post-lead__heading {
  color: #FFF8DE;
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

.blog-detail .post-lead__subtitle {
  color: rgba(255, 248, 222, 0.70);
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
}

.blog-detail .post-lead__caption {
  display: block;
  width: 56px;
  height: 2px;
  background: linear-gradient(211deg, #2E2F34, #FF8913);
  margin-top: 8px;
  border-radius: 8px;
}

.blog-detail .post-lead__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.blog-detail .post-lead__link--primary {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 14px;
  background: linear-gradient(211deg, #FF8913, #c96800);
  color: #FFF8DE;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.55s ease-in-out, letter-spacing 0.50s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.50s ease-in-out;
  box-shadow: 0 5px 25px 0 rgba(255, 137, 19, 0.08);
}

.blog-detail .post-lead__link--primary:hover {
  background: linear-gradient(31deg, #FF8913, #c96800);
  letter-spacing: 0.04em;
  box-shadow: 0 9px 48px 0 rgba(255, 137, 19, 0.10);
}

.blog-detail .post-lead__link--secondary {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 248, 222, 0.20);
  color: rgba(255, 248, 222, 0.80);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 0.55s ease-in-out, color 0.55s ease-in-out, letter-spacing 0.50s cubic-bezier(0.25,0.46,0.45,0.94);
}

.blog-detail .post-lead__link--secondary:hover {
  border-color: rgba(255, 137, 19, 0.50);
  color: #FF8913;
  letter-spacing: 0.04em;
}

.blog-detail .post-lead__image-column {
  flex: 0 0 340px;
  position: relative;
}

.blog-detail .post-lead__image-frame {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 9px 48px 0 rgba(46, 47, 52, 0.10);
}

.blog-detail .post-lead__image-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.75);
  transition: filter 0.60s cubic-bezier(0.25,0.46,0.45,0.94);
}

.blog-detail .post-lead__image-frame:hover img {
  filter: saturate(1) brightness(0.95);
}

.blog-detail .post-lead__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(211deg, rgba(46,47,52,0.55) 0%, rgba(255,137,19,0.08) 100%);
  pointer-events: none;
  transition: opacity 0.60s cubic-bezier(0.25,0.46,0.45,0.94);
}

.blog-detail .post-lead__image-frame:hover .post-lead__image-overlay {
  opacity: 0;
}

.blog-detail .post-lead__likes {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: linear-gradient(211deg, #2E2F34, #1b1c20);
  border: 1px solid rgba(255, 137, 19, 0.25);
  border-radius: 48px;
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 25px 0 rgba(46, 47, 52, 0.08);
}

.blog-detail .post-lead__likes-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.blog-detail .post-lead__likes-count {
  color: #FF8913;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-detail .post-lead__divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1024px;
  margin: 28px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.blog-detail .post-lead__divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(211deg, rgba(255,137,19,0.40), transparent);
}

.blog-detail .post-lead__divider-line--right {
  background: linear-gradient(31deg, rgba(255,137,19,0.40), transparent);
}

.blog-detail .post-body {
  max-width: 1024px;
  margin: 0 auto;
  padding: 56px 28px;
}

.blog-detail .post-body__layout {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.blog-detail .post-body__aside {
  flex: 0 0 220px;
  position: sticky;
  top: 28px;
}

.blog-detail .post-body__aside-label {
  color: rgba(255, 248, 222, 0.40);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 600;
}

.blog-detail .post-body__progress-ring {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-detail .post-body__ring-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.blog-detail .post-body__ring-svg {
  flex-shrink: 0;
}

.blog-detail .post-body__ring-track {
  fill: none;
  stroke: rgba(255, 248, 222, 0.08);
  stroke-width: 4;
}

.blog-detail .post-body__ring-fill {
  fill: none;
  stroke: #FF8913;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  transform: rotate(-90deg);
  transform-origin: 25px 25px;
  transition: stroke-dashoffset 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.blog-detail .post-body__ring-fill--animated {
  animation: ring-draw 0.65s cubic-bezier(0.25,0.46,0.45,0.94) 0.45s forwards;
}

@keyframes ring-draw {
  to { stroke-dashoffset: var(--ring-offset); }
}

.blog-detail .post-body__ring-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-detail .post-body__ring-percent {
  color: #FF8913;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-detail .post-body__ring-name {
  color: rgba(255, 248, 222, 0.60);
  font-size: 15px;
  line-height: 1.6;
}

.blog-detail .post-body__aside-cta {
  margin-top: 28px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 137, 19, 0.07);
  border: 1px solid rgba(255, 137, 19, 0.20);
}

.blog-detail .post-body__aside-cta-text {
  color: rgba(255, 248, 222, 0.70);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.blog-detail .post-body__aside-cta-link {
  display: block;
  text-align: center;
  padding: 8px 16px;
  border-radius: 8px;
  background: linear-gradient(211deg, #FF8913, #c96800);
  color: #FFF8DE;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.55s ease-in-out, letter-spacing 0.50s cubic-bezier(0.25,0.46,0.45,0.94);
}

.blog-detail .post-body__aside-cta-link:hover {
  background: linear-gradient(31deg, #FF8913, #c96800);
  letter-spacing: 0.05em;
}

.blog-detail .post-body__article {
  flex: 1 1 0;
  min-width: 0;
}

.blog-detail .post-body__article p {
  color: rgba(255, 248, 222, 0.82);
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 16px;
}

.blog-detail .post-body__article h2 {
  color: #FFF8DE;
  font-size: 31px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 56px 0 16px;
  font-weight: 700;
  position: relative;
}

.blog-detail .post-body__article h3 {
  color: #FFF8DE;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 28px 0 16px;
  font-weight: 600;
}

.blog-detail .post-body__article ins {
  color: #FF8913;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 137, 19, 0.40);
  font-style: normal;
}

.blog-detail .post-body__article code {
  background: rgba(255, 137, 19, 0.10);
  border: 1px solid rgba(255, 137, 19, 0.20);
  border-radius: 8px;
  padding: 4px 8px;
  color: #FF8913;
  font-size: 15px;
  line-height: 1.6;
}

.blog-detail .post-body__article blockquote {
  margin: 28px 0;
  padding: 16px 28px;
  border-radius: 14px;
  background: rgba(255, 248, 222, 0.04);
  border-top: 1px solid rgba(255, 137, 19, 0.25);
  border-bottom: 1px solid rgba(255, 137, 19, 0.25);
  border-left: 4px solid #FF8913;
  border-right: 1px solid rgba(255, 137, 19, 0.10);
}

.blog-detail .post-body__article blockquote p {
  color: rgba(255, 248, 222, 0.75);
  font-size: 19px;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.blog-detail .post-body__article table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgba(46, 47, 52, 0.08);
}

.blog-detail .post-body__article thead {
  background: rgba(255, 137, 19, 0.15);
}

.blog-detail .post-body__article thead td,
.blog-detail .post-body__article thead th {
  color: #FF8913;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 137, 19, 0.25);
}

.blog-detail .post-body__article tbody tr {
  border-bottom: 1px solid rgba(255, 248, 222, 0.06);
  transition: background 0.50s ease-in-out;
}

.blog-detail .post-body__article tbody tr:hover {
  background: rgba(255, 248, 222, 0.04);
}

.blog-detail .post-body__article tbody td {
  color: rgba(255, 248, 222, 0.75);
  font-size: 15px;
  line-height: 1.6;
  padding: 16px;
}

.blog-detail .post-body__article tfoot td {
  color: rgba(255, 248, 222, 0.50);
  font-size: 15px;
  padding: 8px 16px;
  border-top: 1px solid rgba(255, 248, 222, 0.08);
}

.blog-detail .post-body__article time {
  color: rgba(255, 248, 222, 0.45);
  font-size: 15px;
  font-style: italic;
}

.blog-detail .post-reactions {
  max-width: 1024px;
  margin: 0 auto;
  padding: 28px 28px 56px;
}

.blog-detail .post-reactions__panel {
  background: rgba(255, 248, 222, 0.03);
  border: 1px solid rgba(255, 248, 222, 0.08);
  border-radius: 22px;
  padding: 56px 28px 28px;
  position: relative;
  overflow: hidden;
}

.blog-detail .post-reactions__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1200&q=60');
  background-size: cover;
  background-position: center;
  filter: brightness(0.08) saturate(0.3);
  pointer-events: none;
  border-radius: 22px;
}

.blog-detail .post-reactions__inner {
  position: relative;
  z-index: 1;
}

.blog-detail .post-reactions__heading {
  color: #FFF8DE;
  font-size: 23px;
  line-height: 1.3;
  margin: 0 0 8px;
  font-weight: 600;
}

.blog-detail .post-reactions__caption {
  display: block;
  color: rgba(255, 248, 222, 0.45);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.blog-detail .post-reactions__group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.blog-detail .reaction-choice {
  position: relative;
}

.blog-detail .reaction-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.blog-detail .reaction-choice__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 14px;
  background: rgba(255, 248, 222, 0.04);
  border: 1px solid rgba(255, 248, 222, 0.10);
  cursor: pointer;
  transition: background 0.50s ease-in-out, border-color 0.50s ease-in-out, box-shadow 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  user-select: none;
}

.blog-detail .reaction-choice__label:hover {
  background: rgba(255, 137, 19, 0.08);
  border-color: rgba(255, 137, 19, 0.30);
}

.blog-detail .reaction-choice__face {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.blog-detail .reaction-choice__text {
  color: rgba(255, 248, 222, 0.60);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  transition: color 0.50s ease-in-out;
}

.blog-detail .reaction-choice--active .reaction-choice__label {
  background: rgba(255, 137, 19, 0.15);
  border-color: rgba(255, 137, 19, 0.55);
  box-shadow: 0 5px 25px 0 rgba(255, 137, 19, 0.08);
}

.blog-detail .reaction-choice--active .reaction-choice__text {
  color: #FF8913;
}

.blog-detail .post-reactions__note {
  margin-top: 28px;
  color: rgba(255, 248, 222, 0.35);
  font-size: 15px;
  line-height: 1.6;
}

.blog-detail .post-reactions__links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 248, 222, 0.07);
  flex-wrap: wrap;
}

.blog-detail .post-reactions__nav-link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 248, 222, 0.12);
  color: rgba(255, 248, 222, 0.60);
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.55s ease-in-out, color 0.55s ease-in-out, letter-spacing 0.50s cubic-bezier(0.25,0.46,0.45,0.94);
}

.blog-detail .post-reactions__nav-link:hover {
  border-color: rgba(255, 137, 19, 0.40);
  color: #FF8913;
  letter-spacing: 0.03em;
}

.blog-detail .reveal-up {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal-up 0.60s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}

.blog-detail .reveal-up--delay-1 { animation-delay: 0.10s; }
.blog-detail .reveal-up--delay-2 { animation-delay: 0.22s; }
.blog-detail .reveal-up--delay-3 { animation-delay: 0.34s; }
.blog-detail .reveal-up--delay-4 { animation-delay: 0.46s; }
.blog-detail .reveal-up--delay-5 { animation-delay: 0.58s; }

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .blog-detail .post-lead__grid {
    flex-direction: column;
    gap: 28px;
    padding-top: 28px;
  }

  .blog-detail .post-lead__image-column {
    flex: 0 0 auto;
    width: 100%;
  }

  .blog-detail .post-lead__heading {
    font-size: 31px;
  }

  .blog-detail .post-body__layout {
    flex-direction: column;
    gap: 28px;
  }

  .blog-detail .post-body__aside {
    flex: 0 0 auto;
    position: static;
    width: 100%;
  }

  .blog-detail .post-body__progress-ring {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .blog-detail .post-lead {
    padding: 28px 16px 16px;
  }

  .blog-detail .post-lead__heading {
    font-size: 23px;
  }

  .blog-detail .post-lead__subtitle {
    font-size: 16px;
  }

  .blog-detail .post-reactions__group {
    gap: 8px;
  }

  .blog-detail .reaction-choice__label {
    padding: 8px 16px;
  }

  .blog-detail .post-body {
    padding: 28px 16px;
  }

  .blog-detail .post-reactions {
    padding: 16px 16px 28px;
  }
}

.lead {
    background: linear-gradient(180deg, #2a2b30 0%, #1e1f24 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.lead .dot-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.lead .dot-field::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,137,19,0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    animation: flicker 6s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% { opacity: 0.4; }
    30% { opacity: 0.7; }
    55% { opacity: 0.5; }
    80% { opacity: 0.8; }
    100% { opacity: 0.45; }
}

.lead .page-body {
    position: relative;
    z-index: 1;
}

.lead .max-bound {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
}

.lead .divider-numbered {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 0;
    max-width: 1024px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.lead .divider-numbered::before,
.lead .divider-numbered::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
    opacity: 0.4;
}

.lead .divider-numbered .num {
    font-size: 15px;
    color: rgba(255,248,222,0.4);
    letter-spacing: 0.08em;
    min-width: 28px;
    text-align: center;
}

.lead .entry-panel {
    padding: 56px 0 56px;
    position: relative;
}

.lead .entry-panel .asymmetric-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
}

.lead .entry-panel .label-column {
    flex: 0 0 auto;
    width: 220px;
    padding-top: 8px;
}

.lead .entry-panel .text-column {
    flex: 1 1 auto;
}

.lead .entry-panel .site-label {
    font-size: 15px;
    color: #FF8913;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.lead .entry-panel .main-heading {
    font-size: 58px;
    line-height: 1.1;
    color: #FFF8DE;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    font-weight: 700;
}

.lead .entry-panel .main-heading span {
    display: block;
    color: #FF8913;
}

.lead .entry-panel .description-text {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255,248,222,0.75);
    max-width: 560px;
    margin-bottom: 28px;
}

.lead .entry-panel .action-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.lead .primary-button {
    display: inline-block;
    padding: 16px 28px;
    background: linear-gradient(211deg, #FF8913, #cc6d0a);
    color: #2E2F34;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.5s ease-in-out, letter-spacing 0.55s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease-in-out;
    box-shadow: 0 5px 25px 0 rgba(255,137,19,0.08);
    text-decoration: none;
}

.lead .primary-button:hover {
    background: linear-gradient(31deg, #FF8913, #cc6d0a);
    letter-spacing: 0.06em;
    box-shadow: 0 9px 48px 0 rgba(255,137,19,0.10);
    color: #2E2F34;
}

.lead .secondary-button {
    display: inline-block;
    padding: 16px 28px;
    background: transparent;
    color: #FFF8DE;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(255,248,222,0.25);
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: border-color 0.5s ease-in-out, letter-spacing 0.6s cubic-bezier(0.25,0.46,0.45,0.94), color 0.5s ease-in-out;
    text-decoration: none;
}

.lead .secondary-button:hover {
    border-color: #FF8913;
    color: #FF8913;
    letter-spacing: 0.05em;
}

.lead .story-panel {
    padding: 56px 0;
    background: linear-gradient(211deg, rgba(255,137,19,0.06) 0%, rgba(46,47,52,0.0) 60%);
}

.lead .story-panel .two-column {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.lead .story-panel .narrow-column {
    flex: 0 0 240px;
}

.lead .story-panel .wide-column {
    flex: 1 1 auto;
}

.lead .panel-number {
    font-size: 58px;
    line-height: 1.1;
    color: rgba(255,137,19,0.1);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    display: block;
}

.lead .panel-heading {
    font-size: 31px;
    line-height: 1.3;
    color: #FFF8DE;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    position: relative;
}

.lead .panel-heading::after {
    content: "";
    display: block;
    height: 3px;
    width: 48px;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
    border-radius: 8px;
    margin-top: 8px;
}

.lead .body-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,248,222,0.72);
    margin-bottom: 16px;
}

.lead .body-text:last-child {
    margin-bottom: 0;
}

.lead .accent-card {
    background: rgba(255,137,19,0.08);
    border-left: 4px solid #FF8913;
    border-top: 1px solid rgba(255,137,19,0.2);
    border-right: 1px solid rgba(255,137,19,0.1);
    border-bottom: 1px solid rgba(255,137,19,0.1);
    border-radius: 8px;
    padding: 28px;
    margin-top: 28px;
    box-shadow: 0 1px 6px 0 rgba(255,137,19,0.08);
}

.lead .accent-card .quote-text {
    font-size: 19px;
    line-height: 1.6;
    color: #FFF8DE;
    font-style: italic;
    font-weight: 500;
}

.lead .depth-panel {
    padding: 56px 0;
}

.lead .depth-panel .three-col-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr;
    gap: 16px;
    align-items: stretch;
}

.lead .depth-card {
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(46,47,52,0.08);
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.55s ease-in-out;
}

.lead .depth-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 9px 48px 0 rgba(255,137,19,0.10);
}

.lead .depth-card--first {
    background: linear-gradient(211deg, #2E2F34, #26272c);
    border: 1px solid rgba(255,248,222,0.08);
    border-left: 4px solid rgba(255,137,19,0.4);
}

.lead .depth-card--second {
    background: linear-gradient(211deg, #303137, #28292e);
    border: 1px solid rgba(255,248,222,0.1);
    border-left: 4px solid rgba(255,137,19,0.6);
}

.lead .depth-card--third {
    background: linear-gradient(211deg, #343540, #2c2d32);
    border: 1px solid rgba(255,248,222,0.12);
    border-left: 4px solid #FF8913;
}

.lead .depth-card .card-label {
    font-size: 15px;
    color: #FF8913;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.lead .depth-card .card-heading {
    font-size: 23px;
    line-height: 1.3;
    color: #FFF8DE;
    font-weight: 700;
    margin-bottom: 16px;
}

.lead .depth-card .card-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,248,222,0.65);
}

.lead .image-panel {
    padding: 56px 0;
    background: linear-gradient(211deg, rgba(46,47,52,0.8) 0%, rgba(30,31,36,0.95) 100%);
}

.lead .image-panel .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.lead .image-frame {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px 0 rgba(46,47,52,0.08);
}

.lead .image-frame--tall {
    grid-row: span 2;
}

.lead .image-frame .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(211deg, rgba(255,137,19,0.35), rgba(46,47,52,0.5));
    transition: opacity 0.55s ease-in-out;
    z-index: 1;
}

.lead .image-frame:hover .image-overlay {
    opacity: 0;
}

.lead .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.lead .image-frame:hover img {
    transform: scale(1.04);
}

.lead .image-frame--tall img {
    min-height: 400px;
}

.lead .image-frame--short img {
    height: 200px;
}

.lead .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(30,31,36,0.9) 0%, transparent 100%);
    z-index: 2;
}

.lead .image-caption .caption-text {
    font-size: 15px;
    color: rgba(255,248,222,0.85);
    line-height: 1.3;
}

.lead .image-panel .panel-intro {
    margin-bottom: 28px;
}

.lead .reader-panel {
    padding: 56px 0;
}

.lead .reader-panel .reader-layout {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.lead .reader-panel .reader-left {
    flex: 0 0 320px;
}

.lead .reader-panel .reader-right {
    flex: 1 1 auto;
}

.lead .level-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lead .level-list .level-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255,248,222,0.03);
    border: 1px solid rgba(255,248,222,0.06);
    border-left: 4px solid rgba(255,137,19,0.3);
    transition: background 0.5s ease-in-out, border-left-color 0.5s ease-in-out;
}

.lead .level-list .level-item:hover {
    background: rgba(255,137,19,0.06);
    border-left-color: #FF8913;
}

.lead .level-list .level-number {
    font-size: 23px;
    font-weight: 900;
    color: rgba(255,137,19,0.5);
    line-height: 1.1;
    min-width: 28px;
    text-align: right;
}

.lead .level-list .level-label {
    font-size: 16px;
    color: #FFF8DE;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.lead .level-list .level-description {
    font-size: 15px;
    color: rgba(255,248,222,0.6);
    line-height: 1.6;
}

.lead .partners-panel {
    padding: 56px 0;
    background: linear-gradient(211deg, rgba(255,137,19,0.04) 0%, transparent 70%);
}

.lead .partners-panel .partner-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.lead .partner-badge {
    flex: 1 1 180px;
    padding: 16px 28px;
    border-radius: 8px;
    background: rgba(255,248,222,0.04);
    border: 1px solid rgba(255,248,222,0.08);
    border-top: 3px solid rgba(255,137,19,0.3);
    text-align: center;
    transition: border-top-color 0.5s ease-in-out, background 0.55s ease-in-out;
}

.lead .partner-badge:hover {
    border-top-color: #FF8913;
    background: rgba(255,137,19,0.06);
}

.lead .partner-badge .partner-name {
    font-size: 16px;
    color: #FFF8DE;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.lead .partner-badge .partner-role {
    font-size: 15px;
    color: rgba(255,248,222,0.5);
    line-height: 1.3;
}

.lead .path-panel {
    padding: 56px 0;
}

.lead .path-panel .steps-layout {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 28px;
}

.lead .path-step {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: flex-start;
    padding: 28px;
    border-radius: 14px;
    background: rgba(255,248,222,0.02);
    border: 1px solid rgba(255,248,222,0.05);
    transition: background 0.5s ease-in-out, transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
}

.lead .path-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
    opacity: 0.4;
    transition: opacity 0.5s ease-in-out;
}

.lead .path-step:hover {
    background: rgba(255,137,19,0.05);
    transform: translateX(4px);
}

.lead .path-step:hover::before {
    opacity: 1;
}

.lead .path-step .step-number {
    font-size: 43px;
    font-weight: 900;
    color: rgba(255,137,19,0.15);
    line-height: 1.1;
    min-width: 56px;
    text-align: right;
}

.lead .path-step .step-body {
    flex: 1 1 auto;
}

.lead .path-step .step-heading {
    font-size: 19px;
    color: #FFF8DE;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.lead .path-step .step-text {
    font-size: 15px;
    color: rgba(255,248,222,0.62);
    line-height: 1.6;
}

.lead .path-step .step-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 15px;
    color: #FF8913;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: letter-spacing 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.lead .path-step .step-link:hover {
    letter-spacing: 0.06em;
}

.lead .connect-panel {
    padding: 56px 0;
    background: linear-gradient(211deg, rgba(255,137,19,0.08) 0%, rgba(46,47,52,0.0) 80%);
}

.lead .connect-panel .connect-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    margin-top: 28px;
}

.lead .connect-form-area {
    background: rgba(255,248,222,0.03);
    border: 1px solid rgba(255,248,222,0.08);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 1px 6px 0 rgba(46,47,52,0.08);
}

.lead .connect-form-area .form-heading {
    font-size: 23px;
    color: #FFF8DE;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.lead .form-field {
    margin-bottom: 16px;
}

.lead .form-field label {
    display: block;
    font-size: 15px;
    color: rgba(255,248,222,0.7);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.lead .form-field input,
.lead .form-field textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255,248,222,0.05);
    border: 1px solid rgba(255,248,222,0.12);
    border-radius: 8px;
    color: #FFF8DE;
    font-size: 16px;
    line-height: 1.6;
    transition: border-color 0.5s ease-in-out, background 0.5s ease-in-out;
    outline: none;
    box-sizing: border-box;
}

.lead .form-field input::placeholder,
.lead .form-field textarea::placeholder {
    color: rgba(255,248,222,0.4);
}

.lead .form-field input:focus,
.lead .form-field textarea:focus {
    border-color: #FF8913;
    background: rgba(255,137,19,0.06);
}

.lead .form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.lead .connect-info-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lead .info-block {
    padding: 28px;
    border-radius: 14px;
    background: rgba(255,248,222,0.02);
    border: 1px solid rgba(255,248,222,0.06);
    border-left: 4px solid rgba(255,137,19,0.5);
    transition: border-left-color 0.5s ease-in-out;
}

.lead .info-block:hover {
    border-left-color: #FF8913;
}

.lead .info-block .info-heading {
    font-size: 16px;
    color: #FF8913;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.lead .info-block .info-text {
    font-size: 15px;
    color: rgba(255,248,222,0.65);
    line-height: 1.6;
}

.lead .info-block .info-link {
    color: #FF8913;
    text-decoration: none;
    transition: letter-spacing 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.lead .info-block .info-link:hover {
    letter-spacing: 0.05em;
}

.lead .diff-panel {
    padding: 56px 0;
}

.lead .diff-panel .diff-layout {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.lead .diff-panel .diff-left {
    flex: 0 0 260px;
}

.lead .diff-panel .diff-right {
    flex: 1 1 auto;
}

.lead .diff-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: diff-counter;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lead .diff-list .diff-item {
    counter-increment: diff-counter;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,248,222,0.06);
    background: rgba(255,248,222,0.02);
    transition: background 0.55s ease-in-out;
}

.lead .diff-list .diff-item:hover {
    background: rgba(255,137,19,0.05);
}

.lead .diff-list .diff-item .diff-counter {
    font-size: 15px;
    color: rgba(255,137,19,0.6);
    font-weight: 700;
    min-width: 28px;
    text-align: right;
    line-height: 1.6;
}

.lead .diff-list .diff-item .diff-text {
    font-size: 15px;
    color: rgba(255,248,222,0.72);
    line-height: 1.6;
    flex: 1 1 auto;
}

.lead .diff-list .diff-item .diff-text strong {
    color: #FFF8DE;
    font-weight: 600;
}

.lead .pullquote-block {
    margin: 28px 0;
    padding: 28px 28px 28px 56px;
    border-left: 4px solid #FF8913;
    border-top: 1px solid rgba(255,137,19,0.2);
    border-bottom: 1px solid rgba(255,137,19,0.1);
    border-right: 1px solid rgba(255,137,19,0.05);
    border-radius: 8px;
    background: rgba(255,137,19,0.06);
    box-shadow: inset 0 2px 8px 0 rgba(255,137,19,0.06);
    position: relative;
}

.lead .pullquote-block .pullquote-text {
    font-size: 23px;
    line-height: 1.6;
    color: #FFF8DE;
    font-style: italic;
    font-weight: 500;
}

.lead .pullquote-block .pullquote-source {
    font-size: 15px;
    color: rgba(255,137,19,0.8);
    margin-top: 8px;
    display: block;
}

@media (max-width: 992px) {
    .lead .entry-panel .asymmetric-layout {
        flex-direction: column;
        gap: 28px;
    }
    .lead .entry-panel .label-column {
        width: 100%;
    }
    .lead .entry-panel .main-heading {
        font-size: 43px;
    }
    .lead .story-panel .two-column {
        flex-direction: column;
        gap: 28px;
    }
    .lead .story-panel .narrow-column {
        flex: 0 0 auto;
        width: 100%;
    }
    .lead .depth-panel .three-col-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lead .depth-card--first {
        grid-column: span 2;
    }
    .lead .image-panel .image-grid {
        grid-template-columns: 1fr;
    }
    .lead .image-frame--tall {
        grid-row: span 1;
    }
    .lead .image-frame--tall img {
        min-height: 280px;
    }
    .lead .reader-panel .reader-layout {
        flex-direction: column;
        gap: 28px;
    }
    .lead .reader-panel .reader-left {
        flex: 0 0 auto;
        width: 100%;
    }
    .lead .connect-panel .connect-layout {
        grid-template-columns: 1fr;
    }
    .lead .diff-panel .diff-layout {
        flex-direction: column;
        gap: 28px;
    }
    .lead .diff-panel .diff-left {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .lead .entry-panel .main-heading {
        font-size: 31px;
    }
    .lead .panel-heading {
        font-size: 23px;
    }
    .lead .depth-panel .three-col-grid {
        grid-template-columns: 1fr;
    }
    .lead .depth-card--first {
        grid-column: span 1;
    }
    .lead .partner-badge {
        flex: 1 1 140px;
    }
    .lead .path-step {
        flex-direction: column;
        gap: 8px;
    }
    .lead .path-step .step-number {
        min-width: auto;
        font-size: 31px;
    }
    .lead .pullquote-block {
        padding: 16px 16px 16px 28px;
    }
    .lead .pullquote-block .pullquote-text {
        font-size: 19px;
    }
}

.blog {
  background: linear-gradient(211deg, #3a3b42 0%, #1e1f23 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.blog .feed {
  max-width: 1024px;
  margin: 0 auto;
  padding: 56px 28px;
}

.blog .feed__label {
  font-size: 15px;
  color: #FF8913;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog .feed__heading {
  font-size: 43px;
  line-height: 1.1;
  color: #FFF8DE;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.blog .feed__heading span {
  color: transparent;
  -webkit-text-stroke: 1px #FF8913;
}

.blog .feed__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #b0b1b8;
  max-width: 520px;
  margin-bottom: 56px;
}

.blog .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog .post-card {
  background: linear-gradient(211deg, #2a2b30 0%, #22232a 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 25px 0 rgba(255,137,19,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.55s ease-in-out, transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  border: 1px solid rgba(255,137,19,0.12);
  position: relative;
}

.blog .post-card:hover {
  box-shadow: 0 9px 48px 0 rgba(255,137,19,0.10);
  transform: translateY(-4px);
}

.blog .post-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog .post-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.blog .post-card:hover .post-card__image-wrap img {
  transform: scale(1.05);
}

.blog .post-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(211deg, rgba(255,137,19,0.35) 0%, rgba(46,47,52,0.6) 100%);
  opacity: 1;
  transition: opacity 0.55s ease-in-out;
  mix-blend-mode: multiply;
}

.blog .post-card:hover .post-card__overlay {
  opacity: 0;
}

.blog .post-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FF8913;
  color: #2E2F34;
  font-size: 15px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 48px;
  z-index: 1;
}

.blog .post-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.blog .post-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: #7a7b82;
}

.blog .post-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog .post-card__meta-icon {
  width: 14px;
  height: 14px;
  fill: #FF8913;
  flex-shrink: 0;
}

.blog .post-card__title {
  font-size: 19px;
  line-height: 1.3;
  color: #FFF8DE;
  letter-spacing: -0.01em;
  margin: 0;
}

.blog .post-card__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #9a9ba2;
  margin: 0;
}

.blog .post-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #8a8b92;
  margin: 0;
}

.blog .post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog .post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #FF8913;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: letter-spacing 0.5s ease-in-out, color 0.5s ease-in-out;
}

.blog .post-card__link:hover {
  letter-spacing: 0.06em;
  color: #FFF8DE;
}

.blog .post-card__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.5s ease-in-out;
}

.blog .post-card__link:hover svg {
  transform: translateX(4px);
}

.blog .post-card__likes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #7a7b82;
}

.blog .post-card__likes svg {
  width: 14px;
  height: 14px;
  fill: #FF8913;
}

.blog .post-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.blog .post-card--featured .post-card__image-wrap {
  width: 45%;
  height: auto;
  min-height: 280px;
  flex-shrink: 0;
}

.blog .post-card--featured .post-card__body {
  padding: 28px 28px 28px 28px;
}

.blog .post-card--featured .post-card__title {
  font-size: 23px;
}

.blog .post-card__double-border {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,137,19,0.18);
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
}

.blog .separator {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog .separator__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(211deg, rgba(255,137,19,0.4) 0%, rgba(255,248,222,0.08) 100%);
}

.blog .separator__dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #FF8913;
  box-shadow: 0 1px 6px 0 rgba(255,137,19,0.08);
}

.blog .insight {
  max-width: 1024px;
  margin: 0 auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.blog .insight__left {
  position: sticky;
  top: 28px;
}

.blog .insight__number {
  font-size: 58px;
  line-height: 1.1;
  color: rgba(255,137,19,0.12);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  display: block;
}

.blog .insight__heading {
  font-size: 31px;
  line-height: 1.3;
  color: #FFF8DE;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.blog .insight__heading span {
  color: transparent;
  -webkit-text-stroke: 1px #FF8913;
}

.blog .insight__intro {
  font-size: 15px;
  line-height: 1.6;
  color: #9a9ba2;
}

.blog .insight__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog .insight__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(211deg, #2a2b30 0%, #24252b 100%);
  border-radius: 14px;
  border: 1px solid rgba(255,248,222,0.07);
  box-shadow: 0 1px 6px 0 rgba(46,47,52,0.08);
  transition: background 0.55s ease-in-out, box-shadow 0.55s ease-in-out;
}

.blog .insight__item:hover {
  background: linear-gradient(211deg, #2e2f36 0%, #28292f 100%);
  box-shadow: 0 5px 25px 0 rgba(255,137,19,0.08);
}

.blog .insight__item--right .insight__icon {
  order: 2;
}

.blog .insight__item--right .insight__text {
  order: 1;
  text-align: right;
}

.blog .insight__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(211deg, #FF8913 0%, #e07510 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog .insight__icon svg {
  width: 20px;
  height: 20px;
  fill: #2E2F34;
}

.blog .insight__text {
  flex: 1;
}

.blog .insight__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFF8DE;
  margin-bottom: 4px;
}

.blog .insight__item-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #8a8b92;
  margin: 0;
}

.blog .roles {
  background: linear-gradient(211deg, #252629 0%, #1c1d21 100%);
  padding: 56px 0;
  border-top: 1px solid rgba(255,137,19,0.1);
  border-bottom: 1px solid rgba(255,137,19,0.1);
}

.blog .roles__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 28px;
}

.blog .roles__top {
  margin-bottom: 56px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.blog .roles__heading {
  font-size: 31px;
  line-height: 1.3;
  color: #FFF8DE;
  letter-spacing: -0.02em;
  margin: 0;
}

.blog .roles__heading span {
  color: transparent;
  -webkit-text-stroke: 1px #FF8913;
}

.blog .roles__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #9a9ba2;
  max-width: 360px;
  margin: 0;
}

.blog .roles__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog .role-column {
  background: linear-gradient(211deg, #2c2d33 0%, #26272d 100%);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255,248,222,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 6px 0 rgba(46,47,52,0.08);
  transition: box-shadow 0.6s cubic-bezier(0.25,0.46,0.45,0.94), backdrop-filter 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.blog .role-column:hover {
  box-shadow: 0 9px 48px 0 rgba(255,137,19,0.10);
  backdrop-filter: blur(4px);
}

.blog .role-column__badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255,137,19,0.12);
  color: #FF8913;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 48px;
  border: 1px solid rgba(255,137,19,0.25);
}

.blog .role-column__title {
  font-size: 19px;
  line-height: 1.3;
  color: #FFF8DE;
  margin: 0;
}

.blog .role-column__body {
  font-size: 15px;
  line-height: 1.6;
  color: #8a8b92;
  margin: 0;
  flex: 1;
}

.blog .role-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog .role-column__list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #9a9ba2;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,248,222,0.05);
}

.blog .role-column__list li span {
  font-size: 15px;
  font-weight: 700;
  color: #FF8913;
  text-align: right;
}

.blog .subscribe {
  max-width: 1024px;
  margin: 0 auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 56px;
  align-items: center;
}

.blog .subscribe__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog .subscribe__num {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(255,137,19,0.1);
  letter-spacing: -0.04em;
}

.blog .subscribe__heading {
  font-size: 23px;
  line-height: 1.3;
  color: #FFF8DE;
  letter-spacing: -0.01em;
  margin: 0;
}

.blog .subscribe__heading span {
  color: transparent;
  -webkit-text-stroke: 1px #FF8913;
}

.blog .subscribe__body {
  font-size: 15px;
  line-height: 1.6;
  color: #9a9ba2;
  margin: 0;
}

.blog .subscribe__right {
  background: linear-gradient(211deg, #2a2b30 0%, #24252b 100%);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255,137,19,0.12);
  box-shadow: 0 5px 25px 0 rgba(255,137,19,0.08);
  position: relative;
}

.blog .subscribe__right::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,137,19,0.08);
  border-radius: 16px;
  pointer-events: none;
}

.blog .subscribe__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog .subscribe__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog .subscribe__field label {
  font-size: 15px;
  color: #9a9ba2;
}

.blog .subscribe__field input {
  background: rgba(255,248,222,0.04);
  border: 1px solid rgba(255,137,19,0.2);
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  color: #FFF8DE;
  outline: none;
  transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  box-shadow: inset 0 2px 8px 0 rgba(46,47,52,0.18);
}

.blog .subscribe__field input::placeholder {
  color: rgba(255,248,222,0.4);
}

.blog .subscribe__field input:focus {
  border-color: #FF8913;
  box-shadow: inset 0 2px 8px 0 rgba(46,47,52,0.18), 0 0 0 3px rgba(255,137,19,0.12);
}

.blog .subscribe__button {
  background: linear-gradient(211deg, #FF8913 0%, #e07510 100%);
  color: #2E2F34;
  border: none;
  border-radius: 8px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.5s ease-in-out, letter-spacing 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 6px 0 rgba(255,137,19,0.08);
}

.blog .subscribe__button:hover {
  background: linear-gradient(31deg, #FF8913 0%, #e07510 100%);
  letter-spacing: 0.04em;
  box-shadow: 0 5px 25px 0 rgba(255,137,19,0.08);
}

.blog .subscribe__button:focus {
  outline: 2px solid #FF8913;
  outline-offset: 2px;
}

.blog .float-icon {
  display: inline-block;
  animation: iconFloat 3.5s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 992px) {
  .blog .grid {
    grid-template-columns: 1fr;
  }

  .blog .post-card--featured {
    flex-direction: column;
  }

  .blog .post-card--featured .post-card__image-wrap {
    width: 100%;
    height: 220px;
  }

  .blog .insight {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog .insight__left {
    position: static;
  }

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

  .blog .roles__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog .subscribe {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog .feed__heading {
    font-size: 31px;
  }
}

@media (max-width: 576px) {
  .blog .feed {
    padding: 28px 16px;
  }

  .blog .feed__heading {
    font-size: 23px;
  }

  .blog .insight {
    padding: 28px 16px;
  }

  .blog .roles__inner {
    padding: 0 16px;
  }

  .blog .subscribe {
    padding: 28px 16px;
  }

  .blog .post-card__body {
    padding: 16px;
  }

  .blog .insight__number {
    font-size: 43px;
  }
}

.about-author {
  background: linear-gradient(180deg, #2a2b30 0%, #1e1f23 100%);
  color: #FFF8DE;
  overflow-x: clip;
  padding: 0;
}

.about-author .profile-band {
  max-width: 1024px;
  margin: 0 auto;
  padding: 56px 28px 56px;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.about-author .profile-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(211deg, #2E2F34 0%, #FF8913 100%);
}

.about-author .profile-band::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(211deg, #FF8913 0%, #2E2F34 100%);
}

.about-author .profile-visual {
  position: relative;
}

.about-author .profile-visual__bracket {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: #FF8913;
  border-style: solid;
  z-index: 2;
}

.about-author .profile-visual__bracket--topleft {
  top: -8px;
  left: -8px;
  border-width: 3px 0 0 3px;
  border-radius: 8px 0 0 0;
}

.about-author .profile-visual__bracket--bottomright {
  bottom: -8px;
  right: -8px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 8px 0;
}

.about-author .profile-visual__image-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 25px 0 rgba(255, 137, 19, 0.08);
}

.about-author .profile-visual__image-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(30, 31, 35, 0.82) 0%, transparent 100%);
  pointer-events: none;
}

.about-author .profile-visual__image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition: filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-author .profile-visual__image-wrap:hover img {
  filter: brightness(1) saturate(1.05);
}

.about-author .profile-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-author .profile-text__label {
  font-size: 15px;
  line-height: 1.3;
  color: #FF8913;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.about-author .profile-text__name {
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFF8DE;
  margin: 0;
}

.about-author .profile-text__name span {
  display: inline-block;
  position: relative;
}

.about-author .profile-text__name span::after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 8px;
  background: linear-gradient(211deg, #2E2F34 0%, #FF8913 100%);
  margin-top: 4px;
}

.about-author .profile-text__bio {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.82);
  margin: 0;
}

.about-author .profile-text__role {
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255, 248, 222, 0.55);
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 137, 19, 0.18);
}

.about-author .zigzag-divider {
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.about-author .approach-area {
  background: linear-gradient(211deg, rgba(255, 137, 19, 0.07) 0%, rgba(30, 31, 35, 0.0) 60%);
  padding: 56px 28px;
  position: relative;
}

.about-author .approach-area__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.about-author .approach-area__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.about-author .approach-area__number {
  font-size: 58px;
  line-height: 1.1;
  color: rgba(255, 137, 19, 0.10);
  font-weight: 700;
  letter-spacing: -0.04em;
  position: absolute;
  top: -16px;
  left: -8px;
  pointer-events: none;
  user-select: none;
}

.about-author .approach-area__heading {
  font-size: 31px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #FFF8DE;
  margin: 0;
  position: relative;
  z-index: 1;
  padding-top: 28px;
}

.about-author .approach-area__subtext {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.55);
  margin: 0;
}

.about-author .approach-area__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-author .approach-area__paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.82);
  margin: 0;
}

.about-author .approach-area__image-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 9px 48px 0 rgba(255, 137, 19, 0.10);
}

.about-author .approach-area__image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.88);
  transition: filter 0.60s ease-in-out;
}

.about-author .approach-area__image-wrap:hover img {
  filter: brightness(1) saturate(1);
}

.about-author .expertise-strip {
  padding: 56px 28px;
  background: #232428;
  position: relative;
}

.about-author .expertise-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(211deg, #FF8913 0%, #2E2F34 100%);
}

.about-author .expertise-strip__inner {
  max-width: 1024px;
  margin: 0 auto;
}

.about-author .expertise-strip__top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.about-author .expertise-strip__heading {
  font-size: 31px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #FFF8DE;
  margin: 0 0 16px;
  position: relative;
}

.about-author .expertise-strip__heading .faded-num {
  font-size: 58px;
  line-height: 1.1;
  color: rgba(255, 137, 19, 0.09);
  font-weight: 700;
  position: absolute;
  top: -16px;
  left: -16px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.about-author .expertise-strip__desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.78);
  margin: 0;
}

.about-author .expertise-strip__image-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-author .expertise-strip__img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgba(255, 137, 19, 0.08);
  position: relative;
}

.about-author .expertise-strip__img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.50s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-author .expertise-strip__img-wrap:hover img {
  filter: brightness(1) saturate(1);
}

.about-author .skill-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-author .skill-list__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 137, 19, 0.14);
  background: rgba(255, 137, 19, 0.04);
  box-shadow: 0 1px 6px 0 rgba(46, 47, 52, 0.08);
  transition: box-shadow 0.50s ease-in-out, border-color 0.50s ease-in-out;
  position: relative;
}

.about-author .skill-list__item:hover {
  box-shadow: 0 5px 25px 0 rgba(255, 137, 19, 0.08), 0 0 0 1px rgba(255, 137, 19, 0.32);
  border-color: rgba(255, 137, 19, 0.32);
}

.about-author .skill-list__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(211deg, #FF8913 0%, rgba(255, 137, 19, 0.3) 100%);
  border-radius: 0 14px 0 14px;
}

.about-author .skill-list__label {
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255, 248, 222, 0.88);
  font-weight: 600;
  margin: 0 0 4px;
}

.about-author .skill-list__detail {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.55);
  margin: 0;
}

.about-author .skill-list__number {
  font-size: 23px;
  line-height: 1.1;
  color: rgba(255, 137, 19, 0.30);
  font-weight: 700;
  text-align: right;
  letter-spacing: -0.02em;
}

.about-author .contact-row {
  padding: 56px 28px;
  background: linear-gradient(211deg, #2E2F34 0%, #1e1f23 100%);
  position: relative;
}

.about-author .contact-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(211deg, #2E2F34 0%, #FF8913 100%);
}

.about-author .contact-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(211deg, #FF8913 0%, #2E2F34 100%);
}

.about-author .contact-row__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-author .contact-row__heading {
  font-size: 31px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #FFF8DE;
  margin: 0 0 16px;
  position: relative;
}

.about-author .contact-row__heading .faded-num {
  font-size: 58px;
  line-height: 1.1;
  color: rgba(255, 137, 19, 0.09);
  font-weight: 700;
  position: absolute;
  top: -16px;
  left: -16px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.about-author .contact-row__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.78);
  margin: 0 0 28px;
}

.about-author .contact-row__link {
  display: inline-block;
  padding: 16px 28px;
  background: linear-gradient(211deg, #cc6e0f 0%, #FF8913 100%);
  color: #FFF8DE;
  text-decoration: none;
  border-radius: 22px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 5px 25px 0 rgba(255, 137, 19, 0.08);
  transition: background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), letter-spacing 0.55s ease-in-out, box-shadow 0.55s ease-in-out;
}

.about-author .contact-row__link:hover {
  background: linear-gradient(31deg, #cc6e0f 0%, #FF8913 100%);
  letter-spacing: 0.04em;
  box-shadow: 0 9px 48px 0 rgba(255, 137, 19, 0.10), 0 0 0 2px rgba(255, 137, 19, 0.30);
}

.about-author .contact-row__link:focus {
  outline: 3px solid #FF8913;
  outline-offset: 4px;
}

.about-author .contact-row__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-author .contact-row__img-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 9px 48px 0 rgba(255, 137, 19, 0.10);
}

.about-author .contact-row__img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: brightness(0.80) saturate(0.85);
  transition: filter 0.60s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-author .contact-row__img-wrap:hover img {
  filter: brightness(1) saturate(1);
}

.about-author .contact-row__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-author .contact-row__meta-item {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.55);
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.about-author .contact-row__meta-item strong {
  color: rgba(255, 248, 222, 0.88);
  font-weight: 600;
}

.about-author .contact-row__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #FF8913;
  flex-shrink: 0;
  display: inline-block;
}

@keyframes author-reveal {
  from {
    opacity: 0;
    transform: rotate(-1.5deg) translateY(18px);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) translateY(0);
  }
}

.about-author .profile-band {
  animation: author-reveal 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.about-author .approach-area {
  animation: author-reveal 0.60s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s both;
}

.about-author .expertise-strip {
  animation: author-reveal 0.60s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.20s both;
}

.about-author .contact-row {
  animation: author-reveal 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.28s both;
}

@media (max-width: 992px) {
  .about-author .profile-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px 56px;
  }
  .about-author .approach-area__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-author .expertise-strip__top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
  }
  .about-author .contact-row__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-author .skill-list {
    grid-template-columns: 1fr;
  }
  .about-author .profile-text__name {
    font-size: 31px;
  }
}

@media (max-width: 576px) {
  .about-author .profile-band {
    padding: 28px 16px 28px;
  }
  .about-author .approach-area,
  .about-author .expertise-strip,
  .about-author .contact-row {
    padding: 28px 16px;
  }
  .about-author .profile-text__name {
    font-size: 23px;
  }
  .about-author .approach-area__heading,
  .about-author .expertise-strip__heading,
  .about-author .contact-row__heading {
    font-size: 23px;
  }
  .about-author .contact-row__link {
    width: 100%;
    text-align: center;
  }
}

.services-page {
    background: linear-gradient(211deg, #3a3b42 0%, #1e1f24 60%, #16171b 100%);
    min-height: 100vh;
    overflow-x: clip;
    position: relative;
}

.services-page .track-in {
    animation: trackIn 0.65s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

@keyframes trackIn {
    from { letter-spacing: -0.08em; opacity: 0; }
    to { letter-spacing: -0.02em; opacity: 1; }
}

.services-page .banner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 56px 28px 56px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: end;
    position: relative;
}

.services-page .banner__label {
    font-size: 15px;
    color: #FF8913;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.services-page .banner__declaration {
    font-size: 43px;
    line-height: 1.1;
    color: #FFF8DE;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    animation: trackIn 0.65s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

.services-page .banner__sub {
    font-size: 19px;
    line-height: 1.6;
    color: #b8b6aa;
    margin: 0;
    max-width: 480px;
}

.services-page .banner__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8px;
}

.services-page .banner__right {
    display: flex;
    flex-direction: column;
    position: relative;
}

.services-page .bracket-frame {
    position: relative;
    display: inline-block;
}

.services-page .bracket-frame::before,
.services-page .bracket-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #FF8913;
    border-style: solid;
    z-index: 2;
}

.services-page .bracket-frame::before {
    top: -8px;
    left: -8px;
    border-width: 2px 0 0 2px;
}

.services-page .bracket-frame::after {
    bottom: -8px;
    right: -8px;
    border-width: 0 2px 2px 0;
}

.services-page .banner__image-wrap {
    width: 100%;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.services-page .banner__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(30%) saturate(1.2) brightness(0.7);
    transition: filter 0.55s ease-in-out;
}

.services-page .banner__image-wrap:hover img {
    filter: sepia(10%) saturate(1.4) brightness(0.85);
}

.services-page .banner__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(211deg, rgba(255,137,19,0.35) 0%, rgba(46,47,52,0.6) 100%);
    border-radius: 14px;
    pointer-events: none;
    transition: opacity 0.55s ease-in-out;
}

.services-page .banner__image-wrap:hover .banner__image-overlay {
    opacity: 0.4;
}

.services-page .banner__divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
    border-radius: 8px;
    margin-bottom: 28px;
}

.services-page .approach-strip {
    background: linear-gradient(211deg, rgba(255,137,19,0.06) 0%, rgba(46,47,52,0.4) 100%);
    border-top: 1px solid rgba(255,137,19,0.18);
    border-bottom: 1px solid rgba(255,137,19,0.18);
    padding: 56px 28px;
}

.services-page .approach-strip__inner {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
    align-items: start;
}

.services-page .approach-strip__heading {
    font-size: 31px;
    line-height: 1.3;
    color: #FFF8DE;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    position: relative;
}

.services-page .faded-num {
    position: absolute;
    font-size: 58px;
    line-height: 1.1;
    color: rgba(255,137,19,0.08);
    top: -16px;
    left: -28px;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
}

.services-page .approach-strip__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-page .approach-strip__para {
    font-size: 16px;
    line-height: 1.6;
    color: #c4c2b8;
    margin: 0;
}

.services-page .approach-strip__side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.services-page .metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: rgba(255,137,19,0.06);
    border-radius: 14px;
    border: 1px solid rgba(255,137,19,0.14);
    transition: border-color 0.5s ease-in-out, background 0.5s ease-in-out;
}

.services-page .metric-item:hover {
    border-color: rgba(255,137,19,0.35);
    background: rgba(255,137,19,0.1);
}

.services-page .metric-item__value {
    font-size: 31px;
    line-height: 1.1;
    color: #FF8913;
    font-weight: 700;
}

.services-page .metric-item__bar-track {
    width: 100%;
    height: 3px;
    background: rgba(255,137,19,0.15);
    border-radius: 8px;
    overflow: hidden;
}

.services-page .metric-item__bar-fill {
    height: 100%;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
    border-radius: 8px;
    transition: width 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.services-page .metric-item__label {
    font-size: 15px;
    line-height: 1.3;
    color: #9e9c94;
}

.services-page .offer-grid {
    padding: 56px 28px;
    background: linear-gradient(211deg, #22232a 0%, #191a1f 100%);
    position: relative;
}

.services-page .offer-grid__shape {
    position: absolute;
    top: 28px;
    right: 56px;
    width: 180px;
    height: 180px;
    background: rgba(255,137,19,0.04);
    clip-path: polygon(30% 0%, 100% 15%, 85% 85%, 0% 70%);
    pointer-events: none;
    overflow: hidden;
}

.services-page .offer-grid__inner {
    max-width: 1024px;
    margin: 0 auto;
}

.services-page .offer-grid__heading-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 56px;
}

.services-page .offer-grid__heading {
    font-size: 31px;
    line-height: 1.3;
    color: #FFF8DE;
    letter-spacing: -0.02em;
    margin: 0;
    position: relative;
}

.services-page .offer-grid__accent-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(211deg, rgba(255,137,19,0.5), transparent);
    margin-bottom: 8px;
}

.services-page .offer-grid__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.services-page .offer-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,137,19,0.12);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-page .offer-card:hover {
    border-color: rgba(255,137,19,0.38);
    box-shadow: 0 9px 48px 0 rgba(255,137,19,0.10);
}

.services-page .offer-card__num {
    font-size: 43px;
    line-height: 1.1;
    color: rgba(255,137,19,0.1);
    font-weight: 700;
    position: absolute;
    top: 16px;
    right: 16px;
    pointer-events: none;
    user-select: none;
    transition: color 0.5s ease-in-out;
}

.services-page .offer-card:hover .offer-card__num {
    color: rgba(255,137,19,0.2);
}

.services-page .offer-card__title {
    font-size: 19px;
    line-height: 1.3;
    color: #FFF8DE;
    margin: 0;
    letter-spacing: -0.01em;
    transition: letter-spacing 0.5s ease-in-out;
}

.services-page .offer-card:hover .offer-card__title {
    letter-spacing: 0.02em;
}

.services-page .offer-card__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #9e9c94;
    margin: 0;
}

.services-page .offer-card__underline {
    width: 36px;
    height: 2px;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
    border-radius: 8px;
    margin-top: 4px;
}

.services-page .infographic-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,137,19,0.06);
    border-radius: 8px;
    border: 1px solid rgba(255,137,19,0.1);
    margin-top: 8px;
}

.services-page .infographic-row__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-page .infographic-row__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #FF8913;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-page .infographic-row__text {
    font-size: 15px;
    line-height: 1.3;
    color: #c4c2b8;
    margin: 0;
}

.services-page .infographic-row__value {
    margin-left: auto;
    font-size: 15px;
    color: #FF8913;
    font-weight: 600;
    white-space: nowrap;
}

.services-page .process-band {
    padding: 56px 28px;
    background: rgba(255,137,19,0.04);
    border-top: 1px solid rgba(255,137,19,0.1);
}

.services-page .process-band__inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.services-page .process-band__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start;
}

.services-page .process-band__heading {
    font-size: 31px;
    line-height: 1.3;
    color: #FFF8DE;
    letter-spacing: -0.02em;
    margin: 0;
    position: relative;
}

.services-page .process-band__intro {
    font-size: 16px;
    line-height: 1.6;
    color: #c4c2b8;
    margin: 0;
}

.services-page .process-steps {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: stretch;
}

.services-page .step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(255,137,19,0.1);
    position: relative;
    transition: background 0.55s ease-in-out, border-color 0.55s ease-in-out;
    cursor: default;
}

.services-page .step-item:hover {
    background: rgba(255,137,19,0.07);
    border-color: rgba(255,137,19,0.3);
}

.services-page .step-item__num {
    font-size: 31px;
    line-height: 1.1;
    color: rgba(255,137,19,0.2);
    font-weight: 700;
    transition: color 0.55s ease-in-out;
}

.services-page .step-item:hover .step-item__num {
    color: rgba(255,137,19,0.5);
}

.services-page .step-item__name {
    font-size: 15px;
    line-height: 1.3;
    color: #FFF8DE;
    margin: 0;
    font-weight: 600;
}

.services-page .step-item__detail {
    font-size: 15px;
    line-height: 1.6;
    color: #9e9c94;
    margin: 0;
}

.services-page .step-connector {
    width: 4px;
    background: linear-gradient(180deg, transparent, rgba(255,137,19,0.3), transparent);
    border-radius: 8px;
    flex-shrink: 0;
    align-self: stretch;
}

.services-page .contact-strip {
    padding: 56px 28px;
    background: linear-gradient(211deg, #2E2F34 0%, #1e1f24 100%);
    border-top: 1px solid rgba(255,137,19,0.15);
}

.services-page .contact-strip__inner {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
    align-items: center;
}

.services-page .contact-strip__heading {
    font-size: 23px;
    line-height: 1.3;
    color: #FFF8DE;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
}

.services-page .contact-strip__body {
    font-size: 16px;
    line-height: 1.6;
    color: #9e9c94;
    margin: 0;
}

.services-page .contact-strip__action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.services-page .contact-strip__link {
    display: inline-block;
    font-size: 16px;
    color: #FF8913;
    text-decoration: none;
    padding: 16px 28px;
    border: 1px solid rgba(255,137,19,0.4);
    border-radius: 22px;
    background: rgba(255,137,19,0.08);
    transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out, letter-spacing 0.5s ease-in-out;
    box-shadow: 0 5px 25px 0 rgba(255,137,19,0.08);
}

.services-page .contact-strip__link:hover {
    background: rgba(255,137,19,0.18);
    border-color: rgba(255,137,19,0.7);
    letter-spacing: 0.04em;
}

.services-page .contact-strip__link:focus {
    outline: 2px solid #FF8913;
    outline-offset: 4px;
}

.services-page .contact-strip__note {
    font-size: 15px;
    color: #6b6960;
    text-align: right;
}

@media (max-width: 992px) {
    .services-page .banner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 28px 56px;
    }

    .services-page .banner__declaration {
        font-size: 31px;
    }

    .services-page .approach-strip__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-page .offer-grid__list {
        grid-template-columns: 1fr;
    }

    .services-page .process-band__top {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-page .process-steps {
        flex-direction: column;
        gap: 4px;
    }

    .services-page .step-connector {
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, transparent, rgba(255,137,19,0.3), transparent);
    }

    .services-page .contact-strip__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-page .contact-strip__action {
        align-items: flex-start;
    }

    .services-page .contact-strip__note {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .services-page .banner {
        padding: 28px 16px 28px;
    }

    .services-page .banner__declaration {
        font-size: 23px;
    }

    .services-page .approach-strip,
    .services-page .offer-grid,
    .services-page .process-band,
    .services-page .contact-strip {
        padding: 28px 16px;
    }

    .services-page .offer-grid__heading-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 28px;
    }

    .services-page .offer-grid__accent-line {
        width: 80px;
        flex: none;
    }

    .services-page .banner__image-wrap {
        height: 220px;
    }
}

.success-page {
    min-height: 100vh;
    background: linear-gradient(211deg, #2E2F34 0%, #1a1d22 60%, #0f1115 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 16px;
}

.success-page .confirmation-block {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.success-page .confirmation-block__icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: linear-gradient(211deg, #2E2F34, #0f1115);
    border: 2px solid #FF8913;
    box-shadow: 0 1px 6px 0 rgba(255, 137, 19, 0.08), 0 5px 25px 0 rgba(255, 137, 19, 0.08), 0 9px 48px 0 rgba(255, 137, 19, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-page .confirmation-block__icon-wrapper svg {
    width: 38px;
    height: 38px;
}

.success-page .confirmation-block__heading {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFF8DE;
    text-align: center;
    margin: 0;
}

.success-page .confirmation-block__heading span {
    display: inline-block;
    position: relative;
}

.success-page .confirmation-block__heading span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    border-radius: 8px;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
}

.success-page .confirmation-block__body {
    max-width: 560px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.success-page .confirmation-block__body .body-text {
    font-size: 16px;
    line-height: 1.6;
    color: #FFF8DE;
    opacity: 0.82;
    margin: 0;
}

.success-page .confirmation-block__divider {
    width: 56px;
    height: 2px;
    border-radius: 8px;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
    margin: 0 auto;
}

.success-page .confirmation-block__meta {
    background: linear-gradient(211deg, rgba(46,47,52,0.7), rgba(15,17,21,0.9));
    border: 1px solid rgba(255, 137, 19, 0.18);
    border-radius: 14px;
    padding: 28px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 1px 6px 0 rgba(46, 47, 52, 0.08), 0 5px 25px 0 rgba(46, 47, 52, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.success-page .confirmation-block__meta .meta-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.success-page .confirmation-block__meta .meta-row__label {
    font-size: 15px;
    line-height: 1.3;
    color: #FF8913;
    flex-shrink: 0;
    min-width: 100px;
}

.success-page .confirmation-block__meta .meta-row__value {
    font-size: 15px;
    line-height: 1.3;
    color: #FFF8DE;
    opacity: 0.75;
}

.success-page .confirmation-block__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.success-page .action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: letter-spacing 0.55s ease-in-out, box-shadow 0.5s cubic-bezier(0.25,0.46,0.45,0.94), background 0.55s ease-in-out;
}

.success-page .action-button--primary {
    background: linear-gradient(211deg, #FF8913, #cc6d0a);
    color: #0f1115;
    box-shadow: 0 1px 6px 0 rgba(255, 137, 19, 0.08), 0 5px 25px 0 rgba(255, 137, 19, 0.08);
}

.success-page .action-button--primary:hover {
    letter-spacing: 0.04em;
    background: linear-gradient(31deg, #FF8913, #cc6d0a);
    box-shadow: 0 1px 6px 0 rgba(255, 137, 19, 0.08), 0 5px 25px 0 rgba(255, 137, 19, 0.08), 0 9px 48px 0 rgba(255, 137, 19, 0.10);
}

.success-page .action-button--primary:focus {
    outline: 2px solid #FFF8DE;
    outline-offset: 3px;
}

.success-page .action-button--secondary {
    background: linear-gradient(211deg, rgba(46,47,52,0.9), rgba(30,32,36,0.95));
    color: #FFF8DE;
    border: 1px solid rgba(255, 137, 19, 0.3);
    box-shadow: 0 1px 6px 0 rgba(46, 47, 52, 0.08);
}

.success-page .action-button--secondary:hover {
    letter-spacing: 0.04em;
    background: linear-gradient(31deg, rgba(46,47,52,0.9), rgba(30,32,36,0.95));
    box-shadow: 0 5px 25px 0 rgba(46, 47, 52, 0.08);
}

.success-page .action-button--secondary:focus {
    outline: 2px solid #FF8913;
    outline-offset: 3px;
}

.success-page .confirmation-block__contact-note {
    font-size: 15px;
    line-height: 1.6;
    color: #FFF8DE;
    opacity: 0.5;
    text-align: center;
    margin: 0;
}

.success-page .confirmation-block__contact-note a {
    color: #FF8913;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 137, 19, 0.35);
    transition: border-color 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 1;
}

.success-page .confirmation-block__contact-note a:hover {
    border-color: #FF8913;
    opacity: 0.8;
}

@media (max-width: 576px) {
    .success-page {
        padding: 56px 16px;
    }

    .success-page .confirmation-block__heading {
        font-size: 31px;
    }

    .success-page .confirmation-block__actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .success-page .action-button {
        width: 100%;
        text-align: center;
    }

    .success-page .confirmation-block__meta {
        padding: 16px;
    }

    .success-page .confirmation-block__meta .meta-row {
        flex-direction: column;
        gap: 4px;
    }
}

.error-page {
    min-height: 100vh;
    background: linear-gradient(211deg, #2E2F34 0%, #1a1c20 60%, #0f1012 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 28px;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: -56px;
    right: -56px;
    width: 420px;
    height: 420px;
    background: linear-gradient(211deg, rgba(255,137,19,0.07) 0%, rgba(46,47,52,0.0) 70%);
    border-radius: 48px;
    pointer-events: none;
}

.error-page::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: -28px;
    width: 280px;
    height: 280px;
    background: linear-gradient(211deg, rgba(255,248,222,0.04) 0%, rgba(46,47,52,0.0) 70%);
    border-radius: 48px;
    pointer-events: none;
}

.error-page__frame {
    max-width: 1024px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
}

.error-page__visual {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.error-page__code {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #FF8913;
    position: relative;
    display: block;
    text-shadow: 0 9px 48px rgba(255,137,19,0.10);
}

.error-page__code::before {
    content: '404';
    position: absolute;
    top: -8px;
    left: -4px;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: rgba(255,137,19,0.10);
    z-index: -1;
    filter: blur(6px);
    pointer-events: none;
}

.error-page__divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
    border-radius: 8px;
    margin: 16px 0 0 0;
}

.error-page__shape {
    width: 80px;
    height: 80px;
    margin-top: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page__shape-circle {
    width: 80px;
    height: 80px;
    border-radius: 48px;
    border: 2px solid rgba(255,137,19,0.22);
    box-shadow: 0 1px 6px 0 rgba(255,137,19,0.08), 0 5px 25px 0 rgba(255,137,19,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page__shape-inner {
    width: 36px;
    height: 36px;
    border-radius: 22px;
    background: linear-gradient(211deg, #2E2F34, #FF8913);
    opacity: 0.55;
}

.error-page__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.error-page__label {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.12em;
    color: rgba(255,248,222,0.45);
    text-transform: uppercase;
    font-weight: 600;
}

.error-page__heading {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #FFF8DE;
    font-weight: 800;
    margin: 0;
}

.error-page__heading span {
    display: inline-block;
    background: linear-gradient(211deg, #FFF8DE 30%, #FF8913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-page__description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,248,222,0.70);
    margin: 0;
    max-width: 440px;
}

.error-page__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.error-page__button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background: linear-gradient(211deg, #FF8913 0%, #cc6a00 100%);
    color: #FFF8DE;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 5px 25px 0 rgba(255,137,19,0.08), inset 0 1px 0 0 rgba(255,248,222,0.12);
    transition: background 0.55s cubic-bezier(0.25,0.46,0.45,0.94), letter-spacing 0.50s ease-in-out, box-shadow 0.55s ease-in-out;
}

.error-page__button--primary:hover,
.error-page__button--primary:focus {
    background: linear-gradient(31deg, #FF8913 0%, #cc6a00 100%);
    letter-spacing: 0.04em;
    box-shadow: 0 9px 48px 0 rgba(255,137,19,0.10), inset 0 1px 0 0 rgba(255,248,222,0.18);
    outline: none;
}

.error-page__button--primary:focus-visible {
    outline: 2px solid #FF8913;
    outline-offset: 4px;
}

.error-page__button--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background: transparent;
    color: rgba(255,248,222,0.80);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 14px;
    border: 1px solid rgba(255,137,19,0.30);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 1px 6px 0 rgba(46,47,52,0.08), inset 0 1px 0 0 rgba(255,248,222,0.05);
    transition: border-color 0.60s ease-in-out, color 0.60s ease-in-out, letter-spacing 0.50s ease-in-out, background 0.60s ease-in-out;
}

.error-page__button--secondary:hover,
.error-page__button--secondary:focus {
    border-color: rgba(255,137,19,0.70);
    color: #FFF8DE;
    background: rgba(255,137,19,0.07);
    letter-spacing: 0.04em;
    outline: none;
}

.error-page__button--secondary:focus-visible {
    outline: 2px solid #FF8913;
    outline-offset: 4px;
}

.error-page__hint {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,248,222,0.38);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.error-page__hint-dot {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #FF8913;
    opacity: 0.45;
    flex-shrink: 0;
}

.error-page__hint a {
    color: rgba(255,137,19,0.80);
    text-decoration: underline;
    text-decoration-color: rgba(255,137,19,0.30);
    text-underline-offset: 3px;
    transition: color 0.50s ease-in-out, text-decoration-color 0.50s ease-in-out;
}

.error-page__hint a:hover {
    color: #FF8913;
    text-decoration-color: rgba(255,137,19,0.70);
}

@media (max-width: 992px) {
    .error-page__frame {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

    .error-page__visual {
        flex-direction: row;
        gap: 28px;
        align-items: center;
    }

    .error-page__divider {
        display: none;
    }

    .error-page__shape {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .error-page {
        padding: 56px 16px;
    }

    .error-page__code {
        font-size: 43px;
    }

    .error-page__code::before {
        font-size: 43px;
    }

    .error-page__heading {
        font-size: 23px;
    }

    .error-page__actions {
        flex-direction: column;
        gap: 8px;
    }

    .error-page__button--primary,
    .error-page__button--secondary {
        width: 100%;
        text-align: center;
    }
}
