@charset "UTF-8";

html {
  scroll-behavior: auto;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  font-family: 'Noto Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*:focus-visible {
  outline: 2px solid #CE4168;
  outline-offset: 3px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

.brand-bar {
  background: linear-gradient(135deg, #CE4168 0%, #b8345a 100%);
  min-width: 220px;
  display: flex;
  align-items: center;
  padding: 16px 40px 16px 40px;
  position: relative;
  flex-shrink: 0;
}

.brand-bar::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 0;
  bottom: 0;
  width: 36px;
  background: linear-gradient(135deg, #CE4168 0%, #b8345a 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 1;
}

.brand-logo-circle {
  width: 76px;
  height: 76px;
  border-radius: 48px;
  background-color: #fff;
  border: 2px solid rgba(206, 65, 104, 0.18);
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07), 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo-circle img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-label {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}

.brand-descriptor {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-header {
  position: relative;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  z-index: 100;
}

.header-row {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 108px;
}

.header-navigation-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 40px 16px 56px;
  background: #fff;
}

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

.primary-menu li {
  position: relative;
}

.primary-menu li a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #2d2d2d;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.08s ease-out, background-color 0.1s ease-out;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.primary-menu li a:hover {
  color: #CE4168;
  background-color: rgba(213, 227, 211, 0.35);
}

.primary-menu li a[aria-current="page"] {
  color: #CE4168;
}

.menu-item-with-sub {
  position: relative;
}

.menu-item-with-sub>a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-top: -3px;
  vertical-align: middle;
  transition: transform 0.1s ease-out;
}

.menu-item-with-sub:hover>a::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.submenu-panel {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10), 0 8px 60px 0 rgba(206, 65, 104, 0.12);
  border-top: 3px solid #CE4168;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.12s ease-out, transform 0.12s ease-out;
  z-index: 200;
}

.menu-item-with-sub:hover .submenu-panel,
.menu-item-with-sub:focus-within .submenu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu-bridge {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.submenu-panel li a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #2d2d2d;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 0;
  min-height: 44px;
  white-space: normal;
  transition: color 0.08s ease-out, background-color 0.1s ease-out;
}

.submenu-panel li a:hover {
  color: #CE4168;
  background-color: rgba(213, 227, 211, 0.35);
}

@media (max-width: 768px) {
  .brand-bar {
    min-width: unset;
    padding: 16px;
  }

  .brand-bar::after {
    display: none;
  }

  .brand-descriptor {
    display: none;
  }

  .header-navigation-area {
    padding: 16px;
    justify-content: flex-end;
  }

  .header-row {
    min-height: unset;
  }

  .primary-menu li a {
    padding: 8px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 15px;
  }

  .brand-logo-circle {
    width: 56px;
    height: 56px;
  }

  .brand-logo-circle img {
    width: 50px;
    height: 50px;
  }
}

.site-footer {
  background: linear-gradient(160deg, #1e1028 0%, #2a1535 60%, #1a1028 100%);
  color: #e8dff0;
  padding: 80px 40px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo-circle {
  width: 76px;
  height: 76px;
  border-radius: 48px;
  background-color: #fff;
  border: 2px solid rgba(163, 191, 207, 0.30);
  box-shadow: 0 2px 6px 0 rgba(213, 227, 211, 0.07), 0 6px 20px 0 rgba(213, 227, 211, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo-circle img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-company-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-about {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(232, 223, 240, 0.72);
  text-align: center;
  max-width: 480px;
}

.footer-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #CE4168, transparent);
  border: none;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(163, 191, 207, 0.85);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.09s ease-out, background-color 0.12s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-links li a:hover {
  color: #D5E3D3;
  background-color: rgba(163, 191, 207, 0.10);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-contact-label {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(232, 223, 240, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-contact-item {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(232, 223, 240, 0.80);
  text-align: center;
}

.footer-contact-item a {
  color: #A3BFCF;
  text-decoration: none;
  transition: color 0.08s ease-out;
}

.footer-contact-item a:hover {
  color: #D5E3D3;
}

.footer-copy {
  font-size: 15px;
  line-height: 1.2;
  color: rgba(232, 223, 240, 0.40);
  text-align: center;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 16px 40px;
  }

  .footer-inner {
    gap: 40px;
  }
}

.policy-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2c2c2c;
  line-height: 1.8;
  font-size: 15px;
}

.policy-block h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #CE4168;
  margin-bottom: 40px;
  margin-top: 0;
}

.policy-block h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #CE4168;
  margin-top: 80px;
  margin-bottom: 40px;
}

.policy-block h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #CE4168;
  margin-top: 40px;
  margin-bottom: 16px;
}

.policy-block h4 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #A3BFCF;
  margin-top: 40px;
  margin-bottom: 16px;
}

.policy-block h5 {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #A3BFCF;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 8px;
}

.policy-block h6 {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #2c2c2c;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 8px;
}

.policy-block strong,
.policy-block b {
  font-weight: 700;
  color: #1e1e1e;
}

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

.policy-block a {
  color: #CE4168;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.1s ease-out, text-decoration-color 0.12s ease-out;
}

.policy-block a:hover {
  color: #a83052;
  text-decoration-color: #a83052;
}

.policy-block a:visited {
  color: #A3BFCF;
}

.policy-block div {
  margin-bottom: 16px;
}

.policy-block table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.8;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  border-radius: 6px;
  overflow: hidden;
}

.policy-block thead {
  background-color: #D5E3D3;
}

.policy-block thead th {
  padding: 16px 40px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid #A3BFCF;
}

.policy-block tbody tr {
  border-bottom: 1px solid #D5E3D3;
  transition: background-color 0.08s linear;
}

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

.policy-block tbody tr:hover {
  background-color: #f4f8f3;
}

.policy-block td {
  padding: 16px 40px;
  color: #2c2c2c;
  vertical-align: top;
  line-height: 1.8;
}

.policy-block th {
  padding: 16px 40px;
  text-align: left;
  vertical-align: top;
}

@media (max-width: 768px) {
  .policy-block {
    padding: 40px 16px;
  }

  .policy-block h1 {
    font-size: 42px;
  }

  .policy-block h2 {
    font-size: 22px;
    margin-top: 40px;
  }

  .policy-block h3 {
    font-size: 22px;
  }

  .policy-block table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .policy-block thead th,
  .policy-block td,
  .policy-block th {
    padding: 16px;
  }
}

@media (max-width: 360px) {
  .policy-block {
    padding: 40px 8px;
  }

  .policy-block h1 {
    font-size: 22px;
  }

  .policy-block h2 {
    font-size: 22px;
  }
}

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

.journal .journal-band {
  width: 60px;
  height: 4px;
  background: #CE4168;
  border-radius: 48px;
  margin: 0 auto 40px;
}

.journal .journal-dots-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.journal .journal-dots-row span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #CE4168;
  opacity: 0.5;
}

.journal .journal-dots-row span.active {
  opacity: 1;
  width: 10px;
  height: 10px;
}

.journal .dot-cluster {
  position: absolute;
  pointer-events: none;
}

.journal .dot-cluster span {
  display: block;
  border-radius: 48px;
  background: #CE4168;
  position: absolute;
}

.journal-strip {
  background: #CE4168;
  padding: 40px 16px;
  position: relative;
}

.journal-strip .journal-strip-frame {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.journal-strip .strip-text {
  flex: 1 1 auto;
}

.journal-strip .strip-image-box {
  flex: 0 0 260px;
  width: 260px;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.journal-strip .strip-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.4) sepia(0.3) brightness(0.85);
}

.journal-strip .strip-image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(206, 65, 104, 0.55) 0%, rgba(163, 191, 207, 0.30) 100%);
  border-radius: 6px;
}

.journal-strip .strip-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.journal-strip .strip-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.journal-strip .strip-heading em {
  font-style: italic;
  color: #D5E3D3;
  font-size: 46px;
}

.journal-strip .strip-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 520px;
}

.journal-strip .strip-frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 255, 255, 0.4);
  border-style: solid;
}

.journal-strip .strip-frame-corner.tl {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 6px 0 0 0;
}

.journal-strip .strip-frame-corner.tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
  border-radius: 0 6px 0 0;
}

.journal-strip .strip-frame-corner.bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 6px;
}

.journal-strip .strip-frame-corner.br {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 6px 0;
}

.journal-metrics {
  background: #fff;
  padding: 80px 16px;
  position: relative;
}

.journal-metrics .metrics-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.journal-metrics .metrics-sidebar {
  flex: 0 0 340px;
  width: 340px;
  position: relative;
}

.journal-metrics .metrics-sidebar-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a2a3a;
  margin-bottom: 16px;
}

.journal-metrics .metrics-sidebar-heading strong {
  color: #CE4168;
}

.journal-metrics .metrics-sidebar-text {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a4a;
  margin-bottom: 40px;
}

.journal-metrics .metrics-sidebar-text em {
  font-style: italic;
  font-size: 17px;
  color: #CE4168;
}

.journal-metrics .sidebar-dot-cluster {
  position: relative;
  height: 80px;
  width: 100%;
}

.journal-metrics .sidebar-dot-cluster span {
  display: block;
  border-radius: 48px;
  background: #A3BFCF;
  position: absolute;
}

.journal-metrics .metrics-right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journal-metrics .metric-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}

.journal-metrics .metric-card {
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.12s ease-out, transform 0.10s ease-out;
  position: relative;
  overflow: hidden;
}

.journal-metrics .metric-card:hover {
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
  transform: translateY(-2px);
}

.journal-metrics .metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #CE4168, #A3BFCF);
  border-radius: 6px 6px 0 0;
}

.journal-metrics .metric-card.wide {
  flex: 2 1 0;
}

.journal-metrics .metric-number {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #CE4168;
  font-weight: 700;
}

.journal-metrics .metric-label {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a4a;
}

.journal-metrics .metric-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a6a;
  margin-top: 8px;
}

.journal-metrics .progress-trail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.journal-metrics .trail-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.journal-metrics .trail-dot-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 16px;
}

.journal-metrics .trail-dot {
  width: 12px;
  height: 12px;
  border-radius: 48px;
  background: #D5E3D3;
  border: 2px solid #A3BFCF;
  flex-shrink: 0;
  transition: background 0.10s ease-out, border-color 0.10s ease-out;
}

.journal-metrics .trail-item:hover .trail-dot {
  background: #CE4168;
  border-color: #CE4168;
}

.journal-metrics .trail-line {
  width: 2px;
  flex: 1 1 auto;
  min-height: 16px;
  background: #D5E3D3;
}

.journal-metrics .trail-text {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a4a;
  padding-bottom: 8px;
}

.journal-metrics .trail-text strong {
  color: #2a2a3a;
}

.journal-process {
  background: linear-gradient(90deg, rgba(213, 227, 211, 0.45) 0%, #fff 100%);
  padding: 80px 16px;
  position: relative;
}

.journal-process .process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.journal-process .process-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.journal-process .process-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a2a3a;
  max-width: 500px;
}

.journal-process .process-heading span {
  color: #CE4168;
}

.journal-process .process-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a4a;
  max-width: 340px;
}

.journal-process .steps-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

.journal-process .step-card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 6px;
  padding: 40px 16px;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: box-shadow 0.13s ease-out;
  position: relative;
}

.journal-process .step-card:hover {
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
}

.journal-process .step-number {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, #CE4168 0%, #A3BFCF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
  animation: settle-rotate 0.55s ease-out both;
}

.journal-process .step-card:nth-child(2) .step-number {
  animation-delay: 0.08s;
}

.journal-process .step-card:nth-child(3) .step-number {
  animation-delay: 0.16s;
}

.journal-process .step-card:nth-child(4) .step-number {
  animation-delay: 0.24s;
}

@keyframes settle-rotate {
  0% {
    transform: rotate(-12deg) scale(0.85);
    opacity: 0;
  }

  70% {
    transform: rotate(4deg) scale(1.04);
    opacity: 1;
  }

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

.journal-process .step-title {
  font-size: 15px;
  line-height: 1.2;
  color: #2a2a3a;
  font-weight: 700;
}

.journal-process .step-body {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a6a;
}

.journal-process .step-connector {
  flex: 0 0 8px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
}

.journal-process .step-connector::after {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background: #A3BFCF;
  border-radius: 48px;
}

.journal-process .process-bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.journal-process .process-cta {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #CE4168 0%, #A3BFCF 100%);
  border: none !important;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  transition: box-shadow 0.12s ease-out, color 0.10s linear;
}

.journal-process .process-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.18);
  transition: height 0.13s ease-out;
  border-radius: 0 0 6px 6px;
}

.journal-process .process-cta:hover::after {
  height: 100%;
}

.journal-process .process-cta:hover {
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
}

.journal-process .process-cta:focus {
  outline: 2px solid #CE4168;
  outline-offset: 2px;
}

.journal-process .process-note {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a6a;
  font-style: italic;
}

.journal-process .process-dots-cluster {
  position: absolute;
  pointer-events: none;
}

.journal-process .process-dots-cluster span {
  display: block;
  border-radius: 48px;
  background: #CE4168;
  position: absolute;
}

@media (max-width: 1024px) {
  .journal-strip .journal-strip-frame {
    flex-direction: column;
    padding: 40px 16px;
  }

  .journal-strip .strip-image-box {
    flex: 0 0 auto;
    width: 100%;
    height: 180px;
  }

  .journal-strip .strip-heading {
    font-size: 42px;
  }

  .journal-metrics .metrics-inner {
    flex-direction: column;
  }

  .journal-metrics .metrics-sidebar {
    flex: 0 0 auto;
    width: 100%;
  }

  .journal-metrics .metric-row {
    flex-direction: column;
  }

  .journal-metrics .metric-card.wide {
    flex: 1 1 auto;
  }

  .journal-process .steps-grid {
    flex-direction: column;
  }

  .journal-process .step-connector {
    display: none;
  }

  .journal-process .process-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .journal-strip .journal-strip-frame {
    padding: 40px 16px;
  }

  .journal-strip .strip-heading {
    font-size: 42px;
  }

  .journal-strip .strip-heading em {
    font-size: 44px;
  }

  .journal-metrics {
    padding: 80px 16px;
  }

  .journal-metrics .metric-number {
    font-size: 42px;
  }

  .journal-process {
    padding: 80px 16px;
  }

  .journal-process .process-heading {
    font-size: 42px;
  }

  .journal-process .process-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 360px) {
  .journal-strip .strip-heading {
    font-size: 22px;
  }

  .journal-strip .strip-heading em {
    font-size: 24px;
  }

  .journal-metrics .metric-number {
    font-size: 42px;
  }

  .journal-process .process-heading {
    font-size: 22px;
  }
}

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

.base .constrained {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 768px) {
  .base .constrained {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===================== SECTION 1 - TITLE BLOCK ===================== */
.base .title-block {
  background: #f5f0ee;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.base .title-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(206, 65, 104, 0.025) 3px,
      rgba(206, 65, 104, 0.025) 4px);
  pointer-events: none;
}

.base .title-block .corner-line-tl {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 48px;
  height: 48px;
  border-top: 1px solid rgba(206, 65, 104, 0.35);
  border-left: 1px solid rgba(206, 65, 104, 0.35);
  pointer-events: none;
}

.base .title-block .corner-line-br {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-bottom: 1px solid rgba(163, 191, 207, 0.45);
  border-right: 1px solid rgba(163, 191, 207, 0.45);
  pointer-events: none;
}

.base .title-block .title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

@media (max-width: 768px) {
  .base .title-block .title-row {
    flex-direction: column;
    gap: 40px;
  }
}

.base .title-block .title-text {
  flex: 1 1 0;
}

.base .title-block .label-tag {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #CE4168;
  background: rgba(206, 65, 104, 0.08);
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.base .title-block .main-heading {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1e1e2e;
  margin-bottom: 16px;
}

.base .title-block .main-heading .word-accent {
  color: #CE4168;
}

@media (max-width: 768px) {
  .base .title-block .main-heading {
    font-size: 42px;
  }
}

@media (max-width: 360px) {
  .base .title-block .main-heading {
    font-size: 22px;
  }
}

.base .title-block .sub-text {
  font-size: 22px;
  line-height: 1.8;
  color: #3a3a4a;
  max-width: 520px;
}

.base .title-block .title-image-col {
  flex: 0 0 380px;
  position: relative;
}

@media (max-width: 1024px) {
  .base .title-block .title-image-col {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .base .title-block .title-image-col {
    flex: 0 0 auto;
    width: 100%;
  }
}

.base .title-block .image-frame {
  width: 100%;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  position: relative;
}

.base .title-block .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.base .title-block .image-frame .scanline-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(180deg,
      transparent,
      transparent 2px,
      rgba(30, 30, 46, 0.06) 2px,
      rgba(30, 30, 46, 0.06) 3px);
  pointer-events: none;
}

/* ===================== SECTION 2 - OBJECTION ===================== */
.base .objection-band {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.base .objection-band::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom right, #ffffff 50%, #f0f4f2 50%);
  pointer-events: none;
}

.base .objection-band .objection-grid {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .base .objection-band .objection-grid {
    flex-direction: column;
    gap: 40px;
  }
}

.base .objection-band .objection-anchor {
  flex: 0 0 auto;
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: rgba(206, 65, 104, 0.10);
  font-weight: 700;
  user-select: none;
  pointer-events: none;
}

.base .objection-band .objection-body {
  flex: 1 1 0;
}

.base .objection-band .objection-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1e1e2e;
  margin-bottom: 16px;
}

.base .objection-band .objection-heading .word-accent {
  color: #A3BFCF;
}

.base .objection-band .objection-paragraph {
  font-size: 15px;
  line-height: 1.8;
  color: #2e2e3e;
  margin-bottom: 16px;
  max-width: 560px;
}

.base .objection-band .objection-note {
  font-size: 15px;
  line-height: 1.8;
  color: #2e2e3e;
  font-style: italic;
  font-size: 22px;
  max-width: 480px;
}

/* ===================== SECTION 3 - REAL CLIENTS ===================== */
.base .clients-band {
  background: #f0f4f2;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.base .clients-band .clients-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1e1e2e;
  text-align: center;
  margin-bottom: 40px;
}

.base .clients-band .clients-heading .word-accent {
  color: #CE4168;
}

.base .clients-band .client-cards {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

@media (max-width: 768px) {
  .base .clients-band .client-cards {
    flex-direction: column;
  }
}

.base .clients-band .client-card {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  transition: box-shadow 0.12s ease-out;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.base .clients-band .client-card:hover {
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
}

.base .clients-band .client-portrait {
  width: 80px;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.base .clients-band .client-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.10s ease-out;
}

.base .clients-band .client-card:hover .client-portrait img {
  transform: scale(1.04);
}

.base .clients-band .client-name {
  font-size: 15px;
  line-height: 1.2;
  color: #CE4168;
  letter-spacing: 0.04em;
}

.base .clients-band .client-role {
  font-size: 15px;
  line-height: 1.2;
  color: #6a6a7a;
}

.base .clients-band .client-text {
  font-size: 15px;
  line-height: 1.8;
  color: #2e2e3e;
}

.base .clients-band .client-outcome {
  font-size: 15px;
  line-height: 1.8;
  color: #1e1e2e;
  font-style: italic;
  border-top: 1px solid rgba(163, 191, 207, 0.4);
  padding-top: 16px;
}

/* ===================== SECTION 4 - THE MAIN PROBLEM ===================== */
.base .problem-band {
  background: #1e1e2e;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.base .problem-band .problem-row {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .base .problem-band .problem-row {
    flex-direction: column;
    gap: 40px;
  }
}

.base .problem-band .problem-image-col {
  flex: 0 0 440px;
  position: relative;
}

@media (max-width: 1024px) {
  .base .problem-band .problem-image-col {
    flex: 0 0 320px;
  }
}

@media (max-width: 768px) {
  .base .problem-band .problem-image-col {
    flex: 0 0 auto;
    width: 100%;
  }
}

.base .problem-band .problem-image-wrap {
  width: 100%;
  height: 360px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
  transition: box-shadow 0.13s ease-out;
}

.base .problem-band .problem-image-wrap:hover {
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
}

.base .problem-band .problem-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.15s ease-out;
}

.base .problem-band .problem-image-wrap:hover img {
  transform: scale(1.03);
}

.base .problem-band .problem-text-col {
  flex: 1 1 0;
}

.base .problem-band .problem-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 16px;
}

.base .problem-band .problem-heading .word-accent {
  color: #CE4168;
}

.base .problem-band .problem-paragraph {
  font-size: 15px;
  line-height: 1.8;
  color: #c8c8d8;
  margin-bottom: 16px;
}

.base .problem-band .problem-emphasis {
  font-size: 22px;
  line-height: 1.8;
  color: #D5E3D3;
  font-style: italic;
}

/* ===================== SECTION 5 - ADAPTABILITY ===================== */
.base .adapt-band {
  background: #f5f0ee;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.base .adapt-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(ellipse at center, rgba(213, 227, 211, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.base .adapt-band .adapt-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1e1e2e;
  text-align: center;
  margin-bottom: 40px;
}

.base .adapt-band .adapt-heading .word-accent {
  color: #A3BFCF;
}

.base .adapt-band .adapt-image-wide {
  width: 100%;
  height: 340px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  margin-bottom: 40px;
  position: relative;
}

.base .adapt-band .adapt-image-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.13s ease-out;
}

.base .adapt-band .adapt-image-wide:hover img {
  transform: scale(1.02);
}

.base .adapt-band .adapt-steps {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .base .adapt-band .adapt-steps {
    flex-direction: column;
    gap: 16px;
  }
}

.base .adapt-band .adapt-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  position: relative;
}

.base .adapt-band .adapt-step::after {
  content: "";
  position: absolute;
  top: 12px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: rgba(163, 191, 207, 0.5);
}

.base .adapt-band .adapt-step:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .base .adapt-band .adapt-step::after {
    display: none;
  }
}

.base .adapt-band .adapt-dot {
  width: 24px;
  height: 24px;
  border-radius: 48px;
  background: #D5E3D3;
  border: 2px solid #A3BFCF;
  flex-shrink: 0;
  transition: background 0.10s ease-out, border-color 0.10s ease-out;
}

.base .adapt-band .adapt-step:hover .adapt-dot {
  background: #CE4168;
  border-color: #CE4168;
}

.base .adapt-band .adapt-step-label {
  font-size: 15px;
  line-height: 1.8;
  color: #2e2e3e;
}

/* ===================== SECTION 6 - WORKING RELATIONSHIP ===================== */
.base .relation-band {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.base .relation-band::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom left, #f5f0ee 50%, #ffffff 50%);
  pointer-events: none;
}

.base .relation-band .relation-row {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .base .relation-band .relation-row {
    flex-direction: column;
    gap: 40px;
  }
}

.base .relation-band .relation-text-col {
  flex: 1 1 0;
}

.base .relation-band .relation-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1e1e2e;
  margin-bottom: 16px;
}

.base .relation-band .relation-heading .word-accent {
  color: #CE4168;
}

.base .relation-band .relation-paragraph {
  font-size: 15px;
  line-height: 1.8;
  color: #2e2e3e;
  margin-bottom: 16px;
}

.base .relation-band .relation-emphasis {
  font-size: 22px;
  line-height: 1.8;
  color: #1e1e2e;
  font-style: italic;
  margin-bottom: 16px;
}

.base .relation-band .relation-image-col {
  flex: 0 0 360px;
}

@media (max-width: 1024px) {
  .base .relation-band .relation-image-col {
    flex: 0 0 260px;
  }
}

@media (max-width: 768px) {
  .base .relation-band .relation-image-col {
    flex: 0 0 auto;
    width: 100%;
  }
}

.base .relation-band .relation-image-wrap {
  width: 100%;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px 0 rgba(213, 227, 211, 0.07);
  transition: box-shadow 0.11s ease-out;
}

.base .relation-band .relation-image-wrap:hover {
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
}

.base .relation-band .relation-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.14s ease-out;
}

.base .relation-band .relation-image-wrap:hover img {
  transform: scale(1.04);
}

/* ===================== SECTION 7 - SCALE / CONSISTENCY ===================== */
.base .scale-band {
  background: #f0f4f2;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.base .scale-band .scale-anchor {
  position: absolute;
  top: 40px;
  right: 80px;
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: rgba(163, 191, 207, 0.12);
  font-weight: 700;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .base .scale-band .scale-anchor {
    display: none;
  }
}

.base .scale-band .scale-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1e1e2e;
  text-align: center;
  margin-bottom: 40px;
}

.base .scale-band .scale-heading .word-accent {
  color: #CE4168;
}

.base .scale-band .scale-metrics {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .base .scale-band .scale-metrics {
    flex-direction: column;
  }
}

.base .scale-band .metric-box {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 6px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  transition: box-shadow 0.09s ease-out, transform 0.09s ease-out;
}

.base .scale-band .metric-box:hover {
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  transform: translateY(-4px);
}

.base .scale-band .metric-number {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #CE4168;
  display: block;
}

.base .scale-band .metric-label {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a4a;
}

.base .scale-band .scale-image-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .base .scale-band .scale-image-row {
    flex-direction: column;
  }
}

.base .scale-band .scale-image-wide {
  flex: 2 1 0;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
}

.base .scale-band .scale-image-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.12s ease-out;
}

.base .scale-band .scale-image-wide:hover img {
  transform: scale(1.03);
}

.base .scale-band .scale-text-side {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.base .scale-band .scale-paragraph {
  font-size: 15px;
  line-height: 1.8;
  color: #2e2e3e;
}

.base .scale-band .scale-note {
  font-size: 22px;
  line-height: 1.8;
  color: #1e1e2e;
  font-style: italic;
}

/* ===================== REVEAL ANIMATIONS ===================== */
@keyframes slideUpReveal {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

.base .title-block .label-tag {
  animation: slideUpReveal 0.12s ease-out both;
  animation-delay: 0.05s;
}

.base .title-block .main-heading {
  animation: slideUpReveal 0.13s ease-out both;
  animation-delay: 0.10s;
}

.base .title-block .sub-text {
  animation: slideUpReveal 0.14s ease-out both;
  animation-delay: 0.15s;
}

.base .title-block .title-image-col {
  animation: slideUpReveal 0.15s ease-out both;
  animation-delay: 0.20s;
}

/* ===================== CYCLING HIGHLIGHT - METRIC BOXES ===================== */
@keyframes cycleHighlight {

  0%,
  30% {
    box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
    transform: translateY(-4px);
  }

  33%,
  100% {
    box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
    transform: translateY(0);
  }
}

.base .scale-band .metric-box:nth-child(1) {
  animation: cycleHighlight 3s 0.0s infinite;
}

.base .scale-band .metric-box:nth-child(2) {
  animation: cycleHighlight 3s 1.0s infinite;
}

.base .scale-band .metric-box:nth-child(3) {
  animation: cycleHighlight 3s 2.0s infinite;
}

.base .scale-band .metric-box:hover {
  animation: none;
}

.podcast {
  background-color: #ffffff;
  overflow-x: hidden;
}

.podcast .framed-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.podcast .stripe-bg {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.podcast .stripe-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
      rgba(206, 65, 104, 0.04) 0px,
      rgba(206, 65, 104, 0.04) 1px,
      transparent 1px,
      transparent 18px);
  pointer-events: none;
  z-index: 0;
}

.podcast .stripe-bg>* {
  position: relative;
  z-index: 1;
}

.podcast .title-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.podcast .image-frame {
  flex: 0 0 420px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
}

.podcast .image-frame img {
  width: 420px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.podcast .image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(206, 65, 104, 0.12);
  pointer-events: none;
}

.podcast .title-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.podcast .label-tag {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #CE4168;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 16px;
  background-color: #D5E3D3;
  border-radius: 48px;
  align-self: flex-start;
  line-height: 1.2;
}

.podcast .main-heading {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.podcast .main-heading .word-one {
  color: #CE4168;
}

.podcast .main-heading .word-rest {
  color: #2d3748;
}

.podcast .lead-text {
  font-size: 22px;
  line-height: 1.8;
  color: #374151;
  margin: 0;
  font-style: italic;
}

.podcast .body-text {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin: 0;
}

.podcast .divider-triangle-down {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.podcast .divider-triangle-down svg {
  display: block;
  width: 100%;
}

.podcast .divider-triangle-up {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.podcast .divider-triangle-up svg {
  display: block;
  width: 100%;
}

.podcast .episodes-band {
  background-color: #D5E3D3;
  padding: 0;
}

.podcast .episodes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.podcast .episodes-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
  text-align: center;
}

.podcast .episodes-heading .word-one {
  color: #CE4168;
}

.podcast .episodes-heading .word-rest {
  color: #2d3748;
}

.podcast .episodes-sub {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  text-align: center;
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.podcast .episode-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.podcast .episode-card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  transition: box-shadow 0.12s ease-out, transform 0.10s ease-out;
  cursor: default;
}

.podcast .episode-card:hover {
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  transform: translateY(-2px);
}

.podcast .episode-number {
  flex: 0 0 auto;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #CE4168;
  opacity: 0.22;
  letter-spacing: -0.02em;
  min-width: 64px;
  text-align: right;
}

.podcast .episode-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.podcast .episode-title {
  font-size: 22px;
  line-height: 1.2;
  color: #2d3748;
  margin: 0;
  font-weight: 600;
}

.podcast .episode-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin: 0;
}

.podcast .episode-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.podcast .meta-pill {
  font-size: 15px;
  line-height: 1.2;
  color: #CE4168;
  background-color: rgba(206, 65, 104, 0.08);
  padding: 8px 16px;
  border-radius: 48px;
  font-weight: 500;
}

.podcast .meta-duration {
  font-size: 15px;
  line-height: 1.2;
  color: #6b6b7a;
}

.podcast .trail-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.podcast .trail-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 40px 0;
}

.podcast .trail-heading .word-one {
  color: #CE4168;
}

.podcast .trail-heading .word-rest {
  color: #2d3748;
}

.podcast .trail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.podcast .trail-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.podcast .trail-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  position: relative;
}

.podcast .trail-step::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 40px;
  width: 2px;
  height: calc(100% - 16px);
  background-color: #D5E3D3;
}

.podcast .trail-step:last-child::after {
  display: none;
}

.podcast .dot-wrap {
  flex: 0 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.podcast .dot {
  width: 24px;
  height: 24px;
  border-radius: 48px;
  background-color: #D5E3D3;
  border: 3px solid #A3BFCF;
  transition: background-color 0.10s ease-out, border-color 0.12s ease-out;
}

.podcast .trail-step.active-step .dot {
  background-color: #CE4168;
  border-color: #CE4168;
}

.podcast .step-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.podcast .step-label {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}

.podcast .step-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin: 0;
}

.podcast .contrast-panel {
  background: linear-gradient(160deg, #D5E3D3 0%, transparent 100%);
  border-radius: 6px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: 0 6px 20px 0 rgba(163, 191, 207, 0.10);
}

.podcast .numbers-pair {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
}

.podcast .number-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 6px;
  text-align: center;
}

.podcast .number-box.before {
  background-color: rgba(163, 191, 207, 0.18);
}

.podcast .number-box.after {
  background-color: rgba(206, 65, 104, 0.08);
}

.podcast .number-value {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.podcast .number-box.before .number-value {
  color: #A3BFCF;
}

.podcast .number-box.after .number-value {
  color: #CE4168;
}

.podcast .number-label {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

.podcast .versus-sep {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #A3BFCF;
}

.podcast .code-output-pair {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.podcast .code-label {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.podcast .code-block {
  background-color: #2d3748;
  border-radius: 6px;
  padding: 16px;
  overflow: hidden;
}

.podcast .code-block code {
  font-size: 15px;
  line-height: 1.8;
  color: #D5E3D3;
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
}

.podcast .output-block {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 2px 6px 0 rgba(163, 191, 207, 0.07);
}

.podcast .output-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #D5E3D3;
}

.podcast .output-row:last-child {
  border-bottom: none;
}

.podcast .output-key {
  font-size: 15px;
  line-height: 1.2;
  color: #A3BFCF;
  font-weight: 500;
}

.podcast .output-val {
  font-size: 15px;
  line-height: 1.2;
  color: #CE4168;
  font-weight: 700;
}

.podcast .meta-duration {
  color: #5a5a6e;
}

@media (max-width: 1024px) {
  .podcast .title-grid {
    flex-direction: column;
    gap: 40px;
  }

  .podcast .image-frame {
    flex: 0 0 auto;
    width: 100%;
  }

  .podcast .image-frame img {
    width: 100%;
    height: 360px;
  }

  .podcast .trail-grid {
    grid-template-columns: 1fr;
  }

  .podcast .main-heading {
    font-size: 42px;
  }
}

@media (max-width: 768px) {

  .podcast .framed-block,
  .podcast .episodes-inner,
  .podcast .trail-block {
    padding: 40px 16px;
  }

  .podcast .main-heading {
    font-size: 42px;
  }

  .podcast .episode-card {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .podcast .episode-number {
    font-size: 22px;
    min-width: auto;
    text-align: left;
  }

  .podcast .numbers-pair {
    flex-direction: column;
    gap: 16px;
  }

  .podcast .versus-sep {
    justify-content: center;
  }

  .podcast .title-grid {
    gap: 40px;
  }
}

@media (max-width: 360px) {
  .podcast .main-heading {
    font-size: 42px;
  }

  .podcast .episodes-heading,
  .podcast .trail-heading {
    font-size: 22px;
  }
}

.about-us {
  overflow-x: hidden;
  background: #ffffff;
}

.about-us * {
  box-sizing: border-box;
}

.about-us ::selection {
  background: #CE4168;
  color: #ffffff;
}

/* ── SECTION 1: TITLE BLOCK ── */
.about-us .story-lead {
  padding: 80px 40px 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #f5f0f2 0%, #ffffff 100%);
}

.about-us .story-lead-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-us .geo-bg {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border: 1px solid rgba(206, 65, 104, 0.08);
  border-radius: 6px;
  animation: slowRotate 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.about-us .geo-bg::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(163, 191, 207, 0.12);
  border-radius: 6px;
}

@keyframes slowRotate {
  from {
    transform: translateX(-50%) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.about-us .story-lead-text {
  position: relative;
  z-index: 1;
}

.about-us .lead-eyebrow {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #CE4168;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-us .lead-h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #1e1e2e;
}

.about-us .lead-h1 .word-accent {
  color: #CE4168;
}

.about-us .lead-h2 {
  font-size: 22px;
  line-height: 1.8;
  color: #A3BFCF;
  margin-bottom: 40px;
  font-style: italic;
}

.about-us .lead-paragraph {
  font-size: 15px;
  line-height: 1.8;
  color: #2c2c3a;
  max-width: 560px;
  margin: 0 auto 40px;
}

.about-us .story-image-row {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}

.about-us .image-frame {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  flex-shrink: 0;
}

.about-us .image-frame img {
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.12s ease-out;
}

.about-us .image-frame:hover img {
  transform: scale(1.03);
}

.about-us .img-main {
  width: 480px;
  height: 320px;
}

.about-us .img-main img {
  width: 480px;
  height: 320px;
  filter: saturate(1.15) contrast(1.05);
}

.about-us .img-side {
  width: 220px;
  height: 320px;
}

.about-us .img-side img {
  width: 220px;
  height: 320px;
}

.about-us .wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 40px;
}

.about-us .wave-divider svg {
  display: block;
  width: 100%;
}

/* ── SECTION 2: TIMELINE + PORTRAIT ── */
.about-us .story-depth {
  padding: 80px 40px;
  background: #ffffff;
  position: relative;
}

.about-us .story-depth-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.about-us .portrait-column {
  flex-shrink: 0;
  width: 280px;
}

.about-us .portrait-frame {
  width: 280px;
  height: 350px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
}

.about-us .portrait-frame img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.15s ease-out;
}

.about-us .portrait-frame:hover img {
  transform: scale(1.04);
}

.about-us .portrait-caption {
  margin-top: 16px;
  text-align: center;
}

.about-us .portrait-name {
  font-size: 15px;
  color: #1e1e2e;
  line-height: 1.2;
  font-weight: 600;
}

.about-us .portrait-role {
  font-size: 15px;
  color: #A3BFCF;
  line-height: 1.8;
}

.about-us .timeline-column {
  flex: 1;
  min-width: 0;
}

.about-us .block-accent-bar {
  width: 40px;
  height: 3px;
  background: #CE4168;
  border-radius: 6px;
  margin-bottom: 16px;
}

.about-us .timeline-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #1e1e2e;
  margin-bottom: 40px;
}

.about-us .timeline-heading .word-accent {
  color: #CE4168;
}

.about-us .timeline-list {
  position: relative;
  padding-left: 40px;
}

.about-us .timeline-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #CE4168 0%, #D5E3D3 60%, transparent 100%);
}

.about-us .timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.about-us .timeline-item:last-child {
  margin-bottom: 0;
}

.about-us .timeline-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 48px;
  background: #ffffff;
  border: 2px solid #CE4168;
  transition: background 0.1s ease-out, border-color 0.1s ease-out;
}

.about-us .timeline-item:hover .timeline-dot {
  background: #CE4168;
}

.about-us .timeline-period {
  font-size: 15px;
  color: #CE4168;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.about-us .timeline-event-title {
  font-size: 22px;
  line-height: 1.2;
  color: #1e1e2e;
  margin-bottom: 8px;
}

.about-us .timeline-event-title .word-accent {
  color: #A3BFCF;
}

.about-us .timeline-event-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a4a;
}

/* ── SECTION 3: FOUR-COLUMN GRID + GLOW ── */
.about-us .approach-grid {
  padding: 80px 40px;
  background: radial-gradient(ellipse at center, #f8f4f6 0%, #ede8ec 100%);
  position: relative;
}

.about-us .approach-grid-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-us .approach-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-us .approach-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #1e1e2e;
  margin-bottom: 16px;
}

.about-us .approach-heading .word-accent {
  color: #CE4168;
}

.about-us .approach-sub {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a4a;
  max-width: 480px;
  margin: 0 auto;
}

.about-us .cards-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.about-us .method-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 6px;
  padding: 40px 16px;
  text-align: center;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.1s ease-out, transform 0.1s ease-out;
  animation: borderGlow 1.8s ease-out forwards;
  animation-delay: calc(var(--card-index) * 0.2s);
  border: 1.5px solid transparent;
}

@keyframes borderGlow {
  0% {
    border-color: transparent;
    box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  }

  60% {
    border-color: rgba(206, 65, 104, 0.5);
    box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.18);
  }

  100% {
    border-color: rgba(206, 65, 104, 0.15);
    box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  }
}

.about-us .method-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(206, 65, 104, 0.08) 0%, rgba(163, 191, 207, 0.08) 100%);
  transition: height 0.12s ease-out;
}

.about-us .method-card:hover::before {
  height: 100%;
}

.about-us .method-card:hover {
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  transform: translateY(-2px);
}

.about-us .card-icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  position: relative;
}

.about-us .card-icon-shape {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, #D5E3D3 0%, #A3BFCF 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.about-us .card-icon-shape svg {
  width: 24px;
  height: 24px;
  stroke: #CE4168;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-us .method-card-title {
  font-size: 15px;
  line-height: 1.2;
  color: #CE4168;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-us .method-card-body {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a4a;
}

.about-us .connector-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.about-us .connector-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.about-us .connector-node {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: #CE4168;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  flex-shrink: 0;
}

.about-us .connector-node svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-us .connector-label {
  font-size: 15px;
  color: #3a3a4a;
  line-height: 1.2;
  white-space: nowrap;
}

.about-us .connector-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #CE4168 0%, #A3BFCF 100%);
  min-width: 40px;
  max-width: 80px;
  margin-bottom: 16px;
}

.about-us .approach-image-strip {
  margin-top: 40px;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  height: 220px;
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
}

.about-us .approach-image-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.15s ease-out;
}

.about-us .approach-image-strip:hover img {
  transform: scale(1.02);
}

/* ── DIAGONAL STRIPE HOVER ── */
.about-us .method-card .stripe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(135deg,
      transparent,
      transparent 18px,
      rgba(206, 65, 104, 0.04) 18px,
      rgba(206, 65, 104, 0.04) 20px);
  opacity: 0;
  transition: opacity 0.1s ease-out;
  pointer-events: none;
  border-radius: 6px;
}

.about-us .method-card:hover .stripe-overlay {
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-us .lead-h1 {
    font-size: 42px;
  }

  .about-us .story-depth-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-us .portrait-column {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .about-us .portrait-frame {
    width: 200px;
    height: 250px;
  }

  .about-us .portrait-frame img {
    width: 200px;
    height: 250px;
  }

  .about-us .portrait-caption {
    text-align: left;
  }

  .about-us .story-image-row {
    flex-direction: column;
    align-items: center;
  }

  .about-us .img-main {
    width: 100%;
    max-width: 480px;
    height: 240px;
  }

  .about-us .img-main img {
    width: 100%;
    height: 240px;
  }

  .about-us .img-side {
    width: 100%;
    max-width: 480px;
    height: 200px;
  }

  .about-us .img-side img {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .about-us .story-lead {
    padding: 40px 16px 40px;
  }

  .about-us .lead-h1 {
    font-size: 42px;
  }

  .about-us .lead-h2 {
    font-size: 15px;
  }

  .about-us .story-depth {
    padding: 40px 16px;
  }

  .about-us .timeline-heading {
    font-size: 22px;
  }

  .about-us .approach-grid {
    padding: 40px 16px;
  }

  .about-us .approach-heading {
    font-size: 22px;
  }

  .about-us .connector-row {
    display: none;
  }

  .about-us .cards-row {
    flex-direction: column;
  }

  .about-us .geo-bg {
    width: 200px;
    height: 200px;
  }

  .about-us .portrait-column {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-us .portrait-caption {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .about-us .lead-h1 {
    font-size: 22px;
  }

  .about-us .story-lead {
    padding: 40px 8px 40px;
  }

  .about-us .story-depth {
    padding: 40px 8px;
  }

  .about-us .approach-grid {
    padding: 40px 8px;
  }
}

.contact-us {
  background: #ffffff;
  overflow-x: clip;
}

.contact-us .grain-panel {
  position: relative;
  background: #f4eff1;
  padding: 80px 16px;
}

.contact-us .grain-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  border-radius: 0;
  opacity: 0.6;
}

.contact-us .grain-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

.contact-us .grain-left {
  flex: 0 0 420px;
  position: relative;
  z-index: 1;
}

.contact-us .grain-right {
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}

.contact-us .page-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #CE4168;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  line-height: 1.2;
}

.contact-us .grain-heading {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  color: #2b2b2b;
}

.contact-us .grain-heading em {
  font-style: italic;
  color: #CE4168;
  font-size: 64px;
}

.contact-us .grain-description {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 40px;
  max-width: 360px;
}

.contact-us .contact-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-us .fact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.contact-us .fact-dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #CE4168;
  margin-top: 7px;
  flex-shrink: 0;
}

.contact-us .fact-text {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a3a;
}

.contact-us .fact-text a {
  color: #CE4168;
  text-decoration: none;
  border-bottom: 1px solid rgba(206, 65, 104, 0.3);
  transition: border-color 0.1s ease-out, color 0.1s ease-out;
}

.contact-us .fact-text a:hover {
  color: #a8304f;
  border-bottom-color: #a8304f;
}

.contact-us .image-shifted {
  width: 100%;
  max-width: 440px;
  height: 320px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
  position: relative;
  margin-bottom: 40px;
}

.contact-us .image-shifted img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85) brightness(0.97);
  transition: transform 0.12s ease-out;
}

.contact-us .image-shifted:hover img {
  transform: scale(1.03);
}

.contact-us .channel-shift {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(206, 65, 104, 0.12) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 6px;
}

.contact-us .diamond-accent {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #CE4168;
  transform: rotate(45deg);
  border-radius: 6px;
  top: -16px;
  right: -16px;
  z-index: 2;
  opacity: 0.18;
}

.contact-us .form-block {
  background: #ffffff;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  position: relative;
  overflow: hidden;
}

.contact-us .form-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #CE4168 0%, #A3BFCF 100%);
  border-radius: 0 0 6px 6px;
}

.contact-us .form-heading {
  font-size: 22px;
  line-height: 1.2;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.contact-us .form-heading span {
  color: #CE4168;
}

.contact-us .form-subtext {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.contact-us .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-us .field-label {
  font-size: 15px;
  line-height: 1.2;
  color: #2b2b2b;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-us .field-input {
  width: 100%;
  padding: 16px;
  border: 1.5px solid #D5E3D3;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.2;
  color: #2b2b2b;
  background: #fafcfa;
  outline: none;
  transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
  box-sizing: border-box;
}

.contact-us .field-input::placeholder {
  color: #A3BFCF;
}

.contact-us .field-input:focus {
  border-color: #CE4168;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  background: #ffffff;
}

.contact-us .budget-label {
  font-size: 15px;
  line-height: 1.2;
  color: #2b2b2b;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  display: block;
}

.contact-us .budget-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-us .budget-option {
  position: relative;
}

.contact-us .budget-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-us .budget-option label {
  display: block;
  padding: 8px 16px;
  border: 1.5px solid #D5E3D3;
  border-radius: 48px;
  font-size: 15px;
  line-height: 1.2;
  color: #3a3a3a;
  cursor: pointer;
  transition: border-color 0.1s ease-out, background 0.1s ease-out, color 0.1s ease-out;
  background: #ffffff;
  user-select: none;
}

.contact-us .budget-option input[type="radio"]:checked+label {
  background: #CE4168;
  border-color: #CE4168;
  color: #ffffff;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
}

.contact-us .budget-option input[type="radio"]:focus-visible+label {
  outline: 2px solid #CE4168;
  outline-offset: 2px;
}

.contact-us .budget-option label:hover {
  border-color: #CE4168;
  color: #CE4168;
}

.contact-us .budget-option input[type="radio"]:checked+label:hover {
  color: #ffffff;
}

.contact-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
  padding: 16px;
  background: #f7f2f4;
  border-radius: 6px;
}

.contact-us .privacy-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #CE4168;
  cursor: pointer;
}

.contact-us .privacy-text {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a3a;
}

.contact-us .privacy-text a {
  color: #CE4168;
  text-decoration: none;
  border-bottom: 1px solid rgba(206, 65, 104, 0.3);
  transition: border-color 0.09s linear;
}

.contact-us .privacy-text a:hover {
  border-bottom-color: #CE4168;
}

.contact-us .submit-button {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(160deg, #CE4168 0%, #a8304f 100%);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  transition: box-shadow 0.12s ease-out, transform 0.1s ease-out;
  width: 100%;
  text-align: center;
}

.contact-us .submit-button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  transition: height 0.12s ease-out;
  border-radius: 0 0 6px 6px;
}

.contact-us .submit-button:hover::before {
  height: 100%;
}

.contact-us .submit-button:hover {
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
  transform: translateY(-1px);
}

.contact-us .submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
}

.contact-us .submit-button:focus-visible {
  outline: 2px solid #CE4168;
  outline-offset: 3px;
}

.contact-us .curve-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.contact-us .curve-divider svg {
  display: block;
  width: 100%;
}

.contact-us .info-strip {
  background: #2b2b2b;
  padding: 80px 16px;
  position: relative;
}

.contact-us .hex-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-us .hex-bg svg {
  width: 100%;
  height: 100%;
  opacity: 0.05;
}

.contact-us .info-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-us .info-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.contact-us .info-col {
  flex: 1 1 0;
}

.contact-us .info-col-heading {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A3BFCF;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-us .info-col-value {
  font-size: 22px;
  line-height: 1.8;
  color: #f0eded;
}

.contact-us .info-col-value a {
  color: #D5E3D3;
  text-decoration: none;
  transition: color 0.1s ease-out;
}

.contact-us .info-col-value a:hover {
  color: #CE4168;
}

.contact-us .info-image-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.contact-us .info-image-wrap {
  flex: 0 0 380px;
  height: 260px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 60px 0 rgba(213, 227, 211, 0.12);
  position: relative;
}

.contact-us .info-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-us .info-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(206, 65, 104, 0.18) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 6px;
}

.contact-us .info-aside {
  flex: 1 1 auto;
}

.contact-us .info-aside-heading {
  font-size: 42px;
  line-height: 1.2;
  color: #f0eded;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.contact-us .info-aside-heading span {
  color: #CE4168;
}

.contact-us .info-aside-text {
  font-size: 15px;
  line-height: 1.8;
  color: #b5b0b2;
  margin-bottom: 16px;
}

.contact-us .journal-link {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid #A3BFCF;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.2;
  color: #A3BFCF;
  text-decoration: none;
  transition: background 0.1s ease-out, color 0.1s ease-out, border-color 0.1s ease-out;
}

.contact-us .journal-link:hover {
  background: #A3BFCF;
  color: #2b2b2b;
  border-color: #A3BFCF;
}

.contact-us .journal-link:focus-visible {
  outline: 2px solid #A3BFCF;
  outline-offset: 3px;
}

.contact-us .slide-in-left {
  animation: slideFromLeft 0.13s ease-out both;
}

.contact-us .slide-in-right {
  animation: slideFromRight 0.15s ease-out both;
}

.contact-us .slide-in-up {
  animation: slideFromUp 0.11s ease-out both;
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

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

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

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

@keyframes slideFromUp {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.contact-us .reveal-clip {
  animation: clipReveal 0.14s ease-out both;
}

@keyframes clipReveal {
  from {
    clip-path: inset(40% 40% 40% 40% round 6px);
    opacity: 0;
  }

  to {
    clip-path: inset(0% 0% 0% 0% round 6px);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .contact-us .grain-row {
    flex-direction: column;
    gap: 40px;
  }

  .contact-us .grain-left {
    flex: 0 0 auto;
  }

  .contact-us .grain-heading {
    font-size: 42px;
  }

  .contact-us .grain-heading em {
    font-size: 46px;
  }

  .contact-us .info-top {
    flex-direction: column;
    gap: 40px;
  }

  .contact-us .info-image-row {
    flex-direction: column;
    gap: 40px;
  }

  .contact-us .info-image-wrap {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
  }

  .contact-us .info-aside-heading {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .contact-us .grain-panel {
    padding: 40px 16px;
  }

  .contact-us .grain-heading {
    font-size: 42px;
  }

  .contact-us .grain-heading em {
    font-size: 44px;
  }

  .contact-us .form-block {
    padding: 40px 16px;
  }

  .contact-us .budget-options {
    flex-direction: column;
  }

  .contact-us .info-strip {
    padding: 40px 16px;
  }

  .contact-us .info-aside-heading {
    font-size: 22px;
  }

  .contact-us .info-top {
    margin-bottom: 40px;
  }
}

@media (max-width: 360px) {
  .contact-us .grain-heading {
    font-size: 22px;
  }

  .contact-us .grain-heading em {
    font-size: 24px;
  }

  .contact-us .form-block {
    padding: 16px;
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
  background: linear-gradient(ellipse at center, #D5E3D3 0%, transparent 70%);
}

.success-page .confirmation-wrapper {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.success-page .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background: linear-gradient(ellipse at center, #D5E3D3 0%, #A3BFCF 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  flex-shrink: 0;
}

.success-page .icon-circle .checkmark {
  width: 36px;
  height: 36px;
}

.success-page .icon-circle .checkmark-path {
  stroke: #CE4168;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.success-page .message-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.success-page .message-block .page-title {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: #2a2a2a;
}

.success-page .message-block .page-title .title-accent {
  color: #CE4168;
}

.success-page .message-block .page-subtitle {
  font-size: 22px;
  line-height: 1.8;
  color: #3a3a3a;
  max-width: 560px;
  margin: 0;
}

.success-page .message-block .page-detail {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 480px;
  margin: 0;
}

.success-page .divider-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(ellipse at center, #CE4168 0%, transparent 100%);
  border-radius: 6px;
}

.success-page .action-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.success-page .action-row .button-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: linear-gradient(ellipse at center, #CE4168 0%, #a83356 100%);
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.12s ease-out, color 0.10s ease-out;
}

.success-page .action-row .button-primary::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: rgba(255, 255, 255, 0.12);
  transition: height 0.13s ease-out;
  border-radius: 6px;
}

.success-page .action-row .button-primary:hover {
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
}

.success-page .action-row .button-primary:hover::before {
  height: 100%;
}

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

.success-page .action-row .button-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 6px;
  border: 2px solid #A3BFCF;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #2a2a2a;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.10s linear, box-shadow 0.12s ease-out;
}

.success-page .action-row .button-secondary::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(ellipse at center, #D5E3D3 0%, transparent 100%);
  transition: height 0.13s ease-out;
  border-radius: 6px;
}

.success-page .action-row .button-secondary:hover {
  border-color: #CE4168;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
}

.success-page .action-row .button-secondary:hover::before {
  height: 100%;
}

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

.success-page .info-strip {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  max-width: 680px;
  width: 100%;
}

.success-page .info-strip .info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 140px;
}

.success-page .info-strip .info-item .info-dot {
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #CE4168;
  flex-shrink: 0;
}

.success-page .info-strip .info-item .info-label {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: center;
  margin: 0;
}

.success-page .info-strip .info-item .info-value {
  font-size: 15px;
  line-height: 1.2;
  color: #2a2a2a;
  font-style: italic;
  text-align: center;
  margin: 0;
}

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

  .success-page .confirmation-wrapper {
    gap: 40px;
  }

  .success-page .message-block .page-title {
    font-size: 42px;
  }

  .success-page .message-block .page-subtitle {
    font-size: 22px;
  }

  .success-page .action-row {
    flex-direction: column;
    width: 100%;
  }

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

  .success-page .info-strip {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 16px;
  }
}

@media (max-width: 360px) {
  .success-page .message-block .page-title {
    font-size: 22px;
  }

  .success-page .message-block .page-subtitle {
    font-size: 15px;
  }
}

.not-found-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
  background: linear-gradient(160deg, #D5E3D3 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.not-found-page .error-code-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.not-found-page .error-number {
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #CE4168;
  margin-bottom: 8px;
  user-select: none;
}

.not-found-page .error-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #CE4168, #A3BFCF);
  border-radius: 6px;
  margin-bottom: 40px;
}

.not-found-page .error-heading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #2b2b3a;
}

.not-found-page .error-heading .word-accent {
  color: #CE4168;
}

.not-found-page .error-description {
  font-size: 15px;
  line-height: 1.8;
  color: #3d3d52;
  text-align: center;
  max-width: 480px;
  margin-bottom: 40px;
}

.not-found-page .error-description em {
  font-style: italic;
  font-size: 15px;
  color: #CE4168;
}

.not-found-page .error-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.not-found-page .button-primary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(180deg, #CE4168 0%, #b8304f 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
  transition: box-shadow 0.12s ease-out, background 0.10s linear;
  position: relative;
  overflow: hidden;
}

.not-found-page .button-primary::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition: height 0.10s ease-out;
}

.not-found-page .button-primary:hover::after {
  height: 100%;
}

.not-found-page .button-primary:hover {
  box-shadow: 0 8px 60px 0 rgba(206, 65, 104, 0.12);
}

.not-found-page .button-primary:focus {
  outline: 2px solid #CE4168;
  outline-offset: 3px;
}

.not-found-page .button-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  color: #CE4168;
  background: #ffffff;
  border: 2px solid #CE4168;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px 0 rgba(206, 65, 104, 0.07);
  transition: box-shadow 0.13s ease-out, background 0.10s linear;
  position: relative;
  overflow: hidden;
}

.not-found-page .button-secondary::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #D5E3D3;
  border-radius: 6px;
  transition: height 0.10s ease-out;
  z-index: 0;
}

.not-found-page .button-secondary:hover::after {
  height: 100%;
}

.not-found-page .button-secondary:hover {
  box-shadow: 0 6px 20px 0 rgba(206, 65, 104, 0.10);
}

.not-found-page .button-secondary:focus {
  outline: 2px solid #CE4168;
  outline-offset: 3px;
}

.not-found-page .button-secondary span {
  position: relative;
  z-index: 1;
}

.not-found-page .decorative-shape {
  position: absolute;
  border-radius: 48px;
  pointer-events: none;
}

.not-found-page .decorative-shape.left {
  width: 220px;
  height: 220px;
  background: radial-gradient(ellipse at center, #A3BFCF 0%, transparent 70%);
  opacity: 0.35;
  top: 40px;
  left: -80px;
}

.not-found-page .decorative-shape.right {
  width: 180px;
  height: 180px;
  background: radial-gradient(ellipse at center, #D5E3D3 0%, transparent 70%);
  opacity: 0.45;
  bottom: 40px;
  right: -60px;
}

.not-found-page .hint-text {
  margin-top: 40px;
  font-size: 15px;
  line-height: 1.8;
  color: #7a7a95;
  text-align: center;
}

.not-found-page .hint-text a {
  color: #CE4168;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.08s linear;
}

.not-found-page .hint-text a:hover {
  color: #b8304f;
}

@media (max-width: 768px) {
  .not-found-page {
    padding: 80px 16px;
  }

  .not-found-page .error-number {
    font-size: 58px;
  }

  .not-found-page .error-heading {
    font-size: 22px;
  }

  .not-found-page .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .not-found-page .button-primary,
  .not-found-page .button-secondary {
    width: 100%;
    text-align: center;
    padding: 16px 40px;
  }

  .not-found-page .decorative-shape.left {
    width: 140px;
    height: 140px;
    left: -60px;
  }

  .not-found-page .decorative-shape.right {
    width: 120px;
    height: 120px;
    right: -50px;
  }
}

@media (max-width: 360px) {
  .not-found-page .error-number {
    font-size: 42px;
  }

  .not-found-page .error-heading {
    font-size: 22px;
  }
}